From 2d883d80f79afec395de4b949640aecf82adc07d Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Tue, 17 Dec 2024 12:43:47 +0100 Subject: [PATCH 01/15] Added user-0 functionality and super_admin functionality --- cron/client.py | 2 +- docker/structure.sql | 17 ++++++++++++++--- lib/error_helpers.py | 3 ++- lib/user.py | 6 ++++++ lib/validate.py | 1 + migrations/2024_12_17_user_zero.sql | 13 +++++++++++++ runner.py | 5 +++-- 7 files changed, 40 insertions(+), 7 deletions(-) create mode 100644 migrations/2024_12_17_user_zero.sql diff --git a/cron/client.py b/cron/client.py index 732548ff9..55d7ad389 100644 --- a/cron/client.py +++ b/cron/client.py @@ -147,7 +147,7 @@ def do_cleanup(cur_temp, cooldown_time_after_job): if client_main['send_control_workload_status_mail'] and config_main['admin']['notification_email']: Job.insert( 'email', - user_id=None, + user_id=0, # User 0 is the [GMT-SYSTEM] user email=config_main['admin']['notification_email'], name=f"{config_main['machine']['description']} is operating normally. All STDDEV fine.", message='\n'.join(message) diff --git a/docker/structure.sql b/docker/structure.sql index ae43d0dd6..34c38bbea 100644 --- a/docker/structure.sql +++ b/docker/structure.sql @@ -26,7 +26,18 @@ CREATE TRIGGER users_moddatetime -- Default password for authentication is DEFAULT INSERT INTO "public"."users"("name","token","capabilities","created_at","updated_at") VALUES -(E'DEFAULT',E'89dbf71048801678ca4abfbaa3ea8f7c651aae193357a3e23d68e21512cd07f5',E'{"api":{"quotas":{},"routes":["/v2/carbondb/filters","/v2/carbondb","/v2/carbondb/add","/v2/ci/measurement/add","/v1/ci/measurement/add","/v1/software/add","/v1/hog/add","/v1/authentication/data"]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":["one-off","daily","weekly","commit","variance","tag","commit-variance","tag-variance"]},"machines":[1],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":["container_memory_utilization","container_cpu_utilization","message_optimization","container_build_time","container_boot_time","container_image_size"]}',E'2024-08-22 11:28:24.937262+00',NULL); +(E'DEFAULT',E'89dbf71048801678ca4abfbaa3ea8f7c651aae193357a3e23d68e21512cd07f5',E'{"user":{"is_super_user": true},"api":{"quotas":{},"routes":["/v2/carbondb/filters","/v2/carbondb","/v2/carbondb/add","/v2/ci/measurement/add","/v1/ci/measurement/add","/v1/software/add","/v1/hog/add","/v1/authentication/data"]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":["one-off","daily","weekly","commit","variance","tag","commit-variance","tag-variance"]},"machines":[1],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":["container_memory_utilization","container_cpu_utilization","message_optimization","container_build_time","container_boot_time","container_image_size"]}',E'2024-08-22 11:28:24.937262+00',NULL); + + + +(E'DEFAULT',E'89dbf71048801678ca4abfbaa3ea8f7c651aae193357a3e23d68e21512cd07f5',E'{"user":{"is_super_user": true},"api":{"quotas":{},"routes":["/v2/carbondb/filters","/v2/carbondb","/v2/carbondb/add","/v2/ci/measurement/add","/v1/ci/measurement/add","/v1/software/add","/v1/hog/add","/v1/authentication/data"]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":["one-off","daily","weekly","commit","variance","tag","commit-variance","tag-variance"]},"machines":[1],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":["container_memory_utilization","container_cpu_utilization","message_optimization","container_build_time","container_boot_time","container_image_size"]}',E'2024-08-22 11:28:24.937262+00',NULL); + + +-- Default password for user 0 is empty +INSERT INTO "public"."users"("id", "name","token","capabilities","created_at","updated_at") +VALUES +(0, E'[GMT-SYSTEM]',E'',E'{"user":{"is_super_user": false},"api":{"quotas":{},"routes":[]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":[]},"machines":[],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":[]}',E'2024-11-06 11:2 +8:24.937262+00',NULL); CREATE TABLE machines ( id SERIAL PRIMARY KEY, @@ -66,7 +77,7 @@ CREATE TABLE jobs ( categories int[], machine_id int REFERENCES machines(id) ON DELETE SET NULL ON UPDATE CASCADE, message text, - user_id integer REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); @@ -98,7 +109,7 @@ CREATE TABLE runs ( logs text, invalid_run text, failed boolean DEFAULT false, - user_id integer REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, -- this must allowed to be null for CLI runs + user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); diff --git a/lib/error_helpers.py b/lib/error_helpers.py index b67e0f212..7b61970b6 100644 --- a/lib/error_helpers.py +++ b/lib/error_helpers.py @@ -41,4 +41,5 @@ def log_error(*messages, **kwargs): print(TerminalColors.FAIL, err, TerminalColors.ENDC, file=sys.stderr) if error_email := GlobalConfig().config['admin']['error_email']: - Job.insert('email', user_id=None, email=error_email, name='Green Metrics Tool Error', message=err) + # User 0 is the [GMT-SYSTEM] user + Job.insert('email', user_id=0, email=error_email, name='Green Metrics Tool Error', message=err) diff --git a/lib/user.py b/lib/user.py index e3d22fa22..3fe3c92f2 100644 --- a/lib/user.py +++ b/lib/user.py @@ -8,6 +8,9 @@ class User(): def __init__(self, user_id: int): + if user_id == 0: + raise RuntimeError('User 0 is system user and cannot log in') + user = DB().fetch_one(""" SELECT id, name, capabilities FROM users @@ -35,6 +38,9 @@ def update(self): WHERE id = %s """, params=(json.dumps(self._capabilities), self._id, )) + def is_super_admin(self): + return bool(self._capabilities['user']['is_super_admin']) + def can_use_machine(self, machine_id: int): return machine_id in self._capabilities['machines'] diff --git a/lib/validate.py b/lib/validate.py index 99f4407cc..7281e306b 100644 --- a/lib/validate.py +++ b/lib/validate.py @@ -87,6 +87,7 @@ def run_workload(name, uri, filename, branch): full_docker_prune=False, docker_prune=True, job_id=None, + user_id=0, # User id 0 is the [GMT-SYSTEM] user ) # Start main code. Only URL is allowed for cron jobs runner.run() diff --git a/migrations/2024_12_17_user_zero.sql b/migrations/2024_12_17_user_zero.sql new file mode 100644 index 000000000..0a5c09df4 --- /dev/null +++ b/migrations/2024_12_17_user_zero.sql @@ -0,0 +1,13 @@ +INSERT INTO "public"."users"("id", "name","token","capabilities","created_at","updated_at") +VALUES +(0, E'[GMT-SYSTEM]',E'',E'{"user":{"is_super_user": false},"api":{"quotas":{},"routes":[]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measu +rements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":[]},"machines":[],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":[]}',E'2024-11-06 11:2 +8:24.937262+00',NULL); + +UPDATE jobs SET user_id = 0 WHERE user_id IS NULL; + +UPDATE runs SET user_id = 1 WHERE user_id IS NULL and uri != 'https://github.com/green-coding-solutions/measurement-control-workload'; +UPDATE runs SET user_id = 0 WHERE user_id IS NULL and uri = 'https://github.com/green-coding-solutions/measurement-control-workload'; + +ALTER TABLE "public"."runs" ALTER COLUMN "user_id" SET NOT NULL; +ALTER TABLE "public"."jobs" ALTER COLUMN "user_id" SET NOT NULL; \ No newline at end of file diff --git a/runner.py b/runner.py index 8db8b9d91..dd5317a4d 100755 --- a/runner.py +++ b/runner.py @@ -50,7 +50,7 @@ def __init__(self, skip_unsafe=False, verbose_provider_boot=False, full_docker_prune=False, dev_no_sleeps=False, dev_cache_build=False, dev_no_metrics=False, dev_flow_timetravel=False, dev_no_optimizations=False, docker_prune=False, job_id=None, - user_id=None, measurement_flow_process_duration=None, measurement_total_duration=None, dev_no_phase_stats=False): + user_id=1, measurement_flow_process_duration=None, measurement_total_duration=None, dev_no_phase_stats=False): if skip_unsafe is True and allow_unsafe is True: raise RuntimeError('Cannot specify both --skip-unsafe and --allow-unsafe') @@ -1686,6 +1686,7 @@ def run(self): parser.add_argument('--branch', type=str, help='Optionally specify the git branch when targeting a git repository') parser.add_argument('--name', type=str, help='A name which will be stored to the database to discern this run from others') parser.add_argument('--filename', type=str, default='usage_scenario.yml', help='An optional alternative filename if you do not want to use "usage_scenario.yml"') + parser.add_argument('--user-id', type=int, default=1, help='A user-ID the run shall be mapped to. Defaults to 1 (the default user)') parser.add_argument('--config-override', type=str, help='Override the configuration file with the passed in yml file. Supply full path.') parser.add_argument('--file-cleanup', action='store_true', help='Delete all temporary files that the runner produced') parser.add_argument('--debug', action='store_true', help='Activate steppable debug mode') @@ -1754,7 +1755,7 @@ def run(self): full_docker_prune=args.full_docker_prune, dev_no_sleeps=args.dev_no_sleeps, dev_cache_build=args.dev_cache_build, dev_no_metrics=args.dev_no_metrics, dev_flow_timetravel=args.dev_flow_timetravel, dev_no_optimizations=args.dev_no_optimizations, - docker_prune=args.docker_prune, dev_no_phase_stats=args.dev_no_phase_stats) + docker_prune=args.docker_prune, dev_no_phase_stats=args.dev_no_phase_stats, user_id=args.user_id) # Using a very broad exception makes sense in this case as we have excepted all the specific ones before #pylint: disable=broad-except From 965742c92d476028301c97d6f1f979e417fb528f Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Tue, 17 Dec 2024 20:22:47 +0100 Subject: [PATCH 02/15] (fix): SQL statements typos and missing user_ids --- data/demo_data.sql | 12 ++++++------ docker/structure.sql | 28 +++++++++++----------------- migrations/2024_12_17_user_zero.sql | 4 +--- 3 files changed, 18 insertions(+), 26 deletions(-) diff --git a/data/demo_data.sql b/data/demo_data.sql index 1cf23a086..933f3e6a6 100644 --- a/data/demo_data.sql +++ b/data/demo_data.sql @@ -1,10 +1,10 @@ -INSERT INTO "runs"("id","job_id","name","uri","branch","commit_hash","commit_timestamp","email","categories","usage_scenario","filename","machine_specs","runner_arguments","machine_id","gmt_hash","measurement_config","start_measurement","end_measurement","phases","logs","invalid_run","failed","created_at","updated_at") +INSERT INTO "runs"("id","job_id","name","uri","branch","commit_hash","commit_timestamp","email","categories","usage_scenario","filename","machine_specs","runner_arguments","machine_id","gmt_hash","measurement_config","start_measurement","end_measurement","phases","logs","invalid_run","failed","created_at","updated_at", "user_id") VALUES -(E'a416057b-235f-41d8-9fb8-9bcc70a308e7',NULL,E'Stress Test #1',E'/home/arne/Sites/green-coding/example-applications/',E'main',E'58c7a5002c684f41f8d7a355f3ede641d8e45ddc',E'2024-07-10 13:48:46+00',E'manual',NULL,E'{"name": "Stress Container One Core 5 Seconds", "author": "Arne Tarara <arne@green-coding.berlin>", "description": "A simple 5 seconds stress on the system with one core. Expected display result is a rectangle shaped load.", "flow": [{"name": "Stress", "container": "gcb-alpine-stress", "commands": [{"type": "console", "command": "stress-ng -c 1 -t 5 -q", "note": "Starting Stress"}]}], "version": "2", "services": {"gcb-alpine-stress": {"container_name": "gcb-alpine-stress", "image": "gcb_alpine_stress", "build": "."}}}',E'stress/usage_scenario.yml',E'{"SGX": "This CPU does not support Intel SGX", "Uptime": " 18:42:54 up 6 min, 3 users, load average: 1.10, 0.73, 0.38", "Cpu Info": "11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz", "Platform": "Linux", "Processes": "USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\\nroot 1 0.9 0.0 23440 14188 ? Ss 18:36 0:03 /sbin/init splash\\nroot 2 0.0 0.0 0 0 ? S 18:36 0:00 [kthreadd]\\nroot 3 0.0 0.0 0 0 ? S 18:36 0:00 [pool_workqueue_release]\\nroot 4 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_g]\\nroot 5 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_p]\\nroot 6 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-slub_]\\nroot 7 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-netns]\\nroot 8 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:0-events]\\nroot 9 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:0H-events_highpri]\\nroot 10 0.1 0.0 0 0 ? I 18:36 0:00 [kworker/0:1-pm]\\nroot 12 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mm_pe]\\nroot 13 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_kthread]\\nroot 14 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_rude_kthread]\\nroot 15 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_trace_kthread]\\nroot 16 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/0]\\nroot 17 0.1 0.0 0 0 ? I 18:36 0:00 [rcu_preempt]\\nroot 18 0.0 0.0 0 0 ? S 18:36 0:00 [migration/0]\\nroot 19 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/0]\\nroot 20 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/0]\\nroot 21 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/1]\\nroot 22 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/1]\\nroot 23 0.0 0.0 0 0 ? S 18:36 0:00 [migration/1]\\nroot 24 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/1]\\nroot 26 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:0H-events_highpri]\\nroot 27 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/2]\\nroot 28 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/2]\\nroot 29 0.0 0.0 0 0 ? S 18:36 0:00 [migration/2]\\nroot 30 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/2]\\nroot 31 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:0-pm]\\nroot 32 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:0H-events_highpri]\\nroot 33 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/3]\\nroot 34 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/3]\\nroot 35 0.0 0.0 0 0 ? S 18:36 0:00 [migration/3]\\nroot 36 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/3]\\nroot 37 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:0-events]\\nroot 38 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:0H-events_highpri]\\nroot 39 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/4]\\nroot 40 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/4]\\nroot 41 0.0 0.0 0 0 ? S 18:36 0:00 [migration/4]\\nroot 42 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/4]\\nroot 43 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:0-mm_percpu_wq]\\nroot 44 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:0H-events_highpri]\\nroot 45 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/5]\\nroot 46 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/5]\\nroot 47 0.0 0.0 0 0 ? S 18:36 0:00 [migration/5]\\nroot 48 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/5]\\nroot 49 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:0-cgroup_destroy]\\nroot 50 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:0H-events_highpri]\\nroot 51 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/6]\\nroot 52 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/6]\\nroot 53 0.0 0.0 0 0 ? S 18:36 0:00 [migration/6]\\nroot 54 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/6]\\nroot 56 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:0H-kblockd]\\nroot 57 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/7]\\nroot 58 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/7]\\nroot 59 0.0 0.0 0 0 ? S 18:36 0:00 [migration/7]\\nroot 60 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/7]\\nroot 62 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:0H-kblockd]\\nroot 63 0.0 0.0 0 0 ? S 18:36 0:00 [kdevtmpfs]\\nroot 64 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-inet_]\\nroot 65 0.0 0.0 0 0 ? S 18:36 0:00 [kauditd]\\nroot 67 0.0 0.0 0 0 ? S 18:36 0:00 [khungtaskd]\\nroot 68 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:2-flush-259:0]\\nroot 69 0.0 0.0 0 0 ? S 18:36 0:00 [oom_reaper]\\nroot 70 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-write]\\nroot 71 0.0 0.0 0 0 ? S 18:36 0:00 [kcompactd0]\\nroot 72 0.0 0.0 0 0 ? SN 18:36 0:00 [ksmd]\\nroot 73 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:1-pm]\\nroot 74 0.0 0.0 0 0 ? SN 18:36 0:00 [khugepaged]\\nroot 75 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kinte]\\nroot 76 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kbloc]\\nroot 77 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-blkcg]\\nroot 79 0.0 0.0 0 0 ? S 18:36 0:00 [irq/9-acpi]\\nroot 80 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:1-events]\\nroot 81 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:1-events]\\nroot 82 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tpm_d]\\nroot 83 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ata_s]\\nroot 84 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md]\\nroot 85 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md_bi]\\nroot 86 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-edac-]\\nroot 87 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-devfr]\\nroot 88 0.0 0.0 0 0 ? S 18:36 0:00 [watchdogd]\\nroot 89 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:1-events]\\nroot 90 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:1H-kblockd]\\nroot 91 0.0 0.0 0 0 ? S 18:36 0:00 [kswapd0]\\nroot 92 0.0 0.0 0 0 ? S 18:36 0:00 [ecryptfs-kthread]\\nroot 93 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kthro]\\nroot 94 0.0 0.0 0 0 ? S 18:36 0:00 [irq/127-pciehp]\\nroot 95 0.0 0.0 0 0 ? S 18:36 0:00 [irq/128-pciehp]\\nroot 96 0.0 0.0 0 0 ? S 18:36 0:00 [irq/129-pciehp]\\nroot 97 0.0 0.0 0 0 ? S 18:36 0:00 [irq/130-pciehp]\\nroot 98 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:1-events]\\nroot 99 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:1-events]\\nroot 100 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-acpi_]\\nroot 101 0.0 0.0 0 0 ? S 18:36 0:00 [hwrng]\\nroot 102 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:2-events]\\nroot 103 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mld]\\nroot 104 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:1H]\\nroot 105 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipv6_]\\nroot 112 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kstrp]\\nroot 114 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:0-hci0]\\nroot 128 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-charg]\\nroot 129 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:3-events]\\nroot 153 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:1H-kblockd]\\nroot 157 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:1H-kblockd]\\nroot 185 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:1H-kblockd]\\nroot 186 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:1H]\\nroot 194 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:1H-kblockd]\\nroot 195 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:1H-kblockd]\\nroot 196 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:2-rcu_gp]\\nroot 217 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:2-pm]\\nroot 218 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 219 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 220 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 221 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 223 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:3-events]\\nroot 224 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:2-pm]\\nroot 225 0.0 0.0 0 0 ? S 18:36 0:00 [irq/173-FRMW0001:00]\\nroot 226 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:2-events]\\nroot 227 0.0 0.0 0 0 ? S 18:36 0:00 [irq/174-PIXA3854:00]\\nroot 264 0.0 0.0 0 0 ? S 18:36 0:00 [jbd2/nvme0n1p5-8]\\nroot 265 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ext4-]\\nroot 315 0.1 0.0 67096 17436 ? S<s 18:36 0:00 /usr/lib/systemd/systemd-journald\\nroot 349 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:4-events]\\nroot 351 0.2 0.0 30832 8576 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-udevd\\nroot 395 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 423 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:5-events_unbound]\\nroot 449 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:6-flush-259:0]\\nroot 450 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:7-events_unbound]\\nroot 451 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:8-flush-259:0]\\nroot 452 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:9-flush-259:0]\\nroot 468 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:2-events]\\nroot 514 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cfg80]\\nroot 520 0.0 0.0 0 0 ? S 18:36 0:00 [irq/191-mei_me]\\nroot 531 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-crypt]\\nroot 534 0.3 0.0 0 0 ? S 18:36 0:01 [irq/192-iwlwifi:default_queue]\\nroot 535 0.0 0.0 0 0 ? S 18:36 0:00 [irq/193-iwlwifi:queue_1]\\nroot 536 0.0 0.0 0 0 ? S 18:36 0:00 [irq/194-iwlwifi:queue_2]\\nroot 538 0.7 0.0 0 0 ? S 18:36 0:03 [irq/195-iwlwifi:queue_3]\\nroot 539 0.0 0.0 0 0 ? S 18:36 0:00 [irq/196-iwlwifi:queue_4]\\nroot 540 0.0 0.0 0 0 ? S 18:36 0:00 [irq/197-iwlwifi:queue_5]\\nroot 541 0.0 0.0 0 0 ? S 18:36 0:00 [irq/198-iwlwifi:queue_6]\\nroot 542 0.0 0.0 0 0 ? S 18:36 0:00 [irq/199-iwlwifi:queue_7]\\nroot 543 0.0 0.0 0 0 ? S 18:36 0:00 [irq/200-iwlwifi:queue_8]\\nroot 544 0.0 0.0 0 0 ? S 18:36 0:00 [irq/201-iwlwifi:exception]\\nroot 576 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ttm]\\nroot 583 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cros_]\\nroot 586 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc0]\\nroot 587 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc1]\\nroot 588 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc2]\\nroot 589 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc3]\\nroot 640 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:3-events]\\nsystemd+ 660 0.1 0.0 17728 7680 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-oomd\\nsystemd+ 665 0.0 0.0 21584 12800 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-resolved\\nsystemd+ 671 0.0 0.0 91044 7680 ? Ssl 18:36 0:00 /usr/lib/systemd/systemd-timesyncd\\nroot 754 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:3-pm]\\nroot 785 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:3-hci0]\\nroot 790 0.0 0.0 314260 8124 ? Ssl 18:36 0:00 /usr/libexec/accounts-daemon\\navahi 793 0.1 0.0 8780 3840 ? Ss 18:36 0:00 avahi-daemon: running [framebook.local]\\nroot 794 0.0 0.0 13684 6528 ? Ss 18:36 0:00 /usr/libexec/bluetooth/bluetoothd\\nroot 795 0.0 0.0 9804 2816 ? Ss 18:36 0:00 /usr/sbin/cron -f -P\\nmessage+ 796 0.8 0.0 11992 6528 ? Ss 18:36 0:03 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngnome-r+ 800 0.0 0.0 439064 16176 ? Ssl 18:36 0:00 /usr/libexec/gnome-remote-desktop-daemon --system\\nroot 804 0.1 0.0 314320 7808 ? Ssl 18:36 0:00 /usr/libexec/iio-sensor-proxy\\npolkitd 812 0.2 0.0 384348 10120 ? Ssl 18:36 0:00 /usr/lib/polkit-1/polkitd --no-debug\\nroot 815 0.0 0.0 314180 7856 ? Ssl 18:36 0:00 /usr/libexec/power-profiles-daemon\\nroot 831 0.4 0.1 2287584 35108 ? Ssl 18:36 0:01 /usr/lib/snapd/snapd\\nroot 836 0.0 0.0 310432 6912 ? Ssl 18:36 0:00 /usr/libexec/switcheroo-control\\nroot 838 0.8 0.0 725084 13012 ? Ssl 18:36 0:03 /usr/bin/sysbox-mgr\\nroot 842 0.3 0.0 18136 9220 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-logind\\nroot 844 0.1 0.0 425420 10368 ? Ssl 18:36 0:00 /usr/sbin/thermald --systemd --dbus-enable --adaptive\\nroot 845 0.0 0.0 469148 13116 ? Ssl 18:36 0:00 /usr/libexec/udisks2/udisksd\\navahi 893 0.0 0.0 8420 1284 ? S 18:36 0:00 avahi-daemon: chroot helper\\nroot 898 0.3 0.0 338968 21172 ? Ssl 18:36 0:01 /usr/sbin/NetworkManager --no-daemon\\nroot 901 0.0 0.0 18400 11264 ? Ss 18:36 0:00 /usr/sbin/wpa_supplicant -u -s -O DIR=/run/wpa_supplicant GROUP=netdev\\nroot 913 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipmi-]\\nsyslog 919 0.0 0.0 222508 6016 ? Ssl 18:36 0:00 /usr/sbin/rsyslogd -n -iNONE\\nroot 971 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:3-events]\\nroot 1073 0.0 0.0 392104 12664 ? Ssl 18:36 0:00 /usr/sbin/ModemManager\\nroot 1085 0.0 0.0 314184 8224 ? Ssl 18:36 0:00 /usr/libexec/boltd\\nroot 1086 0.0 0.0 317632 9472 ? Ssl 18:36 0:00 /usr/libexec/upowerd\\nroot 1113 0.0 0.0 1166524 11008 ? Ssl 18:36 0:00 /usr/bin/sysbox-fs\\nroot 1121 0.0 0.0 2800 1664 ? Ss 18:36 0:00 /bin/sh -c /usr/bin/sysbox-runc --version && /usr/bin/sysbox-mgr --version && /usr/bin/sysbox-fs --version && /bin/sleep infinity\\nroot 1149 0.0 0.0 9076 2176 ? S 18:36 0:00 /bin/sleep infinity\\nroot 1430 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 1439 0.0 0.0 38488 11392 ? Ss 18:36 0:00 /usr/sbin/cupsd -l\\nroot 1447 0.3 0.2 2249812 65304 ? Ssl 18:36 0:01 /usr/bin/containerd\\nroot 1469 0.0 0.0 315384 9472 ? Ssl 18:36 0:00 /usr/sbin/gdm3\\nroot 1492 0.0 0.0 242664 9856 ? Sl 18:36 0:00 gdm-session-worker [pam/gdm-launch-environment]\\ngdm 1499 0.3 0.0 20988 11904 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\ngdm 1500 0.0 0.0 21400 3600 ? S 18:36 0:00 (sd-pam)\\ngdm 1512 0.0 0.0 114056 12032 ? S<sl 18:36 0:00 /usr/bin/pipewire\\ngdm 1513 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\ngdm 1515 0.0 0.0 407672 18944 ? S<sl 18:36 0:00 /usr/bin/wireplumber\\ngdm 1516 0.0 0.0 110484 11008 ? S<sl 18:36 0:00 /usr/bin/pipewire-pulse\\ngdm 1517 0.0 0.0 236396 6272 tty1 Ssl+ 18:36 0:00 /usr/libexec/gdm-wayland-session dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\ngdm 1525 0.0 0.0 9420 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngdm 1533 0.0 0.0 6500 2432 tty1 S+ 18:36 0:00 dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\nrtkit 1535 0.0 0.0 22940 3456 ? SNsl 18:36 0:00 /usr/libexec/rtkit-daemon\\ngdm 1537 0.0 0.0 9856 5120 tty1 S+ 18:36 0:00 dbus-daemon --nofork --print-address 4 --session\\ngdm 1546 0.0 0.0 521532 18048 tty1 Sl+ 18:36 0:00 /usr/libexec/gnome-session-binary --autostart /usr/share/gdm/greeter/autostart\\ngdm 1548 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\ngdm 1557 0.0 0.0 310008 6400 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 1564 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/128/doc\\ngdm 1590 2.8 0.6 4424672 205668 tty1 Sl+ 18:36 0:10 /usr/bin/gnome-shell\\nroot 1621 0.0 0.0 0 0 ? S< 18:36 0:00 [krfcommd]\\ncups-br+ 1656 0.0 0.0 268504 19712 ? Ssl 18:36 0:00 /usr/sbin/cups-browsed\\nroot 1657 0.4 0.2 3317612 93860 ? Ssl 18:36 0:01 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock\\nkernoops 1659 0.0 0.0 12744 2184 ? Ss 18:36 0:00 /usr/sbin/kerneloops --test\\nkernoops 1662 0.0 0.0 12744 2188 ? Ss 18:36 0:00 /usr/sbin/kerneloops\\nroot 1702 0.0 0.0 12020 8064 ? Ss 18:36 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups\\nroot 2398 0.0 0.0 1238168 13672 ? Sl 18:36 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928 -address /run/containerd/containerd.sock\\nroot 2511 0.0 0.0 1136 512 ? Ss 18:36 0:00 /sbin/docker-init -- buildkitd --allow-insecure-entitlement=network.host\\nroot 2717 0.0 0.1 1271012 34000 ? Sl 18:36 0:00 buildkitd --allow-insecure-entitlement=network.host\\nroot 2728 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:3-inet_frag_wq]\\nroot 2863 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tls-s]\\nroot 2998 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:4-pm]\\nroot 2999 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:5-kacpi_notify]\\nroot 3000 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:6-events]\\nroot 3001 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:7-kacpi_notify]\\ngdm 3022 0.0 0.0 383120 7680 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi-bus-launcher\\ngdm 3028 0.0 0.0 9420 4992 tty1 S+ 18:36 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/128/at-spi/bus\\ngdm 3030 0.0 0.2 529220 73856 tty1 Sl+ 18:36 0:00 /usr/bin/Xwayland :1024 -rootless -noreset -accessx -core -auth /run/user/128/.mutter-Xwaylandauth.4R00T2 -listenfd 4 -listenfd 5 -displayfd 6 -initfd 7 -byteswappedclients\\ngdm 3034 0.0 0.0 236068 7296 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session\\ncolord 3035 0.0 0.0 320904 14776 ? Ssl 18:36 0:00 /usr/libexec/colord\\ngdm 3069 0.0 0.0 310008 6400 tty1 Sl+ 18:36 0:00 /usr/libexec/xdg-permission-store\\ngdm 3078 0.0 0.0 2663384 26852 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.Shell.Notifications\\ngdm 3080 0.0 0.0 544408 13440 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sharing\\ngdm 3091 0.1 0.0 487204 19200 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-wacom\\ngdm 3095 0.0 0.0 414336 19904 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-color\\ngdm 3100 0.0 0.0 412624 19204 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-keyboard\\ngdm 3109 0.0 0.0 324188 11520 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-print-notifications\\ngdm 3114 0.0 0.0 458120 7040 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-rfkill\\ngdm 3119 0.0 0.0 386768 8192 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-smartcard\\ngdm 3129 0.0 0.0 432620 12416 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-datetime\\ngdm 3146 0.0 0.0 595396 24488 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-media-keys\\ngdm 3149 0.0 0.0 310116 6528 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-screensaver-proxy\\ngdm 3155 0.0 0.0 394584 9984 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sound\\ngdm 3163 0.0 0.0 384468 6912 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-a11y-settings\\ngdm 3169 0.0 0.0 459824 8320 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-housekeeping\\ngdm 3172 0.2 0.0 524880 23336 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-power\\ngdm 3290 0.0 0.0 416764 15232 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-printer\\ngdm 3333 0.0 0.0 2794456 27380 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.ScreenSaver\\ngdm 3345 0.0 0.2 992124 77664 tty1 Sl+ 18:36 0:00 /usr/libexec/mutter-x11-frames\\ngdm 3346 0.0 0.0 389372 12224 tty1 Sl 18:36 0:00 ibus-daemon --panel disable -r --xim\\ngdm 3360 0.0 0.0 311020 7296 tty1 Sl 18:36 0:00 /usr/libexec/ibus-dconf\\ngdm 3362 0.0 0.2 610420 66612 tty1 Sl 18:36 0:00 /usr/libexec/ibus-x11 --kill-daemon\\ngdm 3364 0.0 0.0 310984 7424 tty1 Sl+ 18:36 0:00 /usr/libexec/ibus-portal\\ngdm 3378 0.0 0.0 237196 7424 tty1 Sl 18:36 0:00 /usr/libexec/ibus-engine-simple\\nroot 3437 0.0 0.0 15116 8048 ? Ss 18:36 0:00 sshd: arne [priv]\\narne 3449 0.1 0.0 21024 12288 ? Ss 18:36 0:00 /usr/lib/systemd/systemd --user\\narne 3453 0.0 0.0 21396 3596 ? S 18:36 0:00 (sd-pam)\\narne 3464 0.0 0.0 109524 8576 ? Ssl 18:36 0:00 /usr/bin/pipewire\\narne 3465 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\narne 3468 0.0 0.0 39000 11776 ? Ss 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3472 0.0 0.0 405708 16000 ? Ssl 18:36 0:00 /usr/bin/wireplumber\\narne 3475 0.0 0.0 109904 10496 ? Ssl 18:36 0:00 /usr/bin/pipewire-pulse\\narne 3501 0.0 0.0 9444 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\narne 3542 0.0 0.0 15276 7108 ? S 18:36 0:00 sshd: arne@pts/0\\narne 3544 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\narne 3549 0.0 0.0 309864 6272 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 3556 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc\\narne 3594 0.0 0.0 353012 21644 ? Sl 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3599 0.0 0.0 11980 5632 pts/0 Ss 18:36 0:00 -bash\\nroot 3669 0.0 0.0 15116 8176 ? Ss 18:37 0:00 sshd: arne [priv]\\narne 3711 0.9 0.0 15276 7108 ? S 18:37 0:03 sshd: arne@pts/1\\narne 3712 0.0 0.0 11980 5632 pts/1 Ss 18:37 0:00 -bash\\nroot 3755 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/7:3-events]\\nroot 3759 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:8-kacpi_notify]\\nroot 3760 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:9-kacpi_notify]\\nroot 3801 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:10-kacpi_notify]\\nroot 3834 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:11-kacpi_notify]\\nroot 3835 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:12-pm]\\nroot 3878 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:13-kacpi_notify]\\nroot 3879 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:14-events]\\nroot 3880 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:15-kacpi_notify]\\nroot 4401 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:5-pm]\\nroot 4402 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:6]\\nroot 4403 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/3:4]\\ngdm 4737 0.0 0.0 0 0 tty1 Z+ 18:40 0:00 [dbus-daemon] <defunct>\\ngdm 4742 0.0 0.0 317072 9856 ? Ssl 18:40 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/128/keyring\\nroot 4828 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/4:3-events]\\nroot 4875 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/0:16-i915-unordered]\\nroot 4983 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/6:0-events]\\nroot 5020 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:0-cgroup_destroy]\\nroot 5028 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/7:0]\\narne 5100 0.7 0.0 2068224 25984 pts/0 Sl+ 18:42 0:00 docker compose up\\narne 5122 1.2 0.1 2169824 45696 pts/0 Sl+ 18:42 0:00 /usr/libexec/docker/cli-plugins/docker-compose compose up\\nroot 5207 0.0 0.0 1745288 4352 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5214 0.0 0.0 1745032 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5235 0.0 0.0 1238168 13440 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45 -address /run/containerd/containerd.sock\\nroot 5262 0.0 0.0 1237912 13056 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2 -address /run/containerd/containerd.sock\\n999 5282 3.0 0.0 37240 8448 ? Ssl 18:42 0:00 redis-server *:6379\\n999 5289 0.5 0.0 219720 29824 ? Ss 18:42 0:00 postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key -c work_mem=16MB -p 9573\\nroot 5393 0.0 0.0 1745288 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5405 0.0 0.0 1597568 4096 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5419 0.0 0.0 1237912 13056 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7 -address /run/containerd/containerd.sock\\nroot 5450 0.0 0.0 1238168 13184 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf -address /run/containerd/containerd.sock\\nroot 5471 0.1 0.0 1136 512 ? Ss 18:42 0:00 /sbin/docker-init -- /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5479 0.1 0.0 12120 7984 ? Ss 18:42 0:00 nginx: master process nginx -g daemon off;\\nroot 5535 0.0 0.0 4344 3200 ? S 18:42 0:00 /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5536 3.5 0.0 37560 31352 ? S 18:42 0:00 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5560 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5561 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5562 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5563 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5564 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5565 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5566 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5567 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5570 47.2 0.4 877040 139272 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5571 45.2 0.4 877044 139136 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5572 46.2 0.4 877032 139256 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5573 44.7 0.4 876924 139588 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5574 43.2 0.4 877056 139432 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5575 44.4 0.4 877048 139480 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5576 42.6 0.4 877044 139776 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5577 39.2 0.4 877048 139524 ? Sl 18:42 0:02 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\n999 5620 0.0 0.0 219720 5912 ? Ss 18:42 0:00 postgres: checkpointer \\n999 5621 0.0 0.0 219720 5784 ? Ss 18:42 0:00 postgres: background writer \\n999 5623 0.0 0.0 219720 5656 ? Ss 18:42 0:00 postgres: walwriter \\n999 5624 0.0 0.0 221312 8984 ? Ss 18:42 0:00 postgres: autovacuum launcher \\n999 5625 0.0 0.0 221288 8088 ? Ss 18:42 0:00 postgres: logical replication launcher \\narne 5725 81.1 0.3 928140 129952 pts/1 Sl+ 18:42 0:01 python3 runner.py --uri /home/arne/Sites/green-coding/example-applications/ --filename stress/usage_scenario.yml --name Stress Test #1 --dev-no-build --skip-unsafe\\n999 5732 0.0 0.0 222408 17432 ? Ss 18:42 0:00 postgres: postgres green-coding 172.25.0.1(50810) idle\\n999 5733 0.0 0.0 222620 20120 ? Ss 18:42 0:00 postgres: postgres green-coding 172.25.0.1(50826) idle\\nroot 5864 6.8 0.0 17276 7552 ? Ss 18:42 0:00 /usr/lib/systemd/systemd-hostnamed\\narne 5954 0.0 0.0 2800 1664 pts/1 S+ 18:42 0:00 /bin/sh -c /usr/bin/ps -aux\\narne 5955 700 0.0 15512 5376 pts/1 R+ 18:42 0:00 /usr/bin/ps -aux\\n", "Disk Usage": 323008147456, "Docker Info": "Client: Docker Engine - Community\\n Version: 27.2.1\\n Context: default\\n Debug Mode: false\\n Plugins:\\n buildx: Docker Buildx (Docker Inc.)\\n Version: v0.16.2\\n Path: /usr/libexec/docker/cli-plugins/docker-buildx\\n compose: Docker Compose (Docker Inc.)\\n Version: v2.29.2\\n Path: /usr/libexec/docker/cli-plugins/docker-compose\\n\\nServer:\\n Containers: 5\\n Running: 5\\n Paused: 0\\n Stopped: 0\\n Images: 13\\n Server Version: 27.2.1\\n Storage Driver: overlayfs\\n driver-type: io.containerd.snapshotter.v1\\n Logging Driver: json-file\\n Cgroup Driver: systemd\\n Cgroup Version: 2\\n Plugins:\\n Volume: local\\n Network: bridge host ipvlan macvlan null overlay\\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\\n Swarm: inactive\\n Runtimes: io.containerd.runc.v2 runc sysbox-runc\\n Default Runtime: runc\\n Init Binary: docker-init\\n containerd version: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc version: v1.1.13-0-g58aa920\\n init version: de40ad0\\n Security Options:\\n apparmor\\n seccomp\\n Profile: builtin\\n cgroupns\\n Kernel Version: 6.8.0-44-generic\\n Operating System: Ubuntu 24.04.1 LTS\\n OSType: linux\\n Architecture: x86_64\\n CPUs: 8\\n Total Memory: 31.13GiB\\n Name: framebook\\n ID: 492c90f2-99f1-437f-a14b-9f1e5d514ca9\\n Docker Root Dir: /var/lib/docker\\n Debug Mode: false\\n Username: greencoding\\n Experimental: false\\n Insecure Registries:\\n 127.0.0.0/8\\n Live Restore Enabled: false\\n Default Address Pools:\\n Base: 172.25.0.0/16, Size: 24\\n\\n", "Free Memory": 31183421440, "Turbo Boost": "0", "Architecture": "x86-64", "Memory Total": "32646584 kB", "Power Limits": {"/sys/devices/virtual/powercap/intel-rapl/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/name": "package-0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/name": "psys\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj": "1258504102\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/energy_uj": "2759136491\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_name": "peak_power\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/name": "core\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/name": "uncore\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/energy_uj": "452269350\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/energy_uj": "6799237\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_max_power_uw": "28000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_power_limit_uw": "200000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_time_window_us": "31981568\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_power_limit_uw": "64000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_time_window_us": "2440\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_power_limit_uw": "121000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_time_window_us": "27983872\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_suspended_time": "0\\n"}, "IO Scheduling": "File not found", "Linux Version": "Linux 6.8.0-44-generic", "CPU Scheduling": {"/sys/kernel/debug/sched/debug": "Sched Debug Version: v0.11, 6.8.0-44-generic #44-Ubuntu\\nktime : 393085.884646\\nsched_clk : 393151.538847\\ncpu_clk : 393107.097746\\njiffies : 4295060222\\nsched_clock_stable() : 1\\n\\nsysctl_sched\\n .sysctl_sched_base_slice : 3.000000\\n .sysctl_sched_features : 6237751\\n .sysctl_sched_tunable_scaling : 1 (logarithmic)\\n\\ncpu#0, 2400.000 MHz\\n .nr_running : 1\\n .nr_switches : 124655\\n .nr_uninterruptible : -58\\n .next_balance : 4295.060254\\n .curr->pid : 5965\\n .clock : 393107.214598\\n .clock_task : 393107.214598\\n .avg_idle : 854472\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[0]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2409.412629\\n .avg_vruntime : 2409.412629\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 1048576\\n .load_avg : 1024\\n .runnable_avg : 703\\n .util_avg : 703\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1024\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393107.214598\\n .se->vruntime : 7079.901237\\n .se->sum_exec_runtime : 2527.534152\\n .se->load.weight : 773589\\n .se->avg.load_avg : 755\\n .se->avg.util_avg : 703\\n .se->avg.runnable_avg : 703\\n\\ncfs_rq[0]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7079.901237\\n .avg_vruntime : 7079.901237\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 773589\\n .load_avg : 755\\n .runnable_avg : 703\\n .util_avg : 703\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 748\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393107.214598\\n .se->vruntime : 14173.383046\\n .se->sum_exec_runtime : 2784.577673\\n .se->load.weight : 921623\\n .se->avg.load_avg : 900\\n .se->avg.util_avg : 703\\n .se->avg.runnable_avg : 703\\n\\ncfs_rq[0]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2881.626559\\n .avg_vruntime : 2881.626559\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392911.264450\\n .se->vruntime : 66449.414674\\n .se->sum_exec_runtime : 3499.026124\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 31.473934\\n .avg_vruntime : 31.473934\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392943.457601\\n .se->vruntime : 66449.742441\\n .se->sum_exec_runtime : 32.582834\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 66449.742441\\n .avg_vruntime : 66449.742441\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392943.457601\\n .se->vruntime : 100025.397886\\n .se->sum_exec_runtime : 15215.859066\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 14173.383046\\n .avg_vruntime : 14173.383046\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 921623\\n .load_avg : 900\\n .runnable_avg : 703\\n .util_avg : 703\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 884\\n .tg_load_avg : 988\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393107.214598\\n .se->vruntime : 100174.567815\\n .se->sum_exec_runtime : 5575.142792\\n .se->load.weight : 939958\\n .se->avg.load_avg : 917\\n .se->avg.util_avg : 703\\n .se->avg.runnable_avg : 703\\n\\ncfs_rq[0]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 100174.567815\\n .avg_vruntime : 100174.567815\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 939958\\n .load_avg : 917\\n .runnable_avg : 703\\n .util_avg : 703\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[0]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[0]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n Spool_workqueue_ 3 50.484081 E 53.473963 3.000000 0.010118 3 120 0.000000 0.010118 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_g 4 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_p 5 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-slub_ 6 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-netns 7 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n I kworker/0:0 8 59814.143606 E 59817.054498 3.000000 291.283992 683 120 0.000000 291.283992 0.000000 0.000000 0 0 /\\n I kworker/0:0H 9 61.484472 E 61.518998 3.000000 0.013159 4 100 0.000000 0.013159 0.000000 0.000000 0 0 /\\n I kworker/0:1 10 59908.657542 E 59908.689814 3.000000 415.856871 1332 120 0.000000 415.856871 0.000000 0.000000 0 0 /\\n Ikworker/R-mm_pe 12 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_kthre 13 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_rude_ 14 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_trace 15 429.940627 E 432.911629 3.000000 0.267245 7 120 0.000000 0.267245 0.000000 0.000000 0 0 /\\n S ksoftirqd/0 16 100015.781474 E 100018.595188 3.000000 58.152090 2665 120 0.000000 58.152090 0.000000 0.000000 0 0 /\\n S migration/0 18 0.626525 E 0.123004 0.750000 6.249231 158 0 0.000000 6.249231 0.000000 0.000000 0 0 /\\n S idle_inject/0 19 0.467865 E 0.280188 0.750000 0.005407 3 49 0.000000 0.005407 0.000000 0.000000 0 0 /\\n S cpuhp/0 20 8335.382094 E 8338.316225 3.000000 1.150907 26 120 0.000000 1.150907 0.000000 0.000000 0 0 /\\n Ikworker/R-charg 128 50.473963 E 50.508549 3.000000 0.093293 2 100 0.000000 0.093293 0.000000 0.000000 0 0 /\\n I kworker/0:1H 157 98537.111847 E 98537.146224 3.000000 7.464054 385 100 0.000000 7.464054 0.000000 0.000000 0 0 /\\n I kworker/0:2 224 59855.306472 E 59858.281775 3.000000 287.732084 1020 120 0.000000 287.732084 0.000000 0.000000 0 0 /\\n Sirq/193-iwlwifi 535 3646.117837 E 3649.116436 3.000000 1.136464 10 49 0.000000 1.136464 0.000000 0.000000 0 0 /\\n Ikworker/R-cros_ 583 4098.545142 E 4098.579743 3.000000 0.004733 2 100 0.000000 0.004733 0.000000 0.000000 0 0 /\\n S card1-crtc0 586 4105.692415 E 4108.689897 3.000000 0.071775 4 49 0.000000 0.071775 0.000000 0.000000 0 0 /\\n S card1-crtc1 587 4105.694050 E 4108.692415 3.000000 0.002284 2 49 0.000000 0.002284 0.000000 0.000000 0 0 /\\n S card1-crtc2 588 4105.695887 E 4108.694050 3.000000 0.002459 2 49 0.000000 0.002459 0.000000 0.000000 0 0 /\\n S card1-crtc3 589 4105.697510 E 4108.695887 3.000000 0.002237 2 49 0.000000 0.002237 0.000000 0.000000 0 0 /\\n Ssystemd-resolve 665 94.023824 E 96.587403 3.000000 347.899690 653 120 0.000000 347.899690 0.000000 0.000000 0 0 /system.slice/systemd-resolved.service\\n S sd-resolve 762 2.805469 E 4.473698 3.000000 3.300131 16 120 0.000000 3.300131 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n I kworker/0:3 754 59896.284999 E 59899.276119 3.000000 276.999270 566 120 0.000000 276.999270 0.000000 0.000000 0 0 /\\n Saccounts-daemon 790 14.253092 E 16.355003 3.000000 133.580546 272 120 0.000000 133.580546 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 936 13.969662 E 16.117388 3.000000 134.487699 479 120 0.000000 134.487699 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S gmain 1041 0.924491 E 2.068097 3.000000 0.059449 2 120 0.000000 0.059449 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S cleanup 1103 7.256534 E 10.181598 3.000000 0.315513 4 120 0.000000 0.315513 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S avahi-daemon 893 0.811987 E 2.186352 3.000000 0.137179 4 120 0.000000 0.137179 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S gdbus 939 290.951030 E 293.874150 3.000000 355.090802 2636 120 0.000000 355.090802 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S gdbus 1098 5.410405 E 7.152417 3.000000 21.180934 75 120 0.000000 21.180934 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1473 286.621373 E 288.922576 3.000000 103.343935 2905 120 0.000000 103.343935 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1475 0.003081 E 2.997094 3.000000 0.496009 16 120 0.000000 0.496009 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gmain 1483 3.022894 E 5.996257 3.000000 0.026637 1 120 0.000000 0.026637 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pw-data-loop 1534 8.779134 E 11.773129 3.000000 0.034056 3 79 0.000000 0.034056 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1569 1880.003146 E 1881.958162 3.000000 41.683534 431 120 0.000000 41.683534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1554 9.640752 E 12.603939 3.000000 0.065887 2 120 0.000000 0.065887 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1556 10.631341 E 13.583311 3.000000 0.917172 22 120 0.000000 0.917172 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fusermount3 1564 9.813596 E 12.812048 3.000000 0.930269 5 120 0.000000 0.930269 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1601 1978.943679 E 1981.813692 3.000000 574.870023 1893 120 0.000000 574.870023 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1604 1990.208063 E 1993.129109 3.000000 15.725349 76 120 0.000000 15.725349 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1664 417.934080 E 420.931118 3.000000 227.274311 18272 120 0.000000 227.274311 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1674 417.842975 E 420.840740 3.000000 46.313348 1295 120 0.000000 46.313348 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1699 414.799823 E 416.807189 3.000000 153.013311 4244 120 0.000000 153.013311 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2416 374.234438 E 377.219668 3.000000 35.780266 1608 120 0.000000 35.780266 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2764 1.744663 E 4.534142 3.000000 18.647716 174 120 0.000000 18.647716 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/0:4 2998 59771.957357 E 59774.932526 3.000000 271.888982 1142 120 0.000000 271.888982 0.000000 0.000000 0 0 /\\n I kworker/0:5 2999 59772.125702 E 59775.104333 3.000000 138.814812 467 120 0.000000 138.814812 0.000000 0.000000 0 0 /\\n I kworker/0:6 3000 100025.070119 E 100027.974416 3.000000 273.367608 1103 120 0.000000 273.367608 0.000000 0.000000 0 0 /\\n I kworker/0:7 3001 59757.114051 E 59760.069565 3.000000 105.172095 199 120 0.000000 105.172095 0.000000 0.000000 0 0 /\\n S Xwayland 3030 823.312878 E 826.243091 3.000000 73.675981 404 120 0.000000 73.675981 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:sh0 3265 798.437067 E 801.432850 3.000000 0.043697 5 120 0.000000 0.043697 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3082 846.693163 E 849.149172 3.000000 0.987458 8 120 0.000000 0.987458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3105 850.647701 E 853.480247 3.000000 0.288156 7 120 0.000000 0.288156 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3117 753.415062 E 755.693222 3.000000 0.802525 2 120 0.000000 0.802525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3122 46.671710 E 49.646140 3.000000 0.025570 1 120 0.000000 0.025570 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3133 795.342480 E 798.312721 3.000000 2.282013 41 120 0.000000 2.282013 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3128 789.541948 E 792.521534 3.000000 0.623284 13 120 0.000000 0.623284 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-print-notif 3109 794.936793 E 797.917349 3.000000 26.108835 70 120 0.000000 26.108835 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-rfkill 3114 1978.025984 E 1980.999437 3.000000 14.213238 168 120 0.000000 14.213238 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3157 53.427679 E 56.401651 3.000000 0.026028 1 120 0.000000 0.026028 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-a11y-settin 3163 794.888778 E 797.870455 3.000000 6.166578 47 120 0.000000 6.166578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3176 794.880654 E 797.815559 3.000000 5.039055 51 120 0.000000 5.039055 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3340 1927.697033 E 1927.760897 3.000000 47.743714 9 120 0.000000 47.743714 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3349 808.794366 E 811.794366 3.000000 10.264307 5 120 0.000000 10.264307 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x11:sh0 3377 816.300810 E 819.286174 3.000000 0.014636 1 120 0.000000 0.014636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter:traceq0 3381 817.363254 E 1021.171202 3.000000 0.084925 1 139 0.000000 0.084925 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3386 818.412051 E 821.351989 3.000000 0.093107 2 120 0.000000 0.093107 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3387 817.414689 E 820.396299 3.000000 0.018390 1 120 0.000000 0.018390 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3389 818.351989 E 821.340314 3.000000 0.199289 7 120 0.000000 0.199289 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3366 811.073812 E 814.040000 3.000000 0.033812 1 120 0.000000 0.033812 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3393 819.206920 E 822.175436 3.000000 0.075475 3 120 0.000000 0.075475 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-portal 3364 1145.005144 E 1147.991028 3.000000 3.568203 23 120 0.000000 3.568203 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3465 4.873835 E 7.857378 3.000000 12.993458 14 120 0.000000 12.993458 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3507 5.151991 E 8.096082 3.000000 0.172631 6 120 0.000000 0.172631 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3506 5.696636 E 8.662738 3.000000 0.223461 7 120 0.000000 0.223461 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-permission- 3549 8.115189 E 11.087827 3.000000 4.193195 7 120 0.000000 4.193195 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/0:8 3759 59756.400082 E 59759.380811 3.000000 1.022501 23 120 0.000000 1.022501 0.000000 0.000000 0 0 /\\n I kworker/0:9 3760 59770.205205 E 59773.169769 3.000000 1.596805 44 120 0.000000 1.596805 0.000000 0.000000 0 0 /\\n I kworker/0:10 3801 59771.969076 E 59774.937321 3.000000 0.905114 21 120 0.000000 0.905114 0.000000 0.000000 0 0 /\\n I kworker/0:11 3834 59756.809577 E 59759.790531 3.000000 0.552745 12 120 0.000000 0.552745 0.000000 0.000000 0 0 /\\n I kworker/0:12 3835 59839.201252 E 59842.114881 3.000000 147.613339 247 120 0.000000 147.613339 0.000000 0.000000 0 0 /\\n I kworker/0:13 3878 59770.675693 E 59773.644782 3.000000 0.401815 9 120 0.000000 0.401815 0.000000 0.000000 0 0 /\\n I kworker/0:14 3879 59838.813777 E 59841.697927 3.000000 118.760857 459 120 0.000000 118.760857 0.000000 0.000000 0 0 /\\n I kworker/0:15 3880 59757.553220 E 59760.501134 3.000000 0.251809 8 120 0.000000 0.251809 0.000000 0.000000 0 0 /\\n I kworker/0:16 4875 100023.503880 E 100026.479323 3.000000 47.921673 547 120 0.000000 47.921673 0.000000 0.000000 0 0 /\\n S docker 5108 142.053576 E 144.677977 3.000000 0.445408 2 120 0.000000 0.445408 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5125 145.841713 E 148.838155 3.000000 2.587746 33 120 0.000000 2.587746 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5129 152.087877 E 154.959185 3.000000 9.272384 285 120 0.000000 9.272384 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5138 147.883780 E 150.508821 3.000000 3.072613 60 120 0.000000 3.072613 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5207 380.169185 E 383.159727 3.000000 1.776241 5 120 0.000000 1.776241 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5209 380.159727 E 383.144516 3.000000 0.125477 4 120 0.000000 0.125477 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5265 317.900081 E 320.886003 3.000000 0.088538 5 120 0.000000 0.088538 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_close_file 5371 0.996541 E 1.988580 3.000000 0.014879 1 120 0.000000 0.014879 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S bio_lazy_free 5373 0.971337 E 2.003459 3.000000 0.025204 2 120 0.000000 0.025204 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5402 391.629910 E 394.593552 3.000000 0.036358 1 120 0.000000 0.036358 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5426 321.885108 E 324.879367 3.000000 0.005741 1 120 0.000000 0.005741 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5459 331.501159 E 334.467439 3.000000 1.138122 31 120 0.000000 1.138122 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 5471 2878.507045 E 2881.480713 3.000000 17.131175 37 120 0.000000 17.131175 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S bash 5535 0.374091 E 2.004330 3.000000 1.369761 2 120 0.000000 1.369761 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5564 1.297811 E 3.915473 3.000000 0.382338 1 120 0.000000 0.382338 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5598 1096.827304 E 1099.827304 3.000000 67.403138 16 120 0.000000 67.403138 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5664 1810.667125 E 1813.659738 3.000000 48.028793 19 120 0.000000 48.028793 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5613 1154.546552 E 1157.489793 3.000000 50.490838 17 120 0.000000 50.490838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5688 1886.290395 E 1889.290395 3.000000 33.583605 11 120 0.000000 33.583605 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5689 1886.727601 E 1889.716108 3.000000 34.006642 14 120 0.000000 34.006642 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5691 1887.153050 E 1890.141066 3.000000 34.415056 12 120 0.000000 34.415056 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5605 1128.699724 E 1130.733412 3.000000 59.322321 20 120 0.000000 59.322321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5674 1837.950616 E 1840.941193 3.000000 34.976674 14 120 0.000000 34.976674 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5676 1842.845926 E 1842.887818 3.000000 39.859633 14 120 0.000000 39.859633 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5645 1691.475316 E 1694.467524 3.000000 28.433086 12 120 0.000000 28.433086 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5646 1692.040496 E 1695.034677 3.000000 28.990755 9 120 0.000000 28.990755 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5639 1491.853459 E 1492.774908 3.000000 56.154692 21 120 0.000000 56.154692 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5706 1914.066082 E 1916.114488 3.000000 31.948839 9 120 0.000000 31.948839 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5708 1917.130715 E 1920.121651 3.000000 35.002311 12 120 0.000000 35.002311 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5626 1181.663383 E 1181.681283 3.000000 50.832084 14 120 0.000000 50.832084 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5655 1726.481090 E 1729.473436 3.000000 36.998391 11 120 0.000000 36.998391 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5717 1958.888518 E 1961.882843 3.000000 34.652408 11 120 0.000000 34.652408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5724 1963.859694 E 1966.846384 3.000000 63.747694 20 120 0.000000 63.747694 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S python3 5729 2142.968478 E 2145.953667 3.000000 0.121147 5 120 0.000000 0.121147 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 5820 2261.003741 E 2262.892048 3.000000 109.730455 8 120 0.000000 109.730455 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n>R python3 5965 2409.412629 E 2409.412865 3.000000 91.873085 0 120 0.000000 91.873085 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#1, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 114213\\n .nr_uninterruptible : 53\\n .next_balance : 4295.060226\\n .curr->pid : 0\\n .clock : 393107.302448\\n .clock_task : 393107.302448\\n .avg_idle : 999854\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[1]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2904.964722\\n .avg_vruntime : 2904.964722\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 156\\n .runnable_avg : 78\\n .util_avg : 78\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 156\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.644953\\n .se->vruntime : 7990.275993\\n .se->sum_exec_runtime : 2908.567763\\n .se->load.weight : 329302\\n .se->avg.load_avg : 48\\n .se->avg.util_avg : 78\\n .se->avg.runnable_avg : 78\\n\\ncfs_rq[1]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7990.275993\\n .avg_vruntime : 7990.275993\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 48\\n .runnable_avg : 78\\n .util_avg : 78\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 48\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.644953\\n .se->vruntime : 21019.344867\\n .se->sum_exec_runtime : 3135.696375\\n .se->load.weight : 263803\\n .se->avg.load_avg : 39\\n .se->avg.util_avg : 78\\n .se->avg.runnable_avg : 78\\n\\ncfs_rq[1]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2889.038549\\n .avg_vruntime : 2889.038549\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393075.466508\\n .se->vruntime : 66754.752066\\n .se->sum_exec_runtime : 3427.594415\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 554.030490\\n .avg_vruntime : 554.030490\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.221460\\n .se->vruntime : 66754.780889\\n .se->sum_exec_runtime : 556.405676\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/systemd-oomd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10.612623\\n .avg_vruntime : 10.612623\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392727.506596\\n .se->vruntime : 66746.558300\\n .se->sum_exec_runtime : 11.661199\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 29.774085\\n .avg_vruntime : 29.774085\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.068357\\n .se->vruntime : 66752.731098\\n .se->sum_exec_runtime : 32.012279\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 66754.780889\\n .avg_vruntime : 66754.780889\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.221460\\n .se->vruntime : 99399.973904\\n .se->sum_exec_runtime : 15895.246836\\n .se->load.weight : 524288\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 21019.344867\\n .avg_vruntime : 21019.344867\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 39\\n .runnable_avg : 78\\n .util_avg : 78\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 39\\n .tg_load_avg : 988\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.644953\\n .se->vruntime : 99397.343056\\n .se->sum_exec_runtime : 8314.741484\\n .se->load.weight : 162798\\n .se->avg.load_avg : 24\\n .se->avg.util_avg : 78\\n .se->avg.runnable_avg : 78\\n\\ncfs_rq[1]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 99399.990782\\n .avg_vruntime : 99399.990782\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 25\\n .runnable_avg : 79\\n .util_avg : 79\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[1]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[1]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n I rcu_preempt 17 99399.990782 E 99402.973904 3.000000 448.282523 12571 120 0.000000 448.282523 0.000000 0.000000 0 0 /\\n S cpuhp/1 21 7932.094818 E 7935.015583 3.000000 0.356355 26 120 0.000000 0.356355 0.000000 0.000000 0 0 /\\n S idle_inject/1 22 -1.046696 E 0.298424 0.750000 0.006020 3 49 0.000000 0.006020 0.000000 0.000000 0 0 /\\n S migration/1 23 0.056269 E 0.693236 0.750000 168.733936 144 0 0.000000 168.733936 0.000000 0.000000 0 0 /\\n S ksoftirqd/1 24 99378.227318 E 99381.224792 3.000000 26.449480 639 120 0.000000 26.449480 0.000000 0.000000 0 0 /\\n I kworker/1:0H 26 21.947051 E 21.981566 3.000000 0.017963 4 100 0.000000 0.017963 0.000000 0.000000 0 0 /\\n Ikworker/R-write 70 -1.034874 E -1.000265 3.000000 0.000849 2 100 0.000000 0.000849 0.000000 0.000000 0 0 /\\n S kcompactd0 71 99392.630447 E 99395.583237 3.000000 39.723385 781 120 0.000000 39.723385 0.000000 0.000000 0 0 /\\n S ksmd 72 -1.034874 E 8.135275 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/9-acpi 79 0.888458 E 2.110113 3.000000 25.161109 85 49 0.000000 25.161109 0.000000 0.000000 0 0 /\\n I kworker/1:1 89 99394.624322 E 99397.582597 3.000000 49.770377 1020 120 0.000000 49.770377 0.000000 0.000000 0 0 /\\n I kworker/1:1H 185 68118.228461 E 68118.263016 3.000000 3.985873 361 100 0.000000 3.985873 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 221 392.789305 E 392.823904 3.000000 0.005027 2 100 0.000000 0.005027 0.000000 0.000000 0 0 /\\n Ikworker/R-crypt 531 2507.555715 E 2507.590316 3.000000 0.005940 2 100 0.000000 0.005940 0.000000 0.000000 0 0 /\\n Sirq/194-iwlwifi 536 3740.895044 E 3743.891071 3.000000 3.564647 19 49 0.000000 3.564647 0.000000 0.000000 0 0 /\\n S systemd-oomd 660 10.612623 E 11.352128 3.000000 513.192437 568 120 0.000000 513.192437 0.000000 0.000000 0 0 /system.slice/systemd-oomd.service\\n S gmain 910 0.472046 E 3.459363 3.000000 0.047699 2 120 0.000000 0.047699 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S gmain 923 3.433860 E 6.421449 3.000000 0.067212 2 120 0.000000 0.067212 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S gdbus 924 7.269924 E 9.126327 3.000000 20.415944 94 120 0.000000 20.415944 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 2920 249.457236 E 252.377785 3.000000 66.288564 191 120 0.000000 66.288564 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2924 248.955894 E 251.818007 3.000000 91.527058 125 120 0.000000 91.527058 0.000000 0.000000 0 0 /system.slice/snapd.service\\n Sswitcheroo-cont 836 7.518062 E 10.434047 3.000000 44.143872 152 120 0.000000 44.143872 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 856 2.227776 E 5.225721 3.000000 94.523149 368 120 0.000000 94.523149 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 950 554.030490 E 557.001667 3.000000 362.610146 4367 120 0.000000 362.610146 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S in:imklog 955 27.842022 E 30.802978 3.000000 11.743761 119 120 0.000000 11.743761 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S rs:main Q:Reg 956 29.774085 E 32.746770 3.000000 114.013264 2520 120 0.000000 114.013264 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n I kworker/1:3 971 67490.494884 E 67493.491180 3.000000 86.722041 896 120 0.000000 86.722041 0.000000 0.000000 0 0 /\\n S boltd 1085 53.530464 E 56.447824 3.000000 203.866525 1065 120 0.000000 203.866525 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S pool-spawner 1106 14.206991 E 17.144135 3.000000 0.125154 3 120 0.000000 0.125154 0.000000 0.000000 0 0 /system.slice/upower.service\\n S gmain 1107 14.144135 E 17.122581 3.000000 0.021554 1 120 0.000000 0.021554 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1118 0.488564 E 2.489338 3.000000 0.204262 22 120 0.000000 0.204262 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S cupsd 1439 4.468166 E 6.566988 3.000000 22.666250 96 120 0.000000 22.666250 0.000000 0.000000 0 0 /system.slice/cups.service\\n S containerd 1477 297.968262 E 300.180796 3.000000 106.772942 2835 120 0.000000 106.772942 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdm3 1469 28.866371 E 31.777617 3.000000 29.629979 80 120 0.000000 29.629979 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S systemd 1499 140.347026 E 140.388047 3.000000 1381.353523 583 120 0.000000 1381.353523 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pipewire 1512 16.254098 E 16.510392 3.000000 32.093335 224 109 0.000000 32.093335 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1527 11.267137 E 14.210616 3.000000 0.188517 6 120 0.000000 0.188517 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1541 11.066776 E 14.063472 3.000000 0.112549 13 79 0.000000 0.112549 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1551 11.210616 E 14.180555 3.000000 0.056827 2 120 0.000000 0.056827 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1553 14.775624 E 17.722860 3.000000 0.661282 10 120 0.000000 0.661282 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1526 0.567104 E 2.363017 3.000000 0.680927 15 120 0.000000 0.680927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgnome-session-b 1546 4026.427161 E 4028.816499 3.000000 72.220451 386 120 0.000000 72.220451 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1555 11.411258 E 14.381068 3.000000 0.030190 1 120 0.000000 0.030190 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1559 11.464077 E 14.455527 3.000000 0.052819 2 120 0.000000 0.052819 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dconf worker 1602 241.182424 E 244.164119 3.000000 1.813576 72 120 0.000000 1.813576 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S KMS thread 1618 4040.643096 E 4043.470042 3.000000 312.191032 825 79 0.000000 312.191032 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-s:disk$0 3004 8.656514 E 213.116341 3.000000 0.090177 1 139 0.000000 0.090177 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3014 167.316606 E 170.276345 3.000000 71.365629 133 120 0.000000 71.365629 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1670 304.900140 E 305.802357 3.000000 107.084760 2032 120 0.000000 107.084760 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1672 144.769731 E 147.755909 3.000000 0.723957 32 120 0.000000 0.723957 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2526 305.308381 E 307.900140 3.000000 3.053644 65 120 0.000000 3.053644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2527 290.625017 E 293.618099 3.000000 99.602375 2905 120 0.000000 99.602375 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2528 329.056485 E 332.025261 3.000000 109.946964 3261 120 0.000000 109.946964 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2422 236.246820 E 239.032989 3.000000 27.504299 105 120 0.000000 27.504299 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2814 0.304479 E 2.637087 3.000000 0.714735 5 120 0.000000 0.714735 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3024 60.304780 E 63.271147 3.000000 0.033633 1 120 0.000000 0.033633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:gdrv0 3269 566.947492 E 569.942158 3.000000 0.048510 3 120 0.000000 0.048510 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3038 563.666293 E 566.641667 3.000000 4.306399 54 120 0.000000 4.306399 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3081 645.782212 E 648.340009 3.000000 0.896962 8 120 0.000000 0.896962 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3085 646.371136 E 648.782212 3.000000 1.123443 8 120 0.000000 1.123443 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-wacom 3091 644.537177 E 647.284944 3.000000 366.045403 439 120 0.000000 366.045403 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3118 160.094256 E 163.069340 3.000000 0.024916 1 120 0.000000 0.024916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-color 3095 4040.852590 E 4043.643096 3.000000 129.064970 56 120 0.000000 129.064970 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-keyboard 3100 648.247208 E 651.166836 3.000000 121.441087 43 120 0.000000 121.441087 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3123 160.645856 E 163.586872 3.000000 0.058984 1 120 0.000000 0.058984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-smartcard 3119 563.386800 E 566.368384 3.000000 7.380501 47 120 0.000000 7.380501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3141 163.322124 E 166.295023 3.000000 0.027101 1 120 0.000000 0.027101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3152 563.387981 E 566.317884 3.000000 5.186420 57 120 0.000000 5.186420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-datetime 3129 563.405186 E 566.383009 3.000000 11.094354 49 120 0.000000 11.094354 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3201 553.536426 E 556.465699 3.000000 0.162455 3 120 0.000000 0.162455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3219 184.113084 E 187.101602 3.000000 0.087152 2 120 0.000000 0.087152 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3292 378.083610 E 380.401752 3.000000 0.681858 1 120 0.000000 0.681858 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3342 4042.206196 E 4044.992366 3.000000 1.492101 12 120 0.000000 1.492101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3345 634.080030 E 637.037078 3.000000 79.580450 171 120 0.000000 79.580450 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-:disk$0 3376 606.974571 E 811.460271 3.000000 0.041875 2 139 0.000000 0.041875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x:gdrv0 3383 611.246200 E 614.198837 3.000000 0.047363 1 120 0.000000 0.047363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3382 611.727160 E 614.717547 3.000000 0.569298 17 120 0.000000 0.569298 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S sshd 3437 7.898835 E 10.142566 3.000000 77.928271 33 120 0.000000 77.928271 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S systemd 3449 104.615801 E 107.615801 3.000000 642.546970 421 120 0.000000 642.546970 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S pipewire-pulse 3475 5.257457 E 8.249472 3.000000 16.156993 25 120 0.000000 16.156993 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/1:0 5020 99311.660408 E 99314.635408 3.000000 0.833825 16 120 0.000000 0.833825 0.000000 0.000000 0 0 /\\n S docker 5111 76.881186 E 79.675463 3.000000 2.727325 5 120 0.000000 2.727325 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5208 326.829238 E 329.826339 3.000000 0.481812 79 120 0.000000 0.481812 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5213 312.682584 E 315.605437 3.000000 0.185163 4 120 0.000000 0.185163 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5244 293.714388 E 296.674780 3.000000 1.356377 26 120 0.000000 1.356377 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5528 290.121910 E 293.092020 3.000000 0.588842 12 120 0.000000 0.588842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5600 849.366916 E 852.353840 3.000000 39.919317 22 120 0.000000 39.919317 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5665 1661.043325 E 1661.083812 3.000000 55.912313 17 120 0.000000 55.912313 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5616 882.220441 E 885.175429 3.000000 29.865267 12 120 0.000000 29.865267 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5618 881.421942 E 884.354331 3.000000 29.053625 11 120 0.000000 29.053625 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5687 1785.074279 E 1788.064636 3.000000 41.826708 13 120 0.000000 41.826708 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5572 2887.762615 E 2890.130610 3.000000 3014.384838 375 120 0.000000 3014.384838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5573 2888.413203 E 2890.762615 3.000000 2997.817014 484 120 0.000000 2997.817014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5697 1797.414029 E 1798.448640 3.000000 30.959422 9 120 0.000000 30.959422 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5700 1798.495212 E 1801.486113 3.000000 32.018896 11 120 0.000000 32.018896 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5633 1752.220599 E 1755.211488 3.000000 57.584088 17 120 0.000000 57.584088 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5576 2889.038549 E 2891.413203 3.000000 2621.036613 383 120 0.000000 2621.036613 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5715 1835.502622 E 1838.493962 3.000000 42.959724 13 120 0.000000 42.959724 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5620 102.625658 E 105.242092 3.000000 0.383566 1 120 0.000000 0.383566 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 5817 2898.779232 E 2900.729455 3.000000 110.719986 5 120 0.000000 110.719986 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 5964 2904.964722 E 2907.956378 3.000000 0.274732 2 120 0.000000 0.274732 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#2, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 141217\\n .nr_uninterruptible : -223\\n .next_balance : 4295.060221\\n .curr->pid : 0\\n .clock : 393102.257528\\n .clock_task : 393102.257528\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[2]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1699.516330\\n .avg_vruntime : 1699.516330\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 173\\n .runnable_avg : 93\\n .util_avg : 93\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 173\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.356916\\n .se->vruntime : 6448.598627\\n .se->sum_exec_runtime : 1705.925623\\n .se->load.weight : 331299\\n .se->avg.load_avg : 54\\n .se->avg.util_avg : 93\\n .se->avg.runnable_avg : 93\\n\\ncfs_rq[2]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6448.598627\\n .avg_vruntime : 6448.598627\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 54\\n .runnable_avg : 93\\n .util_avg : 93\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 54\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.356916\\n .se->vruntime : 12415.064626\\n .se->sum_exec_runtime : 1977.386696\\n .se->load.weight : 388227\\n .se->avg.load_avg : 64\\n .se->avg.util_avg : 93\\n .se->avg.runnable_avg : 93\\n\\ncfs_rq[2]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 494.262613\\n .avg_vruntime : 494.262613\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.113355\\n .se->vruntime : 74596.340256\\n .se->sum_exec_runtime : 496.849646\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 266.762867\\n .avg_vruntime : 266.762867\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393066.531683\\n .se->vruntime : 74596.283557\\n .se->sum_exec_runtime : 280.765418\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 74596.340256\\n .avg_vruntime : 74596.340256\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.113355\\n .se->vruntime : 104848.731983\\n .se->sum_exec_runtime : 18892.062600\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12415.064626\\n .avg_vruntime : 12415.064626\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 64\\n .runnable_avg : 93\\n .util_avg : 93\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 64\\n .tg_load_avg : 1004\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.356916\\n .se->vruntime : 104848.162109\\n .se->sum_exec_runtime : 3697.241780\\n .se->load.weight : 361016\\n .se->avg.load_avg : 59\\n .se->avg.util_avg : 93\\n .se->avg.runnable_avg : 93\\n\\ncfs_rq[2]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 104848.731983\\n .avg_vruntime : 104848.731983\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 59\\n .runnable_avg : 92\\n .util_avg : 91\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[2]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[2]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S kthreadd 2 70080.832175 E 70083.804906 3.000000 6.722786 200 120 0.000000 6.722786 0.000000 0.000000 0 0 /\\n S cpuhp/2 27 10232.512266 E 10235.476962 3.000000 0.310145 26 120 0.000000 0.310145 0.000000 0.000000 0 0 /\\n S idle_inject/2 28 -1.048574 E 0.451426 1.500000 0.000962 3 49 0.000000 0.000962 0.000000 0.000000 0 0 /\\n S migration/2 29 0.100700 E 0.850203 0.750000 168.992254 161 0 0.000000 168.992254 0.000000 0.000000 0 0 /\\n S ksoftirqd/2 30 104821.550878 E 104824.548624 3.000000 23.406848 897 120 0.000000 23.406848 0.000000 0.000000 0 0 /\\n I kworker/2:0 31 62457.803260 E 62460.735327 3.000000 8.218140 34 120 0.000000 8.218140 0.000000 0.000000 0 0 /\\n I kworker/2:0H 32 103.304456 E 103.338997 3.000000 0.014834 5 100 0.000000 0.014834 0.000000 0.000000 0 0 /\\n S oom_reaper 69 -1.013776 E 1.986224 3.000000 0.000042 2 120 0.000000 0.000042 0.000000 0.000000 0 0 /\\n I kworker/2:1 80 70398.312521 E 70401.309035 3.000000 309.899117 4609 120 0.000000 309.899117 0.000000 0.000000 0 0 /\\n I kworker/2:1H 195 103835.246054 E 103835.280598 3.000000 3.825501 246 100 0.000000 3.825501 0.000000 0.000000 0 0 /\\n I kworker/2:2 217 62482.814010 E 62485.785163 3.000000 119.011817 1706 120 0.000000 119.011817 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 218 470.398502 E 470.433104 3.000000 0.005099 2 100 0.000000 0.005099 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 219 470.401038 E 470.435644 3.000000 0.002850 2 100 0.000000 0.002850 0.000000 0.000000 0 0 /\\n I kworker/2:3 223 104839.847034 E 104842.816848 3.000000 55.969995 614 120 0.000000 55.969995 0.000000 0.000000 0 0 /\\n I kworker/2:4 349 62418.902108 E 62421.893366 3.000000 2.337037 7 120 0.000000 2.337037 0.000000 0.000000 0 0 /\\n I kworker/u16:5 423 104710.863763 E 104713.857348 3.000000 305.964990 5932 120 0.000000 305.964990 0.000000 0.000000 0 0 /\\n I kworker/u16:6 449 70345.909251 E 70348.888907 3.000000 21.403819 413 120 0.000000 21.403819 0.000000 0.000000 0 0 /\\n S irq/191-mei_me 520 2425.538335 E 2428.535129 3.000000 1.457719 39 49 0.000000 1.457719 0.000000 0.000000 0 0 /\\n Sirq/195-iwlwifi 538 3925.397830 E 3928.395543 3.000000 3002.292555 15134 49 0.000000 3002.292555 0.000000 0.000000 0 0 /\\n S dbus-daemon 796 404.558628 E 407.343972 3.000000 3188.252220 5900 120 0.000000 3188.252220 0.000000 0.000000 0 0 /system.slice/dbus.service\\n S snapd 854 181.532524 E 181.847161 3.000000 74.669991 322 120 0.000000 74.669991 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1046 192.710502 E 195.658241 3.000000 208.756430 741 120 0.000000 208.756430 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 951 494.262613 E 497.233562 3.000000 1190.287567 13598 120 0.000000 1190.287567 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 844 9.292970 E 12.244309 3.000000 34.677213 354 120 0.000000 34.677213 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S pool-spawner 876 1.965147 E 4.922053 3.000000 0.074621 2 120 0.000000 0.074621 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gmain 935 122.707237 E 125.392725 3.000000 19.534449 99 120 0.000000 19.534449 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n Ikworker/R-ipmi- 913 6961.772658 E 6961.807253 3.000000 0.015936 2 100 0.000000 0.015936 0.000000 0.000000 0 0 /\\n S rsyslogd 919 33.759388 E 36.497758 3.000000 30.430189 90 120 0.000000 30.430189 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S pool-spawner 1100 6.890317 E 9.858408 3.000000 0.106301 5 120 0.000000 0.106301 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1116 2.347087 E 5.294553 3.000000 0.174658 34 120 0.000000 0.174658 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sh 1121 12.505172 E 15.381318 3.000000 5.274342 15 120 0.000000 5.274342 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1458 266.762867 E 269.520576 3.000000 133.499147 4208 120 0.000000 133.499147 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1461 0.881565 E 2.097726 3.000000 0.020709 1 120 0.000000 0.020709 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sgdm-session-wor 1492 0.021664 E 2.378098 3.000000 7.685172 93 120 0.000000 7.685172 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 1500 0.906613 E 1.951424 3.000000 0.141963 1 120 0.000000 0.141963 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pw-data-loop 1536 3.469723 E 6.464575 3.000000 0.024781 3 79 0.000000 0.024781 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sgdm-wayland-ses 1517 0.890985 E 3.860521 3.000000 4.316422 18 120 0.000000 4.316422 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1565 410.548304 E 413.512933 3.000000 0.246882 6 120 0.000000 0.246882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1603 982.670086 E 985.660534 3.000000 8.083763 84 120 0.000000 8.083763 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1607 982.859239 E 985.854252 3.000000 104.953855 79 120 0.000000 104.953855 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1608 982.673549 E 985.667581 3.000000 9.212166 106 120 0.000000 9.212166 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shel:sh0 3005 31.707816 E 34.581346 3.000000 0.126470 1 120 0.000000 0.126470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3012 33.382173 E 238.030347 3.000000 0.007470 1 139 0.000000 0.007470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3013 33.387365 E 36.382173 3.000000 0.005192 1 120 0.000000 0.005192 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3276 121.709419 E 124.678683 3.000000 0.030736 1 120 0.000000 0.030736 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1666 392.441719 E 395.424069 3.000000 85.574576 1861 120 0.000000 85.574576 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2691 406.464354 E 409.452757 3.000000 188.718072 4181 120 0.000000 188.718072 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2721 3.789525 E 6.746778 3.000000 3.386001 226 120 0.000000 3.386001 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2722 1.991100 E 4.985710 3.000000 0.640714 24 120 0.000000 0.640714 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Ikworker/R-tls-s 2863 22769.817423 E 22769.852008 3.000000 0.015449 2 100 0.000000 0.015449 0.000000 0.000000 0 0 /\\n S dconf worker 3025 46.149564 E 49.142692 3.000000 0.447278 11 120 0.000000 0.447278 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S colord 3035 21.580781 E 24.092855 3.000000 92.765102 187 120 0.000000 92.765102 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gmain 3041 0.737224 E 2.242460 3.000000 0.155686 2 120 0.000000 0.155686 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gjs 3078 487.170160 E 488.823207 3.000000 59.101805 83 120 0.000000 59.101805 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sharing 3080 982.295052 E 985.260841 3.000000 99.767366 722 120 0.000000 99.767366 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3107 982.274099 E 985.154193 3.000000 173.208263 571 120 0.000000 173.208263 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3130 407.533407 E 410.525336 3.000000 0.766318 14 120 0.000000 0.766318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3187 98.848084 E 101.823175 3.000000 0.095370 2 120 0.000000 0.095370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-media-keys 3146 953.008761 E 955.920109 3.000000 135.098877 137 120 0.000000 135.098877 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3202 99.517382 E 102.480455 3.000000 0.036927 1 120 0.000000 0.036927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3344 968.712808 E 971.613739 3.000000 1.076193 11 120 0.000000 1.076193 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3354 424.550236 E 427.529183 3.000000 0.083867 3 120 0.000000 0.083867 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3369 435.646524 E 438.628102 3.000000 0.253340 7 120 0.000000 0.253340 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3372 951.549863 E 954.493145 3.000000 1.167382 16 120 0.000000 1.167382 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3379 436.877871 E 439.851438 3.000000 0.116796 2 120 0.000000 0.116796 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Ssnapd-desktop-i 3468 39.501067 E 42.224366 3.000000 18.969394 43 120 0.000000 18.969394 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/2:5 4401 62457.735327 E 62460.617124 3.000000 6.696486 19 120 0.000000 6.696486 0.000000 0.000000 0 0 /\\n I kworker/2:6 4402 62417.302767 E 62420.302240 3.000000 0.074093 2 120 0.000000 0.074093 0.000000 0.000000 0 0 /\\n Sgnome-keyring-d 4742 1.991437 E 4.850036 3.000000 7.097364 24 120 0.000000 7.097364 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5101 186.762125 E 189.758840 3.000000 5.800217 128 120 0.000000 5.800217 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5107 171.690383 E 174.331107 3.000000 0.500947 6 120 0.000000 0.500947 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5124 193.061150 E 195.671496 3.000000 8.594148 49 120 0.000000 8.594148 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5126 193.996527 E 196.991799 3.000000 3.299204 35 120 0.000000 3.299204 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5236 257.947795 E 260.913958 3.000000 0.854425 194 120 0.000000 0.854425 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5269 242.628672 E 245.294223 3.000000 1.525218 21 120 0.000000 1.525218 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S postgres 5289 42.804248 E 45.213043 3.000000 55.944731 112 120 0.000000 55.944731 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S docker-proxy 5404 390.436303 E 393.428902 3.000000 0.054038 2 120 0.000000 0.054038 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5408 390.450618 E 393.442277 3.000000 0.052751 3 120 0.000000 0.052751 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5539 256.857973 E 259.854978 3.000000 0.509160 10 120 0.000000 0.509160 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5536 3240.175780 E 3243.052665 3.000000 294.174585 82 120 0.000000 294.174585 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5565 19.562267 E 22.179766 3.000000 0.382501 1 120 0.000000 0.382501 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5599 1243.917125 E 1246.899112 3.000000 28.626410 23 120 0.000000 28.626410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5602 1243.759704 E 1246.752160 3.000000 26.340665 20 120 0.000000 26.340665 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5603 1244.273695 E 1246.859634 3.000000 28.925019 24 120 0.000000 28.925019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5667 2030.812810 E 2033.802093 3.000000 56.273299 24 120 0.000000 56.273299 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5615 1308.530001 E 1309.304684 3.000000 24.830628 15 120 0.000000 24.830628 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5643 1834.821469 E 1835.836851 3.000000 61.193099 20 120 0.000000 61.193099 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5634 1604.905533 E 1607.825141 3.000000 53.244457 20 120 0.000000 53.244457 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5704 2161.079209 E 2164.073284 3.000000 28.505268 11 120 0.000000 28.505268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5705 2161.257548 E 2162.782519 3.000000 28.668075 12 120 0.000000 28.668075 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5710 2162.173294 E 2164.602104 3.000000 29.547294 16 120 0.000000 29.547294 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5630 1334.192609 E 1335.792534 3.000000 36.310197 11 120 0.000000 36.310197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5680 2127.508196 E 2130.499659 3.000000 35.630276 19 120 0.000000 35.630276 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5685 2131.985144 E 2134.985144 3.000000 40.053783 21 120 0.000000 40.053783 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5656 1932.156392 E 1935.156392 3.000000 101.676739 50 120 0.000000 101.676739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S python3 5730 1538.282953 E 1541.234756 3.000000 6.853157 215 120 0.000000 6.853157 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 5819 1662.977050 E 1664.882381 3.000000 108.550024 18 120 0.000000 108.550024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 5733 44.217168 E 47.160345 3.000000 6.031359 44 120 0.000000 6.031359 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S sudo 5963 1699.516330 E 1702.509878 3.000000 3.739744 2 120 0.000000 3.739744 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#3, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 130900\\n .nr_uninterruptible : 6\\n .next_balance : 4295.060210\\n .curr->pid : 0\\n .clock : 393096.264990\\n .clock_task : 393096.264990\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1699.806436\\n .avg_vruntime : 1699.806436\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 35\\n .runnable_avg : 35\\n .util_avg : 35\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 35\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393011.521659\\n .se->vruntime : 7038.157193\\n .se->sum_exec_runtime : 1702.766699\\n .se->load.weight : 87659\\n .se->avg.load_avg : 2\\n .se->avg.util_avg : 35\\n .se->avg.runnable_avg : 35\\n\\ncfs_rq[3]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7038.157193\\n .avg_vruntime : 7038.157193\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 2\\n .runnable_avg : 35\\n .util_avg : 35\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 2\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393011.521659\\n .se->vruntime : 13069.927444\\n .se->sum_exec_runtime : 2296.845876\\n .se->load.weight : 42167\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 35\\n .se->avg.runnable_avg : 35\\n\\ncfs_rq[3]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2642.808822\\n .avg_vruntime : 2642.808822\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393034.011162\\n .se->vruntime : 72504.209380\\n .se->sum_exec_runtime : 3007.733650\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 886.199030\\n .avg_vruntime : 886.199030\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392977.777256\\n .se->vruntime : 72503.439612\\n .se->sum_exec_runtime : 887.361604\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/systemd-logind.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 122.764829\\n .avg_vruntime : 122.764829\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393014.683988\\n .se->vruntime : 72503.548834\\n .se->sum_exec_runtime : 123.951698\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69.947779\\n .avg_vruntime : 69.947779\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393044.434857\\n .se->vruntime : 72505.000490\\n .se->sum_exec_runtime : 71.246555\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 72505.000490\\n .avg_vruntime : 72505.000490\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393044.434857\\n .se->vruntime : 92307.113646\\n .se->sum_exec_runtime : 16502.209474\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13069.927444\\n .avg_vruntime : 13069.927444\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 35\\n .util_avg : 35\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1004\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393011.521659\\n .se->vruntime : 92305.553087\\n .se->sum_exec_runtime : 3794.270888\\n .se->load.weight : 17311\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 35\\n .se->avg.runnable_avg : 35\\n\\ncfs_rq[3]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 92307.113646\\n .avg_vruntime : 92307.113646\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 36\\n .util_avg : 36\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[3]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[3]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/3 33 7886.138537 E 7889.102720 3.000000 0.348500 26 120 0.000000 0.348500 0.000000 0.000000 0 0 /\\n S idle_inject/3 34 -1.048518 E 0.451482 1.500000 0.001036 3 49 0.000000 0.001036 0.000000 0.000000 0 0 /\\n S migration/3 35 0.198781 E 0.948241 0.750000 169.158475 162 0 0.000000 169.158475 0.000000 0.000000 0 0 /\\n S ksoftirqd/3 36 92011.077067 E 92014.068854 3.000000 24.617549 971 120 0.000000 24.617549 0.000000 0.000000 0 0 /\\n I kworker/3:0 37 92304.729640 E 92307.656203 3.000000 85.975435 730 120 0.000000 85.975435 0.000000 0.000000 0 0 /\\n I kworker/3:0H 38 6.472894 E 6.507461 3.000000 0.011946 4 100 0.000000 0.011946 0.000000 0.000000 0 0 /\\n Ikworker/R-inet_ 64 -1.038883 E -1.004274 3.000000 0.009635 2 100 0.000000 0.009635 0.000000 0.000000 0 0 /\\n S kauditd 65 46475.465473 E 46478.440242 3.000000 2.812791 141 120 0.000000 2.812791 0.000000 0.000000 0 0 /\\n S khungtaskd 67 59242.973736 E 59245.502616 3.000000 1.045812 5 120 0.000000 1.045812 0.000000 0.000000 0 0 /\\n I kworker/u16:2 68 56980.817664 E 56983.774705 3.000000 96.571025 3119 120 0.000000 96.571025 0.000000 0.000000 0 0 /\\n I kworker/3:1 73 56564.399450 E 56567.067307 3.000000 140.577357 1080 120 0.000000 140.577357 0.000000 0.000000 0 0 /\\n Ikworker/R-kinte 75 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-kbloc 76 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-blkcg 77 0.992084 E 0.957475 3.000000 0.000070 2 100 0.000000 0.000070 0.000000 0.000000 0 0 /\\n Ikworker/R-tpm_d 82 0.481367 E 0.446758 3.000000 0.000111 2 100 0.000000 0.000111 0.000000 0.000000 0 0 /\\n I kworker/R-md 84 0.480619 E 0.446010 3.000000 0.000748 2 100 0.000000 0.000748 0.000000 0.000000 0 0 /\\n Ikworker/R-edac- 86 0.479971 E 0.445362 3.000000 0.000648 2 100 0.000000 0.000648 0.000000 0.000000 0 0 /\\n S watchdogd 88 0.469682 E 2.529619 3.000000 0.000699 2 49 0.000000 0.000699 0.000000 0.000000 0 0 /\\n Ikworker/R-kthro 93 0.358457 E 0.323888 3.000000 0.021180 2 100 0.000000 0.021180 0.000000 0.000000 0 0 /\\n S irq/127-pciehp 94 0.342701 E 2.655906 3.000000 0.020513 2 49 0.000000 0.020513 0.000000 0.000000 0 0 /\\n I kworker/u17:0 114 59020.770974 E 59020.805494 3.000000 170.119960 4180 100 0.000000 170.119960 0.000000 0.000000 0 0 /\\n I kworker/3:1H 153 91907.967372 E 91908.001901 3.000000 23.328620 1616 100 0.000000 23.328620 0.000000 0.000000 0 0 /\\n I kworker/3:2 226 61986.510646 E 61989.509779 3.000000 40.706086 370 120 0.000000 40.706086 0.000000 0.000000 0 0 /\\n Sirq/192-iwlwifi 534 4059.665296 E 4062.645526 3.000000 1419.662569 11768 49 0.000000 1419.662569 0.000000 0.000000 0 0 /\\n Sirq/196-iwlwifi 539 3926.018591 E 3929.015940 3.000000 17.328437 95 49 0.000000 17.328437 0.000000 0.000000 0 0 /\\n I kworker/R-ttm 576 4266.892470 E 4266.927070 3.000000 0.005129 2 100 0.000000 0.005129 0.000000 0.000000 0 0 /\\n S gdbus 938 6.914745 E 9.332271 3.000000 25.658172 104 120 0.000000 25.658172 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S avahi-daemon 793 69.947779 E 72.156669 3.000000 520.077214 1738 120 0.000000 520.077214 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S cron 795 4.180098 E 7.085365 3.000000 5.303827 15 120 0.000000 5.303827 0.000000 0.000000 0 0 /system.slice/cron.service\\n Sgnome-remote-de 800 6.461804 E 9.080981 3.000000 30.145068 265 120 0.000000 30.145068 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 922 3.894639 E 6.842135 3.000000 0.090432 2 120 0.000000 0.090432 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 831 206.525041 E 209.519124 3.000000 30.118582 233 120 0.000000 30.118582 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 852 310.199492 E 310.516321 3.000000 174.131223 492 120 0.000000 174.131223 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 853 2.078318 E 5.068150 3.000000 0.396308 18 120 0.000000 0.396308 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 859 -1.009569 E 1.951424 3.000000 0.039007 1 120 0.000000 0.039007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S systemd-logind 842 122.764829 E 125.655926 3.000000 1414.429650 5387 120 0.000000 1414.429650 0.000000 0.000000 0 0 /system.slice/systemd-logind.service\\n S gdbus 888 16.413333 E 18.362122 3.000000 17.064715 94 120 0.000000 17.064715 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S NetworkManager 898 112.727469 E 115.670594 3.000000 892.587183 1508 120 0.000000 892.587183 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S sysbox-fs 1117 -1.009201 E 1.951424 3.000000 0.039375 1 120 0.000000 0.039375 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1476 345.111473 E 348.034063 3.000000 90.399371 3414 120 0.000000 90.399371 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1482 0.012894 E 2.894979 3.000000 0.583316 4 120 0.000000 0.583316 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gdbus 1496 0.233532 E 2.720526 3.000000 1.188965 22 120 0.000000 1.188965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S wireplumber 1515 9.144716 E 9.344452 3.000000 112.045348 651 109 0.000000 112.045348 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1528 7.387174 E 10.325290 3.000000 0.194691 7 120 0.000000 0.194691 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1538 7.325290 E 10.316534 3.000000 0.041734 2 120 0.000000 0.041734 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1518 2.669021 E 5.657668 3.000000 0.061989 3 120 0.000000 0.061989 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1568 8.156596 E 11.144147 3.000000 0.100728 3 120 0.000000 0.100728 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1561 8.265857 E 11.247889 3.000000 0.366731 9 120 0.000000 0.366731 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1599 718.298860 E 720.993996 3.000000 19.681002 118 120 0.000000 19.681002 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3008 5.879336 E 210.308511 3.000000 0.040484 1 139 0.000000 0.040484 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3009 5.885425 E 8.879336 3.000000 0.006089 1 120 0.000000 0.006089 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1681 0.987359 E 2.007769 3.000000 0.061217 2 120 0.000000 0.061217 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 2442 200.802238 E 203.083797 3.000000 2.686930 84 120 0.000000 2.686930 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2677 450.876485 E 452.877072 3.000000 2.701387 24 120 0.000000 2.701387 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 3726 259.475969 E 262.460947 3.000000 28.801533 50 120 0.000000 28.801533 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2723 0.432282 E 2.528786 3.000000 3.337825 71 120 0.000000 3.337825 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2727 0.657300 E 2.325290 3.000000 0.078513 3 120 0.000000 0.078513 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/3:3 2728 59963.684944 E 59966.680285 3.000000 40.128014 350 120 0.000000 40.128014 0.000000 0.000000 0 0 /\\n S Xwaylan:disk$0 3264 278.898908 E 483.348085 3.000000 0.083880 3 139 0.000000 0.083880 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sat-spi2-registr 3034 320.892867 E 323.863419 3.000000 9.827853 77 120 0.000000 9.827853 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3084 396.608166 E 398.928697 3.000000 1.378050 9 120 0.000000 1.378050 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3104 50.860674 E 53.826398 3.000000 0.155648 6 120 0.000000 0.155648 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3161 51.477948 E 54.430767 3.000000 0.086363 2 120 0.000000 0.086363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3165 265.319650 E 268.242694 3.000000 4.804589 50 120 0.000000 4.804589 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sound 3155 264.524415 E 267.507911 3.000000 10.096889 65 120 0.000000 10.096889 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3200 264.748433 E 267.666962 3.000000 4.545875 44 120 0.000000 4.545875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3173 52.876485 E 55.844305 3.000000 0.094693 4 120 0.000000 0.094693 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3195 53.525055 E 56.511106 3.000000 0.140273 3 120 0.000000 0.140273 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3212 262.457088 E 265.449831 3.000000 0.389984 12 120 0.000000 0.389984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-printer 3290 687.615620 E 690.465261 3.000000 187.874291 30 120 0.000000 187.874291 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3339 700.168791 E 703.029139 3.000000 0.936467 13 120 0.000000 0.936467 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3351 699.316593 E 701.734734 3.000000 3.194350 33 120 0.000000 3.194350 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3355 311.731393 E 314.671777 3.000000 0.146965 3 120 0.000000 0.146965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3356 408.298560 E 411.135610 3.000000 9.785534 67 120 0.000000 9.785534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-dconf 3360 312.231880 E 315.209559 3.000000 3.710779 6 120 0.000000 3.710779 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3365 311.671777 E 314.666437 3.000000 0.056426 2 120 0.000000 0.056426 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3368 312.703029 E 315.657097 3.000000 0.439195 10 120 0.000000 0.439195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3509 -1.026522 E 1.969433 3.000000 0.022054 3 120 0.000000 0.022054 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3511 3.665450 E 6.655609 3.000000 0.052600 3 120 0.000000 0.052600 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3551 9.844973 E 12.792466 3.000000 0.052507 1 120 0.000000 0.052507 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3599 197.020590 E 197.487604 3.000000 67.673866 80 120 0.000000 67.673866 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S sshd 3669 24.119215 E 26.352417 3.000000 60.985253 32 120 0.000000 60.985253 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n I kworker/3:4 4403 56560.146387 E 56563.133575 3.000000 0.175468 2 120 0.000000 0.175468 0.000000 0.000000 0 0 /\\n S pool-spawner 4748 11.609030 E 14.551046 3.000000 0.057984 1 120 0.000000 0.057984 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5100 224.686053 E 227.677039 3.000000 61.547451 14 120 0.000000 61.547451 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5110 268.721718 E 271.652332 3.000000 1.698855 16 120 0.000000 1.698855 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5127 268.080230 E 270.854937 3.000000 0.225293 1 120 0.000000 0.225293 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5237 325.360029 E 328.357053 3.000000 0.681974 21 120 0.000000 0.681974 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5262 307.365255 E 310.358223 3.000000 2.509248 7 120 0.000000 2.509248 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5263 336.088945 E 339.079904 3.000000 2.286725 426 120 0.000000 2.286725 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5393 441.075088 E 444.057442 3.000000 1.906891 4 120 0.000000 1.906891 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5396 441.032949 E 444.019394 3.000000 0.116762 6 120 0.000000 0.116762 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5397 441.007142 E 443.951633 3.000000 0.134457 6 120 0.000000 0.134457 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5455 329.155687 E 332.140177 3.000000 0.106899 6 120 0.000000 0.106899 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5666 1455.901773 E 1455.931322 3.000000 52.537643 16 120 0.000000 52.537643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5692 1542.872428 E 1545.867503 3.000000 39.486389 14 120 0.000000 39.486389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5607 675.005069 E 677.994134 3.000000 108.505409 56 120 0.000000 108.505409 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5675 1497.517568 E 1500.507764 3.000000 53.995739 18 120 0.000000 53.995739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5642 1261.164512 E 1264.157881 3.000000 21.195408 8 120 0.000000 21.195408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5701 1573.282016 E 1576.275123 3.000000 54.439900 15 120 0.000000 54.439900 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5575 2642.808822 E 2645.148276 3.000000 2837.405857 714 120 0.000000 2837.405857 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5631 796.046325 E 798.991768 3.000000 40.045155 23 120 0.000000 40.045155 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5681 1527.879182 E 1529.909057 3.000000 33.967325 14 120 0.000000 33.967325 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5684 1530.679057 E 1533.672041 3.000000 36.744957 12 120 0.000000 36.744957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5711 1596.022219 E 1599.010783 3.000000 26.922198 10 120 0.000000 26.922198 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5712 1598.317683 E 1601.311774 3.000000 27.952471 10 120 0.000000 27.952471 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5713 1598.100775 E 1601.093750 3.000000 28.977268 10 120 0.000000 28.977268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5716 1603.713181 E 1606.705277 3.000000 27.988249 8 120 0.000000 27.988249 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5648 1264.334911 E 1267.326576 3.000000 21.039304 8 120 0.000000 21.039304 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5649 1267.119289 E 1270.110336 3.000000 23.813972 11 120 0.000000 23.813972 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5652 1267.460598 E 1270.456344 3.000000 24.138886 11 120 0.000000 24.138886 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5718 1603.710384 E 1606.705277 3.000000 34.052954 13 120 0.000000 34.052954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5621 886.199030 E 889.074134 3.000000 3.905005 36 120 0.000000 3.905005 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 5624 877.264846 E 879.486096 3.000000 0.778750 3 120 0.000000 0.778750 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 5725 1699.806436 E 1702.782983 3.000000 917.607322 583 120 0.000000 917.607322 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 5728 1253.094404 E 1255.910197 3.000000 7.903658 284 120 0.000000 7.903658 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 5814 1383.831365 E 1386.831365 3.000000 100.491194 15 120 0.000000 100.491194 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 5732 886.034780 E 888.962267 3.000000 5.827845 49 120 0.000000 5.827845 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n\\ncpu#4, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 105495\\n .nr_uninterruptible : 187\\n .next_balance : 4295.060212\\n .curr->pid : 0\\n .clock : 393096.266690\\n .clock_task : 393096.266690\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[4]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 96.479506\\n .avg_vruntime : 96.479506\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392780.134418\\n .se->vruntime : 72340.211015\\n .se->sum_exec_runtime : 97.578408\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3122.676165\\n .avg_vruntime : 3122.676165\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393094.433376\\n .se->vruntime : 72363.491098\\n .se->sum_exec_runtime : 3490.771960\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 122.583099\\n .avg_vruntime : 122.583099\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 8\\n .runnable_avg : 8\\n .util_avg : 8\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 8\\n .tg_load_avg : 8\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393091.372829\\n .se->vruntime : 72362.688351\\n .se->sum_exec_runtime : 123.631675\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/accounts-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4.323638\\n .avg_vruntime : 4.323638\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.087482\\n .se->vruntime : 72353.889466\\n .se->sum_exec_runtime : 5.800746\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 277.637077\\n .avg_vruntime : 277.637077\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393066.862136\\n .se->vruntime : 72354.494923\\n .se->sum_exec_runtime : 308.088342\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 72363.491098\\n .avg_vruntime : 72363.491098\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 9\\n .util_avg : 9\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393094.433376\\n .se->vruntime : 97649.133169\\n .se->sum_exec_runtime : 15596.907238\\n .se->load.weight : 524288\\n .se->avg.load_avg : 5\\n .se->avg.util_avg : 9\\n .se->avg.runnable_avg : 9\\n\\ncfs_rq[4]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 199.894066\\n .avg_vruntime : 199.894066\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392734.754287\\n .se->vruntime : 97619.513861\\n .se->sum_exec_runtime : 203.671629\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 97649.133169\\n .avg_vruntime : 97649.133169\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 8\\n .runnable_avg : 9\\n .util_avg : 9\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[4]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[4]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S systemd 1 199.894066 E 202.615886 3.000000 3779.594954 4212 120 0.000000 3779.594954 0.000000 0.000000 0 0 /init.scope\\n S cpuhp/4 39 8611.189859 E 8614.138975 3.000000 0.358588 26 120 0.000000 0.358588 0.000000 0.000000 0 0 /\\n S idle_inject/4 40 -1.048576 E 1.201424 2.250000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S migration/4 41 1.176891 E 3.426891 2.250000 168.905912 157 0 0.000000 168.905912 0.000000 0.000000 0 0 /\\n S ksoftirqd/4 42 97590.580738 E 97593.576740 3.000000 19.055908 830 120 0.000000 19.055908 0.000000 0.000000 0 0 /\\n I kworker/4:0 43 61401.841050 E 61404.803367 3.000000 21.633006 342 120 0.000000 21.633006 0.000000 0.000000 0 0 /\\n I kworker/4:0H 44 132.163682 E 132.198197 3.000000 0.019668 4 100 0.000000 0.019668 0.000000 0.000000 0 0 /\\n I kworker/4:1 81 97632.963891 E 97635.871192 3.000000 160.737573 1592 120 0.000000 160.737573 0.000000 0.000000 0 0 /\\n Ikworker/R-ata_s 83 5.270300 E 5.304909 3.000000 0.000746 2 100 0.000000 0.000746 0.000000 0.000000 0 0 /\\n Ikworker/R-md_bi 85 5.270300 E 5.304909 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-devfr 87 5.273628 E 5.308237 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/128-pciehp 95 0.339759 E 2.659354 3.000000 0.006738 3 49 0.000000 0.006738 0.000000 0.000000 0 0 /\\n S hwrng 101 58931.261616 E 58933.909568 3.000000 28.701997 115 120 0.000000 28.701997 0.000000 0.000000 0 0 /\\n I kworker/4:1H 194 72635.715107 E 72635.749681 3.000000 8.188472 837 100 0.000000 8.188472 0.000000 0.000000 0 0 /\\n S systemd-udevd 351 621.779862 E 624.710209 3.000000 1118.035220 2337 120 0.000000 1118.035220 0.000000 0.000000 0 0 /system.slice/systemd-udevd.service\\n I kworker/u16:7 450 97603.357864 E 97606.212620 3.000000 170.237828 3017 120 0.000000 170.237828 0.000000 0.000000 0 0 /\\n I kworker/4:2 468 57914.251469 E 57917.233388 3.000000 0.155689 16 120 0.000000 0.155689 0.000000 0.000000 0 0 /\\n Ikworker/R-cfg80 514 3339.240577 E 3339.275140 3.000000 0.012808 2 100 0.000000 0.012808 0.000000 0.000000 0 0 /\\n Sirq/197-iwlwifi 540 3926.376252 E 3929.374115 3.000000 15.384867 53 49 0.000000 15.384867 0.000000 0.000000 0 0 /\\n Sirq/201-iwlwifi 544 3926.622118 E 3929.620867 3.000000 0.136252 5 49 0.000000 0.136252 0.000000 0.000000 0 0 /\\n I kworker/u17:3 785 97639.462812 E 97639.497109 3.000000 253.155041 6308 100 0.000000 253.155041 0.000000 0.000000 0 0 /\\n S pool-spawner 929 0.427240 E 3.421670 3.000000 0.182155 7 120 0.000000 0.182155 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gmain 930 4.323638 E 7.310059 3.000000 71.943570 779 120 0.000000 71.943570 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 918 4.224344 E 6.070337 3.000000 17.705503 95 120 0.000000 17.705503 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 1042 1.501824 E 4.479627 3.000000 0.055072 2 120 0.000000 0.055072 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S gdbus 1047 122.776037 E 125.593669 3.000000 194.042441 864 120 0.000000 194.042441 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 849 124.980146 E 127.976037 3.000000 327.764821 15683 120 0.000000 327.764821 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 925 123.595855 E 126.586312 3.000000 184.517409 557 120 0.000000 184.517409 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 838 328.342136 E 331.287501 3.000000 403.460051 5461 120 0.000000 403.460051 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gmain 1094 3.946236 E 6.930995 3.000000 0.050521 2 120 0.000000 0.050521 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gmain 1093 3.276503 E 6.269558 3.000000 0.066470 2 120 0.000000 0.066470 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1457 277.637077 E 280.579072 3.000000 71.291256 9872 120 0.000000 71.291256 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1474 276.266197 E 279.251240 3.000000 97.919106 4117 120 0.000000 97.919106 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1505 276.167391 E 278.431216 3.000000 171.997025 4757 120 0.000000 171.997025 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 5141 262.874316 E 265.861714 3.000000 21.962081 857 120 0.000000 21.962081 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1532 0.548481 E 3.506291 3.000000 0.195304 7 120 0.000000 0.195304 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1547 0.212741 E 3.208152 3.000000 0.019168 3 79 0.000000 0.019168 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1519 -1.009572 E 1.951424 3.000000 0.039004 1 120 0.000000 0.039004 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1535 10.910098 E 14.575757 3.000000 65.949337 133 121 0.000000 65.949337 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S dbus-daemon 1537 987.024860 E 989.861226 3.000000 127.794876 742 120 0.000000 127.794876 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1563 0.636104 E 3.602310 3.000000 0.327847 4 120 0.000000 0.327847 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1598 986.861226 E 989.816013 3.000000 0.444583 12 120 0.000000 0.444583 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1605 1014.248669 E 1017.245328 3.000000 9.157520 84 120 0.000000 9.157520 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1606 1014.317008 E 1017.290480 3.000000 8.267746 76 120 0.000000 8.267746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1609 1014.290480 E 1017.282584 3.000000 8.530813 76 120 0.000000 8.530813 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1682 -1.007916 E 1.951424 3.000000 0.040660 1 120 0.000000 0.040660 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1700 295.680439 E 298.486174 3.000000 10.233894 150 120 0.000000 10.233894 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2443 284.936640 E 287.916427 3.000000 35.663598 1701 120 0.000000 35.663598 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2525 305.244890 E 307.101730 3.000000 72.504908 2572 120 0.000000 72.504908 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2718 308.564055 E 311.559657 3.000000 20.920573 1507 120 0.000000 20.920573 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2402 44.216112 E 47.201754 3.000000 0.083347 6 120 0.000000 0.083347 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2404 203.451517 E 206.182657 3.000000 29.828064 69 120 0.000000 29.828064 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2420 44.291955 E 47.265037 3.000000 1.429798 32 120 0.000000 1.429798 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 3027 494.594461 E 497.580076 3.000000 1.096695 37 120 0.000000 1.096695 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dbus-daemon 3028 871.982914 E 874.971379 3.000000 8.820633 75 120 0.000000 8.820633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3040 23.893471 E 26.854493 3.000000 0.075685 2 120 0.000000 0.075685 0.000000 0.000000 0 0 /system.slice/colord.service\\n S pool-spawner 3070 84.801335 E 87.763845 3.000000 0.076250 2 120 0.000000 0.076250 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3071 84.763845 E 87.725839 3.000000 0.038006 1 120 0.000000 0.038006 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3086 585.187130 E 587.886236 3.000000 0.803427 9 120 0.000000 0.803427 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3113 121.997580 E 124.912918 3.000000 1.251295 53 120 0.000000 1.251295 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3120 104.510615 E 107.420360 3.000000 0.090255 1 120 0.000000 0.090255 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3132 104.942110 E 107.902899 3.000000 0.039211 1 120 0.000000 0.039211 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3147 432.291787 E 435.215403 3.000000 15.128436 45 120 0.000000 15.128436 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-housekeepin 3169 1012.623666 E 1014.388604 3.000000 160.348216 115 120 0.000000 160.348216 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3199 432.208898 E 435.123843 3.000000 4.825108 55 120 0.000000 4.825108 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-power 3172 934.048735 E 936.983961 3.000000 531.922828 648 120 0.000000 531.922828 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gjs 3333 961.492427 E 962.754198 3.000000 64.931215 51 120 0.000000 64.931215 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3388 494.502646 E 497.479395 3.000000 0.383639 13 120 0.000000 0.383639 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x1:disk$0 3384 493.429311 E 698.009560 3.000000 0.064318 1 139 0.000000 0.064318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3391 494.823326 E 497.820442 3.000000 0.047210 2 120 0.000000 0.047210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 3453 0.638992 E 1.951424 3.000000 0.409584 1 120 0.000000 0.409584 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S module-rt 3508 16.982589 E 19.952500 3.000000 0.177132 8 120 0.000000 0.177132 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3512 16.731938 E 19.727789 3.000000 0.017591 3 120 0.000000 0.017591 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3519 17.278259 E 20.249377 3.000000 0.054962 2 120 0.000000 0.054962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S dbus-daemon 3501 17.501364 E 20.425841 3.000000 9.308695 60 120 0.000000 9.308695 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3547 17.425841 E 20.278259 3.000000 0.147582 1 120 0.000000 0.147582 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3596 0.171413 E 2.703804 3.000000 0.124783 1 120 0.000000 0.124783 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S sshd 3711 1468.412754 E 1471.337149 3.000000 3428.784832 9821 120 0.000000 3428.784832 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S gdbus 4750 0.089371 E 2.823358 3.000000 0.503147 15 120 0.000000 0.503147 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S timer 4751 0.479745 E 2.495817 3.000000 0.024438 1 120 0.000000 0.024438 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/4:3 4828 57914.289385 E 57917.286600 3.000000 0.108756 5 120 0.000000 0.108756 0.000000 0.000000 0 0 /\\n S docker 5109 152.126586 E 155.068735 3.000000 0.361652 5 120 0.000000 0.361652 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5122 196.344791 E 199.329849 3.000000 63.034858 39 120 0.000000 63.034858 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5139 200.932316 E 203.298156 3.000000 7.404452 209 120 0.000000 7.404452 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5215 284.992862 E 287.986956 3.000000 0.127867 20 120 0.000000 0.127867 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5242 260.021354 E 262.990538 3.000000 1.439470 33 120 0.000000 1.439470 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5267 249.428702 E 252.410406 3.000000 0.050853 2 120 0.000000 0.050853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S redis-server 5282 122.583099 E 124.435788 3.000000 290.505834 146 120 0.000000 290.505834 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Sjemalloc_bg_thd 5375 0.560167 E 2.423287 3.000000 0.016546 1 120 0.000000 0.016546 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5403 291.028122 E 293.997164 3.000000 0.030958 1 120 0.000000 0.030958 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5406 292.459248 E 295.452352 3.000000 0.116114 17 120 0.000000 0.116114 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5407 291.517519 E 294.508545 3.000000 0.110756 6 120 0.000000 0.110756 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5423 267.622964 E 270.575220 3.000000 4.810706 69 120 0.000000 4.810706 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5428 264.775703 E 267.763855 3.000000 0.397285 12 120 0.000000 0.397285 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5429 264.863296 E 267.855265 3.000000 1.306934 28 120 0.000000 1.306934 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5460 267.679435 E 270.622964 3.000000 1.838611 58 120 0.000000 1.838611 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5479 5.910874 E 8.239062 3.000000 24.294118 29 120 0.000000 24.294118 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5693 2182.334914 E 2185.327152 3.000000 38.955454 14 120 0.000000 38.955454 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5670 2131.268004 E 2134.260351 3.000000 36.996673 11 120 0.000000 36.996673 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5671 2135.196688 E 2138.196688 3.000000 40.909890 14 120 0.000000 40.909890 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5640 1921.565079 E 1924.559625 3.000000 28.984572 12 120 0.000000 28.984572 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5644 1921.963150 E 1922.987767 3.000000 52.350338 20 120 0.000000 52.350338 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5696 2197.393849 E 2200.390282 3.000000 31.127998 15 120 0.000000 31.127998 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5699 2197.192376 E 2200.184357 3.000000 30.902525 11 120 0.000000 30.902525 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5632 1326.785621 E 1326.892101 3.000000 100.083757 4 120 0.000000 100.083757 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5658 1985.657062 E 1988.647654 3.000000 37.909073 12 120 0.000000 37.909073 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5660 1989.692299 E 1989.732082 3.000000 55.543120 15 120 0.000000 55.543120 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5577 3122.676165 E 3124.874201 3.000000 2476.997591 712 120 0.000000 2476.997591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5719 2242.781412 E 2242.811558 3.000000 49.489219 18 120 0.000000 49.489219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S python3 5815 1435.246725 E 1436.210260 3.000000 110.739555 5 120 0.000000 110.739555 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#5, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 114216\\n .nr_uninterruptible : -11\\n .next_balance : 4295.060210\\n .curr->pid : 0\\n .clock : 393096.267839\\n .clock_task : 393096.267839\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[5]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1296.288246\\n .avg_vruntime : 1296.288246\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392769.602803\\n .se->vruntime : 4239.617357\\n .se->sum_exec_runtime : 1312.144705\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6460.931364\\n .avg_vruntime : 6460.931364\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393011.131020\\n .se->vruntime : 13880.824831\\n .se->sum_exec_runtime : 2326.932309\\n .se->load.weight : 144141\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3104.253151\\n .avg_vruntime : 3104.253151\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392732.502429\\n .se->vruntime : 66089.067988\\n .se->sum_exec_runtime : 3678.851011\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 349.148904\\n .avg_vruntime : 349.148904\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393066.732865\\n .se->vruntime : 66089.235913\\n .se->sum_exec_runtime : 366.066270\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 66089.235913\\n .avg_vruntime : 66089.235913\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393066.732865\\n .se->vruntime : 93120.494766\\n .se->sum_exec_runtime : 16270.265276\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4239.617357\\n .avg_vruntime : 4239.617357\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392769.602803\\n .se->vruntime : 13654.664678\\n .se->sum_exec_runtime : 1447.404396\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13880.824831\\n .avg_vruntime : 13880.824831\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1004\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393011.131020\\n .se->vruntime : 93120.206021\\n .se->sum_exec_runtime : 4313.720362\\n .se->load.weight : 44198\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 93120.494766\\n .avg_vruntime : 93120.494766\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[5]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[5]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/5 45 6999.749005 E 7002.677723 3.000000 0.271587 26 120 0.000000 0.271587 0.000000 0.000000 0 0 /\\n S idle_inject/5 46 -1.043636 E 1.204967 2.250000 0.004272 3 49 0.000000 0.004272 0.000000 0.000000 0 0 /\\n S migration/5 47 3.168235 E 5.417506 2.250000 169.977717 157 0 0.000000 169.977717 0.000000 0.000000 0 0 /\\n S ksoftirqd/5 48 92860.327758 E 92863.324088 3.000000 31.833476 1349 120 0.000000 31.833476 0.000000 0.000000 0 0 /\\n I kworker/5:0 49 59905.629123 E 59908.604272 3.000000 215.049326 2902 120 0.000000 215.049326 0.000000 0.000000 0 0 /\\n I kworker/5:0H 50 785.846494 E 785.880922 3.000000 0.029057 4 100 0.000000 0.029057 0.000000 0.000000 0 0 /\\n I kworker/5:1H 90 91110.258234 E 91110.292767 3.000000 7.599350 371 100 0.000000 7.599350 0.000000 0.000000 0 0 /\\n S irq/129-pciehp 96 0.336759 E 2.662268 3.000000 0.006014 3 49 0.000000 0.006014 0.000000 0.000000 0 0 /\\n Ikworker/R-acpi_ 100 803.615043 E 803.649645 3.000000 0.003136 2 100 0.000000 0.003136 0.000000 0.000000 0 0 /\\n I kworker/5:2 102 58304.487734 E 58307.474531 3.000000 6.779451 136 120 0.000000 6.779451 0.000000 0.000000 0 0 /\\n I kworker/R-mld 103 822.822143 E 822.856734 3.000000 0.020268 2 100 0.000000 0.020268 0.000000 0.000000 0 0 /\\n Ikworker/R-ipv6_ 105 822.824530 E 822.859136 3.000000 0.002654 2 100 0.000000 0.002654 0.000000 0.000000 0 0 /\\n Ikworker/R-kstrp 112 825.212532 E 825.247134 3.000000 0.002925 2 100 0.000000 0.002925 0.000000 0.000000 0 0 /\\n I kworker/5:3 129 93120.327004 E 93123.228167 3.000000 92.940669 689 120 0.000000 92.940669 0.000000 0.000000 0 0 /\\n Sirq/173-FRMW000 225 1210.147450 E 1213.127987 3.000000 0.350809 4 49 0.000000 0.350809 0.000000 0.000000 0 0 /\\n Sirq/174-PIXA385 227 1218.791465 E 1221.760797 3.000000 0.479717 4 49 0.000000 0.479717 0.000000 0.000000 0 0 /\\n Sjbd2/nvme0n1p5- 264 91110.344298 E 91113.329858 3.000000 73.986134 1288 120 0.000000 73.986134 0.000000 0.000000 0 0 /\\n S psimon 395 1769.940955 E 1772.934339 3.000000 0.031393 2 98 0.000000 0.031393 0.000000 0.000000 0 0 /\\n Sirq/198-iwlwifi 541 3741.717084 E 3744.716044 3.000000 7.818490 34 49 0.000000 7.818490 0.000000 0.000000 0 0 /\\n S pool-spawner 917 0.598568 E 2.374275 3.000000 0.139307 3 120 0.000000 0.139307 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S snapd 2921 150.000733 E 153.000733 3.000000 139.295594 243 120 0.000000 139.295594 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gmain 953 0.274092 E 3.243919 3.000000 0.030173 1 120 0.000000 0.030173 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 855 215.924722 E 218.764853 3.000000 2.720858 28 120 0.000000 2.720858 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 858 3.421352 E 6.394871 3.000000 1.493133 34 120 0.000000 1.493133 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S pool-spawner 877 0.968110 E 1.951424 3.000000 0.080466 1 120 0.000000 0.080466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S thermald 1119 266.200189 E 268.347026 3.000000 419.469173 219 120 0.000000 419.469173 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gmain 875 20.949796 E 23.699655 3.000000 16.477443 105 120 0.000000 16.477443 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S ModemManager 1073 9.236856 E 12.162608 3.000000 72.371170 359 120 0.000000 72.371170 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S pool-spawner 1096 5.835716 E 8.797854 3.000000 0.070490 2 120 0.000000 0.070490 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1108 16.766113 E 19.664757 3.000000 20.652107 119 120 0.000000 20.652107 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1113 1.961790 E 4.958126 3.000000 10.058361 153 120 0.000000 10.058361 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1114 3.303236 E 6.264028 3.000000 1.542075 72 120 0.000000 1.542075 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1115 1.948170 E 4.912969 3.000000 0.190242 20 120 0.000000 0.190242 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1447 2.681121 E 5.678513 3.000000 22.987360 343 120 0.000000 22.987360 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1460 349.148904 E 351.981142 3.000000 185.580185 4258 120 0.000000 185.580185 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 1485 3.989182 E 6.948338 3.000000 16.521431 131 120 0.000000 16.521431 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gmain 1494 2.779321 E 5.771975 3.000000 0.065744 3 120 0.000000 0.065744 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire-pulse 1516 26.233418 E 26.485480 3.000000 19.482467 71 109 0.000000 19.482467 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S rtkit-daemon 1549 3.425483 E 6.383611 3.000000 4.740092 69 120 0.000000 4.740092 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n Sxdg-permission- 1557 26.114410 E 28.921546 3.000000 4.480217 9 120 0.000000 4.480217 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1610 1294.109263 E 1297.102150 3.000000 9.820128 82 120 0.000000 9.820128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Spool-gnome-shel 5072 1288.447011 E 1291.283384 3.000000 0.184487 2 120 0.000000 0.184487 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 1683 12.272781 E 15.207527 3.000000 26.792875 230 120 0.000000 26.792875 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1657 171.907138 E 174.896341 3.000000 206.971759 2083 120 0.000000 206.971759 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1669 344.620239 E 347.584650 3.000000 69.767271 2073 120 0.000000 69.767271 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2394 356.668054 E 359.629743 3.000000 47.946204 1790 120 0.000000 47.946204 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2817 0.969895 E 2.006035 3.000000 0.078681 2 120 0.000000 0.078681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S pool-spawner 3023 33.403610 E 36.375096 3.000000 0.062687 2 120 0.000000 0.062687 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3036 49.145973 E 52.105602 3.000000 0.040371 1 120 0.000000 0.040371 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 3069 409.720330 E 411.795486 3.000000 3.645960 9 120 0.000000 3.645960 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3087 923.987178 E 926.920563 3.000000 0.691954 9 120 0.000000 0.691954 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3102 260.315442 E 263.308450 3.000000 0.043178 2 120 0.000000 0.043178 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3125 271.161595 E 274.095199 3.000000 0.721540 8 120 0.000000 0.721540 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3134 695.253497 E 698.160802 3.000000 18.015111 51 120 0.000000 18.015111 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3142 271.415232 E 274.408854 3.000000 0.052239 2 120 0.000000 0.052239 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3144 283.234823 E 286.195976 3.000000 0.156948 5 120 0.000000 0.156948 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3148 1293.987297 E 1296.915420 3.000000 21.922822 185 120 0.000000 21.922822 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3160 274.593574 E 277.561112 3.000000 0.032462 1 120 0.000000 0.032462 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3205 694.073828 E 697.059396 3.000000 0.539966 11 120 0.000000 0.539966 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3190 291.047172 E 294.041558 3.000000 0.069455 3 120 0.000000 0.069455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3191 291.082083 E 294.047172 3.000000 0.064373 2 120 0.000000 0.064373 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3171 277.903854 E 280.871361 3.000000 0.032493 1 120 0.000000 0.032493 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3208 289.768671 E 292.723596 3.000000 0.045075 1 120 0.000000 0.045075 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3341 1268.500237 E 1271.417686 3.000000 1.040132 11 120 0.000000 1.040132 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3347 710.823685 E 713.793865 3.000000 0.043738 2 120 0.000000 0.043738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3348 710.793865 E 713.767416 3.000000 0.026449 1 120 0.000000 0.026449 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-daemon 3346 949.332769 E 952.288245 3.000000 42.959636 73 120 0.000000 42.959636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11 3362 923.587585 E 926.310829 3.000000 45.522706 130 120 0.000000 45.522706 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3371 726.850047 E 729.799574 3.000000 0.076524 2 120 0.000000 0.076524 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sibus-engine-sim 3378 728.885393 E 731.863437 3.000000 4.625539 14 120 0.000000 4.625539 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3513 1.729229 E 4.725188 3.000000 0.034825 5 120 0.000000 0.034825 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S wireplumber 3472 11.462644 E 13.755284 3.000000 40.504423 63 120 0.000000 40.504423 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3555 8.358478 E 11.299358 3.000000 0.319715 3 120 0.000000 0.319715 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3550 7.088145 E 10.059456 3.000000 0.088092 2 120 0.000000 0.088092 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3553 7.326957 E 10.315957 3.000000 0.238812 7 120 0.000000 0.238812 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fusermount3 3556 8.289925 E 10.425022 3.000000 0.864903 1 120 0.000000 0.864903 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Ssnapd-desktop-i 3594 12.810910 E 15.645251 3.000000 16.524009 26 120 0.000000 16.524009 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gmain 3597 12.645251 E 15.600431 3.000000 0.044820 1 120 0.000000 0.044820 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S docker 5103 77.367826 E 80.361952 3.000000 2.654622 20 120 0.000000 2.654622 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5104 76.789473 E 79.661122 3.000000 0.935648 8 120 0.000000 0.935648 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5105 76.471056 E 79.122576 3.000000 0.348480 1 120 0.000000 0.348480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5123 85.194946 E 88.145423 3.000000 9.164365 606 120 0.000000 9.164365 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5131 80.563750 E 83.192223 3.000000 1.136131 12 120 0.000000 1.136131 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5211 363.927505 E 366.863433 3.000000 0.320824 5 120 0.000000 0.320824 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5212 345.929760 E 348.904077 3.000000 0.025683 1 120 0.000000 0.025683 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5221 346.057686 E 349.014905 3.000000 0.042781 1 120 0.000000 0.042781 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5239 318.088842 E 321.070226 3.000000 0.081546 6 120 0.000000 0.081546 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5241 318.149557 E 321.145361 3.000000 0.910349 25 120 0.000000 0.910349 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5268 318.304054 E 321.172323 3.000000 0.568834 24 120 0.000000 0.568834 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5270 335.667711 E 338.653822 3.000000 0.530675 18 120 0.000000 0.530675 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5395 356.863763 E 359.858058 3.000000 0.199092 41 120 0.000000 0.199092 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5405 356.859342 E 359.855343 3.000000 1.795184 14 120 0.000000 1.795184 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5409 356.858058 E 359.853277 3.000000 0.086967 4 120 0.000000 0.086967 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5410 356.739028 E 359.714574 3.000000 0.024454 1 120 0.000000 0.024454 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5419 323.414770 E 326.408620 3.000000 2.963462 8 120 0.000000 2.963462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5420 336.202080 E 339.191468 3.000000 1.984346 250 120 0.000000 1.984346 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5421 323.427369 E 326.411167 3.000000 0.463860 15 120 0.000000 0.463860 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5427 334.340607 E 337.316221 3.000000 0.771423 36 120 0.000000 0.771423 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5452 336.451109 E 339.441719 3.000000 0.854701 197 120 0.000000 0.854701 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5453 335.433992 E 338.295542 3.000000 0.951924 39 120 0.000000 0.951924 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5454 327.251540 E 330.239598 3.000000 0.078194 9 120 0.000000 0.078194 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5458 335.282536 E 338.277972 3.000000 1.356184 21 120 0.000000 1.356184 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5560 0.187048 E 2.804336 3.000000 0.487394 4 120 0.000000 0.487394 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5561 0.191741 E 2.799050 3.000000 0.438479 4 120 0.000000 0.438479 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5562 0.191017 E 2.796361 3.000000 0.389659 2 120 0.000000 0.389659 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5563 0.185087 E 2.809828 3.000000 0.432417 2 120 0.000000 0.432417 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5614 1204.439296 E 1207.439296 3.000000 25.601066 7 120 0.000000 25.601066 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5617 1206.891768 E 1209.822325 3.000000 28.034014 9 120 0.000000 28.034014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5619 1208.780352 E 1210.861964 3.000000 29.914255 9 120 0.000000 29.914255 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5608 1185.932477 E 1188.922565 3.000000 37.946501 14 120 0.000000 37.946501 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5672 1995.255322 E 1995.274003 3.000000 73.850813 20 120 0.000000 73.850813 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5641 1768.202285 E 1771.193258 3.000000 54.929183 14 120 0.000000 54.929183 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5695 2071.651562 E 2071.688139 3.000000 32.936801 11 120 0.000000 32.936801 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5637 1539.174198 E 1540.010364 3.000000 38.326835 12 120 0.000000 38.326835 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5638 1538.793722 E 1540.152260 3.000000 37.736919 12 120 0.000000 37.736919 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5709 2084.464804 E 2087.450225 3.000000 29.991031 9 120 0.000000 29.991031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5654 2046.336174 E 2049.326048 3.000000 38.012486 12 120 0.000000 38.012486 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5657 1803.954929 E 1805.989704 3.000000 38.959841 12 120 0.000000 38.959841 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5659 1807.015254 E 1809.026693 3.000000 42.007189 11 120 0.000000 42.007189 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5714 2109.823685 E 2109.851682 3.000000 36.490008 12 120 0.000000 36.490008 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5625 10.233587 E 12.608430 3.000000 0.625157 1 120 0.000000 0.625157 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 5727 1264.146640 E 1267.136524 3.000000 0.133475 3 120 0.000000 0.133475 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Ssystemd-hostnam 5864 5.762152 E 6.777177 3.000000 61.327485 36 120 0.000000 61.327485 0.000000 0.000000 0 0 /system.slice/systemd-hostnamed.service\\n\\ncpu#6, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 109545\\n .nr_uninterruptible : 107\\n .next_balance : 4295.060210\\n .curr->pid : 0\\n .clock : 393096.268688\\n .clock_task : 393096.268688\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[6]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 622.833378\\n .avg_vruntime : 622.833378\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393071.434070\\n .se->vruntime : 2033.070607\\n .se->sum_exec_runtime : 656.481962\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1741.829874\\n .avg_vruntime : 1741.829874\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392787.793539\\n .se->vruntime : 6221.397238\\n .se->sum_exec_runtime : 1744.656140\\n .se->load.weight : 1039117\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6221.397238\\n .avg_vruntime : 6221.397238\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392787.793539\\n .se->vruntime : 12356.818789\\n .se->sum_exec_runtime : 1858.879022\\n .se->load.weight : 1047201\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 24.226484\\n .avg_vruntime : 24.226484\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392980.473542\\n .se->vruntime : 69512.100853\\n .se->sum_exec_runtime : 25.374410\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 63.636189\\n .avg_vruntime : 63.636189\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.043117\\n .se->vruntime : 69512.515169\\n .se->sum_exec_runtime : 80.822825\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69512.515169\\n .avg_vruntime : 69512.515169\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.043117\\n .se->vruntime : 92482.167096\\n .se->sum_exec_runtime : 15829.895259\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2033.070607\\n .avg_vruntime : 2033.070607\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393071.434070\\n .se->vruntime : 12358.136914\\n .se->sum_exec_runtime : 721.099810\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12358.136914\\n .avg_vruntime : 12358.136914\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1004\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393071.434070\\n .se->vruntime : 92483.138637\\n .se->sum_exec_runtime : 2956.070315\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 92483.138637\\n .avg_vruntime : 92483.138637\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[6]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[6]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/6 51 8615.222785 E 8618.158454 3.000000 0.252486 26 120 0.000000 0.252486 0.000000 0.000000 0 0 /\\n S idle_inject/6 52 -1.048596 E 1.201404 2.250000 0.001435 3 49 0.000000 0.001435 0.000000 0.000000 0 0 /\\n S migration/6 53 3.285100 E 5.534388 2.250000 170.339339 165 0 0.000000 170.339339 0.000000 0.000000 0 0 /\\n S ksoftirqd/6 54 92230.155656 E 92233.145059 3.000000 21.324817 705 120 0.000000 21.324817 0.000000 0.000000 0 0 /\\n I kworker/6:0H 56 70074.340105 E 70074.374600 3.000000 3.828398 271 100 0.000000 3.828398 0.000000 0.000000 0 0 /\\n S irq/130-pciehp 97 0.333820 E 2.665268 3.000000 0.005759 3 49 0.000000 0.005759 0.000000 0.000000 0 0 /\\n I kworker/6:1 98 60740.281329 E 60743.270214 3.000000 14.034021 228 120 0.000000 14.034021 0.000000 0.000000 0 0 /\\n I kworker/6:1H 104 0.901750 E 0.936338 3.000000 0.024295 2 100 0.000000 0.024295 0.000000 0.000000 0 0 /\\n Ikworker/R-ext4- 265 715.149068 E 715.183650 3.000000 0.016782 2 100 0.000000 0.016782 0.000000 0.000000 0 0 /\\n Ssystemd-journal 315 63.636189 E 65.922516 3.000000 661.629658 1712 119 0.000000 661.629658 0.000000 0.000000 0 0 /system.slice/systemd-journald.service\\n Sirq/199-iwlwifi 542 3741.720024 E 3744.718960 3.000000 1.427748 24 49 0.000000 1.427748 0.000000 0.000000 0 0 /\\n I kworker/6:3 640 60933.614473 E 60936.605479 3.000000 111.455429 1692 120 0.000000 111.455429 0.000000 0.000000 0 0 /\\n Siio-sensor-prox 804 51.794222 E 54.650306 3.000000 342.582748 667 120 0.000000 342.582748 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S pool-spawner 931 3.995045 E 6.943176 3.000000 0.051869 1 120 0.000000 0.051869 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S polkitd 812 141.405613 E 144.360479 3.000000 675.978687 1179 120 0.000000 675.978687 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 1045 246.848037 E 249.653279 3.000000 94.409312 356 120 0.000000 94.409312 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2922 361.812146 E 364.803584 3.000000 106.436659 92 120 0.000000 106.436659 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 3003 365.186450 E 367.965805 3.000000 105.540123 120 120 0.000000 105.540123 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 958 9.238449 E 12.208952 3.000000 0.475075 10 120 0.000000 0.475075 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 949 3.796978 E 6.673936 3.000000 0.123042 1 120 0.000000 0.123042 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 1112 5.262021 E 8.244316 3.000000 0.017705 1 120 0.000000 0.017705 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S udisksd 845 26.324328 E 28.950017 3.000000 125.595959 363 120 0.000000 125.595959 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S probing-thread 1075 6.567609 E 9.544668 3.000000 0.022941 1 120 0.000000 0.022941 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 937 1.153308 E 4.086953 3.000000 0.098542 2 120 0.000000 0.098542 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S psimon 1430 9260.147662 E 9263.146878 3.000000 0.006730 2 98 0.000000 0.006730 0.000000 0.000000 0 0 /\\n S containerd 1459 318.576239 E 321.566386 3.000000 83.667697 3623 120 0.000000 83.667697 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1490 315.439892 E 317.745998 3.000000 101.729747 1820 120 0.000000 101.729747 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1530 2.618657 E 5.543553 3.000000 0.223127 6 120 0.000000 0.223127 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sdbus-run-sessio 1533 0.258773 E 2.587285 3.000000 1.487986 5 120 0.000000 1.487986 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1550 -1.032441 E 2.697765 3.000000 3.144663 53 0 0.000000 3.144663 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S gmain 1566 17.297077 E 20.277928 3.000000 0.097746 7 120 0.000000 0.097746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1570 17.355420 E 20.297077 3.000000 0.588370 21 120 0.000000 0.588370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 1590 622.833378 E 625.305861 3.000000 9359.382733 4466 120 0.000000 9359.382733 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3029 275.589042 E 276.659165 3.000000 15.079471 7 120 0.000000 15.079471 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S krfcommd 1621 10074.755342 E 10075.075292 3.000000 0.065550 2 110 0.000000 0.065550 0.000000 0.000000 0 0 /\\n S cups-browsed 1656 7.174703 E 10.099095 3.000000 104.739756 600 120 0.000000 104.739756 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1667 360.733205 E 363.572264 3.000000 44.912651 1440 120 0.000000 44.912651 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1668 10.959996 E 13.909631 3.000000 0.136753 4 120 0.000000 0.136753 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1671 376.622448 E 379.612498 3.000000 35.314543 1107 120 0.000000 35.314543 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1659 0.061295 E 3.028724 3.000000 1.514592 13 120 0.000000 1.514592 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S sshd 1702 74.518561 E 77.246586 3.000000 11.486317 11 120 0.000000 11.486317 0.000000 0.000000 0 0 /system.slice/ssh.service\\n Scontainerd-shim 2398 30.228595 E 33.220919 3.000000 3.863503 51 120 0.000000 3.863503 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2400 215.785696 E 218.742407 3.000000 5.591508 345 120 0.000000 5.591508 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2417 28.278836 E 31.246599 3.000000 0.032237 1 120 0.000000 0.032237 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2418 30.220839 E 33.148343 3.000000 0.624572 15 120 0.000000 0.624572 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 2511 29.041477 E 31.909107 3.000000 42.913269 436 120 0.000000 42.913269 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2717 7.476168 E 10.461486 3.000000 28.234681 817 120 0.000000 28.234681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2724 8.330328 E 11.312981 3.000000 0.730104 41 120 0.000000 0.730104 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2729 0.009183 E 2.987065 3.000000 0.474507 16 120 0.000000 0.474507 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2763 28.885776 E 31.856462 3.000000 5.264668 92 120 0.000000 5.264668 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3037 69.004645 E 71.977650 3.000000 0.026995 1 120 0.000000 0.026995 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3083 288.025683 E 289.715393 3.000000 1.607031 8 120 0.000000 1.607031 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3088 286.715393 E 289.284690 3.000000 1.401843 9 120 0.000000 1.401843 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3124 87.455847 E 90.416578 3.000000 0.039269 1 120 0.000000 0.039269 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3131 302.640897 E 305.308430 3.000000 2.994609 50 120 0.000000 2.994609 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3158 93.881548 E 96.817284 3.000000 0.064264 1 120 0.000000 0.064264 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3182 109.126031 E 111.562635 3.000000 0.591888 2 120 0.000000 0.591888 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3184 108.724420 E 111.678855 3.000000 0.093578 2 120 0.000000 0.093578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3216 109.368449 E 112.350997 3.000000 0.217820 14 120 0.000000 0.217820 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3213 602.863968 E 605.510516 3.000000 272.558231 744 120 0.000000 272.558231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3293 586.573053 E 589.290637 3.000000 24.862703 32 120 0.000000 24.862703 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3337 606.691952 E 609.593211 3.000000 1.370128 13 120 0.000000 1.370128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3338 606.814834 E 609.691952 3.000000 1.139504 13 120 0.000000 1.139504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S module-rt 3510 4.969118 E 7.891565 3.000000 0.240480 6 120 0.000000 0.240480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3523 5.394138 E 8.306091 3.000000 0.426467 6 120 0.000000 0.426467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3546 5.427172 E 8.394138 3.000000 0.089890 2 120 0.000000 0.089890 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3548 5.547188 E 8.427172 3.000000 0.773129 24 120 0.000000 0.773129 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3712 1420.598707 E 1422.937836 3.000000 248.416563 467 120 0.000000 248.416563 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Z dbus-daemon 4737 542.262424 E 544.949586 3.000000 0.530265 2 120 0.000000 0.530265 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 4749 16.047752 E 18.987863 3.000000 0.059889 1 120 0.000000 0.059889 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/6:0 4983 92481.267886 E 92484.177704 3.000000 3.431925 116 120 0.000000 3.431925 0.000000 0.000000 0 0 /\\n S docker 5106 50.986184 E 53.966096 3.000000 2.021095 12 120 0.000000 2.021095 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5128 59.883439 E 62.878961 3.000000 8.541157 259 120 0.000000 8.541157 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5140 54.263056 E 57.253692 3.000000 4.202288 102 120 0.000000 4.202288 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5731 385.459503 E 388.438040 3.000000 0.212807 10 120 0.000000 0.212807 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5240 265.802650 E 268.788465 3.000000 0.020995 2 120 0.000000 0.020995 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5243 266.286329 E 269.275178 3.000000 0.261505 4 120 0.000000 0.261505 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5264 273.123925 E 276.097681 3.000000 1.821770 25 120 0.000000 1.821770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5266 267.028584 E 270.019464 3.000000 0.210716 13 120 0.000000 0.210716 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5339 306.279057 E 309.240480 3.000000 4.007150 120 120 0.000000 4.007150 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5401 369.867980 E 372.833332 3.000000 0.034648 1 120 0.000000 0.034648 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5422 300.933996 E 303.801630 3.000000 0.270055 15 120 0.000000 0.270055 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5450 279.103396 E 282.098400 3.000000 2.396339 8 120 0.000000 2.396339 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5566 1.448927 E 4.109470 3.000000 0.339457 1 120 0.000000 0.339457 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5604 954.763097 E 957.751202 3.000000 28.240943 116 120 0.000000 28.240943 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5663 1792.640288 E 1795.640288 3.000000 38.952545 12 120 0.000000 38.952545 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5668 1789.732642 E 1791.724291 3.000000 35.988177 10 120 0.000000 35.988177 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5606 969.507874 E 972.497742 3.000000 25.491566 11 120 0.000000 25.491566 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5609 971.056429 E 974.046014 3.000000 27.020193 26 120 0.000000 27.020193 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5610 971.458654 E 974.453476 3.000000 27.417031 12 120 0.000000 27.417031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5707 1930.771185 E 1933.761817 3.000000 30.988047 9 120 0.000000 30.988047 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5628 1001.868572 E 1004.809337 3.000000 27.930046 12 120 0.000000 27.930046 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5629 1002.170072 E 1005.109190 3.000000 33.107018 10 120 0.000000 33.107018 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5679 1895.668218 E 1898.660660 3.000000 32.971433 10 120 0.000000 32.971433 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5683 1896.759957 E 1898.798855 3.000000 34.012241 10 120 0.000000 34.012241 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5720 1943.308345 E 1946.308345 3.000000 26.777888 7 120 0.000000 26.777888 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5723 1942.666364 E 1944.688960 3.000000 26.120826 8 120 0.000000 26.120826 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5623 24.226484 E 27.116136 3.000000 3.011211 36 120 0.000000 3.011211 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 5816 1545.664101 E 1547.633092 3.000000 110.151870 8 120 0.000000 110.151870 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Sjemalloc_bg_thd 5821 1546.597766 E 1548.664101 3.000000 0.933665 1 120 0.000000 0.933665 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#7, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 113366\\n .nr_uninterruptible : -61\\n .next_balance : 4295.060210\\n .curr->pid : 0\\n .clock : 393102.008563\\n .clock_task : 393102.008563\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[7]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2985.164036\\n .avg_vruntime : 2985.164036\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393009.551536\\n .se->vruntime : 7495.841359\\n .se->sum_exec_runtime : 2988.735844\\n .se->load.weight : 481067\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[7]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7495.841359\\n .avg_vruntime : 7495.841359\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393009.551536\\n .se->vruntime : 16678.000128\\n .se->sum_exec_runtime : 3105.225800\\n .se->load.weight : 991496\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[7]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 395.184093\\n .avg_vruntime : 395.184093\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.008563\\n .se->vruntime : 63782.828851\\n .se->sum_exec_runtime : 396.580525\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2842.536604\\n .avg_vruntime : 2842.536604\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393095.529027\\n .se->vruntime : 63782.813820\\n .se->sum_exec_runtime : 3483.301890\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 22.943258\\n .avg_vruntime : 22.943258\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.037443\\n .se->vruntime : 63781.110004\\n .se->sum_exec_runtime : 24.450408\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/kerneloops.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19.099682\\n .avg_vruntime : 19.099682\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393021.359334\\n .se->vruntime : 63781.136249\\n .se->sum_exec_runtime : 20.148258\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 63782.828851\\n .avg_vruntime : 63782.828851\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.008563\\n .se->vruntime : 100220.830655\\n .se->sum_exec_runtime : 14515.243197\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[7]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 16678.000128\\n .avg_vruntime : 16678.000128\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1004\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393009.551536\\n .se->vruntime : 100218.976466\\n .se->sum_exec_runtime : 7032.412347\\n .se->load.weight : 890369\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[7]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 100220.830655\\n .avg_vruntime : 100220.830655\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[7]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[7]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/7 57 8699.309454 E 8702.275668 3.000000 0.282413 26 120 0.000000 0.282413 0.000000 0.000000 0 0 /\\n S idle_inject/7 58 -1.048578 E 1.201422 2.250000 0.001352 3 49 0.000000 0.001352 0.000000 0.000000 0 0 /\\n S migration/7 59 3.384442 E 5.633801 2.250000 170.188226 158 0 0.000000 170.188226 0.000000 0.000000 0 0 /\\n S ksoftirqd/7 60 100213.931603 E 100216.925702 3.000000 16.722944 426 120 0.000000 16.722944 0.000000 0.000000 0 0 /\\n I kworker/7:0H 62 74560.993197 E 74561.027703 3.000000 8.755298 246 100 0.000000 8.755298 0.000000 0.000000 0 0 /\\n S kdevtmpfs 63 9325.916585 E 9328.878568 3.000000 8.686237 285 120 0.000000 8.686237 0.000000 0.000000 0 0 /\\n S khugepaged 74 65982.617128 E 66178.658241 3.000000 4.803397 105 139 0.000000 4.803397 0.000000 0.000000 0 0 /\\n S kswapd0 91 0.799409 E 2.181565 3.000000 0.034879 3 120 0.000000 0.034879 0.000000 0.000000 0 0 /\\n Secryptfs-kthrea 92 -1.016388 E 1.982554 3.000000 0.003235 2 120 0.000000 0.003235 0.000000 0.000000 0 0 /\\n I kworker/7:1 99 100219.110372 E 100222.104130 3.000000 237.924525 1870 120 0.000000 237.924525 0.000000 0.000000 0 0 /\\n I kworker/7:1H 186 54.192213 E 54.226778 3.000000 0.130453 2 100 0.000000 0.130453 0.000000 0.000000 0 0 /\\n I kworker/7:2 196 64826.238662 E 64829.224947 3.000000 133.597384 774 120 0.000000 133.597384 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 220 260.331222 E 260.365822 3.000000 0.004276 2 100 0.000000 0.004276 0.000000 0.000000 0 0 /\\n I kworker/u16:8 451 64907.053293 E 64910.025534 3.000000 155.258188 1804 120 0.000000 155.258188 0.000000 0.000000 0 0 /\\n I kworker/u16:9 452 65030.294948 E 65033.293612 3.000000 189.797515 2595 120 0.000000 189.797515 0.000000 0.000000 0 0 /\\n Sirq/200-iwlwifi 543 3741.722959 E 3744.721790 3.000000 188.113954 985 49 0.000000 188.113954 0.000000 0.000000 0 0 /\\n Ssystemd-timesyn 671 10.179520 E 12.899695 3.000000 64.977743 81 120 0.000000 64.977743 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n S bluetoothd 794 19.209153 E 22.142239 3.000000 94.656079 389 120 0.000000 94.656079 0.000000 0.000000 0 0 /system.slice/bluetooth.service\\n S gmain 932 5.984093 E 8.944402 3.000000 0.039691 1 120 0.000000 0.039691 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n Spower-profiles- 815 6.306037 E 8.958709 3.000000 42.592465 217 120 0.000000 42.592465 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 926 294.461091 E 297.453915 3.000000 114.552421 451 120 0.000000 114.552421 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S pool-spawner 952 0.552605 E 2.408198 3.000000 0.084044 2 120 0.000000 0.084044 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 851 395.184093 E 398.169062 3.000000 1162.444639 15781 120 0.000000 1162.444639 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gmain 874 8.807278 E 11.798542 3.000000 0.044986 2 120 0.000000 0.044986 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gdbus 906 99.365358 E 102.183068 3.000000 62.063308 260 120 0.000000 62.063308 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S wpa_supplicant 901 0.266437 E 2.301144 3.000000 309.193961 417 120 0.000000 309.193961 0.000000 0.000000 0 0 /system.slice/wpa_supplicant.service\\n S in:imuxsock 954 22.943258 E 25.918729 3.000000 92.571221 2588 120 0.000000 92.571221 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S gdbus 1104 37.768442 E 39.540502 3.000000 25.778299 96 120 0.000000 25.778299 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S upowerd 1086 26.539836 E 27.714095 3.000000 123.213656 176 120 0.000000 123.213656 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1120 -1.040991 E 1.951424 3.000000 0.113711 2 120 0.000000 0.113711 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sleep 1149 39.073787 E 39.604681 3.000000 7.280071 3 120 0.000000 7.280071 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S pool-spawner 1493 0.604404 E 2.386227 3.000000 0.063206 3 120 0.000000 0.063206 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 1513 11.763534 E 14.743230 3.000000 12.527238 32 120 0.000000 12.527238 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1525 22.920219 E 25.873281 3.000000 11.380453 155 120 0.000000 11.380453 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sxdg-document-po 1548 22.929418 E 25.920219 3.000000 6.358220 29 120 0.000000 6.358220 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fuse mainloop 1567 19.595470 E 22.587394 3.000000 0.137316 5 120 0.000000 0.137316 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1558 18.304433 E 21.267038 3.000000 0.111080 2 120 0.000000 0.111080 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dockerd 1665 387.715999 E 390.699088 3.000000 82.085644 1953 120 0.000000 82.085644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1673 0.023012 E 2.973127 3.000000 0.586838 20 120 0.000000 0.586838 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1703 404.236973 E 407.207709 3.000000 45.206785 1218 120 0.000000 45.206785 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2406 426.740205 E 429.731187 3.000000 34.872112 1123 120 0.000000 34.872112 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2524 423.215549 E 426.201238 3.000000 104.535424 3308 120 0.000000 104.535424 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1662 19.099682 E 22.073437 3.000000 0.997298 13 120 0.000000 0.997298 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n Scontainerd-shim 2401 229.088824 E 232.035962 3.000000 16.445830 75 120 0.000000 16.445830 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2419 229.035962 E 232.027394 3.000000 17.642231 77 120 0.000000 17.642231 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2818 12.382322 E 15.360201 3.000000 12.568123 31 120 0.000000 12.568123 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Sat-spi-bus-laun 3022 424.559544 E 427.521167 3.000000 3.389602 32 120 0.000000 3.389602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayla:traceq0 3268 365.997005 E 570.481954 3.000000 0.077355 4 139 0.000000 0.077355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3043 57.661466 E 60.641092 3.000000 4.306383 153 120 0.000000 4.306383 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gdbus 3073 207.807359 E 210.334322 3.000000 2.467237 14 120 0.000000 2.467237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3110 30.677526 E 33.625817 3.000000 0.075552 2 120 0.000000 0.075552 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3111 30.630162 E 33.591988 3.000000 0.038174 1 120 0.000000 0.038174 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3135 50.522322 E 53.477690 3.000000 0.080793 3 120 0.000000 0.080793 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3143 51.324937 E 54.279106 3.000000 0.083157 2 120 0.000000 0.083157 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3189 52.566712 E 55.538836 3.000000 0.112926 2 120 0.000000 0.112926 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3211 1467.846211 E 1470.663093 3.000000 19.246036 145 120 0.000000 19.246036 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-screensaver 3149 357.671192 E 360.642427 3.000000 5.256014 42 120 0.000000 5.256014 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3164 357.647615 E 360.580773 3.000000 4.749683 47 120 0.000000 4.749683 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3207 353.954110 E 356.900350 3.000000 0.139738 3 120 0.000000 0.139738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3291 223.408768 E 226.036502 3.000000 1.806394 7 120 0.000000 1.806394 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3343 3092.494350 E 3095.348483 3.000000 1.291563 13 120 0.000000 1.291563 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11:sh0 3385 419.506573 E 422.481074 3.000000 0.025499 1 120 0.000000 0.025499 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3392 424.607454 E 427.559544 3.000000 0.047910 1 120 0.000000 0.047910 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3370 394.943027 E 397.936848 3.000000 0.039410 2 120 0.000000 0.039410 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3380 419.140487 E 422.107152 3.000000 0.033335 1 120 0.000000 0.033335 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3464 22.074172 E 25.016557 3.000000 16.001058 53 120 0.000000 16.001058 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3517 12.573708 E 15.568099 3.000000 0.023024 3 120 0.000000 0.023024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S sshd 3542 38.086262 E 41.067580 3.000000 196.637990 746 120 0.000000 196.637990 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Sxdg-document-po 3544 22.100524 E 25.096416 3.000000 5.893123 20 120 0.000000 5.893123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3557 22.144924 E 25.141339 3.000000 0.142775 5 120 0.000000 0.142775 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3558 22.141339 E 25.132316 3.000000 0.068673 3 120 0.000000 0.068673 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3598 3.360579 E 6.033303 3.000000 11.821224 56 120 0.000000 11.821224 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/7:3 3755 64888.299318 E 64891.284413 3.000000 16.625453 98 120 0.000000 16.625453 0.000000 0.000000 0 0 /\\n I kworker/7:0 5028 64826.231853 E 64829.229716 3.000000 0.008146 2 120 0.000000 0.008146 0.000000 0.000000 0 0 /\\n S docker 5102 27.814553 E 30.440931 3.000000 2.687934 20 120 0.000000 2.687934 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5130 32.710798 E 35.321772 3.000000 4.743828 75 120 0.000000 4.743828 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5210 419.053099 E 422.030314 3.000000 1.005859 38 120 0.000000 1.005859 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5214 396.628965 E 399.619883 3.000000 1.632861 6 120 0.000000 1.632861 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5216 396.205006 E 399.151410 3.000000 0.149899 4 120 0.000000 0.149899 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5217 396.329416 E 399.319519 3.000000 0.046450 2 120 0.000000 0.046450 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5218 396.450772 E 399.445603 3.000000 0.020033 2 120 0.000000 0.020033 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5219 396.731794 E 399.686069 3.000000 0.045725 1 120 0.000000 0.045725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5222 396.826857 E 399.811763 3.000000 0.015094 1 120 0.000000 0.015094 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5235 270.215607 E 273.195321 3.000000 2.769908 8 120 0.000000 2.769908 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5238 282.987972 E 285.879101 3.000000 0.850366 33 120 0.000000 0.850366 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_aof 5372 6.171250 E 9.150339 3.000000 0.020911 1 120 0.000000 0.020911 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Sjemalloc_bg_thd 5374 6.185442 E 9.157914 3.000000 0.027528 1 120 0.000000 0.027528 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Scontainerd-shim 5457 284.338260 E 287.332839 3.000000 0.005421 1 120 0.000000 0.005421 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5567 0.289699 E 2.872177 3.000000 0.417522 2 120 0.000000 0.417522 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5570 2841.099580 E 2844.036691 3.000000 3211.682646 1395 120 0.000000 3211.682646 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5601 910.364125 E 913.358635 3.000000 41.347394 21 120 0.000000 41.347394 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5662 1681.165612 E 1681.188384 3.000000 52.890599 17 120 0.000000 52.890599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5571 2841.780849 E 2844.099580 3.000000 3144.706716 984 120 0.000000 3144.706716 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5690 1759.655576 E 1761.689682 3.000000 32.986562 10 120 0.000000 32.986562 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5611 927.013891 E 930.004534 3.000000 30.958221 12 120 0.000000 30.958221 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5673 1716.676043 E 1719.667802 3.000000 47.953219 14 120 0.000000 47.953219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5698 1774.551283 E 1776.580995 3.000000 33.736341 12 120 0.000000 33.736341 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5574 2842.536604 E 2844.780849 3.000000 2828.261512 897 120 0.000000 2828.261512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5635 1287.816586 E 1288.577374 3.000000 38.206043 11 120 0.000000 38.206043 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5636 1287.895610 E 1290.746600 3.000000 38.107591 11 120 0.000000 38.107591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5627 989.132258 E 992.064464 3.000000 56.892128 21 120 0.000000 56.892128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5682 1750.007994 E 1752.998981 3.000000 35.980149 10 120 0.000000 35.980149 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5647 1753.844207 E 1756.837808 3.000000 23.001512 8 120 0.000000 23.001512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5650 1495.354451 E 1498.348112 3.000000 23.003437 7 120 0.000000 23.003437 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5651 1498.355809 E 1501.345904 3.000000 25.997880 8 120 0.000000 25.997880 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5653 1499.385527 E 1502.375556 3.000000 27.015431 8 120 0.000000 27.015431 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5721 1803.013378 E 1806.006859 3.000000 29.898894 9 120 0.000000 29.898894 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5722 1807.064009 E 1810.054337 3.000000 33.945514 12 120 0.000000 33.945514 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S python3 5818 2825.151139 E 2827.081400 3.000000 110.860492 4 120 0.000000 110.860492 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\n"}, "Docker Version": "Client: Docker Engine - Community\\n Version: 27.2.1\\n API version: 1.47\\n Go version: go1.22.7\\n Git commit: 9e34c9b\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Context: default\\n\\nServer: Docker Engine - Community\\n Engine:\\n Version: 27.2.1\\n API version: 1.47 (minimum version 1.24)\\n Go version: go1.22.7\\n Git commit: 8b539b8\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Experimental: false\\n containerd:\\n Version: 1.7.21\\n GitCommit: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc:\\n Version: 1.1.13\\n GitCommit: v1.1.13-0-g58aa920\\n docker-init:\\n Version: 0.19.0\\n GitCommit: de40ad0\\n", "Hardware Model": "Laptop", "Virtualization": "Unknown", "CPU Utilization": 1.2, "Hardware Vendor": "Framework", "Hyper Threading": "1", "Hardware Details": "framebook\\n description: Notebook\\n product: Laptop (FRANBMCP0A)\\n vendor: Framework\\n version: AA\\n serial: FRANBMCPAA1484005R\\n width: 64 bits\\n capabilities: smbios-3.3.0 dmi-3.3.0 smp vsyscall32\\n configuration: administrator_password=disabled boot=normal chassis=notebook family=FRANBMCP power-on_password=disabled sku=FRANBMCP0A uuid=1cd24d0f-5c53-ec11-810d-283616200463\\n *-core\\n description: Motherboard\\n product: FRANBMCP0A\\n vendor: Framework\\n physical id: 0\\n version: AA\\n serial: FRANBMCPAA1484005R\\n slot: *\\n *-firmware\\n description: BIOS\\n vendor: INSYDE Corp.\\n physical id: 0\\n version: 03.19\\n date: 05/29/2023\\n size: 128KiB\\n capacity: 12MiB\\n capabilities: pci upgrade shadowing cdboot bootselect int9keyboard int10video acpi usb biosbootspecification uefi\\n *-cpu\\n description: CPU\\n product: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\\n vendor: Intel Corp.\\n physical id: 4\\n bus info: cpu@0\\n version: 6.140.1\\n serial: To Be Filled By O.E.M.\\n slot: U3E1\\n size: 4162MHz\\n capacity: 4200MHz\\n width: 64 bits\\n clock: 100MHz\\n capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect md_clear ibt flush_l1d arch_capabilities cpufreq\\n configuration: cores=4 enabledcores=4 microcode=184 threads=8\\n *-cache:0\\n description: L1 cache\\n physical id: 6\\n slot: L1 Cache\\n size: 128KiB\\n capacity: 128KiB\\n capabilities: synchronous internal write-back instruction\\n configuration: level=1\\n *-cache:1\\n description: L2 cache\\n physical id: 7\\n slot: L2 Cache\\n size: 5MiB\\n capacity: 5MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=2\\n *-cache:2\\n description: L3 cache\\n physical id: 8\\n slot: L3 Cache\\n size: 8MiB\\n capacity: 8MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=3\\n *-cache\\n description: L1 cache\\n physical id: 5\\n slot: L1 Cache\\n size: 192KiB\\n capacity: 192KiB\\n capabilities: synchronous internal write-back data\\n configuration: level=1\\n *-memory\\n description: System Memory\\n physical id: 14\\n slot: System board or motherboard\\n size: 32GiB\\n *-bank:0\\n description: [empty]\\n physical id: 0\\n slot: Controller0-ChannelA-DIMM0\\n *-bank:1\\n description: SODIMM DDR4 Synchronous 3200 MHz (0.3 ns)\\n product: CT32G4SFD832A.M16FF\\n vendor: Crucial Technology\\n physical id: 1\\n serial: E63FE743\\n slot: Controller1-ChannelA-DIMM0\\n size: 32GiB\\n width: 64 bits\\n clock: 3200MHz (0.3ns)\\n *-pci\\n description: Host bridge\\n product: 11th Gen Core Processor Host Bridge/DRAM Registers\\n vendor: Intel Corporation\\n physical id: 100\\n bus info: pci@0000:00:00.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n *-display\\n description: VGA compatible controller\\n product: TigerLake-LP GT2 [Iris Xe Graphics]\\n vendor: Intel Corporation\\n physical id: 2\\n bus info: pci@0000:00:02.0\\n logical name: /dev/fb0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb\\n configuration: depth=32 driver=i915 latency=0 mode=2256x1504 resolution=2256,1504 visual=truecolor xres=2256 yres=1504\\n resources: iomemory:600-5ff iomemory:400-3ff irq:204 memory:605c000000-605cffffff memory:4000000000-400fffffff ioport:3000(size=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff\\n *-generic:0\\n description: Signal processing controller\\n product: TigerLake-LP Dynamic Tuning Processor Participant\\n vendor: Intel Corporation\\n physical id: 4\\n bus info: pci@0000:00:04.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: driver=proc_thermal latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d180000-605d19ffff\\n *-pci:0\\n description: PCI bridge\\n product: 11th Gen Core Processor PCIe Controller\\n vendor: Intel Corporation\\n physical id: 6\\n bus info: pci@0000:00:06.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:126 memory:7a300000-7a3fffff\\n *-nvme\\n description: NVMe device\\n product: WDS100T1X0E-00AFY0\\n vendor: Sandisk Corp\\n physical id: 0\\n bus info: pci@0000:01:00.0\\n logical name: /dev/nvme0\\n version: 614900WD\\n serial: 22047A801405\\n width: 64 bits\\n clock: 33MHz\\n capabilities: nvme pm msi msix pciexpress nvm_express bus_master cap_list\\n configuration: driver=nvme latency=0 nqn=nqn.2018-01.com.wdc:nguid:E8238FA6BF53-0001-001B448B45A2BCF6 state=live\\n resources: irq:16 memory:7a300000-7a303fff\\n *-namespace:0\\n description: NVMe disk\\n physical id: 0\\n logical name: hwmon2\\n *-namespace:1\\n description: NVMe disk\\n physical id: 2\\n logical name: /dev/ng0n1\\n *-namespace:2\\n description: NVMe disk\\n physical id: 1\\n bus info: nvme@0:1\\n logical name: /dev/nvme0n1\\n size: 931GiB (1TB)\\n capabilities: gpt-1.00 partitioned partitioned:gpt\\n configuration: guid=45dd4e4e-5082-4f7b-926f-7bfbac3490ba logicalsectorsize=512 sectorsize=512 wwid=eui.e8238fa6bf530001001b448b45a2bcf6\\n *-volume:0 UNCLAIMED\\n description: Windows FAT volume\\n vendor: MSDOS5.0\\n physical id: 1\\n bus info: nvme@0:1,1\\n version: FAT32\\n serial: 74bd-e763\\n size: 95MiB\\n capacity: 99MiB\\n capabilities: boot fat initialized\\n configuration: FATs=2 filesystem=fat name=EFI system partition\\n *-volume:1\\n description: reserved partition\\n vendor: Windows\\n physical id: 2\\n bus info: nvme@0:1,2\\n logical name: /dev/nvme0n1p2\\n serial: 0ea6d81a-270e-4676-b42f-41e3e89d8733\\n capacity: 15MiB\\n capabilities: nofs\\n configuration: name=Microsoft reserved partition\\n *-volume:2\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 3\\n bus info: nvme@0:1,3\\n logical name: /dev/nvme0n1p3\\n version: 3.1\\n serial: c851c6e2-393b-f34f-a874-3f47e3b4d22a\\n size: 465GiB\\n capacity: 465GiB\\n capabilities: ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:22:01 filesystem=ntfs name=Basic data partition state=clean\\n *-volume:3\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 4\\n bus info: nvme@0:1,4\\n logical name: /dev/nvme0n1p4\\n version: 3.1\\n serial: 4c29-9ee3\\n size: 523MiB\\n capacity: 523MiB\\n capabilities: boot precious ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:25:01 filesystem=ntfs state=clean\\n *-volume:4\\n description: EXT4 volume\\n vendor: Linux\\n physical id: 5\\n bus info: nvme@0:1,5\\n logical name: /dev/nvme0n1p5\\n logical name: /\\n logical name: /var/snap/firefox/common/host-hunspell\\n version: 1.0\\n serial: c6c4e62b-4240-443a-8feb-6001a7f1b7b5\\n size: 465GiB\\n capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized\\n configuration: created=2024-03-22 19:59:07 filesystem=ext4 lastmountpoint=/ modified=2024-09-12 18:36:24 mount.fstype=ext4 mount.options=ro,noexec,noatime,errors=remount-ro mounted=2024-09-12 18:36:25 state=mounted\\n *-pci:1\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0\\n vendor: Intel Corporation\\n physical id: 7\\n bus info: pci@0000:00:07.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:127 ioport:4000(size=4096) memory:7c000000-881fffff ioport:6000000000(size=469762048)\\n *-pci:2\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1\\n vendor: Intel Corporation\\n physical id: 7.1\\n bus info: pci@0000:00:07.1\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:128 ioport:5000(size=4096) memory:6e000000-7a1fffff ioport:6020000000(size=469762048)\\n *-pci:3\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2\\n vendor: Intel Corporation\\n physical id: 7.2\\n bus info: pci@0000:00:07.2\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:129 ioport:6000(size=4096) memory:60000000-6c1fffff ioport:6040000000(size=469762048)\\n *-pci:4\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3\\n vendor: Intel Corporation\\n physical id: 7.3\\n bus info: pci@0000:00:07.3\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:130 ioport:7000(size=4096) memory:52000000-5e1fffff ioport:6060000000(size=469762048)\\n *-generic:1 UNCLAIMED\\n description: System peripheral\\n product: GNA Scoring Accelerator module\\n vendor: Intel Corporation\\n physical id: 8\\n bus info: pci@0000:00:08.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff memory:605d1d8000-605d1d8fff\\n *-generic:2\\n description: Signal processing controller\\n product: Tigerlake Telemetry Aggregator Driver\\n vendor: Intel Corporation\\n physical id: a\\n bus info: pci@0000:00:0a.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress pm cap_list\\n configuration: driver=intel_vsec latency=0\\n resources: iomemory:600-5ff irq:0 memory:605d1c0000-605d1c7fff\\n *-usb:0\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 USB Controller\\n vendor: Intel Corporation\\n physical id: d\\n bus info: pci@0000:00:0d.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: iomemory:600-5ff irq:148 memory:605d1b0000-605d1bffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@1\\n logical name: usb1\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=1 speed=480Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@2\\n logical name: usb2\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-usb:1\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #0\\n vendor: Intel Corporation\\n physical id: d.2\\n bus info: pci@0000:00:0d.2\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d140000-605d17ffff memory:605d1d7000-605d1d7fff\\n *-usb:2\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #1\\n vendor: Intel Corporation\\n physical id: d.3\\n bus info: pci@0000:00:0d.3\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d100000-605d13ffff memory:605d1d6000-605d1d6fff\\n *-communication:0\\n description: Serial controller\\n product: Tiger Lake-LP Integrated Sensor Hub\\n vendor: Intel Corporation\\n physical id: 12\\n bus info: pci@0000:00:12.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm 8250 bus_master cap_list\\n configuration: driver=intel_ish_ipc latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1a0000-605d1affff\\n *-usb:3\\n description: USB controller\\n product: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller\\n vendor: Intel Corporation\\n physical id: 14\\n bus info: pci@0000:00:14.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: irq:156 memory:7a400000-7a40ffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@3\\n logical name: usb3\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=12 speed=480Mbit/s\\n *-usb:0\\n description: Human interface device\\n product: HDMI Expansion Card\\n vendor: Framework\\n physical id: 1\\n bus info: usb@3:1\\n version: 0.00\\n serial: 11AD1D0001DB3E1540120B00\\n capabilities: usb-2.01\\n configuration: driver=usbhid maxpower=100mA speed=12Mbit/s\\n *-usb:1\\n description: Video\\n product: Laptop Camera\\n vendor: Generic\\n physical id: 7\\n bus info: usb@3:7\\n version: 0.21\\n serial: 200901010001\\n capabilities: usb-2.01\\n configuration: driver=uvcvideo maxpower=300mA speed=480Mbit/s\\n *-usb:2 UNCLAIMED\\n description: Generic USB device\\n product: Goodix USB2.0 MISC\\n vendor: Goodix Technology Co., Ltd.\\n physical id: 9\\n bus info: usb@3:9\\n version: 1.00\\n serial: UID7D62CCAE_XXXX_MOC_B0\\n capabilities: usb-2.00\\n configuration: maxpower=100mA speed=12Mbit/s\\n *-usb:3\\n description: Bluetooth wireless interface\\n product: AX210 Bluetooth\\n vendor: Intel Corp.\\n physical id: a\\n bus info: usb@3:a\\n version: 0.00\\n capabilities: bluetooth usb-2.01\\n configuration: driver=btusb maxpower=100mA speed=12Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@4\\n logical name: usb4\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-memory UNCLAIMED\\n description: RAM memory\\n product: Tiger Lake-LP Shared SRAM\\n vendor: Intel Corporation\\n physical id: 14.2\\n bus info: pci@0000:00:14.2\\n version: 20\\n width: 64 bits\\n clock: 33MHz (30.3ns)\\n capabilities: pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff memory:605d1cc000-605d1cffff memory:605d1d5000-605d1d5fff\\n *-serial:0\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #0\\n vendor: Intel Corporation\\n physical id: 15\\n bus info: pci@0000:00:15.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:27 memory:4017000000-4017000fff\\n *-serial:1\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #1\\n vendor: Intel Corporation\\n physical id: 15.1\\n bus info: pci@0000:00:15.1\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:40 memory:4017001000-4017001fff\\n *-serial:2\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #3\\n vendor: Intel Corporation\\n physical id: 15.3\\n bus info: pci@0000:00:15.3\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:30 memory:4017002000-4017002fff\\n *-communication:1\\n description: Communication controller\\n product: Tiger Lake-LP Management Engine Interface\\n vendor: Intel Corporation\\n physical id: 16\\n bus info: pci@0000:00:16.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=mei_me latency=0\\n resources: iomemory:600-5ff irq:191 memory:605d1d1000-605d1d1fff\\n *-pci:5\\n description: PCI bridge\\n product: Tiger Lake-LP PCI Express Root Port #10\\n vendor: Intel Corporation\\n physical id: 1d\\n bus info: pci@0000:00:1d.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:131 memory:7a200000-7a2fffff\\n *-network\\n description: Wireless interface\\n product: Wi-Fi 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak]\\n vendor: Intel Corporation\\n physical id: 0\\n bus info: pci@0000:aa:00.0\\n logical name: wlp170s0\\n version: 1a\\n serial: 00:93:37:96:a0:14\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\\n configuration: broadcast=yes driver=iwlwifi driverversion=6.8.0-44-generic firmware=86.fb5c9aeb.0 ty-a0-gf-a0-86.uc ip=192.168.179.3 latency=0 link=yes multicast=yes wireless=IEEE 802.11\\n resources: irq:17 memory:7a200000-7a203fff\\n *-isa\\n description: ISA bridge\\n product: Tiger Lake-LP LPC Controller\\n vendor: Intel Corporation\\n physical id: 1f\\n bus info: pci@0000:00:1f.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: isa bus_master\\n configuration: latency=0\\n *-pnp00:00\\n product: PnP device PNP0303\\n physical id: 0\\n capabilities: pnp\\n configuration: driver=i8042 kbd\\n *-pnp00:01\\n product: PnP device PNP0f03\\n physical id: 1\\n capabilities: pnp\\n configuration: driver=i8042 aux\\n *-pnp00:02\\n product: PnP device PNP0c02\\n physical id: 2\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:03\\n product: PnP device PNP0c02\\n physical id: 3\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:04\\n product: PnP device PNP0c02\\n physical id: 4\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:05\\n product: PnP device PNP0c02\\n physical id: 5\\n capabilities: pnp\\n configuration: driver=system\\n *-multimedia\\n description: Audio device\\n product: Tiger Lake-LP Smart Sound Technology Audio Controller\\n vendor: Intel Corporation\\n physical id: 1f.3\\n bus info: pci@0000:00:1f.3\\n logical name: card0\\n logical name: /dev/snd/controlC0\\n logical name: /dev/snd/hwC0D0\\n logical name: /dev/snd/hwC0D2\\n logical name: /dev/snd/pcmC0D0c\\n logical name: /dev/snd/pcmC0D0p\\n logical name: /dev/snd/pcmC0D3p\\n logical name: /dev/snd/pcmC0D7p\\n logical name: /dev/snd/pcmC0D8p\\n logical name: /dev/snd/pcmC0D9p\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=snd_hda_intel latency=32\\n resources: iomemory:600-5ff iomemory:600-5ff irq:205 memory:605d1c8000-605d1cbfff memory:605d000000-605d0fffff\\n *-input:0\\n product: HDA Intel PCH Mic\\n physical id: 0\\n logical name: input12\\n logical name: /dev/input/event9\\n *-input:1\\n product: HDA Intel PCH Headphone\\n physical id: 1\\n logical name: input13\\n logical name: /dev/input/event10\\n *-input:2\\n product: HDA Intel PCH HDMI/DP,pcm=3\\n physical id: 2\\n logical name: input14\\n logical name: /dev/input/event11\\n *-input:3\\n product: HDA Intel PCH HDMI/DP,pcm=7\\n physical id: 3\\n logical name: input15\\n logical name: /dev/input/event12\\n *-input:4\\n product: HDA Intel PCH HDMI/DP,pcm=8\\n physical id: 4\\n logical name: input16\\n logical name: /dev/input/event13\\n *-input:5\\n product: HDA Intel PCH HDMI/DP,pcm=9\\n physical id: 5\\n logical name: input17\\n logical name: /dev/input/event14\\n *-serial:3\\n description: SMBus\\n product: Tiger Lake-LP SMBus Controller\\n vendor: Intel Corporation\\n physical id: 1f.4\\n bus info: pci@0000:00:1f.4\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n configuration: driver=i801_smbus latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1d0000-605d1d00ff ioport:efa0(size=32)\\n *-serial:4\\n description: Serial bus controller\\n product: Tiger Lake-LP SPI Controller\\n vendor: Intel Corporation\\n physical id: 1f.5\\n bus info: pci@0000:00:1f.5\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: bus_master\\n configuration: driver=intel-spi latency=0\\n resources: irq:0 memory:50400000-50400fff\\n *-battery\\n description: Lithium Ion Battery\\n product: FRANBBAT\\n vendor: FRANBBATA112610BG3\\n physical id: 1\\n version: 2021/7/5\\n serial: 0194\\n slot: Front\\n configuration: voltage=0.0V\\n *-power UNCLAIMED\\n description: OEM Define 1\\n product: OEM Define 5\\n vendor: OEM Define 2\\n physical id: 2\\n version: OEM Define 6\\n serial: OEM Define 3\\n capacity: 75mWh\\n *-input:0\\n product: Lid Switch\\n physical id: 3\\n logical name: input0\\n logical name: /dev/input/event0\\n capabilities: platform\\n *-input:1\\n product: Power Button\\n physical id: 4\\n logical name: input1\\n logical name: /dev/input/event1\\n capabilities: platform\\n *-input:2\\n product: PIXA3854:00 093A:0274 Touchpad\\n physical id: 5\\n logical name: input10\\n logical name: /dev/input/event6\\n logical name: /dev/input/mouse1\\n capabilities: i2c\\n *-input:3\\n product: Video Bus\\n physical id: 6\\n logical name: input11\\n logical name: /dev/input/event8\\n capabilities: platform\\n *-input:4\\n product: AT Translated Set 2 keyboard\\n physical id: 7\\n logical name: input2\\n logical name: /dev/input/event2\\n logical name: input2::capslock\\n logical name: input2::numlock\\n logical name: input2::scrolllock\\n capabilities: i8042\\n *-input:5\\n product: ImExPS/2 Generic Explorer Mouse\\n physical id: 8\\n logical name: input4\\n logical name: /dev/input/event7\\n logical name: /dev/input/mouse2\\n capabilities: i8042\\n *-input:6\\n product: FRMW0001:00 32AC:0006 Wireless Radio Control\\n physical id: 9\\n logical name: input5\\n logical name: /dev/input/event3\\n capabilities: i2c\\n *-input:7\\n product: FRMW0001:00 32AC:0006 Consumer Control\\n physical id: a\\n logical name: input6\\n logical name: /dev/input/event4\\n capabilities: i2c\\n *-input:8\\n product: PIXA3854:00 093A:0274 Mouse\\n physical id: b\\n logical name: input9\\n logical name: /dev/input/event5\\n logical name: /dev/input/mouse0\\n capabilities: i2c\\n", "Operating System": "Ubuntu 24.04.1 LTS", "Scaling Governor": "powersave", "CPU Complete Dump": {"/sys/devices/system/cpu/online": "0-7\\n", "/sys/devices/system/cpu/uevent": "", "/sys/devices/system/cpu/offline": "\\n", "/sys/devices/system/cpu/present": "0-7\\n", "/sys/devices/system/cpu/isolated": "\\n", "/sys/devices/system/cpu/modalias": "cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n", "/sys/devices/system/cpu/possible": "0-7\\n", "/sys/devices/system/cpu/nohz_full": " (null)\\n", "/sys/devices/system/cpu/kernel_max": "8191\\n", "/sys/devices/system/cpu/smt/active": "1\\n", "/sys/devices/system/cpu/cpu0/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu1/online": "1\\n", "/sys/devices/system/cpu/cpu1/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu2/online": "1\\n", "/sys/devices/system/cpu/cpu2/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu3/online": "1\\n", "/sys/devices/system/cpu/cpu3/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu4/online": "1\\n", "/sys/devices/system/cpu/cpu4/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu5/online": "1\\n", "/sys/devices/system/cpu/cpu5/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu6/online": "1\\n", "/sys/devices/system/cpu/cpu6/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu7/online": "1\\n", "/sys/devices/system/cpu/cpu7/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/power/async": "disabled\\n", "/sys/devices/system/cpu/smt/control": "on\\n", "/sys/devices/system/cpu/power/control": "auto\\n", "/sys/devices/system/cpu/hotplug/states": " 0: offline\\n 1: threads:prepare\\n 2: perf:prepare\\n 3: perf/x86:prepare\\n 8: x86/mce:dead\\n 9: virtio/net:dead\\n 11: slub:dead\\n 13: mm/writeback:dead\\n 14: mm/vmstat:dead\\n 15: softirq:dead\\n 20: irq_poll:dead\\n 21: block/softirq:dead\\n 22: block/bio:dead\\n 23: acpi/cpu-drv:dead\\n 25: block/mq:dead\\n 26: fs/buffer:dead\\n 27: printk:dead\\n 28: mm/memctrl:dead\\n 29: lib/percpu_cnt:dead\\n 30: lib/radix:dead\\n 31: mm/page_alloc:pcp\\n 32: net/dev:dead\\n 34: iommu/iova:dead\\n 36: padata:dead\\n 38: random:prepare\\n 39: workqueue:prepare\\n 41: hrtimers:prepare\\n 43: x86/x2apic:prepare\\n 44: smpcfd:prepare\\n 45: relay:prepare\\n 47: RCU/tree:prepare\\n 55: base/topology:prepare\\n 58: trace/RB:prepare\\n 59: mm/zsmalloc:prepare\\n 63: timers:prepare\\n 65: fork:vm_stack_cache\\n 66: crash/cpuhp\\n 86: cpu:kick_ap\\n 87: cpu:bringup\\n 88: idle:dead\\n 89: ap:offline\\n 90: x86/cachectrl:starting\\n 91: sched:starting\\n 92: RCU/tree:dying\\n104: perf/x86:starting\\n106: perf/x86/cstate:starting\\n137: smpcfd:dying\\n138: hrtimers:dying\\n141: ap:online\\n142: cpu:teardown\\n145: kvm/cpu:online\\n146: sched:waitempty\\n147: smpboot/threads:online\\n148: irq/affinity:online\\n149: block/mq:online\\n151: x86/intel/epb:online\\n152: perf:online\\n153: perf/x86:online\\n154: perf/x86/intel/uncore:online\\n157: perf/x86/rapl:online\\n158: perf/x86/cstate:online\\n184: lockup_detector:online\\n185: workqueue:online\\n186: random:online\\n187: RCU/tree:online\\n188: base/cacheinfo:online\\n189: x86/splitlock\\n190: mm/writeback:online\\n191: mm/vmstat:online\\n192: padata:online\\n193: mm/compaction:online\\n194: io-wq/online\\n195: lib/percpu_cnt:online\\n196: idle/intel:online\\n197: acpi/cpu-drv:online\\n198: virtio/net:online\\n199: x86/therm:online\\n200: cpufreq:online\\n201: leds/trigger:starting\\n202: x86/mce:online\\n203: x86/microcode:online\\n204: x86/resctrl/cat:online:\\n205: printk:online\\n206: trace/hwlat:online\\n207: trace/osnoise:online\\n208: swap_slots_cache\\n209: x86/msr:online\\n210: powercap/rapl:online\\n211: perf/x86/intel/i915:online\\n212: powercap/rapl:online\\n213: hwmon/coretemp:online\\n214: thermal/x86_pkg:online\\n215: platform/x86/uncore-freq:online\\n232: sched:active\\n233: online\\n", "/sys/devices/system/cpu/cpu0/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu1/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu2/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu3/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu4/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu5/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu6/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu7/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu0/cache/uevent": "", "/sys/devices/system/cpu/cpu0/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu1/cache/uevent": "", "/sys/devices/system/cpu/cpu1/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu2/cache/uevent": "", "/sys/devices/system/cpu/cpu2/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu3/cache/uevent": "", "/sys/devices/system/cpu/cpu3/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu4/cache/uevent": "", "/sys/devices/system/cpu/cpu4/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu5/cache/uevent": "", "/sys/devices/system/cpu/cpu5/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu6/cache/uevent": "", "/sys/devices/system/cpu/cpu6/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu7/cache/uevent": "", "/sys/devices/system/cpu/cpu7/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu0/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu0/power/control": "auto\\n", "/sys/devices/system/cpu/cpu1/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu1/power/control": "auto\\n", "/sys/devices/system/cpu/cpu2/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu2/power/control": "auto\\n", "/sys/devices/system/cpu/cpu3/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu3/power/control": "auto\\n", "/sys/devices/system/cpu/cpu4/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu4/power/control": "auto\\n", "/sys/devices/system/cpu/cpu5/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu5/power/control": "auto\\n", "/sys/devices/system/cpu/cpu6/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu6/power/control": "auto\\n", "/sys/devices/system/cpu/cpu7/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu7/power/control": "auto\\n", "/sys/devices/system/cpu/cpu0/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu1/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu2/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu3/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu4/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu5/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu6/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu7/hotplug/target": "233\\n", "/sys/devices/system/cpu/intel_pstate/status": "active\\n", "/sys/devices/system/cpu/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/vulnerabilities/mds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu0/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu2/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu3/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu4/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu6/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu7/topology/die_id": "0\\n", "/sys/devices/system/cpu/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/vulnerabilities/l1tf": "Not affected\\n", "/sys/devices/system/cpu/cpu0/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu2/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu3/topology/core_id": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu6/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu7/topology/core_id": "3\\n", "/sys/devices/system/cpu/intel_pstate/no_turbo": "0\\n", "/sys/devices/system/cpu/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/vulnerabilities/srbds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu0/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu0/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu0/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu0/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu0/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu0/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu1/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu1/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu1/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu1/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu1/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu1/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu2/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu2/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu2/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu2/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu2/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu2/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu3/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu3/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu3/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu3/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu3/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu3/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu4/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu4/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu4/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu4/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu4/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu4/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu5/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu5/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu5/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu5/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu5/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu5/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu6/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu6/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu6/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu6/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu6/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu6/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu7/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu7/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu7/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu7/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu7/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu7/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpuidle/current_driver": "intel_idle\\n", "/sys/devices/system/cpu/intel_pstate/turbo_pct": "47\\n", "/sys/devices/system/cpu/cpu0/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu0/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu1/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu1/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu2/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu3/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu3/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu4/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu4/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu5/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu5/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu6/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu7/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu7/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu0/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu0/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/time": "44956\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/time": "14783965\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/time": "17306567\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/time": "328852776\\n", "/sys/devices/system/cpu/cpu0/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu1/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/time": "50239\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/time": "10026841\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/time": "8768906\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/time": "343295126\\n", "/sys/devices/system/cpu/cpu1/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu2/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/time": "43155\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/time": "11199921\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/time": "14086757\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/time": "334506876\\n", "/sys/devices/system/cpu/cpu2/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu3/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu3/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/time": "54747\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/time": "8573509\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/time": "8081701\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/time": "348733987\\n", "/sys/devices/system/cpu/cpu3/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpu4/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu4/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/time": "38596\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/time": "7230257\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/time": "5986197\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/time": "355545369\\n", "/sys/devices/system/cpu/cpu4/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu5/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/time": "47641\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/time": "8475652\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/time": "7591741\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/time": "351422896\\n", "/sys/devices/system/cpu/cpu5/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu6/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/time": "38429\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/time": "7938276\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/time": "6909290\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/time": "354402195\\n", "/sys/devices/system/cpu/cpu6/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu7/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu7/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/time": "51404\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/time": "8458201\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/time": "7012880\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/time": "350131635\\n", "/sys/devices/system/cpu/cpu7/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpuidle/current_governor": "menu\\n", "/sys/devices/system/cpu/intel_pstate/num_pstates": "39\\n", "/sys/devices/system/cpu/vulnerabilities/meltdown": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/retbleed": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/below": "992\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/usage": "1131\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/above": "1156\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/below": "9755\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/usage": "50025\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/above": "1374\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/below": "10\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/usage": "18955\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/above": "25610\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/usage": "46415\\n", "/sys/devices/system/cpu/cpu0/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/below": "1357\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/usage": "1468\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/above": "1093\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/below": "5356\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/usage": "44355\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/above": "965\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/below": "7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/usage": "9689\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/above": "9799\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/usage": "24348\\n", "/sys/devices/system/cpu/cpu1/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/below": "927\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/usage": "1005\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/above": "1638\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/below": "5696\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/usage": "48805\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/above": "1717\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/below": "9\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/usage": "15454\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/above": "8317\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/usage": "32458\\n", "/sys/devices/system/cpu/cpu2/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/below": "1219\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/usage": "1333\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/above": "1790\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/below": "4535\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/usage": "40740\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/above": "1176\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/below": "28\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/usage": "8815\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/above": "7041\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/usage": "23471\\n", "/sys/devices/system/cpu/cpu3/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/below": "1319\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/usage": "1550\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/above": "948\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/below": "3995\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/usage": "36931\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/above": "725\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/below": "10\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/usage": "6553\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/above": "3847\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/usage": "15394\\n", "/sys/devices/system/cpu/cpu4/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/below": "1148\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/usage": "1243\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/above": "1068\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/below": "4607\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/usage": "41197\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/above": "1010\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/below": "32\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/usage": "8222\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/above": "5003\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/usage": "16141\\n", "/sys/devices/system/cpu/cpu5/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/below": "930\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/usage": "979\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/above": "1543\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/below": "4396\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/usage": "39676\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/above": "852\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/below": "11\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/usage": "7528\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/above": "3875\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/usage": "16211\\n", "/sys/devices/system/cpu/cpu6/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/below": "1292\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/usage": "1501\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/above": "1702\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/below": "4492\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/usage": "41035\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/above": "886\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/below": "12\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/usage": "7637\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/above": "4596\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/usage": "17104\\n", "/sys/devices/system/cpu/cpu7/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/intel_pstate/max_perf_pct": "100\\n", "/sys/devices/system/cpu/intel_pstate/min_perf_pct": "9\\n", "/sys/devices/system/cpu/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu0/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu1/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu2/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu3/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu4/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu5/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu6/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu7/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v1": "Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v2": "Mitigation: Enhanced / Automatic IBRS; IBPB: conditional; RSB filling; PBRSB-eIBRS: SW sequence; BHI: SW loop, KVM: SW loop\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu0/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu1/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu2/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu3/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu4/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu5/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu6/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu7/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpuidle/available_governors": "ladder menu teo \\n", "/sys/devices/system/cpu/cpuidle/current_governor_ro": "menu\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/feedback_ctrs": "ref:116939617056 del:71666074683\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/feedback_ctrs": "ref:72209082360 del:41945238947\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/feedback_ctrs": "ref:78354839784 del:45019014381\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/feedback_ctrs": "ref:64000311504 del:36354979896\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/feedback_ctrs": "ref:55856099616 del:33066047923\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/feedback_ctrs": "ref:60624348984 del:35474704479\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/feedback_ctrs": "ref:54727875216 del:34535246022\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/feedback_ctrs": "ref:63098074872 del:40635820959\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpufreq/policy0/related_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/related_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/related_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/related_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/related_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/related_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/related_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/related_cpus": "7\\n", "/sys/devices/system/cpu/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpufreq/policy0/affected_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/affected_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/affected_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/affected_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/affected_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/affected_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/affected_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/affected_cpus": "7\\n", "/sys/devices/system/cpu/vulnerabilities/itlb_multihit": "Not affected\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu0/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu1/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu2/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu3/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu4/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu5/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu6/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu7/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy1/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy2/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy3/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy4/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy5/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy6/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy7/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/vulnerabilities/mmio_stale_data": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/tsx_async_abort": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq": "200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_cur_freq": "199998\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_cur_freq": "200038\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_cur_freq": "200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_cur_freq": "200037\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu0/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/vulnerabilities/spec_store_bypass": "Mitigation: Speculative Store Bypass disabled via prctl\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu1/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu2/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu3/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu4/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu5/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu6/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu7/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_nonlinear_perf": "15\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_nonlinear_perf": "15\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_nonlinear_perf": "15\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_nonlinear_perf": "15\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_nonlinear_perf": "15\\n", "/sys/devices/system/cpu/vulnerabilities/gather_data_sampling": "Mitigation: Microcode\\n", "/sys/devices/system/cpu/vulnerabilities/spec_rstack_overflow": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/vulnerabilities/reg_file_data_sampling": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us": "48373747\\n", "/sys/devices/system/cpu/cpu0/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us": "15846041\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/min_freq_khz": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_min_freq_khz": "400000\\n"}, "Docker Containers": "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES", "Network Interfaces": "2: wlp170s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1456 qdisc noqueue state UP group default qlen 1000\\n link/ether 00:93:37:96:a0:14 brd ff:ff:ff:ff:ff:ff\\n--\\n4: br-5358121b016d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:31:4c:7c:39 brd ff:ff:ff:ff:ff:ff\\n--\\n5: br-6e0ae77042d6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:29:4c:03:1e brd ff:ff:ff:ff:ff:ff\\n--\\n6: br-7688b5ca7e2d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:e5:22:19:30 brd ff:ff:ff:ff:ff:ff\\n--\\n7: br-9ba2a39b0b1e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:f5:74:c1:66 brd ff:ff:ff:ff:ff:ff\\n--\\n8: br-ce560083466a: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:a4:f4:58:34 brd ff:ff:ff:ff:ff:ff\\n--\\n9: br-17d7b4ff19e9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:40:0a:a9:6e brd ff:ff:ff:ff:ff:ff\\n--\\n10: br-b8fe670a4cd7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:15:10:5f:b5 brd ff:ff:ff:ff:ff:ff\\n--\\n11: br-c26dcd3569f9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:53:0c:b7:f6 brd ff:ff:ff:ff:ff:ff\\n--\\n13: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:2f:19:92:44 brd ff:ff:ff:ff:ff:ff\\n--\\n15: veth4b2531f@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default \\n link/ether 16:4d:d1:07:e9:34 brd ff:ff:ff:ff:ff:ff link-netnsid 0\\n--\\n27: br-cd08359ec224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:cb:56:8d:7d brd ff:ff:ff:ff:ff:ff\\n--\\n29: veth4f67909@if28: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether c2:8b:74:ce:4b:f2 brd ff:ff:ff:ff:ff:ff link-netnsid 2\\n--\\n31: veth3d72cc1@if30: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 56:6f:f8:d3:95:47 brd ff:ff:ff:ff:ff:ff link-netnsid 1\\n--\\n33: veth888843b@if32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 72:81:21:75:96:2a brd ff:ff:ff:ff:ff:ff link-netnsid 3\\n--\\n35: veth0c4fb2f@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 1e:1a:b4:b7:47:13 brd ff:ff:ff:ff:ff:ff link-netnsid 4\\n", "Current Clocksource": "tsc", "RAPL Energy Filtering": "0\\n", "Installed Python Packages": "aiohappyeyeballs==2.4.0\\naiohttp==3.10.3\\naiosignal==1.3.1\\nalembic==1.13.2\\nannotated-types==0.7.0\\nanybadge==1.14.0\\nanyio==4.4.0\\nattrs==24.2.0\\ncertifi==2024.8.30\\ncharset-normalizer==3.3.2\\nclick==8.1.7\\ncolorlog==6.8.2\\ndeepdiff==7.0.1\\ndnspython==2.6.1\\ndocker==7.1.0\\nemail_validator==2.2.0\\nfastapi==0.112.0\\nfastapi-cli==0.0.5\\nfrozenlist==1.4.1\\ngreenlet==3.1.0\\ngunicorn==23.0.0\\nh11==0.14.0\\nhiredis==3.0.0\\nhttpcore==1.0.5\\nhttptools==0.6.1\\nhttpx==0.27.2\\nidna==3.8\\nJinja2==3.1.4\\njoblib==1.4.2\\nMako==1.3.5\\nmarkdown-it-py==3.0.0\\nMarkupSafe==2.1.5\\nmdurl==0.1.2\\nmultidict==6.1.0\\nnumpy==2.0.1\\nnvidia-nccl-cu12==2.22.3\\noptuna==3.6.1\\nordered-set==4.1.0\\norjson==3.10.7\\npackaging==24.1\\npandas==2.2.2\\nplotext==5.2.8\\npsutil==6.0.0\\npsycopg==3.2.1\\npsycopg-binary==3.2.1\\npsycopg-pool==3.2.2\\npyarrow==17.0.0\\npydantic==2.9.1\\npydantic_core==2.23.3\\nPygments==2.18.0\\npyserial==3.5\\npython-dateutil==2.9.0.post0\\npython-dotenv==1.0.1\\npython-multipart==0.0.9\\npytz==2024.2\\nPyYAML==6.0.2\\nredis==5.0.8\\nrequests==2.32.3\\nrich==13.8.1\\nschema==0.7.7\\nscikit-learn==1.5.1\\nscipy==1.14.0\\nshellingham==1.5.4\\nsix==1.16.0\\nsniffio==1.3.1\\nSQLAlchemy==2.0.34\\nstarlette==0.37.2\\nthreadpoolctl==3.5.0\\ntqdm==4.66.5\\ntyper==0.12.5\\ntyping_extensions==4.12.2\\ntzdata==2024.1\\nurllib3==2.2.2\\nuvicorn==0.30.6\\nuvicorn-worker==0.2.0\\nuvloop==0.20.0\\nwatchfiles==0.24.0\\nwebsockets==13.0.1\\nxgboost==2.1.0\\nyarl==1.11.1\\n", "Installed System Packages": "Desired=Unknown/Install/Remove/Purge/Hold\\n| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend\\n|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\\n||/ Name Version Architecture Description\\n+++-=============================================-==========================================-============-===================================================================================\\nii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information\\nii acl 2.3.2-1build1 amd64 access control list - utilities\\nii adduser 3.137ubuntu1 all add and remove users and groups\\nii adwaita-icon-theme 46.0-1 all default icon theme of GNOME\\nii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files\\nii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files\\nii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files\\nii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA\\nii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs\\nii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn\'t go by time\\nii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version\\nii apparmor 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 user-space parser utility for AppArmor\\nii apport 2.28.1-0ubuntu3.1 all automatically generate crash reports for debugging\\nii apport-core-dump-handler 2.28.1-0ubuntu3.1 all Kernel core dump handler for Apport\\nii apport-gtk 2.28.1-0ubuntu3.1 all GTK+ frontend for the apport crash report system\\nii apport-symptoms 0.25 all symptom scripts for apport\\nii appstream 1.0.2-1build6 amd64 Software component metadata management\\nii apt 2.7.14build2 amd64 commandline package manager\\nii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads\\nii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads\\nii apt-utils 2.7.14build2 amd64 package management related utility programs\\nii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service\\nii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients\\nii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker\\nii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell\\nii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)\\nii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)\\nii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon\\nii baobab 46.0-1build1 amd64 GNOME disk usage analyzer\\nii base-files 13ubuntu10.1 amd64 Debian base system miscellaneous files\\nii base-passwd 3.6.3build1 amd64 Debian base system master password and group files\\nii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell\\nii bash-completion 1:2.11-8 all programmable completion for the bash shell\\nii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language\\nii bind9-dnsutils 1:9.18.28-0ubuntu0.24.04.1 amd64 Clients provided with BIND 9\\nii bind9-host 1:9.18.28-0ubuntu0.24.04.1 amd64 DNS Lookup Utility\\nii bind9-libs:amd64 1:9.18.28-0ubuntu0.24.04.1 amd64 Shared Libraries used by BIND 9\\nii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities\\nii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities\\nii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target\\nii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons\\nii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS\\nii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon\\nii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices\\nii boot-repair 4ppa2081 all Graphical tool to repair boot problems\\nii boot-sav 4ppa2081 all Librairies for Boot-Info, OS-uninstaller and Boot-repair\\nii boot-sav-extra 4ppa2081 all Extra librairies for OS-uninstaller and Boot-repair\\nii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)\\nii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF\\nii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display\\nii bsdextrautils 2.39.3-9ubuntu6.1 amd64 extra utilities from 4.4BSD-Lite\\nii bsdutils 1:2.39.3-9ubuntu6.1 amd64 basic utilities from 4.4BSD-Lite\\nii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation\\nii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages\\nii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs\\nii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities\\nii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities\\nii ca-certificates 20240203 all Common CA certificates\\nii ca-certificates-java 20240118 all Common CA certificates (JKS keystore)\\nii cloud-guest-utils 0.33-1 all cloud guest utilities\\nii cloud-init 24.2-0ubuntu1~24.04.2 all initialization and customization tool for cloud instances\\nii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon\\nii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files\\nii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions\\nii console-setup 1.226ubuntu1 all console font and keymap setup program\\nii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup\\nii containerd.io 1.7.21-1 amd64 An open and reliable container runtime\\nii coreutils 9.4-3ubuntu6 amd64 GNU core utilities\\nii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files\\nii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)\\nii cpp-11 11.4.0-9ubuntu1 amd64 GNU C preprocessor\\nii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor\\nii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu\\nii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture\\nii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2\\nii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon\\nii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon\'s configuration files\\nii cups 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface\\nii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed\\nii cups-bsd 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - BSD commands\\nii cups-client 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - client programs (SysV)\\nii cups-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - common files\\nii cups-core-drivers 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - driverless printing\\nii cups-daemon 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - daemon\\nii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package\\nii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing\\nii cups-ipp-utils 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities\\nii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges\\nii cups-ppdc 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities\\nii cups-server-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - server common files\\nii curl 8.5.0-2ubuntu10.3 amd64 command line tool for transferring data with URL syntax\\nii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell\\nii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)\\nii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)\\nii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)\\nii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)\\nii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)\\nii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)\\nii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator\\nii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities\\nii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end\\nii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service\\nii debconf 1.5.86ubuntu1 all Debian configuration management system\\nii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf\\nii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian\\nii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files\\nii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)\\nii dictionaries-common 1.29.7 all spelling dictionaries - common utilities\\nii diffutils 1:3.10-1build1 amd64 File comparison utilities\\nii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service\\nii distro-info 1.7build1 amd64 provides information about the distributions\' releases\\nii distro-info-data 0.60ubuntu0.1 all information about the distributions\' releases (data files)\\nii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder\\nii dmsetup 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme\\nii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key\\nii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable\\nii docbook-xml 4.5-12 all standard XML documentation system for software and systems\\nii docker-buildx-plugin 0.16.2-1~ubuntu.22.04~jammy amd64 Docker Buildx cli plugin.\\nii docker-ce 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker: the open-source application container engine\\nii docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine\\nii docker-ce-rootless-extras 5:27.2.1-1~ubuntu.22.04~jammy amd64 Rootless support for Docker.\\nii docker-compose-plugin 2.29.2-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.\\nii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems\\nii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system\\nii dpkg-dev 1.22.6ubuntu6.1 all Debian package development tools\\nii dracut-install 060+5-1ubuntu3.2 amd64 dracut is an event driven initramfs infrastructure (dracut-install)\\nii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities\\nii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends\\nii ed 1.20.1-1 amd64 classic UNIX line editor\\nii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager\\nii eject 2.39.3-9ubuntu6.1 amd64 ejects CDs and operates CD-Changers under Linux\\nii emacsen-common 3.0.5 all Common facilities for all emacsen\\nii enchant-2 2.3.3-2build2 amd64 Wrapper for various spell checker engines (binary programs)\\nii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program\\nii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files\\nii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings\\nii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer\\nii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files\\nii evolution-data-server 3.52.3-0ubuntu1 amd64 evolution database backend server\\nii evolution-data-server-common 3.52.3-0ubuntu1 all architecture independent files for Evolution Data Server\\nii fakeroot 1.33-1 amd64 tool for simulating superuser privileges\\nii fdisk 2.39.3-9ubuntu6.1 amd64 collection of partitioning utilities\\nii file 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers\\nii file-roller 44.3-0ubuntu1 amd64 archive manager for GNOME\\nii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs\\nii firefox 1:1snap1-0ubuntu5 amd64 Transitional package - firefox -> firefox snap\\nii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed\\nii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries\\nii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration\\nii fonts-beng 2:1.3 all Metapackage to install Bengali and Assamese fonts\\nii fonts-beng-extra 3.3.1-2 all TrueType fonts for Bengali language\\nii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters\\nii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters\\nii fonts-deva 2:1.4 all Meta package to install all Devanagari fonts\\nii fonts-deva-extra 3.0-6 all Free fonts for Devanagari script\\nii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)\\nii fonts-freefont-ttf 20211204+svn4273-2 all Freefont Serif, Sans and Mono Truetype fonts\\nii fonts-gargi 2.0-6 all OpenType Devanagari font\\nii fonts-gubbi 1.3-7 all Gubbi free font for Kannada script\\nii fonts-gujr 2:1.5 all Meta package to install all Gujarati fonts\\nii fonts-gujr-extra 1.0.1-2 all Free fonts for Gujarati script\\nii fonts-guru 2:1.3 all Meta package to install all Punjabi fonts\\nii fonts-guru-extra 2.0-5 all Free fonts for Punjabi language\\nii fonts-indic 2:1.4 all Meta package to install all Indian language fonts\\nii fonts-kalapi 1.0-5 all Kalapi Gujarati Unicode font\\nii fonts-knda 2:1.3 all Meta package for Kannada fonts\\nii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier\\nii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow\\nii fonts-lohit-beng-assamese 2.91.5-2 all Lohit TrueType font for Assamese Language\\nii fonts-lohit-beng-bengali 2.91.5-3 all Lohit TrueType font for Bengali Language\\nii fonts-lohit-deva 2.95.4-5 all Lohit TrueType font for Devanagari script\\nii fonts-lohit-gujr 2.92.4-4 all Lohit TrueType font for Gujarati Language\\nii fonts-lohit-guru 2.91.2-3 all Lohit TrueType font for Punjabi Language\\nii fonts-lohit-knda 2.5.4-3 all Lohit TrueType font for Kannada Language\\nii fonts-lohit-mlym 2.92.2-2 all Lohit TrueType font for Malayalam Language\\nii fonts-lohit-orya 2.91.2-2 all Lohit TrueType font for Oriya Language\\nii fonts-lohit-taml 2.91.3-2 all Lohit TrueType font for Tamil Language\\nii fonts-lohit-taml-classical 2.5.4-2 all Lohit Tamil TrueType fonts for Tamil script\\nii fonts-lohit-telu 2.5.5-2build1 all Lohit TrueType font for Telugu Language\\nii fonts-mlym 2:1.3 all Meta package to install all Malayalam fonts\\nii fonts-nakula 1.0-4 all Free Unicode compliant Devanagari font\\nii fonts-navilu 1.2-4 all Handwriting font for Kannada\\nii fonts-noto-cjk 1:20230817+repack1-3 all \\"No Tofu\\" font families with large Unicode coverage (CJK regular and bold)\\nii fonts-noto-color-emoji 2.042-1 all color emoji font from Google\\nii fonts-noto-core 20201225-2 all \\"No Tofu\\" font families with large Unicode coverage (core)\\nii fonts-noto-mono 20201225-2 all \\"No Tofu\\" monospaced font family with large Unicode coverage\\nii fonts-opensymbol 4:102.12+LibO24.2.5-0ubuntu0.24.04.2 all OpenSymbol TrueType font\\nii fonts-orya 2:1.3 all Meta package to install all Odia fonts\\nii fonts-orya-extra 2.0-6 all Free fonts for Odia script\\nii fonts-pagul 1.0-9 all Free TrueType font for the Sourashtra language\\nii fonts-sahadeva 1.0-5 all Free Unicode compliant Devanagari font\\nii fonts-samyak-deva 1.2.2-6 all Samyak TrueType font for Devanagari script\\nii fonts-samyak-gujr 1.2.2-6 all Samyak TrueType font for Gujarati language\\nii fonts-samyak-mlym 1.2.2-6 all Samyak TrueType font for Malayalam language\\nii fonts-samyak-taml 1.2.2-6 all Samyak TrueType font for Tamil language\\nii fonts-sarai 1.0-3 all truetype font for devanagari script\\nii fonts-sil-annapurna 2.000-2 all smart font for languages using Devanagari script\\nii fonts-smc 1:7.5 all Metapackage for various TrueType fonts for Malayalam Language\\nii fonts-smc-anjalioldlipi 7.1.2-2 all AnjaliOldLipi malayalam font\\nii fonts-smc-chilanka 1.540-2 all Chilanka malayalam font\\nii fonts-smc-dyuthi 3.0.2-2 all Dyuthi malayalam font\\nii fonts-smc-gayathri 1.200-1 all Gayathri Malayalam font\\nii fonts-smc-karumbi 1.1.2-2 all Karumbi malayalam font\\nii fonts-smc-keraleeyam 3.0.2-2 all Keraleeyam malayalam font\\nii fonts-smc-manjari 2.200-1 all Manjari malayalam font\\nii fonts-smc-meera 7.0.3-1 all Meera malayalam font\\nii fonts-smc-rachana 7.0.2-1build1 all Rachana malayalam font\\nii fonts-smc-raghumalayalamsans 2.2.1-1 all RaghuMalayalamSans malayalam font\\nii fonts-smc-suruma 3.2.3-1 all Suruma malayalam font\\nii fonts-smc-uroob 2.0.2-1 all Uroob malayalam font\\nii fonts-taml 2:1.4 all Meta package to install all Tamil fonts\\nii fonts-telu 2:1.3 all Meta package to install all Telugu fonts\\nii fonts-telu-extra 2.0-6 all Free fonts for Telugu script\\nii fonts-teluguvijayam 2.1-1 all TrueType fonts for Telugu script (te)\\nii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu\\nii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts\\nii fonts-yrsa-rasa 2.005-1 all Open-source, libre fonts for Latin + Gujarati\\nii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database\\nii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access\\nii freeipmi-common 1.6.13-3 all GNU implementation of the IPMI protocol - common files\\nii freeipmi-tools 1.6.13-3 amd64 GNU implementation of the IPMI protocol - tools\\nii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly\\nii ftp 20230507-2build3 all dummy transitional package for tnftp\\nii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)\\nii fwupd 1.9.24-1~24.04.1 amd64 Firmware update daemon\\nii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary\\nii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler\\nii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler\\nii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture\\nii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture\\nii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand\\nii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)\\nii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler\\nii gcc-11 11.4.0-9ubuntu1 amd64 GNU C compiler\\nii gcc-11-base:amd64 11.4.0-9ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler\\nii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture\\nii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture\\nii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)\\nii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)\\nii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger\\nii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool\\nii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager\\nii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service\\nii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library\\nii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system\\nii ghostscript 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF\\nii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService\\nii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita\\nii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)\\nii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)\\nii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4\\nii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library\\nii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components\\nii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library\\nii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library\\nii gir1.2-gdesktopenums-3.0:amd64 46.1-0ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas\\nii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library - GObject-Introspection\\nii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager\\nii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)\\nii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library\\nii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule\\nii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library\\nii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar\\nii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)\\nii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth\\nii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)\\nii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)\\nii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)\\nii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library\\nii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data\\nii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library\\nii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy\\nii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)\\nii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data\\nii gir1.2-javascriptcoregtk-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-javascriptcoregtk-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-mutter-14:amd64 46.2-1ubuntu0.24.04.1 amd64 GObject introspection data for Mutter\\nii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library\\nii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4\\nii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)\\nii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library\\nii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings\\nii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)\\nii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit\\nii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files\\nii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)\\nii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1\\nii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library\\nii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data\\nii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library\\nii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower\\nii gir1.2-vte-2.91:amd64 0.76.0-1ubuntu0.1 amd64 GObject introspection data for the VTE library\\nii gir1.2-webkit-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-webkit2-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library\\nii git 1:2.43.0-1ubuntu7.1 amd64 fast, scalable, distributed revision control system\\nii git-man 1:2.43.0-1ubuntu7.1 all fast, scalable, distributed revision control system (manual pages)\\nii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)\\nii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd\\nii glade2script 3.2.4~ppa23 all Glade interface engine for scripts\\nii glade2script-python3 3.2.4~ppa23 all Glade interface engine for scripts (Python3 version)\\nii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib\\nii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files\\nii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services\\nii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons\\nii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files\\nii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app\\nii gnome-calculator 1:46.1-1ubuntu1~24.04.1 amd64 GNOME desktop calculator\\nii gnome-characters 46.0-1build1 amd64 character map application\\nii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support\\nii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop\\nii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files\\nii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images\\nii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps\\nii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media\\nii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME\\nii gnome-initial-setup 46.2-1ubuntu0.24.04.1 amd64 Initial GNOME system setup helper\\nii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)\\nii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library\\nii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal\\nii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii gnome-online-accounts 3.50.4-0ubuntu2 amd64 service to manage online accounts for the GNOME desktop\\nii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop\\nii gnome-remote-desktop 46.3-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire\\nii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime\\nii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events\\nii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files\\nii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings\\nii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files\\nii gnome-shell 46.0-0ubuntu6~24.04.4 amd64 graphical shell for the GNOME desktop\\nii gnome-shell-common 46.0-0ubuntu6~24.04.4 all common files for the GNOME graphical shell\\nii gnome-shell-extension-appindicator 58-1 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell\\nii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell\\nii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell\\nii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1.1 all extension which adds a Windows-like snap assist to GNOME Shell\\nii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam\\nii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME\\nii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME\\nii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application\\nii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator\\nii gnome-text-editor 46.3-0ubuntu2 amd64 simple text editor for GNOME\\nii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine\\nii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files\\nii gnome-user-docs 46.0-1ubuntu1 all GNOME Help\\nii gnome-user-docs-de 46.0-1ubuntu1 all GNOME Help (German)\\nii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement\\nii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files\\nii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs\\nii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations\\nii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent\\nii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client\\nii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities\\nii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version\\nii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool\\nii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep\\nii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)\\nii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)\\nii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)\\nii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)\\nii grub-gfxpayload-lists 0.7build2 amd64 GRUB gfxpayload blacklist\\nii grub-pc 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)\\nii grub-pc-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)\\nii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)\\nii gsettings-desktop-schemas 46.1-0ubuntu1 all GSettings desktop-wide schemas\\nii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu\\nii gstreamer1.0-alsa:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugin for ALSA\\nii gstreamer1.0-gl:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for GL\\nii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)\\nii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit\\nii gstreamer1.0-pipewire:amd64 1.0.5-1ubuntu1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server\\nii gstreamer1.0-plugins-base:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins from the \\"base\\" set\\nii gstreamer1.0-plugins-base-apps 1.24.2-1ubuntu0.1 amd64 GStreamer helper programs from the \\"base\\" set\\nii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the \\"good\\" set\\nii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer\\nii gstreamer1.0-x:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for X11 and Pango\\nii gtk-update-icon-cache 3.24.41-4ubuntu1.1 amd64 icon theme caching utility\\nii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine\\nii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1.1 amd64 pixbuf-based theme for GTK 2\\nii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module\\nii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends\\nii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files\\nii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers\\nii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server\\nii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries\\nii gzip 1.12-1ubuntu3 amd64 GNU compression utilities\\nii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance\\nii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader\\nii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer\\nii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes\\nii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name\\nii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)\\nii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files\\nii humanity-icon-theme 0.6.16 all Humanity Icon theme\\nii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell\\nii hwdata 0.379-1 all hardware identification / configuration data\\nii ibus 1.5.29-2 amd64 Intelligent Input Bus - core\\nii ibus-data 1.5.29-2 all Intelligent Input Bus - data files\\nii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support\\nii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support\\nii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support\\nii ibus-table 1.17.4-2 all table engine for IBus\\nii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs\\nii ieee-data 20220827.1 all OUI and IAB listings\\nii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy\\nii im-config 0.57-2 all Input method configuration framework\\nii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client\\nii info 7.1-3build2 amd64 Standalone GNU Info documentation browser\\nii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed\\nii init-system-helpers 1.66ubuntu1 all helper tools for all init systems\\nii initramfs-tools 0.142ubuntu25.2 all generic modular initramfs generator (automation)\\nii initramfs-tools-bin 0.142ubuntu25.2 amd64 binaries used by initramfs-tools\\nii initramfs-tools-core 0.142ubuntu25.2 all generic modular initramfs generator (core tools)\\nii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem\\nii install-info 7.1-3build2 amd64 Manage installed documentation in info format\\nii intel-microcode 3.20240813.0ubuntu0.24.04.2 amd64 Processor microcode firmware for Intel CPUs\\nii ipmitool 1.8.19-7build2 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)\\nii ipp-usb 0.9.24-0ubuntu3.1 amd64 Daemon for IPP over USB printer support\\nii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools\\nii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT\\nii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts\\nii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host\\nii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations\\nii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool\\nii java-common 0.75+exp1 all Base package for Java runtimes\\nii javascript-common 11+nmu1 all Base support for JavaScript library packages\\nii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor\\nii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities\\nii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker\\nii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences\\nii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service\\nii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot\\nii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules\\nii language-pack-de 1:24.04+20240817 all translation updates for language German\\nii language-pack-de-base 1:24.04+20240817 all translations for language German\\nii language-pack-en 1:24.04+20240817 all translation updates for language English\\nii language-pack-en-base 1:24.04+20240817 all translations for language English\\nii language-pack-gnome-de 1:24.04+20240817 all GNOME translation updates for language German\\nii language-pack-gnome-de-base 1:24.04+20240817 all GNOME translations for language German\\nii language-pack-gnome-en 1:24.04+20240817 all GNOME translation updates for language English\\nii language-pack-gnome-en-base 1:24.04+20240817 all GNOME translations for language English\\nii language-selector-common 0.225 all Language selector for Ubuntu\\nii language-selector-gnome 0.225 all Language selector frontend for Ubuntu\\nii laptop-detect 0.16 all system chassis type checker\\nii less 590-2ubuntu2.1 amd64 pager program similar to more\\nii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library\\nii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library\\nii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries\\nii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library\\nii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones\\nii libaio1t64:amd64 0.3.113-6build1 amd64 Linux kernel AIO access library - shared library\\nii libalgorithm-diff-perl 1.201-1 all module to find differences between files\\nii libalgorithm-diff-xs-perl:amd64 0.04-8build3 amd64 module to find differences between files (XS accelerated)\\nii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data\\nii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)\\nii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library\\nii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library\\nii libapparmor1:amd64 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 changehat AppArmor library\\nii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services\\nii libapr1-dev 1.7.2-3.1build2 amd64 Apache Portable Runtime Library - Development Headers\\nii libapr1t64:amd64 1.7.2-3.1build2 amd64 Apache Portable Runtime Library\\nii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library\\nii libarchive13t64:amd64 3.7.2-2ubuntu0.1 amd64 Multi-format archive and compression library (shared library)\\nii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library\\nii libasan6:amd64 11.4.0-9ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers\\nii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications\\nii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library\\nii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components\\nii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library\\nii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library\\nii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge\\nii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library\\nii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit\\nii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)\\nii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions\\nii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions\\nii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library\\nii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library\\nii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files\\nii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing\\nii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework\\nii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library\\nii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files\\nii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library\\nii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi\'s embeddable mDNS/DNS-SD library\\nii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library\\nii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices\\nii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)\\nii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators\\nii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)\\nii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries\\nii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)\\nii libblkid-dev:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library - headers\\nii libblkid1:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library\\nii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev\\nii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev\\nii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev\\nii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev\\nii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev\\nii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev\\nii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev\\nii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev\\nii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices\\nii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack\\nii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library\\nii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization\\nii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading\\nii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)\\nii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)\\nii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library\\nii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)\\nii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library\\nii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions\\nii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations\\nii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes\\nii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime\\nii libc-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Binaries\\nii libc-dev-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Development binaries\\nii libc-devtools 2.39-0ubuntu8.3 amd64 GNU C Library: Development tools\\nii libc6:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Shared libraries\\nii libc6-dbg:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: detached debugging symbols\\nii libc6-dev:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Development Libraries and Header Files\\nii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library\\nii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl\\nii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)\\nii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library\\nii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)\\nii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library\\nii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)\\nii libcamel-1.2-64t64:amd64 3.52.3-0ubuntu1 amd64 Evolution MIME message handling library\\nii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library\\nii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra\\nii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds\\nii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra\\nii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds\\nii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library\\nii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)\\nii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)\\nii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)\\nii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB\\nii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs\\nii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction\\nii libcdio19t64:amd64 2.1.0-4.1ubuntu1.2 amd64 library to read and control CD-ROM\\nii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)\\nii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library\\nii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library\\nii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes\\nii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)\\nii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)\\nii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord\\nii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime\\nii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime\\nii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library\\nii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library\\nii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files\\nii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library\\nii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.1 amd64 disk encryption support - shared library\\nii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)\\nii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)\\nii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library\\nii libcups2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Core library\\nii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files\\nii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library\\nii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Raster image library\\nii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)\\nii libcurl4t64:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)\\nii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library\\nii libdata-dump-perl 1.25-1 all Perl module to help dump data structures\\nii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library\\nii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]\\nii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)\\nii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC\\nii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus\\nii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version\\nii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library\\nii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation\\nii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)\\nii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server\\nii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)\\nii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library\\nii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK\\nii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib\\nii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression\\nii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre\\nii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format\\nii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files\\nii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules\\nii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime\\nii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files\\nii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime\\nii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime\\nii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime\\nii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime\\nii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library\\nii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)\\nii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information\\nii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library\\nii libebackend-1.2-11t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libebook-1.2-21t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution address books\\nii libebook-contacts-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution contacts books\\nii libecal-2.0-3:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution calendars\\nii libedata-book-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution address books\\nii libedata-cal-2.0-2t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution calendars\\nii libedataserver-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedataserverui-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries\\nii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library\\nii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libegl-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library\\nii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support\\nii libei1:amd64 1.2.1-1 amd64 Emulated Input client library\\nii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library\\nii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files\\nii libenchant-2-2:amd64 2.3.3-2build2 amd64 Wrapper library for various spell checker engines (runtime libs)\\nii libencode-locale-perl 1.05-3 all utility to determine the locale encoding\\nii libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files\\nii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library\\nii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way\\nii libespeak-ng1:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: shared library\\nii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)\\nii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices\\nii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library\\nii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets\\nii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)\\nii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files\\nii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library\\nii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library\\nii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit\\nii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries\\nii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library\\nii libexttextcat-data 3.4.7-1build1 all Language detection library - data files\\nii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions\\nii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries\\nii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C\\nii libfdisk1:amd64 2.39.3-9ubuntu6.1 amd64 fdisk partitioning library\\nii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)\\nii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime\\nii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision\\nii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects\\nii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification\\nii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files\\nii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)\\nii libfile-listing-perl 6.16-1 all module to parse directory listings\\nii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types\\nii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library\\nii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library\\nii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files\\nii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime\\nii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library\\nii libfprint-2-2 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, shared libraries\\nii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, drivers shared libraries\\nii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX\\nii libfreeipmi17 1.6.13-3 amd64 GNU IPMI - libraries\\nii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)\\nii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)\\nii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files\\nii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm\\nii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers\\nii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)\\nii libfwupd2:amd64 1.9.24-1~24.04.1 amd64 Firmware update daemon library\\nii libgail-common:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- common modules\\nii libgail18t64:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- shared libraries\\nii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)\\nii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)\\nii libgbm1:amd64 24.0.9-0ubuntu0.1 amd64 generic buffer management API -- runtime\\nii libgcc-11-dev:amd64 11.4.0-9ubuntu1 amd64 GCC support library (development files)\\nii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)\\nii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library\\nii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks\\nii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks\\nii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks\\nii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library\\nii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library\\nii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files\\nii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries\\nii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version) \\nii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version) \\nii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library\\nii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library (thumbnailer)\\nii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 all GDK Pixbuf library - data files\\nii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)\\nii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library\\nii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service\\nii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim\\nii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library\\nii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)\\nii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)\\nii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data\\nii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform\\nii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support\\nii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules\\nii libgl1-mesa-dri:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules\\nii libglapi-mesa:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the GL API -- shared library\\nii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support\\nii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries\\nii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries\\nrc libglib2.0-0:amd64 2.72.4-0ubuntu2.3 amd64 GLib library of C routines\\nii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines\\nii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library\\nii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library\\nii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library\\nii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library\\nii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)\\nii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)\\nii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library\\nii libglx-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library\\nii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support\\nii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library\\nii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME\\nii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files\\nii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library\\nii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library\\nii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version\\nii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files\\nii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files\\nii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files\\nii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library\\nii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.2 amd64 GNU TLS library - main runtime library\\nii libgoa-1.0-0b:amd64 3.50.4-0ubuntu2 amd64 library for GNOME Online Accounts\\nii libgoa-1.0-common 3.50.4-0ubuntu2 all library for GNOME Online Accounts - common files\\nii libgoa-backend-1.0-2:amd64 3.50.4-0ubuntu2 amd64 backend library for GNOME Online Accounts\\nii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library\\nii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library\\nii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)\\nii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME\\nii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library\\nii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages\\nii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library\\nii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library\\nii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)\\nii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types\\nii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library\\nii libgs-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - ICC profiles\\nii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF - Library\\nii libgs10-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - common files\\nii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version\\nii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files\\nii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds\\nii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications\\nii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files\\nii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism\\nii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP\\nii libgstreamer-gl1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer GL libraries\\nii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer libraries from the \\"base\\" set\\nii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the \\"good\\" set\\nii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements\\nrc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library\\nii libgtk-3-0t64:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library\\nii libgtk-3-bin 3.24.41-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk-3-common 3.24.41-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library\\nii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library\\nii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library\\nii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library\\nrc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-bin 2.24.33-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk2.0-common 2.24.33-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library\\nii libgtkmm-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)\\nii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget\\nii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget\\nii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)\\nii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)\\nii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev\\nii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP\\nii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP\\nii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP\\nii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1\\nii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library\\nii libgweather-4-common 4.4.2-1build1 all GWeather common files\\nii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)\\nii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones\\nii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)\\nii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend\\nii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)\\nii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin\\nii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin\\nii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin\\nii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library\\nii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)\\nii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries\\nii libhtml-form-perl 6.11-1 all module that represents an HTML form element\\nii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats\\nii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents\\nii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML\\nii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees\\nii libhttp-cookies-perl 6.11-1 all HTTP cookie jars\\nii libhttp-daemon-perl 6.16-1 all simple http server class\\nii libhttp-date-perl 6.06-1 all module of date conversion routines\\nii libhttp-message-perl 6.45-1ubuntu1 all perl interface to HTTP style messages\\nii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation\\nii libhunspell-1.7-0:amd64 1.7.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)\\nii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library\\nii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library\\nii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)\\nii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)\\nii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library\\nii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode\\nii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications\\nii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library\\nii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)\\nii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access\\nii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library\\nii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library\\nii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices\\nii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser\\nii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks\\nii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library\\nii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection\\nii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets\\nii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)\\nii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library\\nii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library\\nii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics\\nii libipmiconsole2 1.6.13-3 amd64 GNU IPMI - Serial-over-Lan library\\nii libipmidetect0 1.6.13-3 amd64 GNU IPMI - IPMI node detection library\\nii libipsec-mb1 1.5-1build1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library\\nii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library\\nii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints\\nii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems\\nii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images\\nii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library\\nii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library\\nii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data\\nii libjavascriptcoregtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjavascriptcoregtk-6.0-1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries\\nii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries\\nii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library\\nii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library\\nii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group\'s JPEG runtime library (dependency package)\\nii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library\\nii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications\\nii libjs-sphinxdoc 7.2.6-6 all JavaScript support for Sphinx documentation\\nii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript\'s functional programming helper library\\nii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library\\nii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library\\nii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)\\nii libjudydebian1 1.0.5-5.1build1 amd64 C library for creating and accessing dynamic arrays\\nii libk5crypto3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Crypto Library\\nii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)\\nii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs\\nii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library\\nii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)\\nii libkrb5-3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries\\nii libkrb5support0:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Support library\\nii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library\\nii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data\\nii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages\\nii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)\\nii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library\\nii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)\\nii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)\\nii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)\\nii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries\\nii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries\\nii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library\\nii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library\\nii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library\\nii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl\\nii liblouis-data 3.29.0-1build1 all Braille translation library - data\\nii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs\\nii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities\\nii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data\\nii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs\\nii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)\\nii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool\\nii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)\\nii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)\\nii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)\\nii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4\\nii libluajit-5.1-2:amd64 2.1.0+git20231223.c525bcb+dfsg-1 amd64 Just in time compiler for Lua - library version\\nii libluajit-5.1-common 2.1.0+git20231223.c525bcb+dfsg-1 all Just in time compiler for Lua - common files\\nii liblwp-mediatypes-perl 6.04-2 all module to guess media type for a file or a URL\\nii liblwp-protocol-https-perl 6.13-1 all HTTPS driver for LWP::UserAgent\\nii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime\\nii liblzma5:amd64 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression library\\nii liblzo2-2:amd64 2.10-2build4 amd64 data compression library\\nii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using \\"magic\\" numbers (compiled magic file)\\nrc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs\\nii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library\\nii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library\\nii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol\\nii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports\\nii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line\\nii libmd0:amd64 1.1.0-2build1 amd64 message digest functions from BSD systems - shared library\\nii libmediaart-2.0-0:amd64 1.9.6-1build2 amd64 media art extraction and cache management library\\nii libmhash2:amd64 0.9.9.9-9build3 amd64 Library for cryptographic hashing and message authentication\\nii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries\\nii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library\\nii libmount-dev:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library - headers\\nii libmount1:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library\\nii libmozjs-115-0t64:amd64 115.10.0-1 amd64 SpiderMonkey JavaScript library\\nii libmp3lame0:amd64 3.100-6build1 amd64 MP3 encoding library\\nii libmpc3:amd64 1.3.1-1build1 amd64 multiple precision complex floating-point library\\nii libmpfr6:amd64 4.2.1-1build1 amd64 multiple precision floating-point computation\\nii libmpg123-0t64:amd64 1.32.5-1ubuntu1 amd64 MPEG layer 1/2/3 audio decoder (shared library)\\nii libmsgraph-0-1:amd64 0.2.1-0ubuntu3 amd64 library for accessing the Microsoft Graph API\\nii libmtdev1t64:amd64 1.1.6-1.1build1 amd64 Multitouch Protocol Translation Library - shared library\\nii libmtp-common 1.1.21-3.1build1 all Media Transfer Protocol (MTP) common files\\nii libmtp-runtime 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) runtime tools\\nii libmtp9t64:amd64 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) library\\nii libmutter-14-0:amd64 46.2-1ubuntu0.24.04.1 amd64 window manager library from the Mutter window manager\\nii libmysqlclient21:amd64 8.0.39-0ubuntu0.24.04.2 amd64 MySQL database client library\\nii libmythes-1.2-0:amd64 2:1.2.5-1build1 amd64 simple thesaurus library\\nii libnautilus-extension4:amd64 1:46.2-0ubuntu0.2 amd64 libraries for nautilus components - runtime version\\nii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling\\nii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)\\nii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol\\nii libnet-dbus-perl 1.2.0-2build3 amd64 Perl extension for the DBus bindings\\nii libnet-http-perl 6.23-1 all module providing low-level HTTP connection client\\nii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP\\nii libnet-ssleay-perl:amd64 1.94-1build4 amd64 Perl module for Secure Sockets Layer (SSL)\\nii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library\\nii libnetplan1:amd64 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration runtime library\\nii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)\\nii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik\'s Windowing Toolkit - text mode windowing with slang\\nii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library\\nii libnfs14:amd64 5.0.2-1build1 amd64 NFS client library (shared library)\\nii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library\\nii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library\\nii libnghttp2-14:amd64 1.59.0-1ubuntu0.1 amd64 library implementing HTTP/2 protocol (shared library)\\nii libnl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets\\nii libnl-genl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - generic netlink\\nii libnl-route-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - route interface\\nii libnm0:amd64 1.46.0-1ubuntu2 amd64 GObject-based client library for NetworkManager\\nii libnma-common 1.10.6-3build2 all NetworkManager GUI library - translations\\nii libnma-gtk4-0:amd64 1.10.6-3build2 amd64 NetworkManager GUI GTK4 library\\nii libnma0:amd64 1.10.6-3build2 amd64 NetworkManager GUI library\\nii libnotify-bin 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Utilities)\\nii libnotify4:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon\\nii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads\\nii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library\\nii libnss-mdns:amd64 0.15.1-4build1 amd64 NSS module for Multicast DNS name resolution\\nii libnss-systemd:amd64 255.4-1ubuntu8.4 amd64 nss module providing dynamic user and group name resolution\\nii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries\\nii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)\\nii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy\\nii libnvme1t64 1.8-3build1 amd64 NVMe management library (library)\\nii libogg0:amd64 1.3.5-3build1 amd64 Ogg bitstream library\\nii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library\\nii libopengl0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- OpenGL support\\nii libopenipmi0t64 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface - runtime\\nii libopenjp2-7:amd64 2.5.0-2build3 amd64 JPEG 2000 image compression/decompression library\\nii libopus0:amd64 1.4-1build1 amd64 Opus codec runtime library\\nii liborc-0.4-0t64:amd64 1:0.4.38-1ubuntu0.1 amd64 Library of Optimized Inner Loops Runtime Compiler\\nii liborcus-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents\\nii liborcus-parser-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents - parser library\\nii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime\\nii libpackagekit-glib2-18:amd64 1.2.8-2build3 amd64 Library for accessing PackageKit using GLib\\nii libpam-cap:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (PAM module)\\nii libpam-fprintd:amd64 1.94.3-1 amd64 PAM module for fingerprint authentication through fprintd\\nii libpam-gnome-keyring:amd64 46.1-2build1 amd64 PAM module to unlock the GNOME keyring upon login\\nii libpam-modules:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM\\nii libpam-modules-bin 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM - helper binaries\\nii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength\\nii libpam-runtime 1.5.3-5ubuntu5.1 all Runtime support for the PAM library\\nii libpam-sss:amd64 2.9.4-1.1ubuntu6.1 amd64 Pam module for the System Security Services Daemon\\nii libpam-systemd:amd64 255.4-1ubuntu8.4 amd64 system and service manager - PAM module\\nii libpam0g:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules library\\nii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangomm-2.48-1t64:amd64 2.52.0-1build1 amd64 C++ Wrapper for pango (shared libraries)\\nii libpangoxft-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)\\nii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics\\nii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library\\nii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture\\nii libpcaudio0:amd64 1.2-2build3 amd64 C API to different audio devices - shared library\\nii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)\\nii libpciaccess0:amd64 0.17-3build1 amd64 Generic PCI access library for X\\nii libpcre2-16-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files\\nii libpcre2-32-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 32 bit runtime files\\nii libpcre2-8-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files\\nii libpcre2-dev:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - development files\\nii libpcre2-posix3:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files\\nii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)\\nii libpeas-1.0-0:amd64 1.36.0-3build4 amd64 Application plugin library\\nii libpeas-common 1.36.0-3build4 all Application plugin library (common files)\\nii libperl5.38t64:amd64 5.38.2-3.2build2 amd64 shared Perl library\\nii libphonenumber8:amd64 8.12.57+ds-4.2build3 amd64 parsing/formatting/validating phone numbers\\nii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library\\nii libpipewire-0.3-0t64:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server\\nii libpipewire-0.3-common 1.0.5-1ubuntu1 all libraries for the PipeWire multimedia server - common files\\nii libpipewire-0.3-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - modules\\nii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo\\nii libpkcs11-helper1t64:amd64 1.29.0-2.1build2 amd64 library that simplifies the interaction with PKCS#11\\nii libpkgconf3:amd64 1.8.1-2build1 amd64 shared library for pkgconf\\nii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists\\nii libplymouth5:amd64 24.004.60-1ubuntu7 amd64 graphical boot animation and logger - shared libraries\\nii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)\\nii libpolkit-agent-1-0:amd64 124-2ubuntu1 amd64 polkit Authentication Agent API\\nii libpolkit-gobject-1-0:amd64 124-2ubuntu1 amd64 polkit Authorization API\\nii libpoppler-cpp0t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (CPP shared library)\\nii libpoppler-glib8t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (GLib-based shared library)\\nii libpoppler134:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library\\nii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters\\nii libportal-gtk4-1:amd64 0.7.1-5build5 amd64 Flatpak portal library for GTK 4 GUIs\\nii libportal1:amd64 0.7.1-5build5 amd64 Flatpak portal library - non-GUI part\\nii libppd2:amd64 2:2.0.0-0ubuntu4 amd64 OpenPrinting libppd - Shared library\\nii libppd2-common 2:2.0.0-0ubuntu4 all OpenPrinting libppd - Auxiliary files\\nii libpq5:amd64 16.4-0ubuntu0.24.04.2 amd64 PostgreSQL C client library\\nii libproc2-0:amd64 2:4.0.4-4ubuntu3 amd64 library for accessing process information from /proc\\nii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)\\nii libprotobuf32t64:amd64 3.21.12-8.2build1 amd64 protocol buffers C++ library\\nii libproxy1-plugin-gsettings:amd64 0.5.4-4build1 amd64 transitional package for libproxy GSettings plugin\\nii libproxy1-plugin-networkmanager:amd64 0.5.4-4build1 amd64 transitional package for libproxy NetworkManager plugin\\nii libproxy1v5:amd64 0.5.4-4build1 amd64 automatic proxy configuration management library (shared)\\nii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)\\nii libpulse-mainloop-glib0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries (glib support)\\nii libpulse0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries\\nii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)\\nii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation\\nii libpython3-dev:amd64 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii libpython3.12-dev:amd64 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (standard library, version 3.12)\\nii libpython3.12t64:amd64 3.12.3-1ubuntu0.1 amd64 Shared Python runtime library (version 3.12)\\nii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol\\nii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports\\nii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line\\nii libqpdf29t64:amd64 11.9.0-1.1build1 amd64 runtime library for PDF transformation/inspection software\\nii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol\\nii libquadmath0:amd64 14-20240412-0ubuntu1 amd64 GCC Quad-Precision Math Library\\nii libraptor2-0:amd64 2.0.16-3build3 amd64 Raptor 2 RDF syntax library\\nii libraqm0:amd64 0.10.1-1build1 amd64 Library for complex text layout\\nii librasqal3t64:amd64 0.9.33-2.1build1 amd64 Rasqal RDF query library\\nii libraw1394-11:amd64 2.1.2-2build3 amd64 library for direct access to IEEE 1394 bus (aka FireWire)\\nii librdf0t64:amd64 1.0.17-3.1ubuntu3 amd64 Redland Resource Description Framework (RDF) library\\nii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries\\nii libreoffice-common 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- arch-independent files\\nii libreoffice-core 4:24.2.5-0ubuntu0.24.04.2 amd64 office productivity suite -- arch-dependent files\\nii libreoffice-style-colibre 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- colibre symbol style\\nii libreoffice-style-yaru 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- Yaru symbol style\\nii libreoffice-uiconfig-common 4:24.2.5-0ubuntu0.24.04.2 all UI data (\\"config\\") for LibreOffice (\\"common\\" set)\\nii librest-1.0-0:amd64 0.9.1-6build3 amd64 REST service access library\\nii librevenge-0.0-0:amd64 0.0.5-3build1 amd64 Base Library for writing document interface filters\\nii libroc0.3:amd64 0.3.0+dfsg-7ubuntu2 amd64 real-time audio streaming over the network (shared library)\\nii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)\\nii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)\\nii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)\\nii librygel-core-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - core library\\nii librygel-db-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - db library\\nii librygel-renderer-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - renderer library\\nii librygel-server-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - server library\\nii libsamplerate0:amd64 0.2.2-4build1 amd64 Audio sample rate conversion library\\nii libsane-common 1.2.1-7build4 all API library for scanners -- documentation and support files\\nii libsane-hpaio:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP SANE backend for multi-function peripherals\\nii libsane1:amd64 1.2.1-7build4 amd64 API library for scanners\\nii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library\\nii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules\\nii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)\\nii libsbc1:amd64 2.0-1build1 amd64 Sub Band CODEC library - runtime\\nii libsctp-dev:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - development files\\nii libsctp1:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - shared library\\nii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter\\nii libsecret-1-0:amd64 0.21.4-1build3 amd64 Secret store\\nii libsecret-common 0.21.4-1build3 all Secret store (common files)\\nii libselinux1:amd64 3.5-2ubuntu2 amd64 SELinux runtime shared libraries\\nii libselinux1-dev:amd64 3.5-2ubuntu2 amd64 SELinux development headers\\nii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries\\nii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library\\nii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files\\nii libsensors-dev:amd64 1:3.6.0-9build1 amd64 lm-sensors development kit\\nii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors\\nii libsepol-dev:amd64 3.5-2build1 amd64 SELinux binary policy manipulation library and development files\\nii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies\\nii libsframe1:amd64 2.42-4ubuntu2 amd64 Library to handle the SFrame format (runtime library)\\nii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion\\nii libshout3:amd64 2.4.6-1build2 amd64 MP3/Ogg Vorbis broadcast streaming library\\nii libsigc++-3.0-0:amd64 3.6.0-2 amd64 type-safe Signal Framework for C++ - runtime\\nii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version\\nii libslirp0:amd64 4.7.0-1ubuntu3 amd64 General purpose TCP-IP emulator library\\nii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library\\nii libsmartcols1:amd64 2.39.3-9ubuntu6.1 amd64 smart column output alignment library\\nii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 shared library for communication with SMB/CIFS servers\\nii libsnapd-glib-2-1:amd64 1.64-0ubuntu5 amd64 GLib snapd library\\nii libsndfile1:amd64 1.2.2-1ubuntu5 amd64 Library for reading/writing audio files\\nii libsnmp-base 5.9.4+dfsg-1.1ubuntu3 all SNMP configuration script, MIBs and documentation\\nii libsnmp40t64:amd64 5.9.4+dfsg-1.1ubuntu3 amd64 SNMP (Simple Network Management Protocol) library\\nii libsonic0:amd64 0.2.0-13build1 amd64 Simple library to speed up or slow down speech\\nii libsoup-2.4-1:amd64 2.74.3-6ubuntu1 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-0:amd64 3.4.4-5build2 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-common 3.4.4-5build2 all HTTP library implementation in C -- Common files\\nii libsoup2.4-common 2.74.3-6ubuntu1 all HTTP library implementation in C -- Common files\\nii libsource-highlight-common 3.1.9-4.3build1 all architecture-independent files for source highlighting library\\nii libsource-highlight4t64:amd64 3.1.9-4.3build1 amd64 source highlighting library\\nii libspa-0.2-bluetooth:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - bluetooth plugins\\nii libspa-0.2-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server Simple Plugin API - modules\\nii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents\\nii libspeechd2:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Shared libraries\\nii libspeex1:amd64 1.2.1-2ubuntu2 amd64 The Speex codec runtime library\\nii libspeexdsp1:amd64 1.2.1-1ubuntu3 amd64 DSP library derived from speex\\nii libsqlite3-0:amd64 3.45.1-1ubuntu2 amd64 SQLite 3 shared library\\nii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library\\nii libssh-4:amd64 0.10.6-2build2 amd64 tiny C SSH library (OpenSSL flavor)\\nrc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libssl3t64:amd64 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libstartup-notification0:amd64 0.12-6build3 amd64 library for program launch feedback (shared library)\\nii libstdc++-13-dev:amd64 13.2.0-23ubuntu4 amd64 GNU Standard C++ Library v3 (development files)\\nii libstdc++6:amd64 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3\\nii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval\\nii libsynctex2:amd64 2023.20230311.66589-9build3 amd64 TeX Live: SyncTeX parser library\\nii libsysmetrics1:amd64 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics - shared lib\\nii libsystemd-shared:amd64 255.4-1ubuntu8.4 amd64 systemd shared private library\\nii libsystemd0:amd64 255.4-1ubuntu8.4 amd64 systemd utility library\\nii libtag1v5:amd64 1.13.1-1build1 amd64 audio meta-data library\\nii libtag1v5-vanilla:amd64 1.13.1-1build1 amd64 audio meta-data library - vanilla flavour\\nii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator\\nii libtasn1-6:amd64 4.19.0-3build1 amd64 Manage ASN.1 structures (runtime)\\nii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files\\nii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library\\nii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process\\nii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library\\nii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal\\nii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl\\nii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap\\nii libthai-data 0.1.29-2build1 all Data files for Thai language support library\\nii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library\\nii libtheora0:amd64 1.1.1+dfsg.1-16.1build3 amd64 Theora Video Compression Codec\\nii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays\\nii libtiff6:amd64 4.5.1+git230720-4ubuntu2.2 amd64 Tag Image File Format (TIFF) library\\nii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information\\nii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling\\nii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files\\nii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library\\nii libtotem-plparser-common 3.26.6-1build5 all Totem Playlist Parser library - common files\\nii libtotem-plparser18:amd64 3.26.6-1build5 amd64 Totem Playlist Parser library - runtime files\\nii libtraceevent1:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (shared library)\\nii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (plugins)\\nii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)\\nii libtracker-sparql-3.0-0:amd64 3.7.1-1build1 amd64 metadata database, indexer and search tool - library\\nii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch\\nii libtsan0:amd64 11.4.0-9ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtsan2:amd64 14-20240412-0ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-rc0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-libtpms0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-spi-helper0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tctildr0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtwolame0:amd64 0.4.0-2build3 amd64 MPEG Audio Layer 2 encoding library\\nii libu2f-udev 1.1.10-3build3 all Universal 2nd Factor (U2F) — transitional package\\nii libubsan1:amd64 14-20240412-0ubuntu1 amd64 UBSan -- undefined behaviour sanitizer (runtime)\\nii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library\\nii libudev1:amd64 255.4-1ubuntu8.4 amd64 libudev shared library\\nii libudisks2-0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2\\nii libunistring5:amd64 1.1-2build1 amd64 Unicode string library for C\\nii libunity-protocol-private0:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - private library\\nii libunity-scopes-json-def-desktop 7.1.4+19.04.20190319-6build4 all binding to get places into the launcher - desktop def file\\nii libunity9:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - shared library\\nii libuno-cppu3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU public library\\nii libuno-cppuhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU helper library\\nii libuno-purpenvhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- \\"purpose environment\\" helper\\nii libuno-sal3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL public library\\nii libuno-salhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library\\nii libunwind8:amd64 1.6.2-3build1 amd64 library to determine the call-chain of a program - runtime\\nii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library\\nii liburi-perl 5.27-1 all module to manipulate and access URI strings\\nii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library\\nii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library\\nii libuuid1:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library\\nii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library\\nii libv4l-0t64:amd64 1.26.1-4build3 amd64 Collection of video4linux support libraries\\nii libv4lconvert0t64:amd64 1.26.1-4build3 amd64 Video4linux frame format conversion library\\nii libvisual-0.4-0:amd64 0.4.2-2build1 amd64 audio visualization framework\\nii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases\\nii libvorbis0a:amd64 1.3.7-1build3 amd64 decoder library for Vorbis General Audio Compression Codec\\nii libvorbisenc2:amd64 1.3.7-1build3 amd64 encoder library for Vorbis General Audio Compression Codec\\nii libvorbisfile3:amd64 1.3.7-1build3 amd64 high-level API for Vorbis General Audio Compression Codec\\nii libvpx9:amd64 1.14.0-1ubuntu2.1 amd64 VP8 and VP9 video codec (shared library)\\nii libvte-2.91-0:amd64 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime files\\nii libvte-2.91-common 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - common files\\nii libvulkan1:amd64 1.3.275.0-1build1 amd64 Vulkan loader library\\nii libwacom-common 2.10.0-2 all Wacom model feature query library (common files)\\nii libwacom9:amd64 2.10.0-2 amd64 Wacom model feature query library\\nii libwavpack1:amd64 5.6.0-1build1 amd64 audio codec (lossy and lossless) - library\\nii libwayland-client0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - client library\\nii libwayland-cursor0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - cursor library\\nii libwayland-egl1:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - EGL library\\nii libwayland-server0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - server library\\nii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba winbind client library\\nii libwebkit2gtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebkitgtk-6.0-4:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.\\nii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebrtc-audio-processing1:amd64 0.3.1-0ubuntu6 amd64 AudioProcessing module from the WebRTC project.\\nii libwhoopsie-preferences0 23build3 amd64 Ubuntu error tracker submission settings - shared library\\nii libwhoopsie0:amd64 0.2.77build3 amd64 Ubuntu error tracker submission - shared library\\nii libwinpr3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Windows Portable Runtime library\\nii libwireplumber-0.4-0:amd64 0.4.17-1ubuntu4 amd64 Shared libraries for WirePlumber\\nii libwmf-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion library\\nii libwmf-0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin\\nii libwmf0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin - transitional package\\nii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library\\nii libwnck-3-0:amd64 43.0-3build4 amd64 Window Navigator Construction Kit - runtime files\\nii libwnck-3-common 43.0-3build4 all Window Navigator Construction Kit - common files\\nii libwoff1:amd64 1.0.2-2build1 amd64 library for converting fonts to WOFF 2.0\\nii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema\'s TCP wrappers library\\nii libwww-perl 6.76-1 all simple and consistent interface to the world-wide web\\nii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions\\nii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library\\nii libx11-data 2:1.8.7-1build1 all X11 client-side library\\nii libx11-protocol-perl 0.56-9 all Perl module for the X Window System Protocol, version 11\\nii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library\\nii libxatracker2:amd64 24.0.9-0ubuntu0.1 amd64 X acceleration library -- runtime\\nii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library\\nii libxaw7:amd64 2:1.0.14-1build2 amd64 X11 Athena Widget library\\nii libxcb-damage0:amd64 1.15-1ubuntu2 amd64 X C Binding, damage extension\\nii libxcb-dri2-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri2 extension\\nii libxcb-dri3-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri3 extension\\nii libxcb-glx0:amd64 1.15-1ubuntu2 amd64 X C Binding, glx extension\\nii libxcb-icccm4:amd64 0.4.1-1.1build3 amd64 utility libraries for X C Binding -- icccm\\nii libxcb-image0:amd64 0.4.0-2build1 amd64 utility libraries for X C Binding -- image\\nii libxcb-keysyms1:amd64 0.4.0-1build4 amd64 utility libraries for X C Binding -- keysyms\\nii libxcb-present0:amd64 1.15-1ubuntu2 amd64 X C Binding, present extension\\nii libxcb-randr0:amd64 1.15-1ubuntu2 amd64 X C Binding, randr extension\\nii libxcb-render-util0:amd64 0.3.9-1build4 amd64 utility libraries for X C Binding -- render-util\\nii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension\\nii libxcb-res0:amd64 1.15-1ubuntu2 amd64 X C Binding, res extension\\nii libxcb-shape0:amd64 1.15-1ubuntu2 amd64 X C Binding, shape extension\\nii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension\\nii libxcb-sync1:amd64 1.15-1ubuntu2 amd64 X C Binding, sync extension\\nii libxcb-util1:amd64 0.4.0-1build3 amd64 utility libraries for X C Binding -- atom, aux and event\\nii libxcb-xfixes0:amd64 1.15-1ubuntu2 amd64 X C Binding, xfixes extension\\nii libxcb-xkb1:amd64 1.15-1ubuntu2 amd64 X C Binding, XKEYBOARD extension\\nii libxcb-xv0:amd64 1.15-1ubuntu2 amd64 X C Binding, xv extension\\nii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding\\nii libxcomposite1:amd64 1:0.4.5-1build3 amd64 X11 Composite extension library\\nii libxcursor1:amd64 1:1.2.1-1build1 amd64 X cursor management library\\nii libxcvt0:amd64 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator -- shared library\\nii libxdamage1:amd64 1:1.1.6-1build1 amd64 X11 damaged region extension library\\nii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library\\nii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library\\nii libxfixes3:amd64 1:6.0.0-2build1 amd64 X11 miscellaneous \'fixes\' extension library\\nii libxfont2:amd64 1:2.0.6-1build1 amd64 X11 font rasterisation library\\nii libxft2:amd64 2.3.6-1build1 amd64 FreeType-based font drawing library for X\\nii libxi6:amd64 2:1.8.1-1build1 amd64 X11 Input extension library\\nii libxinerama1:amd64 2:1.1.4-3build1 amd64 X11 Xinerama extension library\\nii libxkbcommon-x11-0:amd64 1.6.0-1build1 amd64 library to create keymaps with the XKB X11 protocol\\nii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library\\nii libxkbfile1:amd64 1:1.1.0-1build4 amd64 X11 keyboard file manipulation library\\nii libxkbregistry0:amd64 1.6.0-1build1 amd64 library to query available RMLVO\\nii libxklavier16:amd64 5.4-5build2 amd64 X Keyboard Extension high-level API\\nii libxml-parser-perl 2.47-1build3 amd64 Perl module for parsing XML files\\nii libxml-twig-perl 1:3.52-2 all Perl module for processing huge XML documents in tree mode\\nii libxml-xpathengine-perl 0.14-2 all re-usable XPath engine for DOM-like trees\\nii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3 amd64 GNOME XML library\\nii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library\\nii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library\\nii libxmlsec1t64-nss:amd64 1.2.39-5build2 amd64 Nss engine for the XML security library\\nii libxmu6:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous utility library\\nii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library\\nii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library\\nii libxrandr2:amd64 2:1.5.2-2build1 amd64 X11 RandR extension library\\nii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library\\nii libxres1:amd64 2:1.2.1-1build1 amd64 X11 Resource extension library\\nii libxshmfence1:amd64 1.3-1build5 amd64 X shared memory fences - shared library\\nii libxslt1.1:amd64 1.1.39-0exp1build1 amd64 XSLT 1.0 processing library - runtime library\\nii libxss1:amd64 1:1.2.3-1build3 amd64 X11 Screen Saver extension library\\nii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library\\nii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library\\nii libxtst6:amd64 2:1.2.3-1.1build1 amd64 X11 Testing -- Record extension library\\nii libxv1:amd64 2:1.0.11-1.1build1 amd64 X11 Video extension library\\nii libxvmc1:amd64 2:1.0.12-2build3 amd64 X11 Video extension library\\nii libxxf86dga1:amd64 2:1.1.5-1build1 amd64 X11 Direct Graphics Access extension library\\nii libxxf86vm1:amd64 1:1.1.4-1build4 amd64 X11 XFree86 video mode extension library\\nii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash\\nii libyajl2:amd64 2.1.0-5build1 amd64 Yet Another JSON Library\\nii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library\\nii libyelp0:amd64 42.2-1build2 amd64 Library for the GNOME help browser\\nii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm\\nii linux-base 4.5ubuntu9 all Linux image base package\\nii linux-firmware 20240318.git3b128b60-0ubuntu2.3 amd64 Firmware for Linux kernel drivers\\nii linux-generic 6.8.0-44.44 amd64 Complete Generic Linux kernel and headers\\nii linux-headers-6.8.0-40 6.8.0-40.40 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-6.8.0-44 6.8.0-44.44 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-generic 6.8.0-44.44 amd64 Generic Linux kernel headers\\nrc linux-image-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Signed kernel image generic\\nii linux-image-6.8.0-40-generic 6.8.0-40.40 amd64 Signed kernel image generic\\nii linux-image-6.8.0-44-generic 6.8.0-44.44 amd64 Signed kernel image generic\\nii linux-image-generic 6.8.0-44.44 amd64 Generic Linux kernel image\\nii linux-libc-dev:amd64 6.8.0-44.44 amd64 Linux Kernel Headers for development\\nrc linux-modules-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-sound-base 1.0.25+dfsg-0ubuntu7 all base package for ALSA and OSS sound systems\\nii linux-tools-6.8.0-40 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-44 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-common 6.8.0-44.44 all Linux kernel version specific tools for version 6.8.0\\nii lm-sensors 1:3.6.0-9build1 amd64 utilities to read temperature/voltage/fan sensors\\nii locales 2.39-0ubuntu8.3 all GNU C Library: National Language (locale) data [support]\\nii login 1:4.13+dfsg1-4ubuntu3 amd64 system login tools\\nii logrotate 3.21.0-2build1 amd64 Log rotation utility\\nii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file\\nii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality\\nii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)\\nii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration\\nii lsof 4.95.0-1build3 amd64 utility to list open files\\nii lto-disabled-list 47 all list of packages not to build with LTO\\nii mailcap 3.70+nmu1ubuntu1 all Debian\'s mailcap system, and support programs\\nii make 4.3-4.1build2 amd64 utility for directing compilation\\nii man-db 2.12.0-4build2 amd64 tools for reading manual pages\\nii manpages 6.7-2 all Manual pages about using a GNU/Linux system\\nii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development\\nii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language\\nii media-types 10.1.0 all List of standard media types and their usual file extension\\nii memtest86+ 7.00-1build1 amd64 stand-alone memory tester for x86 and x86-64\\nii mesa-vulkan-drivers:amd64 24.0.9-0ubuntu0.1 amd64 Mesa Vulkan graphics drivers\\nii mobile-broadband-provider-info 20230416-1 all database of mobile broadband service providers\\nii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems\\nii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys\\nii mongodb-database-tools 100.9.4 amd64 mongodb-database-tools package provides tools for working with the MongoDB server: \\nii mongodb-org-database-tools-extra 7.0.9 amd64 Extra MongoDB database tools\\nii mongodb-org-server 7.0.9 amd64 MongoDB database server\\nii mongodb-org-shell 7.0.9 amd64 MongoDB shell client\\nii mongodb-org-tools 7.0.9 amd64 MongoDB tools\\nii mount 2.39.3-9ubuntu6.1 amd64 tools for mounting and manipulating filesystems\\nii mousetweaks 3.32.0-4build2 amd64 mouse accessibility enhancements for the GNOME desktop\\nii mscompress 0.4-10build1 amd64 Microsoft \\"compress.exe/expand.exe\\" compatible (de)compressor\\nii msr-tools 1.3-5build1 amd64 Utilities for modifying MSRs from userspace\\nii mtr-tiny 0.95-1.1build2 amd64 Full screen ncurses traceroute tool\\nii mutter-common 46.2-1ubuntu0.24.04.1 all shared files for the Mutter window manager\\nii mutter-common-bin 46.2-1ubuntu0.24.04.1 amd64 shared programs for the Mutter window manager\\nii mysql-common 5.8+1.1.0build1 all MySQL database common files, e.g. /etc/mysql/my.cnf\\nii nano 7.2-2build1 amd64 small, friendly text editor inspired by Pico\\nii nautilus 1:46.2-0ubuntu0.2 amd64 file manager and graphical shell for GNOME\\nii nautilus-data 1:46.2-0ubuntu0.2 all data files for nautilus\\nii nautilus-extension-gnome-terminal:amd64 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application - Nautilus extension\\nii nautilus-sendto 3.8.6-7build2 amd64 easily send files via email from within Nautilus\\nii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions\\nii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages\\nii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions\\nii net-tools 2.10-0.1ubuntu4 amd64 NET-3 networking toolkit\\nii netbase 6.4 all Basic TCP/IP networking system\\nii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife\\nii netplan-generator 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration systemd-generator\\nii netplan.io 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration for various backends\\nii network-manager 1.46.0-1ubuntu2 amd64 network management framework (daemon and userspace tools)\\nii network-manager-config-connectivity-ubuntu 1.46.0-1ubuntu2 all NetworkManager configuration to enable connectivity checking\\nii network-manager-gnome 1.34.0-1ubuntu3 amd64 network management framework (GNOME frontend)\\nii network-manager-openvpn 1.10.2-4build2 amd64 network management framework (OpenVPN plugin core)\\nii network-manager-openvpn-gnome 1.10.2-4build2 amd64 network management framework (OpenVPN plugin GNOME GUI)\\nii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)\\nii network-manager-pptp-gnome 1.2.12-3build2 amd64 network management framework (PPTP plugin GNOME GUI)\\nii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes\\nii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project\\nii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE\\nii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool\\nii openipmi 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface (for servers)\\nii openjdk-17-jre-headless:amd64 17.0.12+7-1ubuntu2~24.04 amd64 OpenJDK Java runtime, using Hotspot JIT (headless)\\nii openprinting-ppds 20230202-1 all OpenPrinting printer support - PostScript PPD files\\nii openssh-client 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) client, for secure access to remote machines\\nii openssh-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) server, for secure access from remote machines\\nii openssh-sftp-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines\\nii openssl 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - cryptographic utility\\nii openvpn 2.6.9-1ubuntu4.1 amd64 virtual private network daemon\\nii orca 46.1-1ubuntu1 all Scriptable screen reader\\nii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives\\nii p11-kit 0.25.3-4ubuntu2.1 amd64 p11-glue utilities\\nii p11-kit-modules:amd64 0.25.3-4ubuntu2.1 amd64 p11-glue proxy and trust modules\\nii packagekit 1.2.8-2build3 amd64 Provides a package management service\\nii packagekit-tools 1.2.8-2build3 amd64 Provides PackageKit command-line tools\\nii parted 3.6-4build1 amd64 disk partition manipulator\\nii passwd 1:4.13+dfsg1-4ubuntu3 amd64 change and administer password and group data\\nii pastebinit 1.6.2-1 all command-line pastebin client\\nii patch 2.7.6-7build3 amd64 Apply a diff file to an original\\nii pci.ids 0.0~2024.03.31-1 all PCI ID Repository\\nii pciutils 1:3.10.0-2build1 amd64 PCI utilities\\nii pcmciautils 018-14build1 amd64 PCMCIA utilities for Linux 2.6\\nii perl 5.38.2-3.2build2 amd64 Larry Wall\'s Practical Extraction and Report Language\\nii perl-base 5.38.2-3.2build2 amd64 minimal Perl system\\nii perl-modules-5.38 5.38.2-3.2build2 all Core Perl modules\\nii perl-openssl-defaults:amd64 7build3 amd64 version compatibility baseline for Perl OpenSSL packages\\nii pigz 2.8-1 amd64 Parallel Implementation of GZip\\nii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG\\nii pinentry-gnome3 1.2.1-3ubuntu5 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG\\nii pipewire:amd64 1.0.5-1ubuntu1 amd64 audio and video processing engine multimedia server\\nii pipewire-alsa:amd64 1.0.5-1ubuntu1 amd64 PipeWire ALSA plugin, for ALSA applications to output via PipeWire\\nii pipewire-audio 1.0.5-1ubuntu1 all recommended set of PipeWire packages for a standard audio desktop use\\nii pipewire-bin 1.0.5-1ubuntu1 amd64 PipeWire multimedia server - programs\\nrc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire\\nii pipewire-pulse 1.0.5-1ubuntu1 amd64 PipeWire PulseAudio daemon\\nii pkexec 124-2ubuntu1 amd64 run commands as another user with polkit authorization\\nii pkgconf:amd64 1.8.1-2build1 amd64 manage compile and link flags for libraries\\nii pkgconf-bin 1.8.1-2build1 amd64 manage compile and link flags for libraries (binaries)\\nii plymouth 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer\\nii plymouth-label 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - label control\\nii plymouth-theme-spinner 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - spinner theme\\nii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme\\nii policykit-1 124-2ubuntu1 amd64 transitional package for polkitd and pkexec\\nii policykit-desktop-privileges 0.22 all run common desktop actions without password\\nii polkitd 124-2ubuntu1 amd64 framework for managing administrative policies and privileges\\nii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library\\nii poppler-utils 24.02.0-1ubuntu9.1 amd64 PDF utilities (based on Poppler)\\nii power-profiles-daemon 0.21-1 amd64 Makes power profiles handling available over D-Bus.\\nii powermgmt-base 1.37 all common utils for power management\\nii powertop 2.15-3build1 amd64 diagnose issues with power consumption and management\\nii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon\\nii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client\\nii printer-driver-brlaser 6-3build2 amd64 printer driver for (some) Brother laser printers\\nii printer-driver-c2esp 27-11ubuntu7 amd64 printer driver for Kodak ESP AiO color inkjet Series\\nii printer-driver-foo2zjs 20200505dfsg0-2ubuntu6 amd64 printer driver for ZjStream-based printers\\nii printer-driver-foo2zjs-common 20200505dfsg0-2ubuntu6 all printer driver for ZjStream-based printers - common files\\nii printer-driver-hpcups 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)\\nii printer-driver-m2300w 0.51-15build2 amd64 printer driver for Minolta magicolor 2300W/2400W color laser printers\\nii printer-driver-min12xxw 0.0.9-11build3 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW\\nii printer-driver-pnm2ppa 1.13+nondbs-0ubuntu10 amd64 printer driver for HP-GDI printers\\nii printer-driver-postscript-hp 3.23.12+dfsg0-0ubuntu5 amd64 HP Printers PostScript Descriptions\\nii printer-driver-ptouch 1.7-1build2 amd64 printer driver Brother P-touch label printers\\nii printer-driver-pxljr 1.4+repack0-6build2 amd64 printer driver for HP Color LaserJet 35xx/36xx\\nii printer-driver-sag-gdi 0.1-8 all printer driver for Ricoh Aficio SP 1000s/SP 1100s\\nii printer-driver-splix 2.0.0+svn315-7fakesync1ubuntu1 amd64 Driver for Samsung and Xerox SPL2 and SPLc laser printers\\nii procps 2:4.0.4-4ubuntu3 amd64 /proc file system utilities\\nii psmisc 23.7-1build1 amd64 utilities that use the proc file system\\nii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes\\nrc pulseaudio 1:15.99.1+dfsg1-1ubuntu2.2 amd64 PulseAudio sound server\\nii python-apt-common 2.7.7ubuntu3 all Python interface to libapt-pkg (locales)\\nii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files\\nii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii python3-apport 2.28.1-0ubuntu3.1 all Python 3 library for Apport crash report handling\\nii python3-apt 2.7.7ubuntu3 amd64 Python 3 interface to libapt-pkg\\nii python3-aptdaemon 1.1.1+bzr982-0ubuntu44 all Python 3 module for the server and client of aptdaemon\\nii python3-aptdaemon.gtk3widgets 1.1.1+bzr982-0ubuntu44 all Python 3 GTK+ 3 widgets to run an aptdaemon client\\nii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)\\nii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x\\nii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)\\nii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)\\nii python3-brlapi:amd64 6.6-4ubuntu5 amd64 Braille display access via BRLTTY - Python3 bindings\\nii python3-cairo 1.25.1-2build2 amd64 Python3 bindings for the Cairo vector graphics library\\nii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)\\nii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime\\nii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)\\nii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x\\nii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x\\nii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.\\nii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3\\nii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)\\nii python3-cups:amd64 2.0.1-5build6 amd64 Python3 bindings for CUPS\\nii python3-cupshelpers 1.5.18-1ubuntu9 all Python utility modules around the CUPS printing system\\nii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module\\nii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)\\nii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3\\nii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats\\nii python3-defer 1.0.6-2.1ubuntu1 all Small framework for asynchronous programming (Python 3)\\nii python3-dev 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii python3-distro 1.9.0-1 all Linux OS platform information API\\nii python3-distro-info 1.7build1 all information about distributions\' releases (Python 3 module)\\nii python3-distupgrade 1:24.04.23 all manage release upgrades\\nii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x\\nii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries\\nii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3\\nii python3-ibus-1.0 1.5.29-2 all Intelligent Input Bus - introspection overrides for Python (Python 3)\\nii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)\\nii python3-importlib-metadata 4.12.0-1 all library to access the metadata for a Python package - Python 3.x\\nii python3-jinja2 3.1.2-1ubuntu1.1 all small but fast and easy to use stand-alone template engine\\nii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x\\nii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x\\nii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)\\nii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token\\nii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)\\nii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)\\nii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs\\nii python3-louis 3.29.0-1build1 all Python bindings for liblouis\\nii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins\\nii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library\\nii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package\\nii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)\\nii python3-more-itertools 10.2.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)\\nii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)\\nii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x\\nii python3-netplan 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration Python bindings\\nii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3\\nii python3-olefile 0.46-3 all Python module to read/write MS OLE2 files\\nii python3-packaging 24.0-1 all core utilities for python3 packages\\nii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications\\nii python3-pil:amd64 10.2.0-1ubuntu1 amd64 Python Imaging Library (Python3)\\nii python3-pip 24.0+dfsg-1ubuntu1 all Python package installer\\nii python3-pip-whl 24.0+dfsg-1ubuntu1 all Python package installer (pip wheel)\\nii python3-pkg-resources 68.1.2-2ubuntu1 all Package Discovery and Resource Access using pkg_resources\\nii python3-problem-report 2.28.1-0ubuntu3.1 all Python 3 library to handle problem reports\\nii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3\\nii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3\\nii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x\\nii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python\\nii python3-requests 2.31.0+dfsg-1ubuntu1 all elegant and simple HTTP library for Python3, built for human beings\\nii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more\\nii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port\\nii python3-setuptools 68.1.2-2ubuntu1 all Python3 Distutils Enhancements\\nii python3-setuptools-whl 68.1.2-2ubuntu1 all Python Distutils Enhancements (wheel package)\\nii python3-six 1.16.0-4 all Python 2 and 3 compatibility library\\nii python3-software-properties 0.99.48 all manage the repositories that you install software from\\nii python3-speechd 0.12.0~rc2-2build3 all Python interface to Speech Dispatcher\\nii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd\\nii python3-tz 2024.1-2 all Python3 version of the Olson timezone database\\nii python3-uno 4:24.2.5-0ubuntu0.24.04.2 amd64 Python-UNO bridge\\nii python3-update-manager 1:24.04.6 all Python 3.x module for update-manager\\nii python3-urllib3 2.0.7-1 all HTTP library with thread-safe connection pooling for Python3\\nii python3-venv 3.12.3-0ubuntu2 amd64 venv module for python3 (default python3 version)\\nii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files\\nii python3-wheel 0.42.0-2 all built-package format for Python\\nii python3-xdg 0.28-2 all Python 3 library to access freedesktop.org standards\\nii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)\\nii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3\\nii python3-zipp 1.0.0-6ubuntu0.1 all pathlib-compatible Zipfile object wrapper - Python 3.x\\nrc python3.10-venv 3.10.12-1~22.04.5 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.10)\\nii python3.12 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (version 3.12)\\nii python3.12-dev 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii python3.12-minimal 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii python3.12-venv 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.12)\\nii readline-common 8.2-4build1 all GNU readline and history libraries, common files\\nii rfkill 2.39.3-9ubuntu6.1 amd64 tool for enabling and disabling wireless devices\\nii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions\\nii rsync 3.2.7-1ubuntu1 amd64 fast, versatile, remote (and local) file-copying tool\\nii rsyslog 8.2312.0-3ubuntu9 amd64 reliable system and kernel logging daemon\\nii rtkit 0.13-5build1 amd64 Realtime Policy and Watchdog Daemon\\nii rygel 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services\\nii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba core libraries\\nii sane-airscan 0.99.29-0ubuntu4 amd64 SANE backend for AirScan (eSCL) and WSD document scanner\\nii sane-utils 1.2.1-7build4 amd64 API library for scanners -- utilities\\nii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers\\nii seahorse 43.0-3build2 amd64 GNOME front end for GnuPG\\nii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX\\nii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text\\nii sensible-utils 0.0.22 all Utilities for sensible alternative selection\\nii session-migration 0.3.9build1 amd64 Tool to migrate in user session settings\\nii sgml-base 1.31 all SGML infrastructure and SGML catalog file support\\nii sgml-data 2.0.11+nmu1 all common SGML and XML data\\nii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec\\nii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)\\nii slirp4netns 1.2.1-1build2 amd64 User-mode networking for unprivileged network namespaces\\nii snapd 2.63.1+24.04 amd64 Daemon and tooling that enable snap packages\\nii software-properties-common 0.99.48 all manage the repositories that you install software from (common)\\nii software-properties-gtk 0.99.48 all manage the repositories that you install software from (gtk)\\nii sound-icons 0.1-8 all Sounds for speech enabled applications\\nii sound-theme-freedesktop 0.8-2ubuntu1 all freedesktop.org sound theme\\nii speech-dispatcher 0.12.0~rc2-2build3 amd64 Common interface to speech synthesizers\\nii speech-dispatcher-audio-plugins:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Audio output plugins\\nii speech-dispatcher-espeak-ng 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Espeak-ng output module\\nii spice-vdagent 0.22.1-4build3 amd64 Spice agent for Linux\\nii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems\\nii ssh-import-id 5.11-0ubuntu2 all securely retrieve an SSH public key and install it locally\\nii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL\\nii strace 6.8-0ubuntu2 amd64 System call tracer\\nii stress-ng 0.17.06-1build1 amd64 tool to load and stress a computer\\nii sudo 1.9.15p5-3ubuntu5 amd64 Provide limited super user privileges to specific users\\nii switcheroo-control 2.6-2build2 amd64 D-Bus service to check the availability of dual-GPU\\nii sysbench 1.0.20+ds-6build2 amd64 multi-threaded benchmark tool for database systems\\nii sysbox-ce 0.6.4.linux amd64 Sysbox Community Edition (CE) is a next-generation container runtime,\\nii syslinux-common 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 all collection of bootloaders (common)\\nii sysstat 12.6.1-2 amd64 system performance tools for Linux\\nii system-config-printer-common 1.5.18-1ubuntu9 all backend and the translation files for system-config-printer\\nii system-config-printer-udev 1.5.18-1ubuntu9 amd64 Utilities to detect and configure printers automatically\\nii systemd 255.4-1ubuntu8.4 amd64 system and service manager\\nii systemd-dev 255.4-1ubuntu8.4 all systemd development files\\nii systemd-hwe-hwdb 255.1.3 all udev rules for hardware enablement (HWE)\\nii systemd-oomd 255.4-1ubuntu8.4 amd64 userspace out-of-memory (OOM) killer\\nii systemd-resolved 255.4-1ubuntu8.4 amd64 systemd DNS resolver\\nii systemd-sysv 255.4-1ubuntu8.4 amd64 system and service manager - SysV compatibility symlinks\\nii systemd-timesyncd 255.4-1ubuntu8.4 amd64 minimalistic service to synchronize local time with NTP servers\\nii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities\\nii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility\\nii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell\\nii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell\\nii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer\\nii tecla 46.0-1build1 amd64 keyboard layout viewer for the GNOME desktop\\nii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch\\nii thermald 2.5.6-2build2 amd64 Thermal monitoring and controlling daemon\\nii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage\\nii tinyproxy 1.11.1-3 all Lightweight, non-caching, optionally anonymizing HTTP proxy\\nii tinyproxy-bin 1.11.1-3 amd64 Lightweight, non-caching, optionally anonymizing HTTP proxy (executable only)\\nii tnftp 20230507-2build3 amd64 enhanced ftp client\\nii tpm-udev 0.6ubuntu1 all udev rules for TPM modules\\nii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel\\nii tracker 3.7.1-1build1 amd64 metadata database, indexer and search tool\\nii tracker-extract 3.7.1-1build1 amd64 metadata database, indexer and search tool - metadata extractors\\nii tracker-miner-fs 3.7.1-1build1 amd64 metadata database, indexer and search tool - filesystem indexer\\nii tzdata 2024a-3ubuntu1.1 all time zone and daylight-saving time data\\nii ubuntu-advantage-desktop-daemon 1.11 amd64 Daemon to allow access to ubuntu-advantage via D-Bus\\nii ubuntu-desktop 1.539.1 amd64 Ubuntu desktop system\\nii ubuntu-desktop-minimal 1.539.1 amd64 Ubuntu desktop minimal system\\nii ubuntu-docs 24.04.2 all Ubuntu Desktop Guide\\nii ubuntu-drivers-common 1:0.9.7.6ubuntu3.1 amd64 Detect and install additional Ubuntu driver packages\\nii ubuntu-kernel-accessories 1.539.1 amd64 packages useful to install by default on systems with kernels\\nii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive\\nii ubuntu-minimal 1.539.1 amd64 Minimal core of Ubuntu\\nii ubuntu-mono 24.04-0ubuntu1 all Ubuntu Mono Icon theme\\nii ubuntu-pro-client 33.2~24.04.1 amd64 Management tools for Ubuntu Pro\\nii ubuntu-pro-client-l10n 33.2~24.04.1 amd64 Translations for Ubuntu Pro Client\\nii ubuntu-release-upgrader-core 1:24.04.23 all manage release upgrades\\nii ubuntu-release-upgrader-gtk 1:24.04.23 all manage release upgrades\\nii ubuntu-report 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics\\nii ubuntu-session 46.0-1ubuntu4 all Ubuntu session with GNOME Shell\\nii ubuntu-settings 24.04.4 all default settings for the Ubuntu desktop\\nii ubuntu-standard 1.539.1 amd64 Ubuntu standard system\\nii ubuntu-wallpapers 24.04.2 all Ubuntu Wallpapers\\nii ubuntu-wallpapers-noble 24.04.2 all Ubuntu 24.04 Wallpapers\\nii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files\\nii udev 255.4-1ubuntu8.4 amd64 /dev/ and hotplug management daemon\\nii udisks2 2.10.1-6build1 amd64 D-Bus service to access and manipulate storage devices\\nii ufw 0.36.2-6 all program for managing a Netfilter firewall\\nii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades\\nii unifi 8.1.127-25320-1 all Ubiquiti UniFi server\\nii uno-libs-private 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- private libraries used by public ones\\nii unzip 6.0-28ubuntu4 amd64 De-archiver for .zip files\\nii update-inetd 4.53 all inetd configuration file updater\\nii update-manager 1:24.04.6 all GNOME application that manages apt updates\\nii update-manager-core 1:24.04.6 all manage release upgrades\\nii update-notifier 3.192.68build3 amd64 Daemon which notifies about package updates\\nii update-notifier-common 3.192.68build3 all Files shared between update-notifier and other packages\\nii upower 1.90.3-1 amd64 abstraction for power management\\nii ure 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment\\nii usb-creator-common 0.3.17 all create a startup disk using a CD or disc image (common files)\\nii usb-creator-gtk 0.3.17 all create a startup disk using a CD or disc image (for GNOME)\\nii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling \\"flip flop\\" USB devices\\nii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch\\nii usb.ids 2024.03.18-1 all USB ID Repository\\nii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices\\nii usbutils 1:017-3build1 amd64 Linux USB utilities\\nii util-linux 2.39.3-9ubuntu6.1 amd64 miscellaneous system utilities\\nii uuid-dev:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library - headers and static libraries\\nii uuid-runtime 2.39.3-9ubuntu6.1 amd64 runtime components for the Universally Unique ID library\\nii vim-common 2:9.1.0016-1ubuntu7.2 all Vi IMproved - Common files\\nii vim-tiny 2:9.1.0016-1ubuntu7.2 amd64 Vi IMproved - enhanced vi editor - compact version\\nii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict\\nii wbritish 2020.12.07-2 all British English dictionary words for /usr/share/dict\\nii webp-pixbuf-loader:amd64 0.2.4-2build2 amd64 WebP Image format GdkPixbuf loader\\nii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web\\nii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts\\nii whoopsie 0.2.77build3 amd64 Ubuntu error tracker submission\\nii whoopsie-preferences 23build3 amd64 System preferences for error reporting\\nii wireless-regdb 2022.06.06-0ubuntu2 all wireless regulatory database\\nii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions\\nii wireplumber 0.4.17-1ubuntu4 amd64 modular session / policy manager for PipeWire\\nii wngerman 20161207-12 all New German orthography wordlist\\nii wogerman 1:2-39 all Traditional German wordlist\\nii wpasupplicant 2:2.10-21ubuntu0.1 amd64 client support for WPA and WPA2 (IEEE 802.11i)\\nii wswiss 20161207-12 all Swiss (German) orthography wordlist\\nii x11-apps 7.7+11build3 amd64 X applications\\nii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure\\nii x11-session-utils 7.7+6build2 amd64 X session utilities\\nii x11-utils 7.7+6build2 amd64 X11 utilities\\nii x11-xkb-utils 7.7+8build2 amd64 X11 XKB utilities\\nii x11-xserver-utils 7.7+10build2 amd64 X server utilities\\nii xauth 1:1.1.2-1build1 amd64 X authentication utility\\nii xbitmaps 1.1.1-2.2 all Base X bitmaps\\nii xbrlapi 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display - xbrlapi\\nii xcursor-themes 1.0.6-0ubuntu1 all Base X cursor themes\\nii xcvt 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator\\nii xdg-dbus-proxy 0.1.5-1build2 amd64 filtering D-Bus proxy\\nii xdg-desktop-portal 1.18.4-1ubuntu2 amd64 desktop integration portal for Flatpak and Snap\\nii xdg-desktop-portal-gnome 46.2-0ubuntu1 amd64 GNOME portal backend for xdg-desktop-portal\\nii xdg-desktop-portal-gtk 1.15.1-1build2 amd64 GTK+/GNOME portal backend for xdg-desktop-portal\\nii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories\\nii xdg-user-dirs-gtk 0.11-1build2 amd64 tool to manage well known user directories (Gtk extension)\\nii xdg-utils 1.1.3-4.1ubuntu3 all desktop integration utilities from freedesktop.org\\nii xfonts-base 1:1.0.5+nmu1 all standard fonts for X\\nii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts\\nii xfonts-scalable 1:1.0.3-1.3 all scalable fonts for X\\nii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs\\nii xinit 1.4.1-0ubuntu5 amd64 X server initialisation tool\\nii xinput 1.6.4-1build1 amd64 Runtime configuration and test of XInput devices\\nii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data\\nii xml-core 0.19 all XML infrastructure and XML catalog file support\\nii xorg 1:7.7+23ubuntu3 amd64 X.Org X Window System\\nii xorg-docs-core 1:1.7.1-1.2 all Core documentation for the X.org X Window System\\nii xorriso 1:1.5.6-1.1ubuntu3 amd64 command line ISO-9660 and Rock Ridge manipulation tool\\nii xserver-common 2:21.1.12-1ubuntu1 all common files used by various X servers\\nii xserver-xephyr 2:21.1.12-1ubuntu1 amd64 nested X server\\nii xserver-xorg 1:7.7+23ubuntu3 amd64 X.Org X server\\nii xserver-xorg-core 2:21.1.12-1ubuntu1 amd64 Xorg X server - core server\\nii xserver-xorg-input-all 1:7.7+23ubuntu3 amd64 X.Org X server -- input driver metapackage\\nii xserver-xorg-input-libinput 1.4.0-1build1 amd64 X.Org X server -- libinput input driver\\nii xserver-xorg-input-wacom 1:1.2.0-1ubuntu2 amd64 X.Org X server -- Wacom input driver\\nii xserver-xorg-legacy 2:21.1.12-1ubuntu1 amd64 setuid root Xorg server wrapper\\nii xserver-xorg-video-all 1:7.7+23ubuntu3 amd64 X.Org X server -- output driver metapackage\\nii xserver-xorg-video-amdgpu 23.0.0-1build1 amd64 X.Org X server -- AMDGPU display driver\\nii xserver-xorg-video-ati 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI display driver wrapper\\nii xserver-xorg-video-fbdev 1:0.5.0-2build2 amd64 X.Org X server -- fbdev display driver\\nii xserver-xorg-video-intel 2:2.99.917+git20210115-1build1 amd64 X.Org X server -- Intel i8xx, i9xx display driver\\nii xserver-xorg-video-nouveau 1:1.0.17-2build1 amd64 X.Org X server -- Nouveau display driver\\nii xserver-xorg-video-qxl 0.1.6-1build1 amd64 X.Org X server -- QXL display driver\\nii xserver-xorg-video-radeon 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI Radeon display driver\\nii xserver-xorg-video-vesa 1:2.6.0-1 amd64 X.Org X server -- VESA display driver\\nii xserver-xorg-video-vmware 1:13.4.0-1build1 amd64 X.Org X server -- VMware display driver\\nii xwayland 2:23.2.6-1 amd64 X server for running X clients under Wayland\\nii xxd 2:9.1.0016-1ubuntu7.2 amd64 tool to make (or reverse) a hex dump\\nii xz-utils 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression utilities\\nii yaru-theme-gnome-shell 24.04.2-0ubuntu1 all Yaru GNOME Shell desktop theme from the Ubuntu Community\\nii yaru-theme-gtk 24.04.2-0ubuntu1 all Yaru GTK theme from the Ubuntu Community\\nii yaru-theme-icon 24.04.2-0ubuntu1 all Yaru icon theme from the Ubuntu Community\\nii yaru-theme-sound 24.04.2-0ubuntu1 all Yaru sound theme from the Ubuntu Community\\nii yelp 42.2-1build2 amd64 Help browser for GNOME\\nii yelp-xsl 42.1-2 all XSL stylesheets for the yelp help browser\\nii zenity 4.0.1-1build3 amd64 Display graphical dialog boxes from shell scripts\\nii zenity-common 4.0.1-1build3 all Display graphical dialog boxes from shell scripts (common files)\\nii zip 3.0-13build1 amd64 Archiver for .zip files\\nii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime\\nii zlib1g-dev:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - development\\nii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool\\n", "Turbo Boost (Legacy non intel_pstate)": "File not found"}',E'{"uri": "/home/arne/Sites/green-coding/example-applications/", "uri_type": "folder", "name": "Stress Test #1", "filename": "stress/usage_scenario.yml", "branch": null, "debug_mode": false, "allow_unsafe": false, "skip_system_checks": false, "skip_unsafe": true, "verbose_provider_boot": false, "full_docker_prune": false, "dev_no_sleeps": false, "dev_no_build": true, "dev_no_metrics": false, "dev_flow_timetravel": false, "dev_no_optimizations": false, "docker_prune": false, "job_id": null}',1,E'64134395e83e6e57cf6247a2b0ec11b562d1fa95',E'{"sci": {"I": 436, "EL": 4, "RS": 1, "TE": 181000}, "measurement": {"boot": {"wait_time_dependencies": 60}, "idle-duration": 5, "pre-test-sleep": 5, "total-duration": 3600, "post-test-sleep": 5, "metric-providers": {"linux": {"network.io.cgroup.container.provider.NetworkIoCgroupContainerProvider": {"resolution": 99}, "cpu.energy.rapl.msr.component.provider.CpuEnergyRaplMsrComponentProvider": {"resolution": 99}, "cpu.utilization.procfs.system.provider.CpuUtilizationProcfsSystemProvider": {"resolution": 99}, "memory.total.cgroup.container.provider.MemoryTotalCgroupContainerProvider": {"resolution": 99}, "psu.energy.dc.rapl.msr.machine.provider.PsuEnergyDcRaplMsrMachineProvider": {"resolution": 99}, "cpu.utilization.cgroup.container.provider.CpuUtilizationCgroupContainerProvider": {"resolution": 99}}, "macos": {"powermetrics.provider.PowermetricsProvider": {"resolution": 99}, "cpu.utilization.mach.system.provider.CpuUtilizationMachSystemProvider": {"resolution": 99}}, "common": {"network.connections.proxy.container.provider.NetworkConnectionsProxyContainerProvider": null}}, "baseline-duration": 5, "flow-process-duration": 1800, "phase-transition-time": 1, "system_check_threshold": 3}}',1726159383800734,1726159408350943,E'[{"start": 1726159384801197, "name": "[BASELINE]", "end": 1726159389801798}, {"start": 1726159390802634, "name": "[INSTALLATION]", "end": 1726159390820174}, {"start": 1726159391820339, "name": "[BOOT]", "end": 1726159392134384}, {"start": 1726159395144879, "name": "[IDLE]", "end": 1726159400145654}, {"start": 1726159401146215, "name": "[RUNTIME]", "end": 1726159406350123}, {"start": 1726159401147192, "name": "Stress", "end": 1726159406350081}, {"start": 1726159407350245, "name": "[REMOVE]", "end": 1726159408350827}]',NULL,NULL,FALSE,E'2024-09-11 16:42:53.208695+00',E'2024-09-12 16:43:33.365064+00'), -(E'f6167993-260e-41db-ab72-d9c3832f211d',NULL,E'Stress Test #2',E'/home/arne/Sites/green-coding/example-applications/',E'main',E'58c7a5002c684f41f8d7a355f3ede641d8e45ddc',E'2024-07-10 13:48:46+00',E'manual',NULL,E'{"name": "Stress Container One Core 5 Seconds", "author": "Arne Tarara <arne@green-coding.berlin>", "description": "A simple 5 seconds stress on the system with one core. Expected display result is a rectangle shaped load.", "flow": [{"name": "Stress", "container": "gcb-alpine-stress", "commands": [{"type": "console", "command": "stress-ng -c 1 -t 5 -q", "note": "Starting Stress"}]}], "version": "2", "services": {"gcb-alpine-stress": {"container_name": "gcb-alpine-stress", "image": "gcb_alpine_stress", "build": "."}}}',E'stress/usage_scenario.yml',E'{"SGX": "This CPU does not support Intel SGX", "Uptime": " 18:43:52 up 7 min, 3 users, load average: 1.16, 0.76, 0.41", "Cpu Info": "11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz", "Platform": "Linux", "Processes": "USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\\nroot 1 0.8 0.0 23440 14188 ? Ss 18:36 0:03 /sbin/init splash\\nroot 2 0.0 0.0 0 0 ? S 18:36 0:00 [kthreadd]\\nroot 3 0.0 0.0 0 0 ? S 18:36 0:00 [pool_workqueue_release]\\nroot 4 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_g]\\nroot 5 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_p]\\nroot 6 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-slub_]\\nroot 7 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-netns]\\nroot 8 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:0-events]\\nroot 9 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:0H-events_highpri]\\nroot 10 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:1-events]\\nroot 12 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mm_pe]\\nroot 13 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_kthread]\\nroot 14 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_rude_kthread]\\nroot 15 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_trace_kthread]\\nroot 16 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/0]\\nroot 17 0.1 0.0 0 0 ? I 18:36 0:00 [rcu_preempt]\\nroot 18 0.0 0.0 0 0 ? S 18:36 0:00 [migration/0]\\nroot 19 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/0]\\nroot 20 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/0]\\nroot 21 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/1]\\nroot 22 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/1]\\nroot 23 0.0 0.0 0 0 ? S 18:36 0:00 [migration/1]\\nroot 24 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/1]\\nroot 26 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:0H-events_highpri]\\nroot 27 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/2]\\nroot 28 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/2]\\nroot 29 0.0 0.0 0 0 ? S 18:36 0:00 [migration/2]\\nroot 30 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/2]\\nroot 31 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:0-pm]\\nroot 32 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:0H-events_highpri]\\nroot 33 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/3]\\nroot 34 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/3]\\nroot 35 0.0 0.0 0 0 ? S 18:36 0:00 [migration/3]\\nroot 36 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/3]\\nroot 37 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:0-events]\\nroot 38 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:0H-events_highpri]\\nroot 39 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/4]\\nroot 40 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/4]\\nroot 41 0.0 0.0 0 0 ? S 18:36 0:00 [migration/4]\\nroot 42 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/4]\\nroot 43 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:0-mm_percpu_wq]\\nroot 44 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:0H-events_highpri]\\nroot 45 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/5]\\nroot 46 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/5]\\nroot 47 0.0 0.0 0 0 ? S 18:36 0:00 [migration/5]\\nroot 48 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/5]\\nroot 49 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:0-events]\\nroot 50 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:0H-events_highpri]\\nroot 51 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/6]\\nroot 52 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/6]\\nroot 53 0.0 0.0 0 0 ? S 18:36 0:00 [migration/6]\\nroot 54 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/6]\\nroot 56 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:0H-kblockd]\\nroot 57 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/7]\\nroot 58 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/7]\\nroot 59 0.0 0.0 0 0 ? S 18:36 0:00 [migration/7]\\nroot 60 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/7]\\nroot 62 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:0H-kblockd]\\nroot 63 0.0 0.0 0 0 ? S 18:36 0:00 [kdevtmpfs]\\nroot 64 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-inet_]\\nroot 65 0.0 0.0 0 0 ? S 18:36 0:00 [kauditd]\\nroot 67 0.0 0.0 0 0 ? S 18:36 0:00 [khungtaskd]\\nroot 68 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:2-flush-259:0]\\nroot 69 0.0 0.0 0 0 ? S 18:36 0:00 [oom_reaper]\\nroot 70 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-write]\\nroot 71 0.0 0.0 0 0 ? S 18:36 0:00 [kcompactd0]\\nroot 72 0.0 0.0 0 0 ? SN 18:36 0:00 [ksmd]\\nroot 73 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:1-pm]\\nroot 74 0.0 0.0 0 0 ? SN 18:36 0:00 [khugepaged]\\nroot 75 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kinte]\\nroot 76 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kbloc]\\nroot 77 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-blkcg]\\nroot 79 0.0 0.0 0 0 ? S 18:36 0:00 [irq/9-acpi]\\nroot 80 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:1-events]\\nroot 81 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:1-events]\\nroot 82 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tpm_d]\\nroot 83 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ata_s]\\nroot 84 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md]\\nroot 85 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md_bi]\\nroot 86 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-edac-]\\nroot 87 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-devfr]\\nroot 88 0.0 0.0 0 0 ? S 18:36 0:00 [watchdogd]\\nroot 89 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:1-rcu_gp]\\nroot 90 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:1H-kblockd]\\nroot 91 0.0 0.0 0 0 ? S 18:36 0:00 [kswapd0]\\nroot 92 0.0 0.0 0 0 ? S 18:36 0:00 [ecryptfs-kthread]\\nroot 93 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kthro]\\nroot 94 0.0 0.0 0 0 ? S 18:36 0:00 [irq/127-pciehp]\\nroot 95 0.0 0.0 0 0 ? S 18:36 0:00 [irq/128-pciehp]\\nroot 96 0.0 0.0 0 0 ? S 18:36 0:00 [irq/129-pciehp]\\nroot 97 0.0 0.0 0 0 ? S 18:36 0:00 [irq/130-pciehp]\\nroot 98 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:1-events]\\nroot 99 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:1-events]\\nroot 100 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-acpi_]\\nroot 101 0.0 0.0 0 0 ? S 18:36 0:00 [hwrng]\\nroot 102 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:2-events]\\nroot 103 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mld]\\nroot 104 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:1H]\\nroot 105 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipv6_]\\nroot 112 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kstrp]\\nroot 114 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:0-hci0]\\nroot 128 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-charg]\\nroot 129 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:3-events]\\nroot 153 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:1H-kblockd]\\nroot 157 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:1H-kblockd]\\nroot 185 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:1H-kblockd]\\nroot 186 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:1H]\\nroot 194 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:1H-kblockd]\\nroot 195 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:1H-kblockd]\\nroot 196 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:2-rcu_gp]\\nroot 217 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:2-pm]\\nroot 218 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 219 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 220 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 221 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 223 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:3-events]\\nroot 224 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:2-pm]\\nroot 225 0.0 0.0 0 0 ? S 18:36 0:00 [irq/173-FRMW0001:00]\\nroot 226 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:2-events]\\nroot 227 0.0 0.0 0 0 ? S 18:36 0:00 [irq/174-PIXA3854:00]\\nroot 264 0.0 0.0 0 0 ? S 18:36 0:00 [jbd2/nvme0n1p5-8]\\nroot 265 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ext4-]\\nroot 315 0.1 0.0 67096 17564 ? S<s 18:36 0:00 /usr/lib/systemd/systemd-journald\\nroot 349 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:4-events]\\nroot 351 0.2 0.0 30832 8576 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-udevd\\nroot 395 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 423 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:5-flush-259:0]\\nroot 449 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:6-flush-259:0]\\nroot 450 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:7-events_power_efficient]\\nroot 451 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:8-flush-259:0]\\nroot 452 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:9-events_unbound]\\nroot 468 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:2-events]\\nroot 514 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cfg80]\\nroot 520 0.0 0.0 0 0 ? S 18:36 0:00 [irq/191-mei_me]\\nroot 531 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-crypt]\\nroot 534 0.3 0.0 0 0 ? S 18:36 0:01 [irq/192-iwlwifi:default_queue]\\nroot 535 0.0 0.0 0 0 ? S 18:36 0:00 [irq/193-iwlwifi:queue_1]\\nroot 536 0.0 0.0 0 0 ? S 18:36 0:00 [irq/194-iwlwifi:queue_2]\\nroot 538 0.6 0.0 0 0 ? S 18:36 0:03 [irq/195-iwlwifi:queue_3]\\nroot 539 0.0 0.0 0 0 ? S 18:36 0:00 [irq/196-iwlwifi:queue_4]\\nroot 540 0.0 0.0 0 0 ? S 18:36 0:00 [irq/197-iwlwifi:queue_5]\\nroot 541 0.0 0.0 0 0 ? S 18:36 0:00 [irq/198-iwlwifi:queue_6]\\nroot 542 0.0 0.0 0 0 ? S 18:36 0:00 [irq/199-iwlwifi:queue_7]\\nroot 543 0.0 0.0 0 0 ? S 18:36 0:00 [irq/200-iwlwifi:queue_8]\\nroot 544 0.0 0.0 0 0 ? S 18:36 0:00 [irq/201-iwlwifi:exception]\\nroot 576 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ttm]\\nroot 583 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cros_]\\nroot 586 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc0]\\nroot 587 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc1]\\nroot 588 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc2]\\nroot 589 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc3]\\nroot 640 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:3-events]\\nsystemd+ 660 0.1 0.0 17728 7680 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-oomd\\nsystemd+ 665 0.1 0.0 21584 12800 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-resolved\\nsystemd+ 671 0.0 0.0 91044 7680 ? Ssl 18:36 0:00 /usr/lib/systemd/systemd-timesyncd\\nroot 754 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:3-cgroup_destroy]\\nroot 785 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:3-hci0]\\nroot 790 0.0 0.0 314260 8124 ? Ssl 18:36 0:00 /usr/libexec/accounts-daemon\\navahi 793 0.1 0.0 8780 3840 ? Ss 18:36 0:00 avahi-daemon: running [framebook.local]\\nroot 794 0.0 0.0 13684 6528 ? Ss 18:36 0:00 /usr/libexec/bluetooth/bluetoothd\\nroot 795 0.0 0.0 9804 2816 ? Ss 18:36 0:00 /usr/sbin/cron -f -P\\nmessage+ 796 0.7 0.0 11992 6528 ? Ss 18:36 0:03 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngnome-r+ 800 0.0 0.0 439064 16176 ? Ssl 18:36 0:00 /usr/libexec/gnome-remote-desktop-daemon --system\\nroot 804 0.1 0.0 314320 7808 ? Ssl 18:36 0:00 /usr/libexec/iio-sensor-proxy\\npolkitd 812 0.1 0.0 384348 10120 ? Ssl 18:36 0:00 /usr/lib/polkit-1/polkitd --no-debug\\nroot 815 0.0 0.0 314180 7856 ? Ssl 18:36 0:00 /usr/libexec/power-profiles-daemon\\nroot 831 0.3 0.1 2287584 35108 ? Ssl 18:36 0:01 /usr/lib/snapd/snapd\\nroot 836 0.0 0.0 310432 6912 ? Ssl 18:36 0:00 /usr/libexec/switcheroo-control\\nroot 838 0.8 0.0 725084 13012 ? Ssl 18:36 0:03 /usr/bin/sysbox-mgr\\nroot 842 0.3 0.0 18136 9220 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-logind\\nroot 844 0.1 0.0 425420 10368 ? Ssl 18:36 0:00 /usr/sbin/thermald --systemd --dbus-enable --adaptive\\nroot 845 0.0 0.0 469148 13116 ? Ssl 18:36 0:00 /usr/libexec/udisks2/udisksd\\navahi 893 0.0 0.0 8420 1284 ? S 18:36 0:00 avahi-daemon: chroot helper\\nroot 898 0.3 0.0 338968 21172 ? Ssl 18:36 0:01 /usr/sbin/NetworkManager --no-daemon\\nroot 901 0.0 0.0 18400 11264 ? Ss 18:36 0:00 /usr/sbin/wpa_supplicant -u -s -O DIR=/run/wpa_supplicant GROUP=netdev\\nroot 913 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipmi-]\\nsyslog 919 0.0 0.0 222508 6016 ? Ssl 18:36 0:00 /usr/sbin/rsyslogd -n -iNONE\\nroot 971 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:3-pm]\\nroot 1073 0.0 0.0 392104 12664 ? Ssl 18:36 0:00 /usr/sbin/ModemManager\\nroot 1085 0.0 0.0 314184 8224 ? Ssl 18:36 0:00 /usr/libexec/boltd\\nroot 1086 0.0 0.0 317632 9472 ? Ssl 18:36 0:00 /usr/libexec/upowerd\\nroot 1113 0.0 0.0 1166524 11008 ? Ssl 18:36 0:00 /usr/bin/sysbox-fs\\nroot 1121 0.0 0.0 2800 1664 ? Ss 18:36 0:00 /bin/sh -c /usr/bin/sysbox-runc --version && /usr/bin/sysbox-mgr --version && /usr/bin/sysbox-fs --version && /bin/sleep infinity\\nroot 1149 0.0 0.0 9076 2176 ? S 18:36 0:00 /bin/sleep infinity\\nroot 1430 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 1439 0.0 0.0 38488 11392 ? Ss 18:36 0:00 /usr/sbin/cupsd -l\\nroot 1447 0.3 0.1 2249812 63008 ? Ssl 18:36 0:01 /usr/bin/containerd\\nroot 1469 0.0 0.0 315384 9472 ? Ssl 18:36 0:00 /usr/sbin/gdm3\\nroot 1492 0.0 0.0 242664 9856 ? Sl 18:36 0:00 gdm-session-worker [pam/gdm-launch-environment]\\ngdm 1499 0.3 0.0 20988 11904 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\ngdm 1500 0.0 0.0 21400 3600 ? S 18:36 0:00 (sd-pam)\\ngdm 1512 0.0 0.0 114056 12032 ? S<sl 18:36 0:00 /usr/bin/pipewire\\ngdm 1513 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\ngdm 1515 0.0 0.0 407672 18944 ? S<sl 18:36 0:00 /usr/bin/wireplumber\\ngdm 1516 0.0 0.0 110484 11008 ? S<sl 18:36 0:00 /usr/bin/pipewire-pulse\\ngdm 1517 0.0 0.0 236396 6272 tty1 Ssl+ 18:36 0:00 /usr/libexec/gdm-wayland-session dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\ngdm 1525 0.0 0.0 9420 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngdm 1533 0.0 0.0 6500 2432 tty1 S+ 18:36 0:00 dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\nrtkit 1535 0.0 0.0 22940 3456 ? SNsl 18:36 0:00 /usr/libexec/rtkit-daemon\\ngdm 1537 0.0 0.0 9856 5120 tty1 S+ 18:36 0:00 dbus-daemon --nofork --print-address 4 --session\\ngdm 1546 0.0 0.0 521532 18048 tty1 Sl+ 18:36 0:00 /usr/libexec/gnome-session-binary --autostart /usr/share/gdm/greeter/autostart\\ngdm 1548 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\ngdm 1557 0.0 0.0 310008 6400 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 1564 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/128/doc\\ngdm 1590 2.5 0.6 4424672 205668 tty1 Sl+ 18:36 0:11 /usr/bin/gnome-shell\\nroot 1621 0.0 0.0 0 0 ? S< 18:36 0:00 [krfcommd]\\ncups-br+ 1656 0.0 0.0 268504 19840 ? Ssl 18:36 0:00 /usr/sbin/cups-browsed\\nroot 1657 0.4 0.2 3317612 95268 ? Ssl 18:36 0:02 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock\\nkernoops 1659 0.0 0.0 12744 2184 ? Ss 18:36 0:00 /usr/sbin/kerneloops --test\\nkernoops 1662 0.0 0.0 12744 2188 ? Ss 18:36 0:00 /usr/sbin/kerneloops\\nroot 1702 0.0 0.0 12020 8064 ? Ss 18:36 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups\\nroot 2398 0.0 0.0 1238168 13672 ? Sl 18:36 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928 -address /run/containerd/containerd.sock\\nroot 2511 0.0 0.0 1136 512 ? Ss 18:36 0:00 /sbin/docker-init -- buildkitd --allow-insecure-entitlement=network.host\\nroot 2717 0.0 0.1 1271012 34000 ? Sl 18:36 0:00 buildkitd --allow-insecure-entitlement=network.host\\nroot 2728 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:3-inet_frag_wq]\\nroot 2863 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tls-s]\\nroot 2998 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:4-pm]\\nroot 2999 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:5-kacpi_notify]\\nroot 3000 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:6-pm]\\nroot 3001 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:7-kacpi_notify]\\ngdm 3022 0.0 0.0 383120 7680 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi-bus-launcher\\ngdm 3028 0.0 0.0 9420 4992 tty1 S+ 18:36 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/128/at-spi/bus\\ngdm 3030 0.0 0.2 529220 73856 tty1 Sl+ 18:36 0:00 /usr/bin/Xwayland :1024 -rootless -noreset -accessx -core -auth /run/user/128/.mutter-Xwaylandauth.4R00T2 -listenfd 4 -listenfd 5 -displayfd 6 -initfd 7 -byteswappedclients\\ngdm 3034 0.0 0.0 236068 7296 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session\\ncolord 3035 0.0 0.0 320904 14776 ? Ssl 18:36 0:00 /usr/libexec/colord\\ngdm 3069 0.0 0.0 310008 6400 tty1 Sl+ 18:36 0:00 /usr/libexec/xdg-permission-store\\ngdm 3078 0.0 0.0 2663384 26852 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.Shell.Notifications\\ngdm 3080 0.0 0.0 544408 13440 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sharing\\ngdm 3091 0.0 0.0 487204 19200 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-wacom\\ngdm 3095 0.0 0.0 414336 19904 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-color\\ngdm 3100 0.0 0.0 412624 19204 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-keyboard\\ngdm 3109 0.0 0.0 324188 11520 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-print-notifications\\ngdm 3114 0.0 0.0 458120 7040 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-rfkill\\ngdm 3119 0.0 0.0 386768 8192 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-smartcard\\ngdm 3129 0.0 0.0 432620 12416 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-datetime\\ngdm 3146 0.0 0.0 595396 24488 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-media-keys\\ngdm 3149 0.0 0.0 310116 6528 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-screensaver-proxy\\ngdm 3155 0.0 0.0 394584 9984 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sound\\ngdm 3163 0.0 0.0 384468 6912 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-a11y-settings\\ngdm 3169 0.0 0.0 459824 8320 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-housekeeping\\ngdm 3172 0.1 0.0 524880 23336 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-power\\ngdm 3290 0.0 0.0 416764 15232 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-printer\\ngdm 3333 0.0 0.0 2794456 27380 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.ScreenSaver\\ngdm 3345 0.0 0.2 992124 77664 tty1 Sl+ 18:36 0:00 /usr/libexec/mutter-x11-frames\\ngdm 3346 0.0 0.0 389372 12224 tty1 Sl 18:36 0:00 ibus-daemon --panel disable -r --xim\\ngdm 3360 0.0 0.0 311020 7296 tty1 Sl 18:36 0:00 /usr/libexec/ibus-dconf\\ngdm 3362 0.0 0.2 610420 66612 tty1 Sl 18:36 0:00 /usr/libexec/ibus-x11 --kill-daemon\\ngdm 3364 0.0 0.0 310984 7424 tty1 Sl+ 18:36 0:00 /usr/libexec/ibus-portal\\ngdm 3378 0.0 0.0 237196 7424 tty1 Sl 18:36 0:00 /usr/libexec/ibus-engine-simple\\nroot 3437 0.0 0.0 15116 8048 ? Ss 18:36 0:00 sshd: arne [priv]\\narne 3449 0.1 0.0 21024 12288 ? Ss 18:36 0:00 /usr/lib/systemd/systemd --user\\narne 3453 0.0 0.0 21396 3596 ? S 18:36 0:00 (sd-pam)\\narne 3464 0.0 0.0 109524 8576 ? Ssl 18:36 0:00 /usr/bin/pipewire\\narne 3465 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\narne 3468 0.0 0.0 39000 11776 ? Ss 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3472 0.0 0.0 405708 16000 ? Ssl 18:36 0:00 /usr/bin/wireplumber\\narne 3475 0.0 0.0 109904 10496 ? Ssl 18:36 0:00 /usr/bin/pipewire-pulse\\narne 3501 0.0 0.0 9444 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\narne 3542 0.0 0.0 15276 7108 ? S 18:36 0:00 sshd: arne@pts/0\\narne 3544 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\narne 3549 0.0 0.0 309864 6272 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 3556 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc\\narne 3594 0.0 0.0 353012 21644 ? Sl 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3599 0.0 0.0 11980 5632 pts/0 Ss 18:36 0:00 -bash\\nroot 3669 0.0 0.0 15116 8176 ? Ss 18:37 0:00 sshd: arne [priv]\\narne 3711 0.8 0.0 15276 7108 ? S 18:37 0:03 sshd: arne@pts/1\\narne 3712 0.0 0.0 11980 5632 pts/1 Ss 18:37 0:00 -bash\\nroot 3755 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/7:3-cgroup_destroy]\\nroot 3759 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:8-kacpi_notify]\\nroot 3760 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:9-kacpi_notify]\\nroot 3801 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:10-kacpi_notify]\\nroot 3834 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:11-kacpi_notify]\\nroot 3835 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:12-pm]\\nroot 3878 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:13-kacpi_notify]\\nroot 3879 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:14-events]\\nroot 3880 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:15-kacpi_notify]\\nroot 4401 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:5-pm]\\nroot 4402 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:6]\\nroot 4403 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/3:4]\\ngdm 4742 0.0 0.0 317072 9856 ? Ssl 18:40 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/128/keyring\\nroot 4828 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/4:3-events]\\nroot 4875 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/0:16-pm]\\nroot 4983 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/6:0-cgroup_destroy]\\nroot 5020 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:0-events]\\nroot 5028 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/7:0]\\narne 5100 0.1 0.0 2068224 25984 pts/0 Sl+ 18:42 0:00 docker compose up\\narne 5122 0.1 0.1 2169824 45824 pts/0 Sl+ 18:42 0:00 /usr/libexec/docker/cli-plugins/docker-compose compose up\\nroot 5207 0.0 0.0 1745288 4352 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5214 0.0 0.0 1745032 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5235 0.0 0.0 1238168 13400 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45 -address /run/containerd/containerd.sock\\nroot 5262 0.0 0.0 1237912 13052 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2 -address /run/containerd/containerd.sock\\n999 5282 2.8 0.0 37240 8448 ? Ssl 18:42 0:01 redis-server *:6379\\n999 5289 0.0 0.0 219720 29824 ? Ss 18:42 0:00 postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key -c work_mem=16MB -p 9573\\nroot 5393 0.0 0.0 2040984 4480 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5405 0.0 0.0 1597568 4096 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5419 0.0 0.0 1237912 13056 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7 -address /run/containerd/containerd.sock\\nroot 5450 0.0 0.0 1238168 13312 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf -address /run/containerd/containerd.sock\\nroot 5471 0.0 0.0 1136 512 ? Ss 18:42 0:00 /sbin/docker-init -- /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5479 0.0 0.0 12120 7984 ? Ss 18:42 0:00 nginx: master process nginx -g daemon off;\\nroot 5535 0.0 0.0 4344 3200 ? S 18:42 0:00 /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5536 0.4 0.0 37560 31352 ? S 18:42 0:00 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5560 0.1 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5561 0.0 0.0 12328 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5562 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5563 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5564 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5565 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5566 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5567 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5570 6.0 0.4 1173056 145288 ? Sl 18:42 0:04 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5571 5.7 0.4 1173060 145280 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5572 5.7 0.4 877032 139256 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5573 5.5 0.4 876924 139588 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5574 5.4 0.4 1173312 146344 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5575 5.4 0.4 877048 139480 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5576 5.1 0.4 1173060 145536 ? Rl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5577 4.9 0.4 1174076 146560 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\n999 5620 0.0 0.0 219720 5912 ? Ss 18:42 0:00 postgres: checkpointer \\n999 5621 0.0 0.0 219864 6424 ? Ss 18:42 0:00 postgres: background writer \\n999 5623 0.0 0.0 219720 10008 ? Ss 18:42 0:00 postgres: walwriter \\n999 5624 0.0 0.0 221312 8984 ? Ss 18:42 0:00 postgres: autovacuum launcher \\n999 5625 0.0 0.0 221288 8088 ? Ss 18:42 0:00 postgres: logical replication launcher \\nroot 5968 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:2-events]\\nroot 5969 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:4-events]\\nroot 5970 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:5-pm]\\nroot 5971 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:6]\\nroot 6175 0.0 0.0 0 0 ? I 18:43 0:00 [kworker/6:2-events]\\ngdm 6293 0.0 0.0 0 0 tty1 Z+ 18:43 0:00 [dbus-daemon] <defunct>\\n999 6343 0.0 0.0 222292 14744 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54078) idle\\n999 6349 0.0 0.0 222676 19096 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54084) idle\\n999 6350 0.0 0.0 222292 14872 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54090) idle\\n999 6351 0.0 0.0 222320 14616 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54098) idle\\n999 6355 0.0 0.0 222320 14872 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54100) idle\\n999 6357 0.0 0.0 222520 18200 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54116) idle\\n999 6358 0.0 0.0 222992 19152 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54120) idle\\n999 6359 0.0 0.0 222520 18072 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54118) idle\\n999 6360 0.0 0.0 222320 14744 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54142) idle\\n999 6361 0.0 0.0 222852 19224 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54156) idle\\narne 6366 53.7 0.3 928144 130060 pts/1 Sl+ 18:43 0:01 python3 runner.py --uri /home/arne/Sites/green-coding/example-applications/ --filename stress/usage_scenario.yml --name Stress Test #2 --dev-no-build --skip-unsafe\\n999 6372 0.0 0.0 222120 19992 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.1(44190) idle\\n999 6373 0.0 0.0 222052 19992 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.1(44200) idle\\nroot 6504 4.3 0.0 17276 7552 ? Ss 18:43 0:00 /usr/lib/systemd/systemd-hostnamed\\narne 6593 0.0 0.0 2800 1664 pts/1 S+ 18:43 0:00 /bin/sh -c /usr/bin/ps -aux\\narne 6594 0.0 0.0 15512 5376 pts/1 R+ 18:43 0:00 /usr/bin/ps -aux\\n", "Disk Usage": 323006902272, "Docker Info": "Client: Docker Engine - Community\\n Version: 27.2.1\\n Context: default\\n Debug Mode: false\\n Plugins:\\n buildx: Docker Buildx (Docker Inc.)\\n Version: v0.16.2\\n Path: /usr/libexec/docker/cli-plugins/docker-buildx\\n compose: Docker Compose (Docker Inc.)\\n Version: v2.29.2\\n Path: /usr/libexec/docker/cli-plugins/docker-compose\\n\\nServer:\\n Containers: 5\\n Running: 5\\n Paused: 0\\n Stopped: 0\\n Images: 13\\n Server Version: 27.2.1\\n Storage Driver: overlayfs\\n driver-type: io.containerd.snapshotter.v1\\n Logging Driver: json-file\\n Cgroup Driver: systemd\\n Cgroup Version: 2\\n Plugins:\\n Volume: local\\n Network: bridge host ipvlan macvlan null overlay\\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\\n Swarm: inactive\\n Runtimes: io.containerd.runc.v2 runc sysbox-runc\\n Default Runtime: runc\\n Init Binary: docker-init\\n containerd version: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc version: v1.1.13-0-g58aa920\\n init version: de40ad0\\n Security Options:\\n apparmor\\n seccomp\\n Profile: builtin\\n cgroupns\\n Kernel Version: 6.8.0-44-generic\\n Operating System: Ubuntu 24.04.1 LTS\\n OSType: linux\\n Architecture: x86_64\\n CPUs: 8\\n Total Memory: 31.13GiB\\n Name: framebook\\n ID: 492c90f2-99f1-437f-a14b-9f1e5d514ca9\\n Docker Root Dir: /var/lib/docker\\n Debug Mode: false\\n Username: greencoding\\n Experimental: false\\n Insecure Registries:\\n 127.0.0.0/8\\n Live Restore Enabled: false\\n Default Address Pools:\\n Base: 172.25.0.0/16, Size: 24\\n\\n", "Free Memory": 31186837504, "Turbo Boost": "0", "Architecture": "x86-64", "Memory Total": "32646584 kB", "Power Limits": {"/sys/devices/virtual/powercap/intel-rapl/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/name": "package-0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/name": "psys\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj": "1437709393\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/energy_uj": "3083675638\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_name": "peak_power\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/name": "core\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/name": "uncore\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/energy_uj": "519414991\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/energy_uj": "7422588\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_max_power_uw": "28000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_power_limit_uw": "200000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_time_window_us": "31981568\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_power_limit_uw": "64000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_time_window_us": "2440\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_power_limit_uw": "121000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_time_window_us": "27983872\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_suspended_time": "0\\n"}, "IO Scheduling": "File not found", "Linux Version": "Linux 6.8.0-44-generic", "CPU Scheduling": {"/sys/kernel/debug/sched/debug": "Sched Debug Version: v0.11, 6.8.0-44-generic #44-Ubuntu\\nktime : 451843.839611\\nsched_clk : 451909.451412\\ncpu_clk : 451865.010309\\njiffies : 4295118980\\nsched_clock_stable() : 1\\n\\nsysctl_sched\\n .sysctl_sched_base_slice : 3.000000\\n .sysctl_sched_features : 6237751\\n .sysctl_sched_tunable_scaling : 1 (logarithmic)\\n\\ncpu#0, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 139802\\n .nr_uninterruptible : -55\\n .next_balance : 4295.118984\\n .curr->pid : 0\\n .clock : 451865.178002\\n .clock_task : 451865.178002\\n .avg_idle : 775931\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[0]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2020.068026\\n .avg_vruntime : 2020.068026\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450868.631335\\n .se->vruntime : 5953.835946\\n .se->sum_exec_runtime : 2038.425769\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3994.902861\\n .avg_vruntime : 3994.902861\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 636\\n .runnable_avg : 195\\n .util_avg : 195\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 649\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.391127\\n .se->vruntime : 10473.442382\\n .se->sum_exec_runtime : 4225.299859\\n .se->load.weight : 455554\\n .se->avg.load_avg : 276\\n .se->avg.util_avg : 195\\n .se->avg.runnable_avg : 195\\n\\ncfs_rq[0]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10473.442382\\n .avg_vruntime : 10473.442382\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 276\\n .runnable_avg : 195\\n .util_avg : 195\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 281\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.391127\\n .se->vruntime : 17495.565906\\n .se->sum_exec_runtime : 4486.965601\\n .se->load.weight : 813929\\n .se->avg.load_avg : 493\\n .se->avg.util_avg : 195\\n .se->avg.runnable_avg : 195\\n\\ncfs_rq[0]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 621.154458\\n .avg_vruntime : 621.154458\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450923.543065\\n .se->vruntime : 69089.481853\\n .se->sum_exec_runtime : 622.207234\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 465.133227\\n .avg_vruntime : 465.133227\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450936.245679\\n .se->vruntime : 69092.374876\\n .se->sum_exec_runtime : 483.231249\\n .se->load.weight : 211007\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 396.576219\\n .avg_vruntime : 396.576219\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450939.394054\\n .se->vruntime : 69092.528428\\n .se->sum_exec_runtime : 414.091672\\n .se->load.weight : 9279\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3032.832947\\n .avg_vruntime : 3032.832947\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450857.998690\\n .se->vruntime : 69078.527049\\n .se->sum_exec_runtime : 3652.106071\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69092.528428\\n .avg_vruntime : 69092.528428\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450939.394054\\n .se->vruntime : 105529.874322\\n .se->sum_exec_runtime : 17238.194934\\n .se->load.weight : 18893\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5953.835946\\n .avg_vruntime : 5953.835946\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450868.631335\\n .se->vruntime : 16579.281832\\n .se->sum_exec_runtime : 2529.653431\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 17495.565906\\n .avg_vruntime : 17495.565906\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 494\\n .runnable_avg : 195\\n .util_avg : 195\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 503\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.391127\\n .se->vruntime : 106427.164992\\n .se->sum_exec_runtime : 7309.187314\\n .se->load.weight : 924050\\n .se->avg.load_avg : 560\\n .se->avg.util_avg : 195\\n .se->avg.runnable_avg : 195\\n\\ncfs_rq[0]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 106427.164992\\n .avg_vruntime : 106427.164992\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 562\\n .runnable_avg : 197\\n .util_avg : 196\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[0]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[0]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n Spool_workqueue_ 3 50.484081 E 53.473963 3.000000 0.010118 3 120 0.000000 0.010118 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_g 4 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_p 5 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-slub_ 6 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-netns 7 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n I kworker/0:0 8 59814.143606 E 59817.054498 3.000000 291.283992 683 120 0.000000 291.283992 0.000000 0.000000 0 0 /\\n I kworker/0:0H 9 61.484472 E 61.518998 3.000000 0.013159 4 100 0.000000 0.013159 0.000000 0.000000 0 0 /\\n I kworker/0:1 10 106418.473565 E 106421.451212 3.000000 422.269221 1444 120 0.000000 422.269221 0.000000 0.000000 0 0 /\\n Ikworker/R-mm_pe 12 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_kthre 13 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_rude_ 14 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_trace 15 429.940627 E 432.911629 3.000000 0.267245 7 120 0.000000 0.267245 0.000000 0.000000 0 0 /\\n S ksoftirqd/0 16 105651.378426 E 105654.223924 3.000000 60.331378 2716 120 0.000000 60.331378 0.000000 0.000000 0 0 /\\n S migration/0 18 0.626525 E 0.123004 0.750000 6.733650 173 0 0.000000 6.733650 0.000000 0.000000 0 0 /\\n S idle_inject/0 19 0.467865 E 0.280188 0.750000 0.005407 3 49 0.000000 0.005407 0.000000 0.000000 0 0 /\\n S cpuhp/0 20 8335.382094 E 8338.316225 3.000000 1.150907 26 120 0.000000 1.150907 0.000000 0.000000 0 0 /\\n Ikworker/R-charg 128 50.473963 E 50.508549 3.000000 0.093293 2 100 0.000000 0.093293 0.000000 0.000000 0 0 /\\n I kworker/0:1H 157 105461.392956 E 105461.427507 3.000000 7.942728 422 100 0.000000 7.942728 0.000000 0.000000 0 0 /\\n I kworker/0:2 224 59855.306472 E 59858.281775 3.000000 287.732084 1020 120 0.000000 287.732084 0.000000 0.000000 0 0 /\\n I kworker/u16:5 423 103218.152689 E 103221.128312 3.000000 311.043840 6042 120 0.000000 311.043840 0.000000 0.000000 0 0 /\\n Sirq/193-iwlwifi 535 3646.117837 E 3649.116436 3.000000 2.152954 13 49 0.000000 2.152954 0.000000 0.000000 0 0 /\\n Ikworker/R-cros_ 583 4098.545142 E 4098.579743 3.000000 0.004733 2 100 0.000000 0.004733 0.000000 0.000000 0 0 /\\n S card1-crtc0 586 4105.692415 E 4108.689897 3.000000 0.071775 4 49 0.000000 0.071775 0.000000 0.000000 0 0 /\\n S card1-crtc1 587 4105.694050 E 4108.692415 3.000000 0.002284 2 49 0.000000 0.002284 0.000000 0.000000 0 0 /\\n S card1-crtc2 588 4105.695887 E 4108.694050 3.000000 0.002459 2 49 0.000000 0.002459 0.000000 0.000000 0 0 /\\n S card1-crtc3 589 4105.697510 E 4108.695887 3.000000 0.002237 2 49 0.000000 0.002237 0.000000 0.000000 0 0 /\\n S sd-resolve 762 2.805469 E 4.473698 3.000000 3.300131 16 120 0.000000 3.300131 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n I kworker/0:3 754 102631.070360 E 102633.874949 3.000000 292.687774 775 120 0.000000 292.687774 0.000000 0.000000 0 0 /\\n Saccounts-daemon 790 14.253092 E 16.355003 3.000000 133.580546 272 120 0.000000 133.580546 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 936 13.969662 E 16.117388 3.000000 134.487699 479 120 0.000000 134.487699 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S gmain 1041 0.924491 E 2.068097 3.000000 0.059449 2 120 0.000000 0.059449 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 849 287.899749 E 290.896507 3.000000 329.379386 15963 120 0.000000 329.379386 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S cleanup 1103 7.256534 E 10.181598 3.000000 0.315513 4 120 0.000000 0.315513 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S avahi-daemon 893 0.811987 E 2.186352 3.000000 0.137179 4 120 0.000000 0.137179 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S gdbus 1098 5.410405 E 7.152417 3.000000 21.180934 75 120 0.000000 21.180934 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1473 396.280726 E 398.439382 3.000000 104.209179 2909 120 0.000000 104.209179 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1475 0.003081 E 2.997094 3.000000 0.496009 16 120 0.000000 0.496009 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gmain 1483 3.022894 E 5.996257 3.000000 0.026637 1 120 0.000000 0.026637 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pw-data-loop 1534 8.779134 E 11.773129 3.000000 0.034056 3 79 0.000000 0.034056 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1569 1880.003146 E 1881.958162 3.000000 41.683534 431 120 0.000000 41.683534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1554 9.640752 E 12.603939 3.000000 0.065887 2 120 0.000000 0.065887 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1556 10.631341 E 13.583311 3.000000 0.917172 22 120 0.000000 0.917172 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fusermount3 1564 9.813596 E 12.812048 3.000000 0.930269 5 120 0.000000 0.930269 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1604 2009.888269 E 2012.764675 3.000000 16.216439 83 120 0.000000 16.216439 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1674 462.130688 E 465.127546 3.000000 80.552795 2543 120 0.000000 80.552795 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2416 374.234438 E 377.219668 3.000000 35.780266 1608 120 0.000000 35.780266 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2764 1.983811 E 4.744663 3.000000 18.886864 175 120 0.000000 18.886864 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/0:4 2998 59771.957357 E 59774.932526 3.000000 271.888982 1142 120 0.000000 271.888982 0.000000 0.000000 0 0 /\\n I kworker/0:5 2999 59772.125702 E 59775.104333 3.000000 138.814812 467 120 0.000000 138.814812 0.000000 0.000000 0 0 /\\n I kworker/0:6 3000 100191.415615 E 100194.206076 3.000000 276.816392 1110 120 0.000000 276.816392 0.000000 0.000000 0 0 /\\n I kworker/0:7 3001 59757.114051 E 59760.069565 3.000000 105.172095 199 120 0.000000 105.172095 0.000000 0.000000 0 0 /\\n S Xwayland 3030 823.312878 E 826.243091 3.000000 73.675981 404 120 0.000000 73.675981 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:sh0 3265 798.437067 E 801.432850 3.000000 0.043697 5 120 0.000000 0.043697 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3082 846.693163 E 849.149172 3.000000 0.987458 8 120 0.000000 0.987458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sharing 3080 2004.467991 E 2007.432679 3.000000 114.005355 875 120 0.000000 114.005355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3105 850.647701 E 853.480247 3.000000 0.288156 7 120 0.000000 0.288156 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3107 2004.444240 E 2007.370686 3.000000 196.860972 703 120 0.000000 196.860972 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3117 753.415062 E 755.693222 3.000000 0.802525 2 120 0.000000 0.802525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3122 46.671710 E 49.646140 3.000000 0.025570 1 120 0.000000 0.025570 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3133 795.342480 E 798.312721 3.000000 2.282013 41 120 0.000000 2.282013 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3128 789.541948 E 792.521534 3.000000 0.623284 13 120 0.000000 0.623284 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-print-notif 3109 794.936793 E 797.917349 3.000000 26.108835 70 120 0.000000 26.108835 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3157 53.427679 E 56.401651 3.000000 0.026028 1 120 0.000000 0.026028 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-a11y-settin 3163 794.888778 E 797.870455 3.000000 6.166578 47 120 0.000000 6.166578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3176 794.880654 E 797.815559 3.000000 5.039055 51 120 0.000000 5.039055 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3340 1927.697033 E 1927.760897 3.000000 47.743714 9 120 0.000000 47.743714 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3349 808.794366 E 811.794366 3.000000 10.264307 5 120 0.000000 10.264307 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x11:sh0 3377 816.300810 E 819.286174 3.000000 0.014636 1 120 0.000000 0.014636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter:traceq0 3381 817.363254 E 1021.171202 3.000000 0.084925 1 139 0.000000 0.084925 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3386 818.412051 E 821.351989 3.000000 0.093107 2 120 0.000000 0.093107 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3387 817.414689 E 820.396299 3.000000 0.018390 1 120 0.000000 0.018390 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3389 818.351989 E 821.340314 3.000000 0.199289 7 120 0.000000 0.199289 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3366 811.073812 E 814.040000 3.000000 0.033812 1 120 0.000000 0.033812 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3393 819.206920 E 822.175436 3.000000 0.075475 3 120 0.000000 0.075475 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-portal 3364 2007.693323 E 2010.683621 3.000000 3.592916 25 120 0.000000 3.592916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3465 4.873835 E 7.857378 3.000000 12.993458 14 120 0.000000 12.993458 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3507 5.151991 E 8.096082 3.000000 0.172631 6 120 0.000000 0.172631 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3506 5.696636 E 8.662738 3.000000 0.223461 7 120 0.000000 0.223461 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S sshd 3542 156.065554 E 158.528887 3.000000 199.158237 758 120 0.000000 199.158237 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Sxdg-permission- 3549 8.115189 E 11.087827 3.000000 4.193195 7 120 0.000000 4.193195 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/0:8 3759 59756.400082 E 59759.380811 3.000000 1.022501 23 120 0.000000 1.022501 0.000000 0.000000 0 0 /\\n I kworker/0:9 3760 59770.205205 E 59773.169769 3.000000 1.596805 44 120 0.000000 1.596805 0.000000 0.000000 0 0 /\\n I kworker/0:10 3801 59771.969076 E 59774.937321 3.000000 0.905114 21 120 0.000000 0.905114 0.000000 0.000000 0 0 /\\n I kworker/0:11 3834 59756.809577 E 59759.790531 3.000000 0.552745 12 120 0.000000 0.552745 0.000000 0.000000 0 0 /\\n I kworker/0:12 3835 59839.201252 E 59842.114881 3.000000 147.613339 247 120 0.000000 147.613339 0.000000 0.000000 0 0 /\\n I kworker/0:13 3878 59770.675693 E 59773.644782 3.000000 0.401815 9 120 0.000000 0.401815 0.000000 0.000000 0 0 /\\n I kworker/0:14 3879 59838.813777 E 59841.697927 3.000000 118.760857 459 120 0.000000 118.760857 0.000000 0.000000 0 0 /\\n I kworker/0:15 3880 59757.553220 E 59760.501134 3.000000 0.251809 8 120 0.000000 0.251809 0.000000 0.000000 0 0 /\\n I kworker/0:16 4875 100191.591994 E 100194.415615 3.000000 48.729548 549 120 0.000000 48.729548 0.000000 0.000000 0 0 /\\n S docker 5108 142.053576 E 144.677977 3.000000 0.445408 2 120 0.000000 0.445408 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5125 145.841713 E 148.838155 3.000000 2.587746 33 120 0.000000 2.587746 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5128 153.640018 E 156.632884 3.000000 8.548291 260 120 0.000000 8.548291 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5138 147.883780 E 150.508821 3.000000 3.072613 60 120 0.000000 3.072613 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5139 156.655595 E 159.322894 3.000000 10.744699 236 120 0.000000 10.744699 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5207 380.169185 E 383.159727 3.000000 1.776241 5 120 0.000000 1.776241 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5209 380.159727 E 383.144516 3.000000 0.125477 4 120 0.000000 0.125477 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5265 317.900081 E 320.886003 3.000000 0.088538 5 120 0.000000 0.088538 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6177 383.295236 E 386.270084 3.000000 0.845378 4 120 0.000000 0.845378 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_close_file 5371 0.996541 E 1.988580 3.000000 0.014879 1 120 0.000000 0.014879 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S bio_lazy_free 5373 0.971337 E 2.003459 3.000000 0.025204 2 120 0.000000 0.025204 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S postgres 5289 116.438482 E 118.785754 3.000000 67.200961 127 120 0.000000 67.200961 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S docker-proxy 5401 444.013364 E 446.951489 3.000000 0.730520 11 120 0.000000 0.730520 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5402 391.629910 E 394.593552 3.000000 0.036358 1 120 0.000000 0.036358 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5404 440.410950 E 443.311576 3.000000 0.200935 4 120 0.000000 0.200935 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5423 384.266485 E 387.255828 3.000000 7.163704 75 120 0.000000 7.163704 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5426 321.885108 E 324.879367 3.000000 0.005741 1 120 0.000000 0.005741 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5452 384.687734 E 387.660369 3.000000 1.775601 271 120 0.000000 1.775601 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5459 331.501159 E 334.467439 3.000000 1.138122 31 120 0.000000 1.138122 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bash 5535 0.374091 E 2.004330 3.000000 1.369761 2 120 0.000000 1.369761 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5560 1.881197 E 4.297811 3.000000 87.562664 10 120 0.000000 87.562664 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5598 1096.827304 E 1099.827304 3.000000 67.403138 16 120 0.000000 67.403138 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5664 1810.667125 E 1813.659738 3.000000 48.028793 19 120 0.000000 48.028793 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6353 2962.498940 E 2965.273620 3.000000 9.925404 79 120 0.000000 9.925404 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6354 2962.532768 E 2965.492613 3.000000 10.767032 25 120 0.000000 10.767032 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5613 1154.546552 E 1157.489793 3.000000 50.490838 17 120 0.000000 50.490838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5688 1886.290395 E 1889.290395 3.000000 33.583605 11 120 0.000000 33.583605 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5689 1886.727601 E 1889.716108 3.000000 34.006642 14 120 0.000000 34.006642 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5691 1887.153050 E 1890.141066 3.000000 34.415056 12 120 0.000000 34.415056 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6337 2948.346864 E 2951.320900 3.000000 0.105808 3 120 0.000000 0.105808 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5605 1128.699724 E 1130.733412 3.000000 59.322321 20 120 0.000000 59.322321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5674 1837.950616 E 1840.941193 3.000000 34.976674 14 120 0.000000 34.976674 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5676 1842.845926 E 1842.887818 3.000000 39.859633 14 120 0.000000 39.859633 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5645 1691.475316 E 1694.467524 3.000000 28.433086 12 120 0.000000 28.433086 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5646 1692.040496 E 1695.034677 3.000000 28.990755 9 120 0.000000 28.990755 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5639 1491.853459 E 1492.774908 3.000000 56.154692 21 120 0.000000 56.154692 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5706 1914.066082 E 1916.114488 3.000000 31.948839 9 120 0.000000 31.948839 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5708 1917.130715 E 1920.121651 3.000000 35.002311 12 120 0.000000 35.002311 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5626 1181.663383 E 1181.681283 3.000000 50.832084 14 120 0.000000 50.832084 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5655 1726.481090 E 1729.473436 3.000000 36.998391 11 120 0.000000 36.998391 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5717 1958.888518 E 1961.882843 3.000000 34.652408 11 120 0.000000 34.652408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6347 2960.545968 E 2963.333661 3.000000 9.357649 17 120 0.000000 9.357649 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5724 1963.859694 E 1966.846384 3.000000 63.747694 20 120 0.000000 63.747694 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6359 111.477320 E 114.300776 3.000000 6.070420 13 120 0.000000 6.070420 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6459 3122.309647 E 3124.734780 3.000000 105.615094 7 120 0.000000 105.615094 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 6373 119.992859 E 122.931010 3.000000 3.916471 16 120 0.000000 3.916471 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S sudo 6602 3994.902861 E 3997.896564 3.000000 3.653243 2 120 0.000000 3.653243 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#1, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 128482\\n .nr_uninterruptible : 53\\n .next_balance : 4295.118982\\n .curr->pid : 0\\n .clock : 451866.083548\\n .clock_task : 451866.083548\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[1]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3916.970509\\n .avg_vruntime : 3916.970509\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.294175\\n .se->vruntime : 10787.424317\\n .se->sum_exec_runtime : 3922.026702\\n .se->load.weight : 317234\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4230.023529\\n .avg_vruntime : 4230.023529\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451772.863218\\n .se->vruntime : 8291.950767\\n .se->sum_exec_runtime : 4247.941537\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3308.673615\\n .avg_vruntime : 3308.673615\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451854.850536\\n .se->vruntime : 68087.910253\\n .se->sum_exec_runtime : 3847.617456\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 631.082934\\n .avg_vruntime : 631.082934\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451850.245463\\n .se->vruntime : 68087.840115\\n .se->sum_exec_runtime : 633.465176\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 335.202458\\n .avg_vruntime : 335.202458\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451866.083548\\n .se->vruntime : 68088.251655\\n .se->sum_exec_runtime : 336.251034\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/systemd-oomd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13.087217\\n .avg_vruntime : 13.087217\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451727.421544\\n .se->vruntime : 68087.128121\\n .se->sum_exec_runtime : 14.135793\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 383.479080\\n .avg_vruntime : 383.479080\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451834.319689\\n .se->vruntime : 68087.787507\\n .se->sum_exec_runtime : 392.213515\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 68088.251655\\n .avg_vruntime : 68088.251655\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451866.083548\\n .se->vruntime : 104075.976809\\n .se->sum_exec_runtime : 16867.664615\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 8291.950767\\n .avg_vruntime : 8291.950767\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451772.863218\\n .se->vruntime : 23794.520228\\n .se->sum_exec_runtime : 4624.424309\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10787.424317\\n .avg_vruntime : 10787.424317\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.294175\\n .se->vruntime : 23803.368872\\n .se->sum_exec_runtime : 4157.726172\\n .se->load.weight : 215146\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 23803.368872\\n .avg_vruntime : 23803.368872\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.294175\\n .se->vruntime : 104075.364962\\n .se->sum_exec_runtime : 9407.781652\\n .se->load.weight : 186452\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 104075.976809\\n .avg_vruntime : 104075.976809\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 14\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[1]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[1]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/1 21 7932.094818 E 7935.015583 3.000000 0.356355 26 120 0.000000 0.356355 0.000000 0.000000 0 0 /\\n S idle_inject/1 22 -1.046696 E 0.298424 0.750000 0.006020 3 49 0.000000 0.006020 0.000000 0.000000 0 0 /\\n S migration/1 23 0.056269 E 0.693236 0.750000 169.521316 160 0 0.000000 169.521316 0.000000 0.000000 0 0 /\\n S ksoftirqd/1 24 104062.611967 E 104065.604287 3.000000 27.718072 673 120 0.000000 27.718072 0.000000 0.000000 0 0 /\\n I kworker/1:0H 26 21.947051 E 21.981566 3.000000 0.017963 4 100 0.000000 0.017963 0.000000 0.000000 0 0 /\\n Ikworker/R-write 70 -1.034874 E -1.000265 3.000000 0.000849 2 100 0.000000 0.000849 0.000000 0.000000 0 0 /\\n S kcompactd0 71 104060.165688 E 104063.154058 3.000000 45.379965 898 120 0.000000 45.379965 0.000000 0.000000 0 0 /\\n S ksmd 72 -1.034874 E 8.135275 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/9-acpi 79 0.888458 E 2.110113 3.000000 26.733450 90 49 0.000000 26.733450 0.000000 0.000000 0 0 /\\n I kworker/1:1 89 101245.266443 E 101248.258989 3.000000 52.566763 1085 120 0.000000 52.566763 0.000000 0.000000 0 0 /\\n I kworker/1:1H 185 104075.513310 E 104075.547745 3.000000 4.518579 385 100 0.000000 4.518579 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 221 392.789305 E 392.823904 3.000000 0.005027 2 100 0.000000 0.005027 0.000000 0.000000 0 0 /\\n Sjbd2/nvme0n1p5- 264 104075.542082 E 104078.513310 3.000000 77.936190 1394 120 0.000000 77.936190 0.000000 0.000000 0 0 /\\n Ikworker/R-crypt 531 2507.555715 E 2507.590316 3.000000 0.005940 2 100 0.000000 0.005940 0.000000 0.000000 0 0 /\\n Sirq/194-iwlwifi 536 3740.895044 E 3743.891071 3.000000 4.620247 25 49 0.000000 4.620247 0.000000 0.000000 0 0 /\\n S systemd-oomd 660 13.087217 E 13.830342 3.000000 574.724632 620 120 0.000000 574.724632 0.000000 0.000000 0 0 /system.slice/systemd-oomd.service\\n S gmain 910 0.472046 E 3.459363 3.000000 0.047699 2 120 0.000000 0.047699 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S gmain 923 3.433860 E 6.421449 3.000000 0.067212 2 120 0.000000 0.067212 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S gdbus 924 7.269924 E 9.126327 3.000000 20.415944 94 120 0.000000 20.415944 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 2924 248.955894 E 251.818007 3.000000 91.527058 125 120 0.000000 91.527058 0.000000 0.000000 0 0 /system.slice/snapd.service\\n Sswitcheroo-cont 836 7.518062 E 10.434047 3.000000 44.143872 152 120 0.000000 44.143872 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 856 2.227776 E 5.225721 3.000000 94.523149 368 120 0.000000 94.523149 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 951 631.082934 E 634.070694 3.000000 1383.298321 15928 120 0.000000 1383.298321 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n I kworker/1:3 971 99567.576275 E 99568.532374 3.000000 89.510496 905 120 0.000000 89.510496 0.000000 0.000000 0 0 /\\n S pool-spawner 1106 14.206991 E 17.144135 3.000000 0.125154 3 120 0.000000 0.125154 0.000000 0.000000 0 0 /system.slice/upower.service\\n S gmain 1107 14.144135 E 17.122581 3.000000 0.021554 1 120 0.000000 0.021554 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1118 0.488564 E 2.489338 3.000000 0.204262 22 120 0.000000 0.204262 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S cupsd 1439 4.468166 E 6.566988 3.000000 22.666250 96 120 0.000000 22.666250 0.000000 0.000000 0 0 /system.slice/cups.service\\n S containerd 1458 332.847699 E 335.052522 3.000000 181.796101 4487 120 0.000000 181.796101 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 5141 344.482809 E 347.356511 3.000000 47.093063 1818 120 0.000000 47.093063 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdm3 1469 28.866371 E 31.777617 3.000000 29.629979 80 120 0.000000 29.629979 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S systemd 1499 195.259155 E 198.008645 3.000000 1449.806853 616 120 0.000000 1449.806853 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pipewire 1512 16.254098 E 16.510392 3.000000 32.093335 224 109 0.000000 32.093335 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1527 11.267137 E 14.210616 3.000000 0.188517 6 120 0.000000 0.188517 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1541 11.066776 E 14.063472 3.000000 0.112549 13 79 0.000000 0.112549 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1551 11.210616 E 14.180555 3.000000 0.056827 2 120 0.000000 0.056827 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1553 14.775624 E 17.722860 3.000000 0.661282 10 120 0.000000 0.661282 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1526 0.567104 E 2.363017 3.000000 0.680927 15 120 0.000000 0.680927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgnome-session-b 1546 4026.427161 E 4028.816499 3.000000 72.220451 386 120 0.000000 72.220451 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1555 11.411258 E 14.381068 3.000000 0.030190 1 120 0.000000 0.030190 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1559 11.464077 E 14.455527 3.000000 0.052819 2 120 0.000000 0.052819 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gnome-shell 1590 4230.023529 E 4232.634400 3.000000 9753.660213 5193 120 0.000000 9753.660213 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1602 241.182424 E 244.164119 3.000000 1.813576 72 120 0.000000 1.813576 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1610 4226.629105 E 4229.520387 3.000000 10.276419 89 120 0.000000 10.276419 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S KMS thread 1618 4040.643096 E 4043.470042 3.000000 312.191032 825 79 0.000000 312.191032 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-s:disk$0 3004 8.656514 E 213.116341 3.000000 0.090177 1 139 0.000000 0.090177 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3014 167.316606 E 170.276345 3.000000 71.365629 133 120 0.000000 71.365629 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1664 383.479080 E 386.476693 3.000000 271.654615 22276 120 0.000000 271.654615 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1670 304.900140 E 305.802357 3.000000 107.084760 2032 120 0.000000 107.084760 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1672 144.769731 E 147.755909 3.000000 0.723957 32 120 0.000000 0.723957 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2526 305.308381 E 307.900140 3.000000 3.053644 65 120 0.000000 3.053644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2527 290.625017 E 293.618099 3.000000 99.602375 2905 120 0.000000 99.602375 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2677 383.378089 E 386.374956 3.000000 30.271222 1524 120 0.000000 30.271222 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2422 329.061756 E 331.860625 3.000000 29.102401 111 120 0.000000 29.102401 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2814 0.304479 E 2.637087 3.000000 0.714735 5 120 0.000000 0.714735 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3024 60.304780 E 63.271147 3.000000 0.033633 1 120 0.000000 0.033633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:gdrv0 3269 566.947492 E 569.942158 3.000000 0.048510 3 120 0.000000 0.048510 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3038 563.666293 E 566.641667 3.000000 4.306399 54 120 0.000000 4.306399 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3081 645.782212 E 648.340009 3.000000 0.896962 8 120 0.000000 0.896962 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3085 646.371136 E 648.782212 3.000000 1.123443 8 120 0.000000 1.123443 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-wacom 3091 644.537177 E 647.284944 3.000000 366.045403 439 120 0.000000 366.045403 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3118 160.094256 E 163.069340 3.000000 0.024916 1 120 0.000000 0.024916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-color 3095 4214.628478 E 4217.414834 3.000000 129.278614 57 120 0.000000 129.278614 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-keyboard 3100 648.247208 E 651.166836 3.000000 121.441087 43 120 0.000000 121.441087 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3123 160.645856 E 163.586872 3.000000 0.058984 1 120 0.000000 0.058984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-smartcard 3119 563.386800 E 566.368384 3.000000 7.380501 47 120 0.000000 7.380501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3141 163.322124 E 166.295023 3.000000 0.027101 1 120 0.000000 0.027101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3152 563.387981 E 566.317884 3.000000 5.186420 57 120 0.000000 5.186420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-datetime 3129 563.405186 E 566.383009 3.000000 11.094354 49 120 0.000000 11.094354 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3201 553.536426 E 556.465699 3.000000 0.162455 3 120 0.000000 0.162455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3219 184.113084 E 187.101602 3.000000 0.087152 2 120 0.000000 0.087152 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3292 378.083610 E 380.401752 3.000000 0.681858 1 120 0.000000 0.681858 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3342 4042.206196 E 4044.992366 3.000000 1.492101 12 120 0.000000 1.492101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3345 634.080030 E 637.037078 3.000000 79.580450 171 120 0.000000 79.580450 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-:disk$0 3376 606.974571 E 811.460271 3.000000 0.041875 2 139 0.000000 0.041875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x:gdrv0 3383 611.246200 E 614.198837 3.000000 0.047363 1 120 0.000000 0.047363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3382 611.727160 E 614.717547 3.000000 0.569298 17 120 0.000000 0.569298 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S sshd 3437 7.898835 E 10.142566 3.000000 77.928271 33 120 0.000000 77.928271 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S pipewire-pulse 3475 5.257457 E 8.249472 3.000000 16.156993 25 120 0.000000 16.156993 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/1:0 5020 104075.563991 E 104078.554369 3.000000 14.736213 181 120 0.000000 14.736213 0.000000 0.000000 0 0 /\\n S docker 5111 76.881186 E 79.675463 3.000000 2.727325 5 120 0.000000 2.727325 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5129 92.979057 E 95.827156 3.000000 13.278881 308 120 0.000000 13.278881 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5211 363.330161 E 366.318893 3.000000 0.672438 17 120 0.000000 0.672438 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5213 312.682584 E 315.605437 3.000000 0.185163 4 120 0.000000 0.185163 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6176 330.014363 E 332.837025 3.000000 1.146372 8 120 0.000000 1.146372 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S redis-server 5282 335.202458 E 337.861056 3.000000 1946.656818 744 120 0.000000 1946.656818 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 6331 360.751373 E 363.688567 3.000000 1.152413 3 120 0.000000 1.152413 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5427 330.611886 E 333.580963 3.000000 2.390830 41 120 0.000000 2.390830 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5528 290.121910 E 293.092020 3.000000 0.588842 12 120 0.000000 0.588842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5563 0.942109 E 2.054286 3.000000 0.436022 3 120 0.000000 0.436022 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5600 849.366916 E 852.353840 3.000000 39.919317 22 120 0.000000 39.919317 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5665 1661.043325 E 1661.083812 3.000000 55.912313 17 120 0.000000 55.912313 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5616 882.220441 E 885.175429 3.000000 29.865267 12 120 0.000000 29.865267 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5618 881.421942 E 884.354331 3.000000 29.053625 11 120 0.000000 29.053625 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5687 1785.074279 E 1788.064636 3.000000 41.826708 13 120 0.000000 41.826708 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5697 1797.414029 E 1798.448640 3.000000 30.959422 9 120 0.000000 30.959422 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5700 1798.495212 E 1801.486113 3.000000 32.018896 11 120 0.000000 32.018896 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5633 1752.220599 E 1755.211488 3.000000 57.584088 17 120 0.000000 57.584088 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6334 3165.588717 E 3168.411649 3.000000 10.885334 28 120 0.000000 10.885334 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5715 1835.502622 E 1838.493962 3.000000 42.959724 13 120 0.000000 42.959724 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5577 3308.673615 E 3311.603477 3.000000 2842.367412 1392 120 0.000000 2842.367412 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5620 102.625658 E 105.242092 3.000000 0.383566 1 120 0.000000 0.383566 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/1:2 5968 99564.615043 E 99567.596256 3.000000 2.063702 7 120 0.000000 2.063702 0.000000 0.000000 0 0 /\\n I kworker/1:4 5969 99564.670410 E 99567.651157 3.000000 1.351890 24 120 0.000000 1.351890 0.000000 0.000000 0 0 /\\n I kworker/1:5 5970 99564.679214 E 99567.667609 3.000000 1.049866 11 120 0.000000 1.049866 0.000000 0.000000 0 0 /\\n I kworker/1:6 5971 99556.785859 E 99559.784868 3.000000 0.049506 2 120 0.000000 0.049506 0.000000 0.000000 0 0 /\\n S postgres 6343 106.666365 E 106.960184 3.000000 6.717148 7 120 0.000000 6.717148 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6360 108.491891 E 110.311591 3.000000 4.628347 10 120 0.000000 4.628347 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6368 3715.097038 E 3718.087195 3.000000 0.118666 3 120 0.000000 0.118666 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 6460 3904.361858 E 3906.770286 3.000000 109.788533 7 120 0.000000 109.788533 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#2, 2400.000 MHz\\n .nr_running : 1\\n .nr_switches : 157519\\n .nr_uninterruptible : -228\\n .next_balance : 4295.119020\\n .curr->pid : 6604\\n .clock : 451866.171917\\n .clock_task : 451866.171917\\n .avg_idle : 43356\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[2]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1975.421391\\n .avg_vruntime : 1975.421391\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 1048576\\n .load_avg : 1008\\n .runnable_avg : 701\\n .util_avg : 701\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1007\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451866.171917\\n .se->vruntime : 7879.324939\\n .se->sum_exec_runtime : 1984.945302\\n .se->load.weight : 415052\\n .se->avg.load_avg : 398\\n .se->avg.util_avg : 700\\n .se->avg.runnable_avg : 701\\n\\ncfs_rq[2]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7879.324939\\n .avg_vruntime : 7879.324939\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 415052\\n .load_avg : 398\\n .runnable_avg : 701\\n .util_avg : 700\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 396\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451866.171917\\n .se->vruntime : 13840.160630\\n .se->sum_exec_runtime : 2256.966285\\n .se->load.weight : 414720\\n .se->avg.load_avg : 398\\n .se->avg.util_avg : 700\\n .se->avg.runnable_avg : 701\\n\\ncfs_rq[2]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 536.337302\\n .avg_vruntime : 536.337302\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451800.086378\\n .se->vruntime : 76142.754910\\n .se->sum_exec_runtime : 538.924335\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3599.486703\\n .avg_vruntime : 3599.486703\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451798.049541\\n .se->vruntime : 76142.710558\\n .se->sum_exec_runtime : 4081.867116\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 11.590717\\n .avg_vruntime : 11.590717\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451765.571901\\n .se->vruntime : 76142.561919\\n .se->sum_exec_runtime : 12.643827\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 76142.754910\\n .avg_vruntime : 76142.754910\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451800.086378\\n .se->vruntime : 108089.399166\\n .se->sum_exec_runtime : 20062.987167\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[2]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13840.160630\\n .avg_vruntime : 13840.160630\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 414720\\n .load_avg : 398\\n .runnable_avg : 701\\n .util_avg : 700\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 398\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451866.171917\\n .se->vruntime : 108202.449847\\n .se->sum_exec_runtime : 3986.610777\\n .se->load.weight : 336508\\n .se->avg.load_avg : 322\\n .se->avg.util_avg : 700\\n .se->avg.runnable_avg : 701\\n\\ncfs_rq[2]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 108202.449847\\n .avg_vruntime : 108202.449847\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 336508\\n .load_avg : 325\\n .runnable_avg : 703\\n .util_avg : 703\\n .util_est : 693\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[2]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 8.816495\\n .rt_runtime : 950.000000\\n\\ndl_rq[2]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/2 27 10232.512266 E 10235.476962 3.000000 0.310145 26 120 0.000000 0.310145 0.000000 0.000000 0 0 /\\n S idle_inject/2 28 -1.048574 E 0.451426 1.500000 0.000962 3 49 0.000000 0.000962 0.000000 0.000000 0 0 /\\n S migration/2 29 0.100700 E 0.850203 0.750000 169.698991 176 0 0.000000 169.698991 0.000000 0.000000 0 0 /\\n S ksoftirqd/2 30 108155.590045 E 108158.578612 3.000000 24.616562 993 120 0.000000 24.616562 0.000000 0.000000 0 0 /\\n I kworker/2:0 31 62457.803260 E 62460.735327 3.000000 8.218140 34 120 0.000000 8.218140 0.000000 0.000000 0 0 /\\n I kworker/2:0H 32 103.304456 E 103.338997 3.000000 0.014834 5 100 0.000000 0.014834 0.000000 0.000000 0 0 /\\n S oom_reaper 69 -1.013776 E 1.986224 3.000000 0.000042 2 120 0.000000 0.000042 0.000000 0.000000 0 0 /\\n I kworker/2:1 80 106608.431116 E 106611.424327 3.000000 311.082998 4640 120 0.000000 311.082998 0.000000 0.000000 0 0 /\\n I kworker/2:1H 195 106151.641213 E 106151.675646 3.000000 4.573675 286 100 0.000000 4.573675 0.000000 0.000000 0 0 /\\n I kworker/2:2 217 62482.814010 E 62485.785163 3.000000 119.011817 1706 120 0.000000 119.011817 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 218 470.398502 E 470.433104 3.000000 0.005099 2 100 0.000000 0.005099 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 219 470.401038 E 470.435644 3.000000 0.002850 2 100 0.000000 0.002850 0.000000 0.000000 0 0 /\\n I kworker/2:3 223 108183.430077 E 108186.422653 3.000000 120.794080 1463 120 0.000000 120.794080 0.000000 0.000000 0 0 /\\n I kworker/2:4 349 62418.902108 E 62421.893366 3.000000 2.337037 7 120 0.000000 2.337037 0.000000 0.000000 0 0 /\\n I kworker/u16:6 449 106470.336343 E 106473.317195 3.000000 26.861000 570 120 0.000000 26.861000 0.000000 0.000000 0 0 /\\n I kworker/u16:7 450 107984.100318 E 107987.095020 3.000000 181.655672 3197 120 0.000000 181.655672 0.000000 0.000000 0 0 /\\n S irq/191-mei_me 520 2425.538335 E 2428.535129 3.000000 1.457719 39 49 0.000000 1.457719 0.000000 0.000000 0 0 /\\n Sirq/195-iwlwifi 538 3925.397830 E 3928.395543 3.000000 3115.149651 15776 49 0.000000 3115.149651 0.000000 0.000000 0 0 /\\n S bluetoothd 794 7.041556 E 9.968659 3.000000 94.884117 392 120 0.000000 94.884117 0.000000 0.000000 0 0 /system.slice/bluetooth.service\\n S dbus-daemon 796 425.564977 E 428.350688 3.000000 3276.517362 6094 120 0.000000 3276.517362 0.000000 0.000000 0 0 /system.slice/dbus.service\\n S snapd 854 181.532524 E 181.847161 3.000000 74.669991 322 120 0.000000 74.669991 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S pool-spawner 876 1.965147 E 4.922053 3.000000 0.074621 2 120 0.000000 0.074621 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n Ikworker/R-ipmi- 913 6961.772658 E 6961.807253 3.000000 0.015936 2 100 0.000000 0.015936 0.000000 0.000000 0 0 /\\n S rsyslogd 919 33.759388 E 36.497758 3.000000 30.430189 90 120 0.000000 30.430189 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S pool-spawner 1100 6.890317 E 9.858408 3.000000 0.106301 5 120 0.000000 0.106301 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1116 2.347087 E 5.294553 3.000000 0.174658 34 120 0.000000 0.174658 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sh 1121 12.505172 E 15.381318 3.000000 5.274342 15 120 0.000000 5.274342 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1461 0.881565 E 2.097726 3.000000 0.020709 1 120 0.000000 0.020709 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sgdm-session-wor 1492 0.021664 E 2.378098 3.000000 7.685172 93 120 0.000000 7.685172 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 1500 0.906613 E 1.951424 3.000000 0.141963 1 120 0.000000 0.141963 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pw-data-loop 1536 3.469723 E 6.464575 3.000000 0.024781 3 79 0.000000 0.024781 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sgdm-wayland-ses 1517 0.890985 E 3.860521 3.000000 4.316422 18 120 0.000000 4.316422 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1565 410.548304 E 413.512933 3.000000 0.246882 6 120 0.000000 0.246882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1607 999.821596 E 1002.478783 3.000000 105.496244 84 120 0.000000 105.496244 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shel:sh0 3005 31.707816 E 34.581346 3.000000 0.126470 1 120 0.000000 0.126470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3012 33.382173 E 238.030347 3.000000 0.007470 1 139 0.000000 0.007470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3013 33.387365 E 36.382173 3.000000 0.005192 1 120 0.000000 0.005192 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3276 121.709419 E 124.678683 3.000000 0.030736 1 120 0.000000 0.030736 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1666 392.441719 E 395.424069 3.000000 85.574576 1861 120 0.000000 85.574576 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1699 492.166838 E 495.163126 3.000000 159.469160 4640 120 0.000000 159.469160 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2722 1.991100 E 4.985710 3.000000 0.640714 24 120 0.000000 0.640714 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Ikworker/R-tls-s 2863 22769.817423 E 22769.852008 3.000000 0.015449 2 100 0.000000 0.015449 0.000000 0.000000 0 0 /\\n S dconf worker 3025 46.149564 E 49.142692 3.000000 0.447278 11 120 0.000000 0.447278 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S colord 3035 21.580781 E 24.092855 3.000000 92.765102 187 120 0.000000 92.765102 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gmain 3041 0.737224 E 2.242460 3.000000 0.155686 2 120 0.000000 0.155686 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gjs 3078 487.170160 E 488.823207 3.000000 59.101805 83 120 0.000000 59.101805 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3130 407.533407 E 410.525336 3.000000 0.766318 14 120 0.000000 0.766318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-rfkill 3114 998.886738 E 1001.849496 3.000000 15.743437 198 120 0.000000 15.743437 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3187 98.848084 E 101.823175 3.000000 0.095370 2 120 0.000000 0.095370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-media-keys 3146 953.008761 E 955.920109 3.000000 135.098877 137 120 0.000000 135.098877 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3202 99.517382 E 102.480455 3.000000 0.036927 1 120 0.000000 0.036927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3344 968.712808 E 971.613739 3.000000 1.076193 11 120 0.000000 1.076193 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3354 424.550236 E 427.529183 3.000000 0.083867 3 120 0.000000 0.083867 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3369 435.646524 E 438.628102 3.000000 0.253340 7 120 0.000000 0.253340 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3372 999.168925 E 1002.117870 3.000000 1.312504 18 120 0.000000 1.312504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3379 436.877871 E 439.851438 3.000000 0.116796 2 120 0.000000 0.116796 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Ssnapd-desktop-i 3468 39.501067 E 42.224366 3.000000 18.969394 43 120 0.000000 18.969394 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/2:5 4401 62457.735327 E 62460.617124 3.000000 6.696486 19 120 0.000000 6.696486 0.000000 0.000000 0 0 /\\n I kworker/2:6 4402 62417.302767 E 62420.302240 3.000000 0.074093 2 120 0.000000 0.074093 0.000000 0.000000 0 0 /\\n Sgnome-keyring-d 4742 2.112296 E 4.991437 3.000000 7.218223 25 120 0.000000 7.218223 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5101 203.349617 E 206.337477 3.000000 5.861286 130 120 0.000000 5.861286 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5107 171.690383 E 174.331107 3.000000 0.500947 6 120 0.000000 0.500947 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5124 193.061150 E 195.671496 3.000000 8.594148 49 120 0.000000 8.594148 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5126 193.996527 E 196.991799 3.000000 3.299204 35 120 0.000000 3.299204 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5210 485.513539 E 488.485172 3.000000 16.576479 574 120 0.000000 16.576479 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5244 312.578674 E 315.203491 3.000000 3.382124 33 120 0.000000 3.382124 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5269 313.711904 E 316.502983 3.000000 3.303334 27 120 0.000000 3.303334 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5395 444.125737 E 447.089233 3.000000 2.779950 93 120 0.000000 2.779950 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5408 390.450618 E 393.442277 3.000000 0.052751 3 120 0.000000 0.052751 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5458 314.390724 E 316.751664 3.000000 2.995581 28 120 0.000000 2.995581 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5536 3597.976489 E 3600.169012 3.000000 317.793565 141 120 0.000000 317.793565 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5561 27.019019 E 29.648923 3.000000 8.102906 13 120 0.000000 8.102906 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5565 19.562267 E 22.179766 3.000000 0.382501 1 120 0.000000 0.382501 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5599 1243.917125 E 1246.899112 3.000000 28.626410 23 120 0.000000 28.626410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5602 1243.759704 E 1246.752160 3.000000 26.340665 20 120 0.000000 26.340665 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5603 1244.273695 E 1246.859634 3.000000 28.925019 24 120 0.000000 28.925019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5667 2030.812810 E 2033.802093 3.000000 56.273299 24 120 0.000000 56.273299 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5615 1308.530001 E 1309.304684 3.000000 24.830628 15 120 0.000000 24.830628 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5573 3599.486703 E 3602.338064 3.000000 3232.742758 1077 120 0.000000 3232.742758 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5643 1834.821469 E 1835.836851 3.000000 61.193099 20 120 0.000000 61.193099 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5634 1604.905533 E 1607.825141 3.000000 53.244457 20 120 0.000000 53.244457 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5704 2161.079209 E 2164.073284 3.000000 28.505268 11 120 0.000000 28.505268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5705 2161.257548 E 2162.782519 3.000000 28.668075 12 120 0.000000 28.668075 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5710 2162.173294 E 2164.602104 3.000000 29.547294 16 120 0.000000 29.547294 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6333 3512.110147 E 3514.864100 3.000000 10.868019 29 120 0.000000 10.868019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5630 1334.192609 E 1335.792534 3.000000 36.310197 11 120 0.000000 36.310197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5680 2127.508196 E 2130.499659 3.000000 35.630276 19 120 0.000000 35.630276 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5685 2131.985144 E 2134.985144 3.000000 40.053783 21 120 0.000000 40.053783 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5656 1932.156392 E 1935.156392 3.000000 101.676739 50 120 0.000000 101.676739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S python3 6461 1874.578261 E 1875.018070 3.000000 107.214730 15 120 0.000000 107.214730 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n>R python3 6604 1975.421391 E 1977.087024 3.000000 24.620857 27 120 0.000000 24.620857 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#3, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 145647\\n .nr_uninterruptible : 11\\n .next_balance : 4295.118977\\n .curr->pid : 0\\n .clock : 451865.267367\\n .clock_task : 451865.267367\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2728.993346\\n .avg_vruntime : 2728.993346\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 4\\n .runnable_avg : 4\\n .util_avg : 4\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 4\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451816.632274\\n .se->vruntime : 9705.333559\\n .se->sum_exec_runtime : 2733.980526\\n .se->load.weight : 35187\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9705.333559\\n .avg_vruntime : 9705.333559\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451816.632274\\n .se->vruntime : 15750.169060\\n .se->sum_exec_runtime : 3328.059703\\n .se->load.weight : 5825\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 402.887882\\n .avg_vruntime : 402.887882\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451511.449115\\n .se->vruntime : 74184.693578\\n .se->sum_exec_runtime : 427.136895\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 800.336311\\n .avg_vruntime : 800.336311\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451828.368331\\n .se->vruntime : 74184.738257\\n .se->sum_exec_runtime : 801.486435\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/systemd-logind.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 123.954277\\n .avg_vruntime : 123.954277\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 4\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451840.796515\\n .se->vruntime : 74184.847235\\n .se->sum_exec_runtime : 125.141146\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/accounts-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9.620689\\n .avg_vruntime : 9.620689\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451848.730686\\n .se->vruntime : 74184.897567\\n .se->sum_exec_runtime : 10.422203\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 74184.897567\\n .avg_vruntime : 74184.897567\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451848.730686\\n .se->vruntime : 97163.948739\\n .se->sum_exec_runtime : 17838.468653\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 2\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[3]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15750.169060\\n .avg_vruntime : 15750.169060\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451816.632274\\n .se->vruntime : 97164.411036\\n .se->sum_exec_runtime : 4835.165149\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 97163.948739\\n .avg_vruntime : 97163.948739\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 5\\n .runnable_avg : 7\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[3]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 3.469709\\n .rt_runtime : 950.000000\\n\\ndl_rq[3]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/3 33 7886.138537 E 7889.102720 3.000000 0.348500 26 120 0.000000 0.348500 0.000000 0.000000 0 0 /\\n S idle_inject/3 34 -1.048518 E 0.451482 1.500000 0.001036 3 49 0.000000 0.001036 0.000000 0.000000 0 0 /\\n S migration/3 35 0.198781 E 0.948241 0.750000 169.811273 178 0 0.000000 169.811273 0.000000 0.000000 0 0 /\\n S ksoftirqd/3 36 97163.744660 E 97166.646064 3.000000 25.329426 998 120 0.000000 25.329426 0.000000 0.000000 0 0 /\\n I kworker/3:0 37 97062.381031 E 97065.360096 3.000000 92.000555 914 120 0.000000 92.000555 0.000000 0.000000 0 0 /\\n I kworker/3:0H 38 6.472894 E 6.507461 3.000000 0.011946 4 100 0.000000 0.011946 0.000000 0.000000 0 0 /\\n Ikworker/R-inet_ 64 -1.038883 E -1.004274 3.000000 0.009635 2 100 0.000000 0.009635 0.000000 0.000000 0 0 /\\n S kauditd 65 46475.465473 E 46478.440242 3.000000 2.812791 141 120 0.000000 2.812791 0.000000 0.000000 0 0 /\\n S khungtaskd 67 59242.973736 E 59245.502616 3.000000 1.045812 5 120 0.000000 1.045812 0.000000 0.000000 0 0 /\\n I kworker/u16:2 68 92943.982882 E 92946.978221 3.000000 96.575686 3120 120 0.000000 96.575686 0.000000 0.000000 0 0 /\\n I kworker/3:1 73 56564.399450 E 56567.067307 3.000000 140.577357 1080 120 0.000000 140.577357 0.000000 0.000000 0 0 /\\n Ikworker/R-kinte 75 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-kbloc 76 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-blkcg 77 0.992084 E 0.957475 3.000000 0.000070 2 100 0.000000 0.000070 0.000000 0.000000 0 0 /\\n Ikworker/R-tpm_d 82 0.481367 E 0.446758 3.000000 0.000111 2 100 0.000000 0.000111 0.000000 0.000000 0 0 /\\n I kworker/R-md 84 0.480619 E 0.446010 3.000000 0.000748 2 100 0.000000 0.000748 0.000000 0.000000 0 0 /\\n Ikworker/R-edac- 86 0.479971 E 0.445362 3.000000 0.000648 2 100 0.000000 0.000648 0.000000 0.000000 0 0 /\\n S watchdogd 88 0.469682 E 2.529619 3.000000 0.000699 2 49 0.000000 0.000699 0.000000 0.000000 0 0 /\\n Ikworker/R-kthro 93 0.358457 E 0.323888 3.000000 0.021180 2 100 0.000000 0.021180 0.000000 0.000000 0 0 /\\n S irq/127-pciehp 94 0.342701 E 2.655906 3.000000 0.020513 2 49 0.000000 0.020513 0.000000 0.000000 0 0 /\\n I kworker/u17:0 114 59020.770974 E 59020.805494 3.000000 170.119960 4180 100 0.000000 170.119960 0.000000 0.000000 0 0 /\\n I kworker/3:1H 153 94874.415249 E 94874.446269 3.000000 24.047795 1672 100 0.000000 24.047795 0.000000 0.000000 0 0 /\\n I kworker/3:2 226 94908.931934 E 94911.900961 3.000000 46.378320 486 120 0.000000 46.378320 0.000000 0.000000 0 0 /\\n S systemd-udevd 351 698.358681 E 701.151664 3.000000 1139.006900 2401 120 0.000000 1139.006900 0.000000 0.000000 0 0 /system.slice/systemd-udevd.service\\n I kworker/u16:8 451 94908.757117 E 94911.643230 3.000000 171.046008 1968 120 0.000000 171.046008 0.000000 0.000000 0 0 /\\n Sirq/192-iwlwifi 534 4059.665296 E 4062.645526 3.000000 1484.589767 12361 49 0.000000 1484.589767 0.000000 0.000000 0 0 /\\n Sirq/196-iwlwifi 539 3926.018591 E 3929.015940 3.000000 18.636840 99 49 0.000000 18.636840 0.000000 0.000000 0 0 /\\n I kworker/R-ttm 576 4266.892470 E 4266.927070 3.000000 0.005129 2 100 0.000000 0.005129 0.000000 0.000000 0 0 /\\n Ssystemd-resolve 665 207.898936 E 208.936430 3.000000 620.529176 816 120 0.000000 620.529176 0.000000 0.000000 0 0 /system.slice/systemd-resolved.service\\n I kworker/u17:3 785 97128.936533 E 97128.970910 3.000000 287.194921 6825 100 0.000000 287.194921 0.000000 0.000000 0 0 /\\n S gmain 930 9.620689 E 12.570357 3.000000 77.877910 853 120 0.000000 77.877910 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 938 6.914745 E 9.332271 3.000000 25.658172 104 120 0.000000 25.658172 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S cron 795 4.661846 E 7.180098 3.000000 5.785575 16 120 0.000000 5.785575 0.000000 0.000000 0 0 /system.slice/cron.service\\n Sgnome-remote-de 800 6.461804 E 9.080981 3.000000 30.145068 265 120 0.000000 30.145068 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 922 3.894639 E 6.842135 3.000000 0.090432 2 120 0.000000 0.090432 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 831 206.525041 E 209.519124 3.000000 30.118582 233 120 0.000000 30.118582 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 852 310.199492 E 310.516321 3.000000 174.131223 492 120 0.000000 174.131223 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 853 2.078318 E 5.068150 3.000000 0.396308 18 120 0.000000 0.396308 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 859 -1.009569 E 1.951424 3.000000 0.039007 1 120 0.000000 0.039007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S systemd-logind 842 123.954277 E 126.845618 3.000000 1419.895476 5526 120 0.000000 1419.895476 0.000000 0.000000 0 0 /system.slice/systemd-logind.service\\n S gdbus 888 16.413333 E 18.362122 3.000000 17.064715 94 120 0.000000 17.064715 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gdbus 939 139.664925 E 142.577227 3.000000 380.939592 2873 120 0.000000 380.939592 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S sysbox-fs 1117 -1.009201 E 1.951424 3.000000 0.039375 1 120 0.000000 0.039375 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1490 402.887882 E 405.565467 3.000000 143.643437 2602 120 0.000000 143.643437 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1505 392.068913 E 394.221646 3.000000 206.843651 5415 120 0.000000 206.843651 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1482 0.012894 E 2.894979 3.000000 0.583316 4 120 0.000000 0.583316 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gdbus 1496 0.233532 E 2.720526 3.000000 1.188965 22 120 0.000000 1.188965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S wireplumber 1515 9.144716 E 9.344452 3.000000 112.045348 651 109 0.000000 112.045348 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1528 7.387174 E 10.325290 3.000000 0.194691 7 120 0.000000 0.194691 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1538 7.325290 E 10.316534 3.000000 0.041734 2 120 0.000000 0.041734 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1518 2.669021 E 5.657668 3.000000 0.061989 3 120 0.000000 0.061989 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1568 8.156596 E 11.144147 3.000000 0.100728 3 120 0.000000 0.100728 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1561 8.265857 E 11.247889 3.000000 0.366731 9 120 0.000000 0.366731 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1599 727.918675 E 730.629195 3.000000 21.630360 134 120 0.000000 21.630360 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1605 727.146396 E 729.978411 3.000000 9.736035 91 120 0.000000 9.736035 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1608 726.978411 E 729.734033 3.000000 9.900480 112 120 0.000000 9.900480 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3008 5.879336 E 210.308511 3.000000 0.040484 1 139 0.000000 0.040484 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3009 5.885425 E 8.879336 3.000000 0.006089 1 120 0.000000 0.006089 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1681 0.987359 E 2.007769 3.000000 0.061217 2 120 0.000000 0.061217 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 2406 516.285266 E 519.277559 3.000000 74.855288 1763 120 0.000000 74.855288 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2442 200.802238 E 203.083797 3.000000 2.686930 84 120 0.000000 2.686930 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2401 384.236085 E 387.189652 3.000000 16.526540 77 120 0.000000 16.526540 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 3726 384.189652 E 387.172762 3.000000 29.924391 57 120 0.000000 29.924391 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2721 0.409380 E 3.265151 3.000000 4.476361 233 120 0.000000 4.476361 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2723 0.432282 E 2.528786 3.000000 3.337825 71 120 0.000000 3.337825 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2727 0.657300 E 2.325290 3.000000 0.078513 3 120 0.000000 0.078513 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/3:3 2728 59963.684944 E 59966.680285 3.000000 40.128014 350 120 0.000000 40.128014 0.000000 0.000000 0 0 /\\n S Xwaylan:disk$0 3264 278.898908 E 483.348085 3.000000 0.083880 3 139 0.000000 0.083880 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sat-spi2-registr 3034 320.892867 E 323.863419 3.000000 9.827853 77 120 0.000000 9.827853 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3084 396.608166 E 398.928697 3.000000 1.378050 9 120 0.000000 1.378050 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3104 50.860674 E 53.826398 3.000000 0.155648 6 120 0.000000 0.155648 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3161 51.477948 E 54.430767 3.000000 0.086363 2 120 0.000000 0.086363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3165 265.319650 E 268.242694 3.000000 4.804589 50 120 0.000000 4.804589 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sound 3155 264.524415 E 267.507911 3.000000 10.096889 65 120 0.000000 10.096889 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3200 264.748433 E 267.666962 3.000000 4.545875 44 120 0.000000 4.545875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3173 52.876485 E 55.844305 3.000000 0.094693 4 120 0.000000 0.094693 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3195 53.525055 E 56.511106 3.000000 0.140273 3 120 0.000000 0.140273 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3212 262.457088 E 265.449831 3.000000 0.389984 12 120 0.000000 0.389984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-printer 3290 687.615620 E 690.465261 3.000000 187.874291 30 120 0.000000 187.874291 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3339 700.168791 E 703.029139 3.000000 0.936467 13 120 0.000000 0.936467 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3351 699.316593 E 701.734734 3.000000 3.194350 33 120 0.000000 3.194350 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3355 311.731393 E 314.671777 3.000000 0.146965 3 120 0.000000 0.146965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3356 408.298560 E 411.135610 3.000000 9.785534 67 120 0.000000 9.785534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-dconf 3360 312.231880 E 315.209559 3.000000 3.710779 6 120 0.000000 3.710779 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3365 311.671777 E 314.666437 3.000000 0.056426 2 120 0.000000 0.056426 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3368 312.703029 E 315.657097 3.000000 0.439195 10 120 0.000000 0.439195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3509 -1.026522 E 1.969433 3.000000 0.022054 3 120 0.000000 0.022054 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3511 3.665450 E 6.655609 3.000000 0.052600 3 120 0.000000 0.052600 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3551 9.844973 E 12.792466 3.000000 0.052507 1 120 0.000000 0.052507 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3599 197.020590 E 197.487604 3.000000 67.673866 80 120 0.000000 67.673866 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S sshd 3669 24.119215 E 26.352417 3.000000 60.985253 32 120 0.000000 60.985253 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sshd 3711 2716.872249 E 2719.269375 3.000000 3552.316457 10218 120 0.000000 3552.316457 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n I kworker/3:4 4403 56560.146387 E 56563.133575 3.000000 0.175468 2 120 0.000000 0.175468 0.000000 0.000000 0 0 /\\n S pool-spawner 4748 11.609030 E 14.551046 3.000000 0.057984 1 120 0.000000 0.057984 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5100 224.686053 E 227.677039 3.000000 61.547451 14 120 0.000000 61.547451 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5110 268.721718 E 271.652332 3.000000 1.698855 16 120 0.000000 1.698855 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5127 268.080230 E 270.854937 3.000000 0.225293 1 120 0.000000 0.225293 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5262 307.365255 E 310.358223 3.000000 2.509248 7 120 0.000000 2.509248 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5263 386.043126 E 389.005033 3.000000 2.660405 449 120 0.000000 2.660405 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sjemalloc_bg_thd 5374 800.336311 E 803.291675 3.000000 0.137950 4 120 0.000000 0.137950 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5393 441.075088 E 444.057442 3.000000 1.906891 4 120 0.000000 1.906891 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5397 441.007142 E 443.951633 3.000000 0.134457 6 120 0.000000 0.134457 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5455 329.155687 E 332.140177 3.000000 0.106899 6 120 0.000000 0.106899 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5539 386.801011 E 389.582981 3.000000 2.237213 15 120 0.000000 2.237213 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5666 1455.901773 E 1455.931322 3.000000 52.537643 16 120 0.000000 52.537643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5692 1542.872428 E 1545.867503 3.000000 39.486389 14 120 0.000000 39.486389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6339 2749.264215 E 2752.131956 3.000000 10.760643 17 120 0.000000 10.760643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6342 2748.954739 E 2751.740522 3.000000 9.140090 22 120 0.000000 9.140090 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5607 675.005069 E 677.994134 3.000000 108.505409 56 120 0.000000 108.505409 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5675 1497.517568 E 1500.507764 3.000000 53.995739 18 120 0.000000 53.995739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5642 1261.164512 E 1264.157881 3.000000 21.195408 8 120 0.000000 21.195408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5701 1573.282016 E 1576.275123 3.000000 54.439900 15 120 0.000000 54.439900 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6335 2738.808672 E 2741.790683 3.000000 0.042506 3 120 0.000000 0.042506 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5631 796.046325 E 798.991768 3.000000 40.045155 23 120 0.000000 40.045155 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5681 1527.879182 E 1529.909057 3.000000 33.967325 14 120 0.000000 33.967325 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5684 1530.679057 E 1533.672041 3.000000 36.744957 12 120 0.000000 36.744957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5711 1596.022219 E 1599.010783 3.000000 26.922198 10 120 0.000000 26.922198 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5712 1598.317683 E 1601.311774 3.000000 27.952471 10 120 0.000000 27.952471 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5713 1598.100775 E 1601.093750 3.000000 28.977268 10 120 0.000000 28.977268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5716 1603.713181 E 1606.705277 3.000000 27.988249 8 120 0.000000 27.988249 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5648 1264.334911 E 1267.326576 3.000000 21.039304 8 120 0.000000 21.039304 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5649 1267.119289 E 1270.110336 3.000000 23.813972 11 120 0.000000 23.813972 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5652 1267.460598 E 1270.456344 3.000000 24.138886 11 120 0.000000 24.138886 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5718 1603.710384 E 1606.705277 3.000000 34.052954 13 120 0.000000 34.052954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6350 937.274954 E 939.907193 3.000000 6.761954 8 120 0.000000 6.761954 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6357 944.544491 E 947.340961 3.000000 6.012580 14 120 0.000000 6.012580 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6358 944.703813 E 947.544491 3.000000 12.880370 18 120 0.000000 12.880370 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6370 2323.619652 E 2326.584193 3.000000 8.435160 262 120 0.000000 8.435160 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#4, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 116789\\n .nr_uninterruptible : 187\\n .next_balance : 4295.118969\\n .curr->pid : 0\\n .clock : 451852.194478\\n .clock_task : 451852.194478\\n .avg_idle : 772447\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[4]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1729.853329\\n .avg_vruntime : 1729.853329\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451814.682714\\n .se->vruntime : 8179.459260\\n .se->sum_exec_runtime : 1734.835514\\n .se->load.weight : 372956\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[4]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 8179.459260\\n .avg_vruntime : 8179.459260\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451814.682714\\n .se->vruntime : 14573.378601\\n .se->sum_exec_runtime : 2013.583191\\n .se->load.weight : 284120\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[4]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3296.910737\\n .avg_vruntime : 3296.910737\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451811.759294\\n .se->vruntime : 76978.371690\\n .se->sum_exec_runtime : 3668.097815\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 357.395595\\n .avg_vruntime : 357.395595\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451834.308444\\n .se->vruntime : 76978.445812\\n .se->sum_exec_runtime : 362.638159\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 76978.445812\\n .avg_vruntime : 76978.445812\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451834.308444\\n .se->vruntime : 104074.331930\\n .se->sum_exec_runtime : 20021.440741\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 258.128447\\n .avg_vruntime : 258.128447\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451811.130594\\n .se->vruntime : 104070.454171\\n .se->sum_exec_runtime : 261.906010\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 14573.378601\\n .avg_vruntime : 14573.378601\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451814.682714\\n .se->vruntime : 104074.257737\\n .se->sum_exec_runtime : 4719.041506\\n .se->load.weight : 140080\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[4]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 104074.331930\\n .avg_vruntime : 104074.331930\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 4\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[4]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[4]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S systemd 1 258.128447 E 261.115604 3.000000 3871.223344 4311 120 0.000000 3871.223344 0.000000 0.000000 0 0 /init.scope\\n S cpuhp/4 39 8611.189859 E 8614.138975 3.000000 0.358588 26 120 0.000000 0.358588 0.000000 0.000000 0 0 /\\n S idle_inject/4 40 -1.048576 E 1.201424 2.250000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S migration/4 41 1.176891 E 3.426891 2.250000 169.474372 174 0 0.000000 169.474372 0.000000 0.000000 0 0 /\\n S ksoftirqd/4 42 104061.542517 E 104064.523435 3.000000 19.502296 852 120 0.000000 19.502296 0.000000 0.000000 0 0 /\\n I kworker/4:0 43 102701.494851 E 102704.466699 3.000000 21.757246 350 120 0.000000 21.757246 0.000000 0.000000 0 0 /\\n I kworker/4:0H 44 132.163682 E 132.198197 3.000000 0.019668 4 100 0.000000 0.019668 0.000000 0.000000 0 0 /\\n I kworker/4:1 81 104063.818020 E 104066.807548 3.000000 178.254864 1766 120 0.000000 178.254864 0.000000 0.000000 0 0 /\\n Ikworker/R-ata_s 83 5.270300 E 5.304909 3.000000 0.000746 2 100 0.000000 0.000746 0.000000 0.000000 0 0 /\\n Ikworker/R-md_bi 85 5.270300 E 5.304909 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-devfr 87 5.273628 E 5.308237 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/128-pciehp 95 0.339759 E 2.659354 3.000000 0.006738 3 49 0.000000 0.006738 0.000000 0.000000 0 0 /\\n S hwrng 101 97736.190712 E 97738.754225 3.000000 30.641603 121 120 0.000000 30.641603 0.000000 0.000000 0 0 /\\n I kworker/4:1H 194 102700.521913 E 102700.555800 3.000000 9.218300 878 100 0.000000 9.218300 0.000000 0.000000 0 0 /\\n I kworker/4:2 468 57914.251469 E 57917.233388 3.000000 0.155689 16 120 0.000000 0.155689 0.000000 0.000000 0 0 /\\n Ikworker/R-cfg80 514 3339.240577 E 3339.275140 3.000000 0.012808 2 100 0.000000 0.012808 0.000000 0.000000 0 0 /\\n Sirq/197-iwlwifi 540 3926.376252 E 3929.374115 3.000000 16.674183 58 49 0.000000 16.674183 0.000000 0.000000 0 0 /\\n Sirq/201-iwlwifi 544 3926.622118 E 3929.620867 3.000000 0.136252 5 49 0.000000 0.136252 0.000000 0.000000 0 0 /\\n S pool-spawner 929 0.427240 E 3.421670 3.000000 0.182155 7 120 0.000000 0.182155 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 918 4.224344 E 6.070337 3.000000 17.705503 95 120 0.000000 17.705503 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 1042 1.501824 E 4.479627 3.000000 0.055072 2 120 0.000000 0.055072 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 925 123.595855 E 126.586312 3.000000 184.517409 557 120 0.000000 184.517409 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 838 328.342136 E 331.287501 3.000000 403.460051 5461 120 0.000000 403.460051 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gdbus 906 1.526547 E 4.378731 3.000000 65.221470 288 120 0.000000 65.221470 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gmain 935 756.210411 E 758.900880 3.000000 21.776671 114 120 0.000000 21.776671 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S gmain 1094 3.946236 E 6.930995 3.000000 0.050521 2 120 0.000000 0.050521 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S boltd 1085 23.231669 E 26.094332 3.000000 206.351912 1115 120 0.000000 206.351912 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gmain 1093 3.276503 E 6.269558 3.000000 0.066470 2 120 0.000000 0.066470 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S module-rt 1532 0.548481 E 3.506291 3.000000 0.195304 7 120 0.000000 0.195304 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1547 0.212741 E 3.208152 3.000000 0.019168 3 79 0.000000 0.019168 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1519 -1.009572 E 1.951424 3.000000 0.039004 1 120 0.000000 0.039004 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1535 10.910098 E 14.575757 3.000000 65.949337 133 121 0.000000 65.949337 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S dbus-daemon 1537 1114.605227 E 1117.595731 3.000000 131.416643 757 120 0.000000 131.416643 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1563 0.636104 E 3.602310 3.000000 0.327847 4 120 0.000000 0.327847 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1598 1113.829287 E 1116.791374 3.000000 0.482496 13 120 0.000000 0.482496 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1606 1115.915747 E 1117.868785 3.000000 9.669068 82 120 0.000000 9.669068 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1682 -1.007916 E 1.951424 3.000000 0.040660 1 120 0.000000 0.040660 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1700 295.680439 E 298.486174 3.000000 10.233894 150 120 0.000000 10.233894 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2443 284.936640 E 287.916427 3.000000 35.663598 1701 120 0.000000 35.663598 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2718 357.395595 E 360.359869 3.000000 48.984999 2651 120 0.000000 48.984999 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2402 44.216112 E 47.201754 3.000000 0.083347 6 120 0.000000 0.083347 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2404 311.380991 E 314.358454 3.000000 31.629601 77 120 0.000000 31.629601 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2420 44.291955 E 47.265037 3.000000 1.429798 32 120 0.000000 1.429798 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 3027 494.594461 E 497.580076 3.000000 1.096695 37 120 0.000000 1.096695 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dbus-daemon 3028 871.982914 E 874.971379 3.000000 8.820633 75 120 0.000000 8.820633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3040 23.893471 E 26.854493 3.000000 0.075685 2 120 0.000000 0.075685 0.000000 0.000000 0 0 /system.slice/colord.service\\n S pool-spawner 3070 84.801335 E 87.763845 3.000000 0.076250 2 120 0.000000 0.076250 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3071 84.763845 E 87.725839 3.000000 0.038006 1 120 0.000000 0.038006 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3086 585.187130 E 587.886236 3.000000 0.803427 9 120 0.000000 0.803427 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3113 121.997580 E 124.912918 3.000000 1.251295 53 120 0.000000 1.251295 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3120 104.510615 E 107.420360 3.000000 0.090255 1 120 0.000000 0.090255 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3132 104.942110 E 107.902899 3.000000 0.039211 1 120 0.000000 0.039211 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3147 432.291787 E 435.215403 3.000000 15.128436 45 120 0.000000 15.128436 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3199 432.208898 E 435.123843 3.000000 4.825108 55 120 0.000000 4.825108 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-power 3172 934.048735 E 936.983961 3.000000 531.922828 648 120 0.000000 531.922828 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gjs 3333 961.492427 E 962.754198 3.000000 64.931215 51 120 0.000000 64.931215 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3388 494.502646 E 497.479395 3.000000 0.383639 13 120 0.000000 0.383639 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x1:disk$0 3384 493.429311 E 698.009560 3.000000 0.064318 1 139 0.000000 0.064318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3391 494.823326 E 497.820442 3.000000 0.047210 2 120 0.000000 0.047210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 3453 0.638992 E 1.951424 3.000000 0.409584 1 120 0.000000 0.409584 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S module-rt 3508 16.982589 E 19.952500 3.000000 0.177132 8 120 0.000000 0.177132 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3512 16.731938 E 19.727789 3.000000 0.017591 3 120 0.000000 0.017591 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3519 17.278259 E 20.249377 3.000000 0.054962 2 120 0.000000 0.054962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S dbus-daemon 3501 17.501364 E 20.425841 3.000000 9.308695 60 120 0.000000 9.308695 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3547 17.425841 E 20.278259 3.000000 0.147582 1 120 0.000000 0.147582 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3596 0.171413 E 2.703804 3.000000 0.124783 1 120 0.000000 0.124783 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gdbus 4750 0.089371 E 2.823358 3.000000 0.503147 15 120 0.000000 0.503147 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S timer 4751 0.479745 E 2.495817 3.000000 0.024438 1 120 0.000000 0.024438 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/4:3 4828 57914.289385 E 57917.286600 3.000000 0.108756 5 120 0.000000 0.108756 0.000000 0.000000 0 0 /\\n S docker 5109 152.126586 E 155.068735 3.000000 0.361652 5 120 0.000000 0.361652 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5122 196.344791 E 199.329849 3.000000 63.034858 39 120 0.000000 63.034858 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5123 204.759538 E 207.521469 3.000000 15.347038 760 120 0.000000 15.347038 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5215 339.661927 E 342.648638 3.000000 0.213475 22 120 0.000000 0.213475 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5237 311.424438 E 314.380991 3.000000 1.377042 23 120 0.000000 1.377042 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5242 260.021354 E 262.990538 3.000000 1.439470 33 120 0.000000 1.439470 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5267 249.428702 E 252.410406 3.000000 0.050853 2 120 0.000000 0.050853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sjemalloc_bg_thd 5375 0.560167 E 2.423287 3.000000 0.016546 1 120 0.000000 0.016546 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5403 337.651376 E 338.283586 3.000000 2.798231 4 120 0.000000 2.798231 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5406 339.715217 E 342.703512 3.000000 0.169404 19 120 0.000000 0.169404 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5407 291.517519 E 294.508545 3.000000 0.110756 6 120 0.000000 0.110756 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5420 311.664247 E 314.656939 3.000000 2.972174 336 120 0.000000 2.972174 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5428 264.775703 E 267.763855 3.000000 0.397285 12 120 0.000000 0.397285 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5453 312.557531 E 315.508052 3.000000 3.591328 50 120 0.000000 3.591328 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5479 5.910874 E 8.239062 3.000000 24.294118 29 120 0.000000 24.294118 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 6352 3217.175095 E 3220.135461 3.000000 0.148844 2 120 0.000000 0.148844 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6356 3217.180599 E 3220.172006 3.000000 0.055941 3 120 0.000000 0.055941 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5693 2182.334914 E 2185.327152 3.000000 38.955454 14 120 0.000000 38.955454 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5670 2131.268004 E 2134.260351 3.000000 36.996673 11 120 0.000000 36.996673 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5671 2135.196688 E 2138.196688 3.000000 40.909890 14 120 0.000000 40.909890 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5640 1921.565079 E 1924.559625 3.000000 28.984572 12 120 0.000000 28.984572 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5644 1921.963150 E 1922.987767 3.000000 52.350338 20 120 0.000000 52.350338 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5696 2197.393849 E 2200.390282 3.000000 31.127998 15 120 0.000000 31.127998 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5699 2197.192376 E 2200.184357 3.000000 30.902525 11 120 0.000000 30.902525 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5632 1326.785621 E 1326.892101 3.000000 100.083757 4 120 0.000000 100.083757 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5576 3296.910737 E 3299.779386 3.000000 2869.557916 992 120 0.000000 2869.557916 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5658 1985.657062 E 1988.647654 3.000000 37.909073 12 120 0.000000 37.909073 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5660 1989.692299 E 1989.732082 3.000000 55.543120 15 120 0.000000 55.543120 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5719 2242.781412 E 2242.811558 3.000000 49.489219 18 120 0.000000 49.489219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6341 3216.000387 E 3218.984690 3.000000 0.065197 3 120 0.000000 0.065197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5623 162.656586 E 165.640957 3.000000 27.500143 268 120 0.000000 27.500143 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 5624 158.931702 E 161.693983 3.000000 2.537515 12 120 0.000000 2.537515 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6455 1686.533387 E 1687.011674 3.000000 110.049747 9 120 0.000000 110.049747 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Sjemalloc_bg_thd 6462 1686.660490 E 1689.533387 3.000000 0.127103 1 120 0.000000 0.127103 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Ssystemd-hostnam 6504 5.448524 E 6.564596 3.000000 53.460982 36 120 0.000000 53.460982 0.000000 0.000000 0 0 /system.slice/systemd-hostnamed.service\\n\\ncpu#5, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 124653\\n .nr_uninterruptible : -16\\n .next_balance : 4295.118975\\n .curr->pid : 0\\n .clock : 451858.274229\\n .clock_task : 451858.274229\\n .avg_idle : 817895\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[5]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3062.027691\\n .avg_vruntime : 3062.027691\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 722\\n .runnable_avg : 363\\n .util_avg : 363\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 722\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.669468\\n .se->vruntime : 9045.579502\\n .se->sum_exec_runtime : 3065.259159\\n .se->load.weight : 455554\\n .se->avg.load_avg : 313\\n .se->avg.util_avg : 363\\n .se->avg.runnable_avg : 363\\n\\ncfs_rq[5]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9045.579502\\n .avg_vruntime : 9045.579502\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 313\\n .runnable_avg : 363\\n .util_avg : 363\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 313\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.669468\\n .se->vruntime : 16433.236854\\n .se->sum_exec_runtime : 3345.155069\\n .se->load.weight : 502772\\n .se->avg.load_avg : 345\\n .se->avg.util_avg : 363\\n .se->avg.runnable_avg : 363\\n\\ncfs_rq[5]:/system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 20.648616\\n .avg_vruntime : 20.648616\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451584.093134\\n .se->vruntime : 27.169542\\n .se->sum_exec_runtime : 21.697192\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 230.221276\\n .avg_vruntime : 230.221276\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451558.414210\\n .se->vruntime : 66654.673856\\n .se->sum_exec_runtime : 234.430229\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3191.683955\\n .avg_vruntime : 3191.683955\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451799.556383\\n .se->vruntime : 66655.611831\\n .se->sum_exec_runtime : 3769.633266\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 27.169542\\n .avg_vruntime : 27.169542\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451584.093134\\n .se->vruntime : 66654.802129\\n .se->sum_exec_runtime : 27.585293\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 426.566085\\n .avg_vruntime : 426.566085\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451834.293065\\n .se->vruntime : 66655.622323\\n .se->sum_exec_runtime : 447.585919\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 56.964601\\n .avg_vruntime : 56.964601\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 3\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 3\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.065132\\n .se->vruntime : 66655.925805\\n .se->sum_exec_runtime : 72.532814\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 2\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[5]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 66655.925805\\n .avg_vruntime : 66655.925805\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 3\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 3\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.065132\\n .se->vruntime : 96368.920211\\n .se->sum_exec_runtime : 16649.294351\\n .se->load.weight : 838860\\n .se->avg.load_avg : 2\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[5]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 16433.236854\\n .avg_vruntime : 16433.236854\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 345\\n .runnable_avg : 363\\n .util_avg : 363\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 345\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.669468\\n .se->vruntime : 96369.999696\\n .se->sum_exec_runtime : 5513.289502\\n .se->load.weight : 513802\\n .se->avg.load_avg : 353\\n .se->avg.util_avg : 363\\n .se->avg.runnable_avg : 363\\n\\ncfs_rq[5]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 96369.999696\\n .avg_vruntime : 96369.999696\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 356\\n .runnable_avg : 366\\n .util_avg : 366\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[5]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[5]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/5 45 6999.749005 E 7002.677723 3.000000 0.271587 26 120 0.000000 0.271587 0.000000 0.000000 0 0 /\\n S idle_inject/5 46 -1.043636 E 1.204967 2.250000 0.004272 3 49 0.000000 0.004272 0.000000 0.000000 0 0 /\\n S migration/5 47 3.168235 E 5.417506 2.250000 170.663342 176 0 0.000000 170.663342 0.000000 0.000000 0 0 /\\n S ksoftirqd/5 48 96126.031305 E 96129.023476 3.000000 32.223848 1363 120 0.000000 32.223848 0.000000 0.000000 0 0 /\\n I kworker/5:0 49 96365.420034 E 96368.336649 3.000000 235.793054 3050 120 0.000000 235.793054 0.000000 0.000000 0 0 /\\n I kworker/5:0H 50 785.846494 E 785.880922 3.000000 0.029057 4 100 0.000000 0.029057 0.000000 0.000000 0 0 /\\n I kworker/5:1H 90 94633.409704 E 94633.444268 3.000000 7.763388 391 100 0.000000 7.763388 0.000000 0.000000 0 0 /\\n S irq/129-pciehp 96 0.336759 E 2.662268 3.000000 0.006014 3 49 0.000000 0.006014 0.000000 0.000000 0 0 /\\n Ikworker/R-acpi_ 100 803.615043 E 803.649645 3.000000 0.003136 2 100 0.000000 0.003136 0.000000 0.000000 0 0 /\\n I kworker/5:2 102 58304.487734 E 58307.474531 3.000000 6.779451 136 120 0.000000 6.779451 0.000000 0.000000 0 0 /\\n I kworker/R-mld 103 822.822143 E 822.856734 3.000000 0.020268 2 100 0.000000 0.020268 0.000000 0.000000 0 0 /\\n Ikworker/R-ipv6_ 105 822.824530 E 822.859136 3.000000 0.002654 2 100 0.000000 0.002654 0.000000 0.000000 0 0 /\\n Ikworker/R-kstrp 112 825.212532 E 825.247134 3.000000 0.002925 2 100 0.000000 0.002925 0.000000 0.000000 0 0 /\\n I kworker/5:3 129 95003.117617 E 95005.870542 3.000000 115.365216 919 120 0.000000 115.365216 0.000000 0.000000 0 0 /\\n Sirq/173-FRMW000 225 1210.147450 E 1213.127987 3.000000 0.350809 4 49 0.000000 0.350809 0.000000 0.000000 0 0 /\\n Sirq/174-PIXA385 227 1218.791465 E 1221.760797 3.000000 0.479717 4 49 0.000000 0.479717 0.000000 0.000000 0 0 /\\n Ssystemd-journal 315 56.964601 E 59.297212 3.000000 683.516839 1800 119 0.000000 683.516839 0.000000 0.000000 0 0 /system.slice/systemd-journald.service\\n S psimon 395 1769.940955 E 1772.934339 3.000000 0.031393 2 98 0.000000 0.031393 0.000000 0.000000 0 0 /\\n Sirq/198-iwlwifi 541 3741.717084 E 3744.716044 3.000000 9.022500 40 49 0.000000 9.022500 0.000000 0.000000 0 0 /\\n S avahi-daemon 793 131.015505 E 133.936233 3.000000 570.888680 1950 120 0.000000 570.888680 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S pool-spawner 917 0.598568 E 2.374275 3.000000 0.139307 3 120 0.000000 0.139307 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S snapd 2921 150.000733 E 153.000733 3.000000 139.295594 243 120 0.000000 139.295594 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gmain 953 0.274092 E 3.243919 3.000000 0.030173 1 120 0.000000 0.030173 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 855 215.924722 E 218.764853 3.000000 2.720858 28 120 0.000000 2.720858 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 858 3.421352 E 6.394871 3.000000 1.493133 34 120 0.000000 1.493133 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 844 301.159683 E 304.118640 3.000000 35.366466 385 120 0.000000 35.366466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S pool-spawner 877 0.968110 E 1.951424 3.000000 0.080466 1 120 0.000000 0.080466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S thermald 1119 308.989420 E 310.862161 3.000000 489.724637 251 120 0.000000 489.724637 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gmain 875 22.929713 E 25.735833 3.000000 18.457360 120 120 0.000000 18.457360 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S wpa_supplicant 901 2.063010 E 4.827437 3.000000 315.102041 452 120 0.000000 315.102041 0.000000 0.000000 0 0 /system.slice/wpa_supplicant.service\\n S in:imklog 955 22.487259 E 25.436705 3.000000 12.080483 127 120 0.000000 12.080483 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S pool-spawner 1096 5.835716 E 8.797854 3.000000 0.070490 2 120 0.000000 0.070490 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1108 18.018686 E 20.360362 3.000000 21.904680 121 120 0.000000 21.904680 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1113 1.961790 E 4.958126 3.000000 10.058361 153 120 0.000000 10.058361 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1114 3.685699 E 6.560944 3.000000 1.924538 74 120 0.000000 1.924538 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1115 1.948170 E 4.912969 3.000000 0.190242 20 120 0.000000 0.190242 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1447 2.681121 E 5.678513 3.000000 22.987360 343 120 0.000000 22.987360 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1459 421.147970 E 424.065184 3.000000 122.892796 4894 120 0.000000 122.892796 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1460 420.888971 E 423.886628 3.000000 222.699778 5376 120 0.000000 222.699778 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 1485 3.989182 E 6.948338 3.000000 16.521431 131 120 0.000000 16.521431 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gmain 1494 2.779321 E 5.771975 3.000000 0.065744 3 120 0.000000 0.065744 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire-pulse 1516 26.233418 E 26.485480 3.000000 19.482467 71 109 0.000000 19.482467 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S rtkit-daemon 1549 3.597258 E 6.558141 3.000000 5.091514 77 120 0.000000 5.091514 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n Sxdg-permission- 1557 26.114410 E 28.921546 3.000000 4.480217 9 120 0.000000 4.480217 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1601 1471.505255 E 1474.443542 3.000000 604.810592 2038 120 0.000000 604.810592 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1603 1471.702983 E 1474.659724 3.000000 8.721644 91 120 0.000000 8.721644 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1657 171.907138 E 174.896341 3.000000 206.971759 2083 120 0.000000 206.971759 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1669 344.620239 E 347.584650 3.000000 69.767271 2073 120 0.000000 69.767271 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2394 356.668054 E 359.629743 3.000000 47.946204 1790 120 0.000000 47.946204 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2524 426.566085 E 429.555593 3.000000 138.397182 4607 120 0.000000 138.397182 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-init 2511 20.648616 E 23.520343 3.000000 48.149640 495 120 0.000000 48.149640 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2817 0.969895 E 2.006035 3.000000 0.078681 2 120 0.000000 0.078681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S pool-spawner 3023 33.403610 E 36.375096 3.000000 0.062687 2 120 0.000000 0.062687 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3036 49.145973 E 52.105602 3.000000 0.040371 1 120 0.000000 0.040371 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 3069 409.720330 E 411.795486 3.000000 3.645960 9 120 0.000000 3.645960 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3087 923.987178 E 926.920563 3.000000 0.691954 9 120 0.000000 0.691954 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3102 260.315442 E 263.308450 3.000000 0.043178 2 120 0.000000 0.043178 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3125 271.161595 E 274.095199 3.000000 0.721540 8 120 0.000000 0.721540 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3134 695.253497 E 698.160802 3.000000 18.015111 51 120 0.000000 18.015111 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3142 271.415232 E 274.408854 3.000000 0.052239 2 120 0.000000 0.052239 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3144 283.234823 E 286.195976 3.000000 0.156948 5 120 0.000000 0.156948 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3148 1471.147506 E 1474.050348 3.000000 26.013297 210 120 0.000000 26.013297 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3160 274.593574 E 277.561112 3.000000 0.032462 1 120 0.000000 0.032462 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3205 694.073828 E 697.059396 3.000000 0.539966 11 120 0.000000 0.539966 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3190 291.047172 E 294.041558 3.000000 0.069455 3 120 0.000000 0.069455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3191 291.082083 E 294.047172 3.000000 0.064373 2 120 0.000000 0.064373 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3171 277.903854 E 280.871361 3.000000 0.032493 1 120 0.000000 0.032493 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3208 289.768671 E 292.723596 3.000000 0.045075 1 120 0.000000 0.045075 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3341 1268.500237 E 1271.417686 3.000000 1.040132 11 120 0.000000 1.040132 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3347 710.823685 E 713.793865 3.000000 0.043738 2 120 0.000000 0.043738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3348 710.793865 E 713.767416 3.000000 0.026449 1 120 0.000000 0.026449 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-daemon 3346 949.332769 E 952.288245 3.000000 42.959636 73 120 0.000000 42.959636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11 3362 923.587585 E 926.310829 3.000000 45.522706 130 120 0.000000 45.522706 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3371 726.850047 E 729.799574 3.000000 0.076524 2 120 0.000000 0.076524 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sibus-engine-sim 3378 728.885393 E 731.863437 3.000000 4.625539 14 120 0.000000 4.625539 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S systemd 3449 121.478344 E 124.227856 3.000000 714.259578 463 120 0.000000 714.259578 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S pw-data-loop 3513 1.729229 E 4.725188 3.000000 0.034825 5 120 0.000000 0.034825 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S wireplumber 3472 11.462644 E 13.755284 3.000000 40.504423 63 120 0.000000 40.504423 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3555 8.358478 E 11.299358 3.000000 0.319715 3 120 0.000000 0.319715 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3550 7.088145 E 10.059456 3.000000 0.088092 2 120 0.000000 0.088092 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3553 7.326957 E 10.315957 3.000000 0.238812 7 120 0.000000 0.238812 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fusermount3 3556 8.289925 E 10.425022 3.000000 0.864903 1 120 0.000000 0.864903 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Ssnapd-desktop-i 3594 12.810910 E 15.645251 3.000000 16.524009 26 120 0.000000 16.524009 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gmain 3597 12.645251 E 15.600431 3.000000 0.044820 1 120 0.000000 0.044820 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S docker 5103 77.367826 E 80.361952 3.000000 2.654622 20 120 0.000000 2.654622 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5104 76.789473 E 79.661122 3.000000 0.935648 8 120 0.000000 0.935648 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5105 76.471056 E 79.122576 3.000000 0.348480 1 120 0.000000 0.348480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5131 80.563750 E 83.192223 3.000000 1.136131 12 120 0.000000 1.136131 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5212 345.929760 E 348.904077 3.000000 0.025683 1 120 0.000000 0.025683 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5221 346.057686 E 349.014905 3.000000 0.042781 1 120 0.000000 0.042781 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5236 404.314929 E 407.283158 3.000000 1.122644 202 120 0.000000 1.122644 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5239 318.088842 E 321.070226 3.000000 0.081546 6 120 0.000000 0.081546 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5241 404.283158 E 406.645077 3.000000 2.547649 30 120 0.000000 2.547649 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5270 404.363962 E 407.314929 3.000000 1.214814 21 120 0.000000 1.214814 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5396 393.299699 E 396.076725 3.000000 0.339736 7 120 0.000000 0.339736 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 6329 402.895358 E 405.788258 3.000000 6.427080 17 120 0.000000 6.427080 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5405 356.859342 E 359.855343 3.000000 1.795184 14 120 0.000000 1.795184 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5409 356.858058 E 359.853277 3.000000 0.086967 4 120 0.000000 0.086967 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5410 356.739028 E 359.714574 3.000000 0.024454 1 120 0.000000 0.024454 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5419 323.414770 E 326.408620 3.000000 2.963462 8 120 0.000000 2.963462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5421 323.427369 E 326.411167 3.000000 0.463860 15 120 0.000000 0.463860 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5429 405.171022 E 407.431017 3.000000 3.618715 36 120 0.000000 3.618715 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5454 327.251540 E 330.239598 3.000000 0.078194 9 120 0.000000 0.078194 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5460 405.217540 E 408.212133 3.000000 2.894226 64 120 0.000000 2.894226 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5571 3191.683955 E 3194.536642 3.000000 3389.166854 1593 120 0.000000 3389.166854 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5614 1204.439296 E 1207.439296 3.000000 25.601066 7 120 0.000000 25.601066 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5617 1206.891768 E 1209.822325 3.000000 28.034014 9 120 0.000000 28.034014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5619 1208.780352 E 1210.861964 3.000000 29.914255 9 120 0.000000 29.914255 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6346 3174.366197 E 3177.354263 3.000000 0.074281 3 120 0.000000 0.074281 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5608 1185.932477 E 1188.922565 3.000000 37.946501 14 120 0.000000 37.946501 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5672 1995.255322 E 1995.274003 3.000000 73.850813 20 120 0.000000 73.850813 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5641 1768.202285 E 1771.193258 3.000000 54.929183 14 120 0.000000 54.929183 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5695 2071.651562 E 2071.688139 3.000000 32.936801 11 120 0.000000 32.936801 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5637 1539.174198 E 1540.010364 3.000000 38.326835 12 120 0.000000 38.326835 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5638 1538.793722 E 1540.152260 3.000000 37.736919 12 120 0.000000 37.736919 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5709 2084.464804 E 2087.450225 3.000000 29.991031 9 120 0.000000 29.991031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5654 2046.336174 E 2049.326048 3.000000 38.012486 12 120 0.000000 38.012486 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5657 1803.954929 E 1805.989704 3.000000 38.959841 12 120 0.000000 38.959841 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5659 1807.015254 E 1809.026693 3.000000 42.007189 11 120 0.000000 42.007189 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5714 2109.823685 E 2109.851682 3.000000 36.490008 12 120 0.000000 36.490008 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6340 3174.527383 E 3177.507711 3.000000 0.096351 3 120 0.000000 0.096351 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6336 3174.358195 E 3177.331577 3.000000 0.116229 3 120 0.000000 0.116229 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6345 3187.769027 E 3190.605767 3.000000 11.445595 34 120 0.000000 11.445595 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5625 10.233587 E 12.608430 3.000000 0.625157 1 120 0.000000 0.625157 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6355 20.039761 E 21.082544 3.000000 4.876816 7 120 0.000000 4.876816 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6361 28.804050 E 31.622006 3.000000 6.682534 15 120 0.000000 6.682534 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6456 3019.495445 E 3021.902284 3.000000 111.074206 2 120 0.000000 111.074206 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 6603 3062.027691 E 3065.019793 3.000000 0.275811 2 120 0.000000 0.275811 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#6, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 126142\\n .nr_uninterruptible : 107\\n .next_balance : 4295.118970\\n .curr->pid : 0\\n .clock : 451860.217796\\n .clock_task : 451860.217796\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[6]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3315.478582\\n .avg_vruntime : 3315.478582\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451852.639321\\n .se->vruntime : 70750.926365\\n .se->sum_exec_runtime : 3870.337328\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 45.214278\\n .avg_vruntime : 45.214278\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451695.635883\\n .se->vruntime : 70748.970149\\n .se->sum_exec_runtime : 46.368603\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 366.910362\\n .avg_vruntime : 366.910362\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451511.585632\\n .se->vruntime : 70745.463159\\n .se->sum_exec_runtime : 387.468081\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 685.593816\\n .avg_vruntime : 685.593816\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451860.217796\\n .se->vruntime : 70750.938753\\n .se->sum_exec_runtime : 688.259247\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 60.911594\\n .avg_vruntime : 60.911594\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451848.710912\\n .se->vruntime : 70750.782601\\n .se->sum_exec_runtime : 62.453933\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 70750.938753\\n .avg_vruntime : 70750.938753\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451860.217796\\n .se->vruntime : 95679.983302\\n .se->sum_exec_runtime : 16659.368579\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[6]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 95679.983302\\n .avg_vruntime : 95679.983302\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[6]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[6]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/6 51 8615.222785 E 8618.158454 3.000000 0.252486 26 120 0.000000 0.252486 0.000000 0.000000 0 0 /\\n S idle_inject/6 52 -1.048596 E 1.201404 2.250000 0.001435 3 49 0.000000 0.001435 0.000000 0.000000 0 0 /\\n S migration/6 53 3.285100 E 5.534388 2.250000 171.011231 179 0 0.000000 171.011231 0.000000 0.000000 0 0 /\\n S ksoftirqd/6 54 95668.710827 E 95671.704382 3.000000 21.629343 725 120 0.000000 21.629343 0.000000 0.000000 0 0 /\\n I kworker/6:0H 56 94249.342704 E 94249.377227 3.000000 4.432205 319 100 0.000000 4.432205 0.000000 0.000000 0 0 /\\n S irq/130-pciehp 97 0.333820 E 2.665268 3.000000 0.005759 3 49 0.000000 0.005759 0.000000 0.000000 0 0 /\\n I kworker/6:1 98 92929.297618 E 92932.280639 3.000000 14.071602 230 120 0.000000 14.071602 0.000000 0.000000 0 0 /\\n I kworker/6:1H 104 0.901750 E 0.936338 3.000000 0.024295 2 100 0.000000 0.024295 0.000000 0.000000 0 0 /\\n Ikworker/R-ext4- 265 715.149068 E 715.183650 3.000000 0.016782 2 100 0.000000 0.016782 0.000000 0.000000 0 0 /\\n Sirq/199-iwlwifi 542 3741.720024 E 3744.718960 3.000000 1.978287 27 49 0.000000 1.978287 0.000000 0.000000 0 0 /\\n I kworker/6:3 640 95679.568814 E 95682.551016 3.000000 122.077421 1883 120 0.000000 122.077421 0.000000 0.000000 0 0 /\\n Siio-sensor-prox 804 51.794222 E 54.650306 3.000000 342.582748 667 120 0.000000 342.582748 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S pool-spawner 931 3.995045 E 6.943176 3.000000 0.051869 1 120 0.000000 0.051869 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S gdbus 1047 143.517578 E 146.384318 3.000000 197.166109 893 120 0.000000 197.166109 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 926 367.066499 E 370.054060 3.000000 115.551238 461 120 0.000000 115.551238 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1045 246.848037 E 249.653279 3.000000 94.409312 356 120 0.000000 94.409312 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1046 367.049949 E 369.958080 3.000000 211.164930 790 120 0.000000 211.164930 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2920 367.196230 E 370.039140 3.000000 68.330233 205 120 0.000000 68.330233 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2922 361.812146 E 364.803584 3.000000 106.436659 92 120 0.000000 106.436659 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 3003 365.186450 E 367.965805 3.000000 105.540123 120 120 0.000000 105.540123 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 958 9.238449 E 12.208952 3.000000 0.475075 10 120 0.000000 0.475075 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 851 685.593816 E 688.581428 3.000000 1322.438400 18114 120 0.000000 1322.438400 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 949 3.796978 E 6.673936 3.000000 0.123042 1 120 0.000000 0.123042 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 1112 5.262021 E 8.244316 3.000000 0.017705 1 120 0.000000 0.017705 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S udisksd 845 29.210945 E 31.379140 3.000000 129.994760 374 120 0.000000 129.994760 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S probing-thread 1075 6.567609 E 9.544668 3.000000 0.022941 1 120 0.000000 0.022941 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 937 1.153308 E 4.086953 3.000000 0.098542 2 120 0.000000 0.098542 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S rs:main Q:Reg 956 60.911594 E 63.846365 3.000000 117.993205 2602 120 0.000000 117.993205 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S upowerd 1086 16.435362 E 18.726273 3.000000 139.602111 178 120 0.000000 139.602111 0.000000 0.000000 0 0 /system.slice/upower.service\\n S psimon 1430 9260.147662 E 9263.146878 3.000000 0.006730 2 98 0.000000 0.006730 0.000000 0.000000 0 0 /\\n S containerd 1457 366.910362 E 369.862716 3.000000 92.878329 12039 120 0.000000 92.878329 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1474 360.454976 E 362.653511 3.000000 101.682790 4188 120 0.000000 101.682790 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1530 2.618657 E 5.543553 3.000000 0.223127 6 120 0.000000 0.223127 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sdbus-run-sessio 1533 0.258773 E 2.587285 3.000000 1.487986 5 120 0.000000 1.487986 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1550 -1.032441 E 2.697765 3.000000 3.376933 61 0 0.000000 3.376933 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S gmain 1566 17.297077 E 20.277928 3.000000 0.097746 7 120 0.000000 0.097746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1570 17.355420 E 20.297077 3.000000 0.588370 21 120 0.000000 0.588370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1609 645.306871 E 647.788937 3.000000 9.618501 82 120 0.000000 9.618501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3029 275.589042 E 276.659165 3.000000 15.079471 7 120 0.000000 15.079471 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S krfcommd 1621 10074.755342 E 10075.075292 3.000000 0.065550 2 110 0.000000 0.065550 0.000000 0.000000 0 0 /\\n S dockerd 1667 360.733205 E 363.572264 3.000000 44.912651 1440 120 0.000000 44.912651 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1668 10.959996 E 13.909631 3.000000 0.136753 4 120 0.000000 0.136753 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1671 376.622448 E 379.612498 3.000000 35.314543 1107 120 0.000000 35.314543 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2691 432.733901 E 434.588218 3.000000 210.616890 5149 120 0.000000 210.616890 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1659 0.061295 E 3.028724 3.000000 1.514592 13 120 0.000000 1.514592 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S sshd 1702 74.518561 E 77.246586 3.000000 11.486317 11 120 0.000000 11.486317 0.000000 0.000000 0 0 /system.slice/ssh.service\\n Scontainerd-shim 2398 30.228595 E 33.220919 3.000000 3.863503 51 120 0.000000 3.863503 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2400 349.704701 E 352.666776 3.000000 5.757644 349 120 0.000000 5.757644 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2417 28.278836 E 31.246599 3.000000 0.032237 1 120 0.000000 0.032237 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2418 30.220839 E 33.148343 3.000000 0.624572 15 120 0.000000 0.624572 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2717 7.476168 E 10.461486 3.000000 28.234681 817 120 0.000000 28.234681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2724 8.330328 E 11.312981 3.000000 0.730104 41 120 0.000000 0.730104 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2729 0.009183 E 2.987065 3.000000 0.474507 16 120 0.000000 0.474507 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2763 28.885776 E 31.856462 3.000000 5.264668 92 120 0.000000 5.264668 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3037 69.004645 E 71.977650 3.000000 0.026995 1 120 0.000000 0.026995 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3083 288.025683 E 289.715393 3.000000 1.607031 8 120 0.000000 1.607031 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3088 286.715393 E 289.284690 3.000000 1.401843 9 120 0.000000 1.401843 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3124 87.455847 E 90.416578 3.000000 0.039269 1 120 0.000000 0.039269 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3131 302.640897 E 305.308430 3.000000 2.994609 50 120 0.000000 2.994609 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3158 93.881548 E 96.817284 3.000000 0.064264 1 120 0.000000 0.064264 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3182 109.126031 E 111.562635 3.000000 0.591888 2 120 0.000000 0.591888 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3184 108.724420 E 111.678855 3.000000 0.093578 2 120 0.000000 0.093578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3216 109.368449 E 112.350997 3.000000 0.217820 14 120 0.000000 0.217820 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3213 602.863968 E 605.510516 3.000000 272.558231 744 120 0.000000 272.558231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3293 586.573053 E 589.290637 3.000000 24.862703 32 120 0.000000 24.862703 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3337 606.691952 E 609.593211 3.000000 1.370128 13 120 0.000000 1.370128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3338 606.814834 E 609.691952 3.000000 1.139504 13 120 0.000000 1.139504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S module-rt 3510 4.969118 E 7.891565 3.000000 0.240480 6 120 0.000000 0.240480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3523 5.394138 E 8.306091 3.000000 0.426467 6 120 0.000000 0.426467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3546 5.427172 E 8.394138 3.000000 0.089890 2 120 0.000000 0.089890 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3548 5.547188 E 8.427172 3.000000 0.773129 24 120 0.000000 0.773129 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3712 1769.228912 E 1771.539168 3.000000 253.262402 496 120 0.000000 253.262402 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S gmain 4749 16.047752 E 18.987863 3.000000 0.059889 1 120 0.000000 0.059889 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/6:0 4983 93046.971518 E 93049.964560 3.000000 12.443337 250 120 0.000000 12.443337 0.000000 0.000000 0 0 /\\n S docker 5106 50.986184 E 53.966096 3.000000 2.021095 12 120 0.000000 2.021095 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5140 54.263056 E 57.253692 3.000000 4.202288 102 120 0.000000 4.202288 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5731 420.761734 E 423.757446 3.000000 0.414702 14 120 0.000000 0.414702 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5240 265.802650 E 268.788465 3.000000 0.020995 2 120 0.000000 0.020995 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5243 266.286329 E 269.275178 3.000000 0.261505 4 120 0.000000 0.261505 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5264 273.123925 E 276.097681 3.000000 1.821770 25 120 0.000000 1.821770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5266 267.028584 E 270.019464 3.000000 0.210716 13 120 0.000000 0.210716 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5339 350.511998 E 353.504211 3.000000 5.898392 135 120 0.000000 5.898392 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6330 415.398184 E 418.322540 3.000000 1.869973 5 120 0.000000 1.869973 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5422 351.534959 E 354.198323 3.000000 1.436353 20 120 0.000000 1.436353 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5450 279.103396 E 282.098400 3.000000 2.396339 8 120 0.000000 2.396339 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 5471 3309.767187 E 3312.637135 3.000000 21.372807 96 120 0.000000 21.372807 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5566 1.448927 E 4.109470 3.000000 0.339457 1 120 0.000000 0.339457 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5570 3315.478582 E 3318.347500 3.000000 3462.696334 2023 120 0.000000 3462.696334 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5604 954.763097 E 957.751202 3.000000 28.240943 116 120 0.000000 28.240943 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5663 1792.640288 E 1795.640288 3.000000 38.952545 12 120 0.000000 38.952545 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5668 1789.732642 E 1791.724291 3.000000 35.988177 10 120 0.000000 35.988177 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5606 969.507874 E 972.497742 3.000000 25.491566 11 120 0.000000 25.491566 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5609 971.056429 E 974.046014 3.000000 27.020193 26 120 0.000000 27.020193 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5610 971.458654 E 974.453476 3.000000 27.417031 12 120 0.000000 27.417031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5574 3315.347500 E 3318.235395 3.000000 3068.006666 1518 120 0.000000 3068.006666 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5707 1930.771185 E 1933.761817 3.000000 30.988047 9 120 0.000000 30.988047 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6332 3066.536604 E 3069.518774 3.000000 0.120233 3 120 0.000000 0.120233 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5628 1001.868572 E 1004.809337 3.000000 27.930046 12 120 0.000000 27.930046 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5629 1002.170072 E 1005.109190 3.000000 33.107018 10 120 0.000000 33.107018 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5679 1895.668218 E 1898.660660 3.000000 32.971433 10 120 0.000000 32.971433 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5683 1896.759957 E 1898.798855 3.000000 34.012241 10 120 0.000000 34.012241 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5720 1943.308345 E 1946.308345 3.000000 26.777888 7 120 0.000000 26.777888 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5723 1942.666364 E 1944.688960 3.000000 26.120826 8 120 0.000000 26.120826 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6338 3080.378005 E 3083.193564 3.000000 9.671179 24 120 0.000000 9.671179 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5621 45.214278 E 48.181573 3.000000 33.842127 329 120 0.000000 33.842127 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/6:2 6175 92929.306949 E 92932.303713 3.000000 0.028876 4 120 0.000000 0.028876 0.000000 0.000000 0 0 /\\n Z dbus-daemon 6293 644.368969 E 647.080696 3.000000 0.476516 2 120 0.000000 0.476516 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S postgres 6349 40.808053 E 43.686063 3.000000 11.516885 17 120 0.000000 11.516885 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6371 1775.784111 E 1778.722067 3.000000 6.850393 203 120 0.000000 6.850393 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 6457 1965.413699 E 1967.343072 3.000000 110.446962 10 120 0.000000 110.446962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 6372 44.102947 E 47.000996 3.000000 4.096345 19 120 0.000000 4.096345 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n\\ncpu#7, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 127335\\n .nr_uninterruptible : -59\\n .next_balance : 4295.118983\\n .curr->pid : 0\\n .clock : 451864.205919\\n .clock_task : 451864.205919\\n .avg_idle : 930162\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[7]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3286.116388\\n .avg_vruntime : 3286.116388\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 188\\n .runnable_avg : 188\\n .util_avg : 188\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 188\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.635024\\n .se->vruntime : 8986.100533\\n .se->sum_exec_runtime : 3290.679539\\n .se->load.weight : 142096\\n .se->avg.load_avg : 25\\n .se->avg.util_avg : 188\\n .se->avg.runnable_avg : 188\\n\\ncfs_rq[7]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 8986.100533\\n .avg_vruntime : 8986.100533\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 25\\n .runnable_avg : 188\\n .util_avg : 188\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 25\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.635024\\n .se->vruntime : 18304.345498\\n .se->sum_exec_runtime : 3407.169495\\n .se->load.weight : 50533\\n .se->avg.load_avg : 9\\n .se->avg.util_avg : 188\\n .se->avg.runnable_avg : 188\\n\\ncfs_rq[7]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3392.684352\\n .avg_vruntime : 3392.684352\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451863.753672\\n .se->vruntime : 65358.589392\\n .se->sum_exec_runtime : 4033.633822\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 416.565099\\n .avg_vruntime : 416.565099\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451850.289119\\n .se->vruntime : 65358.487595\\n .se->sum_exec_runtime : 417.961531\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 24.296149\\n .avg_vruntime : 24.296149\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.052511\\n .se->vruntime : 65358.477394\\n .se->sum_exec_runtime : 25.812353\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 65358.589392\\n .avg_vruntime : 65358.589392\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451863.753672\\n .se->vruntime : 103708.621060\\n .se->sum_exec_runtime : 15370.875560\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 18304.345498\\n .avg_vruntime : 18304.345498\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 9\\n .runnable_avg : 188\\n .util_avg : 188\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 9\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.635024\\n .se->vruntime : 103708.375681\\n .se->sum_exec_runtime : 7472.416134\\n .se->load.weight : 25536\\n .se->avg.load_avg : 4\\n .se->avg.util_avg : 188\\n .se->avg.runnable_avg : 188\\n\\ncfs_rq[7]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 103708.632014\\n .avg_vruntime : 103708.632014\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 19\\n .runnable_avg : 204\\n .util_avg : 189\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[7]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[7]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S kthreadd 2 100764.923125 E 100767.859098 3.000000 6.873833 205 120 0.000000 6.873833 0.000000 0.000000 0 0 /\\n I rcu_preempt 17 103708.632014 E 103711.621060 3.000000 504.922871 14305 120 0.000000 504.922871 0.000000 0.000000 0 0 /\\n S cpuhp/7 57 8699.309454 E 8702.275668 3.000000 0.282413 26 120 0.000000 0.282413 0.000000 0.000000 0 0 /\\n S idle_inject/7 58 -1.048578 E 1.201422 2.250000 0.001352 3 49 0.000000 0.001352 0.000000 0.000000 0 0 /\\n S migration/7 59 3.384442 E 5.633801 2.250000 170.842675 172 0 0.000000 170.842675 0.000000 0.000000 0 0 /\\n S ksoftirqd/7 60 103541.217876 E 103544.208970 3.000000 17.225422 444 120 0.000000 17.225422 0.000000 0.000000 0 0 /\\n I kworker/7:0H 62 102195.825607 E 102195.859397 3.000000 9.047091 295 100 0.000000 9.047091 0.000000 0.000000 0 0 /\\n S kdevtmpfs 63 9325.916585 E 9328.878568 3.000000 8.686237 285 120 0.000000 8.686237 0.000000 0.000000 0 0 /\\n S khugepaged 74 102194.912850 E 102393.523043 3.000000 5.585585 121 139 0.000000 5.585585 0.000000 0.000000 0 0 /\\n S kswapd0 91 0.799409 E 2.181565 3.000000 0.034879 3 120 0.000000 0.034879 0.000000 0.000000 0 0 /\\n Secryptfs-kthrea 92 -1.016388 E 1.982554 3.000000 0.003235 2 120 0.000000 0.003235 0.000000 0.000000 0 0 /\\n I kworker/7:1 99 103708.448253 E 103711.430070 3.000000 253.521127 2115 120 0.000000 253.521127 0.000000 0.000000 0 0 /\\n I kworker/7:1H 186 54.192213 E 54.226778 3.000000 0.130453 2 100 0.000000 0.130453 0.000000 0.000000 0 0 /\\n I kworker/7:2 196 64826.238662 E 64829.224947 3.000000 133.597384 774 120 0.000000 133.597384 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 220 260.331222 E 260.365822 3.000000 0.004276 2 100 0.000000 0.004276 0.000000 0.000000 0 0 /\\n I kworker/u16:9 452 103686.741939 E 103689.637232 3.000000 207.351616 2697 120 0.000000 207.351616 0.000000 0.000000 0 0 /\\n Sirq/200-iwlwifi 543 3741.722959 E 3744.721790 3.000000 193.696050 1007 49 0.000000 193.696050 0.000000 0.000000 0 0 /\\n Ssystemd-timesyn 671 11.012820 E 13.179520 3.000000 65.811043 82 120 0.000000 65.811043 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n S gmain 932 5.984093 E 8.944402 3.000000 0.039691 1 120 0.000000 0.039691 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S polkitd 812 164.889061 E 167.835894 3.000000 676.727697 1209 120 0.000000 676.727697 0.000000 0.000000 0 0 /system.slice/polkit.service\\n Spower-profiles- 815 6.306037 E 8.958709 3.000000 42.592465 217 120 0.000000 42.592465 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S pool-spawner 952 0.552605 E 2.408198 3.000000 0.084044 2 120 0.000000 0.084044 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 950 416.565099 E 419.554898 3.000000 432.299487 5533 120 0.000000 432.299487 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gmain 874 8.807278 E 11.798542 3.000000 0.044986 2 120 0.000000 0.044986 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S NetworkManager 898 251.248832 E 253.648217 3.000000 966.663478 1604 120 0.000000 966.663478 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S in:imuxsock 954 24.296149 E 27.289538 3.000000 95.615988 2664 120 0.000000 95.615988 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S ModemManager 1073 39.373569 E 42.188584 3.000000 74.176347 367 120 0.000000 74.176347 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gdbus 1104 37.768442 E 39.540502 3.000000 25.778299 96 120 0.000000 25.778299 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1120 -1.040991 E 1.951424 3.000000 0.113711 2 120 0.000000 0.113711 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sleep 1149 39.073787 E 39.604681 3.000000 7.280071 3 120 0.000000 7.280071 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1476 369.883559 E 372.031781 3.000000 121.634855 4164 120 0.000000 121.634855 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1477 370.212557 E 373.207112 3.000000 134.076566 3124 120 0.000000 134.076566 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1493 0.604404 E 2.386227 3.000000 0.063206 3 120 0.000000 0.063206 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 1513 11.763534 E 14.743230 3.000000 12.527238 32 120 0.000000 12.527238 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1525 22.920219 E 25.873281 3.000000 11.380453 155 120 0.000000 11.380453 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sxdg-document-po 1548 22.929418 E 25.920219 3.000000 6.358220 29 120 0.000000 6.358220 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fuse mainloop 1567 19.595470 E 22.587394 3.000000 0.137316 5 120 0.000000 0.137316 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1558 18.304433 E 21.267038 3.000000 0.111080 2 120 0.000000 0.111080 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S cups-browsed 1656 72.928980 E 75.840648 3.000000 174.434844 735 120 0.000000 174.434844 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S gdbus 1683 44.255586 E 47.169345 3.000000 30.994633 262 120 0.000000 30.994633 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1665 387.715999 E 390.699088 3.000000 82.085644 1953 120 0.000000 82.085644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1673 0.023012 E 2.973127 3.000000 0.586838 20 120 0.000000 0.586838 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1703 404.236973 E 407.207709 3.000000 45.206785 1218 120 0.000000 45.206785 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2525 480.548251 E 482.509264 3.000000 80.950221 2628 120 0.000000 80.950221 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2528 454.870524 E 457.567165 3.000000 133.811331 3787 120 0.000000 133.811331 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1662 19.099682 E 22.073437 3.000000 0.997298 13 120 0.000000 0.997298 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n Scontainerd-shim 2419 359.175841 E 361.951284 3.000000 19.333163 83 120 0.000000 19.333163 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2818 12.785587 E 15.624806 3.000000 12.971388 33 120 0.000000 12.971388 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Sat-spi-bus-laun 3022 424.559544 E 427.521167 3.000000 3.389602 32 120 0.000000 3.389602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayla:traceq0 3268 365.997005 E 570.481954 3.000000 0.077355 4 139 0.000000 0.077355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3043 57.661466 E 60.641092 3.000000 4.306383 153 120 0.000000 4.306383 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gdbus 3073 207.807359 E 210.334322 3.000000 2.467237 14 120 0.000000 2.467237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3110 30.677526 E 33.625817 3.000000 0.075552 2 120 0.000000 0.075552 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3111 30.630162 E 33.591988 3.000000 0.038174 1 120 0.000000 0.038174 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3135 50.522322 E 53.477690 3.000000 0.080793 3 120 0.000000 0.080793 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3143 51.324937 E 54.279106 3.000000 0.083157 2 120 0.000000 0.083157 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3189 52.566712 E 55.538836 3.000000 0.112926 2 120 0.000000 0.112926 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3211 1467.846211 E 1470.663093 3.000000 19.246036 145 120 0.000000 19.246036 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-screensaver 3149 357.671192 E 360.642427 3.000000 5.256014 42 120 0.000000 5.256014 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3164 357.647615 E 360.580773 3.000000 4.749683 47 120 0.000000 4.749683 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-housekeepin 3169 3173.310323 E 3174.527353 3.000000 176.099519 124 120 0.000000 176.099519 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3207 353.954110 E 356.900350 3.000000 0.139738 3 120 0.000000 0.139738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3291 223.408768 E 226.036502 3.000000 1.806394 7 120 0.000000 1.806394 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3343 3092.494350 E 3095.348483 3.000000 1.291563 13 120 0.000000 1.291563 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11:sh0 3385 419.506573 E 422.481074 3.000000 0.025499 1 120 0.000000 0.025499 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3392 424.607454 E 427.559544 3.000000 0.047910 1 120 0.000000 0.047910 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3370 394.943027 E 397.936848 3.000000 0.039410 2 120 0.000000 0.039410 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3380 419.140487 E 422.107152 3.000000 0.033335 1 120 0.000000 0.033335 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3464 22.074172 E 25.016557 3.000000 16.001058 53 120 0.000000 16.001058 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3517 12.573708 E 15.568099 3.000000 0.023024 3 120 0.000000 0.023024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-document-po 3544 22.100524 E 25.096416 3.000000 5.893123 20 120 0.000000 5.893123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3557 22.144924 E 25.141339 3.000000 0.142775 5 120 0.000000 0.142775 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3558 22.141339 E 25.132316 3.000000 0.068673 3 120 0.000000 0.068673 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3598 3.360579 E 6.033303 3.000000 11.821224 56 120 0.000000 11.821224 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/7:3 3755 100880.583072 E 100883.575715 3.000000 16.726171 105 120 0.000000 16.726171 0.000000 0.000000 0 0 /\\n I kworker/7:0 5028 64826.231853 E 64829.229716 3.000000 0.008146 2 120 0.000000 0.008146 0.000000 0.000000 0 0 /\\n S docker 5102 27.814553 E 30.440931 3.000000 2.687934 20 120 0.000000 2.687934 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5130 32.710798 E 35.321772 3.000000 4.743828 75 120 0.000000 4.743828 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5208 478.765463 E 481.760704 3.000000 5.521849 662 120 0.000000 5.521849 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5214 396.628965 E 399.619883 3.000000 1.632861 6 120 0.000000 1.632861 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5216 396.205006 E 399.151410 3.000000 0.149899 4 120 0.000000 0.149899 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5217 396.329416 E 399.319519 3.000000 0.046450 2 120 0.000000 0.046450 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5218 396.450772 E 399.445603 3.000000 0.020033 2 120 0.000000 0.020033 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5219 396.731794 E 399.686069 3.000000 0.045725 1 120 0.000000 0.045725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5222 396.826857 E 399.811763 3.000000 0.015094 1 120 0.000000 0.015094 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5235 270.215607 E 273.195321 3.000000 2.769908 8 120 0.000000 2.769908 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5238 361.566231 E 364.560550 3.000000 2.908520 56 120 0.000000 2.908520 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5268 362.496450 E 365.208264 3.000000 2.132202 30 120 0.000000 2.132202 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_aof 5372 6.171250 E 9.150339 3.000000 0.020911 1 120 0.000000 0.020911 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 6328 455.135261 E 458.068568 3.000000 0.763705 6 120 0.000000 0.763705 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6178 362.549412 E 365.534457 3.000000 0.839896 6 120 0.000000 0.839896 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5457 284.338260 E 287.332839 3.000000 0.005421 1 120 0.000000 0.005421 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6179 363.400146 E 366.226144 3.000000 0.946426 4 120 0.000000 0.946426 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5562 2.778332 E 4.759018 3.000000 2.874720 9 120 0.000000 2.874720 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5564 0.356211 E 3.352639 3.000000 0.385910 2 120 0.000000 0.385910 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5567 0.289699 E 2.872177 3.000000 0.417522 2 120 0.000000 0.417522 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5601 910.364125 E 913.358635 3.000000 41.347394 21 120 0.000000 41.347394 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5662 1681.165612 E 1681.188384 3.000000 52.890599 17 120 0.000000 52.890599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5690 1759.655576 E 1761.689682 3.000000 32.986562 10 120 0.000000 32.986562 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5572 3392.582555 E 3395.511163 3.000000 3258.009292 972 120 0.000000 3258.009292 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5611 927.013891 E 930.004534 3.000000 30.958221 12 120 0.000000 30.958221 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5673 1716.676043 E 1719.667802 3.000000 47.953219 14 120 0.000000 47.953219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5698 1774.551283 E 1776.580995 3.000000 33.736341 12 120 0.000000 33.736341 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5635 1287.816586 E 1288.577374 3.000000 38.206043 11 120 0.000000 38.206043 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5636 1287.895610 E 1290.746600 3.000000 38.107591 11 120 0.000000 38.107591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5575 3392.684352 E 3395.582555 3.000000 3072.620920 1309 120 0.000000 3072.620920 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5627 989.132258 E 992.064464 3.000000 56.892128 21 120 0.000000 56.892128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5682 1750.007994 E 1752.998981 3.000000 35.980149 10 120 0.000000 35.980149 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6344 3198.674402 E 3201.541368 3.000000 11.659960 15 120 0.000000 11.659960 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6348 3190.540404 E 3193.521302 3.000000 0.070215 3 120 0.000000 0.070215 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5647 1753.844207 E 1756.837808 3.000000 23.001512 8 120 0.000000 23.001512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5650 1495.354451 E 1498.348112 3.000000 23.003437 7 120 0.000000 23.003437 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5651 1498.355809 E 1501.345904 3.000000 25.997880 8 120 0.000000 25.997880 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5653 1499.385527 E 1502.375556 3.000000 27.015431 8 120 0.000000 27.015431 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5721 1803.013378 E 1806.006859 3.000000 29.898894 9 120 0.000000 29.898894 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5722 1807.064009 E 1810.054337 3.000000 33.945514 12 120 0.000000 33.945514 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6351 111.209705 E 113.648274 3.000000 4.889442 12 120 0.000000 4.889442 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6366 3286.116388 E 3289.098165 3.000000 461.459299 568 120 0.000000 461.459299 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 6369 3077.789687 E 3080.779184 3.000000 0.150261 6 120 0.000000 0.150261 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 6458 3251.808991 E 3254.808991 3.000000 109.455403 10 120 0.000000 109.455403 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\n"}, "Docker Version": "Client: Docker Engine - Community\\n Version: 27.2.1\\n API version: 1.47\\n Go version: go1.22.7\\n Git commit: 9e34c9b\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Context: default\\n\\nServer: Docker Engine - Community\\n Engine:\\n Version: 27.2.1\\n API version: 1.47 (minimum version 1.24)\\n Go version: go1.22.7\\n Git commit: 8b539b8\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Experimental: false\\n containerd:\\n Version: 1.7.21\\n GitCommit: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc:\\n Version: 1.1.13\\n GitCommit: v1.1.13-0-g58aa920\\n docker-init:\\n Version: 0.19.0\\n GitCommit: de40ad0\\n", "Hardware Model": "Laptop", "Virtualization": "Unknown", "CPU Utilization": 0.0, "Hardware Vendor": "Framework", "Hyper Threading": "1", "Hardware Details": "framebook\\n description: Notebook\\n product: Laptop (FRANBMCP0A)\\n vendor: Framework\\n version: AA\\n serial: FRANBMCPAA1484005R\\n width: 64 bits\\n capabilities: smbios-3.3.0 dmi-3.3.0 smp vsyscall32\\n configuration: administrator_password=disabled boot=normal chassis=notebook family=FRANBMCP power-on_password=disabled sku=FRANBMCP0A uuid=1cd24d0f-5c53-ec11-810d-283616200463\\n *-core\\n description: Motherboard\\n product: FRANBMCP0A\\n vendor: Framework\\n physical id: 0\\n version: AA\\n serial: FRANBMCPAA1484005R\\n slot: *\\n *-firmware\\n description: BIOS\\n vendor: INSYDE Corp.\\n physical id: 0\\n version: 03.19\\n date: 05/29/2023\\n size: 128KiB\\n capacity: 12MiB\\n capabilities: pci upgrade shadowing cdboot bootselect int9keyboard int10video acpi usb biosbootspecification uefi\\n *-cpu\\n description: CPU\\n product: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\\n vendor: Intel Corp.\\n physical id: 4\\n bus info: cpu@0\\n version: 6.140.1\\n serial: To Be Filled By O.E.M.\\n slot: U3E1\\n size: 400MHz\\n capacity: 4200MHz\\n width: 64 bits\\n clock: 100MHz\\n capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect md_clear ibt flush_l1d arch_capabilities cpufreq\\n configuration: cores=4 enabledcores=4 microcode=184 threads=8\\n *-cache:0\\n description: L1 cache\\n physical id: 6\\n slot: L1 Cache\\n size: 128KiB\\n capacity: 128KiB\\n capabilities: synchronous internal write-back instruction\\n configuration: level=1\\n *-cache:1\\n description: L2 cache\\n physical id: 7\\n slot: L2 Cache\\n size: 5MiB\\n capacity: 5MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=2\\n *-cache:2\\n description: L3 cache\\n physical id: 8\\n slot: L3 Cache\\n size: 8MiB\\n capacity: 8MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=3\\n *-cache\\n description: L1 cache\\n physical id: 5\\n slot: L1 Cache\\n size: 192KiB\\n capacity: 192KiB\\n capabilities: synchronous internal write-back data\\n configuration: level=1\\n *-memory\\n description: System Memory\\n physical id: 14\\n slot: System board or motherboard\\n size: 32GiB\\n *-bank:0\\n description: [empty]\\n physical id: 0\\n slot: Controller0-ChannelA-DIMM0\\n *-bank:1\\n description: SODIMM DDR4 Synchronous 3200 MHz (0.3 ns)\\n product: CT32G4SFD832A.M16FF\\n vendor: Crucial Technology\\n physical id: 1\\n serial: E63FE743\\n slot: Controller1-ChannelA-DIMM0\\n size: 32GiB\\n width: 64 bits\\n clock: 3200MHz (0.3ns)\\n *-pci\\n description: Host bridge\\n product: 11th Gen Core Processor Host Bridge/DRAM Registers\\n vendor: Intel Corporation\\n physical id: 100\\n bus info: pci@0000:00:00.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n *-display\\n description: VGA compatible controller\\n product: TigerLake-LP GT2 [Iris Xe Graphics]\\n vendor: Intel Corporation\\n physical id: 2\\n bus info: pci@0000:00:02.0\\n logical name: /dev/fb0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb\\n configuration: depth=32 driver=i915 latency=0 mode=2256x1504 resolution=2256,1504 visual=truecolor xres=2256 yres=1504\\n resources: iomemory:600-5ff iomemory:400-3ff irq:204 memory:605c000000-605cffffff memory:4000000000-400fffffff ioport:3000(size=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff\\n *-generic:0\\n description: Signal processing controller\\n product: TigerLake-LP Dynamic Tuning Processor Participant\\n vendor: Intel Corporation\\n physical id: 4\\n bus info: pci@0000:00:04.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: driver=proc_thermal latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d180000-605d19ffff\\n *-pci:0\\n description: PCI bridge\\n product: 11th Gen Core Processor PCIe Controller\\n vendor: Intel Corporation\\n physical id: 6\\n bus info: pci@0000:00:06.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:126 memory:7a300000-7a3fffff\\n *-nvme\\n description: NVMe device\\n product: WDS100T1X0E-00AFY0\\n vendor: Sandisk Corp\\n physical id: 0\\n bus info: pci@0000:01:00.0\\n logical name: /dev/nvme0\\n version: 614900WD\\n serial: 22047A801405\\n width: 64 bits\\n clock: 33MHz\\n capabilities: nvme pm msi msix pciexpress nvm_express bus_master cap_list\\n configuration: driver=nvme latency=0 nqn=nqn.2018-01.com.wdc:nguid:E8238FA6BF53-0001-001B448B45A2BCF6 state=live\\n resources: irq:16 memory:7a300000-7a303fff\\n *-namespace:0\\n description: NVMe disk\\n physical id: 0\\n logical name: hwmon2\\n *-namespace:1\\n description: NVMe disk\\n physical id: 2\\n logical name: /dev/ng0n1\\n *-namespace:2\\n description: NVMe disk\\n physical id: 1\\n bus info: nvme@0:1\\n logical name: /dev/nvme0n1\\n size: 931GiB (1TB)\\n capabilities: gpt-1.00 partitioned partitioned:gpt\\n configuration: guid=45dd4e4e-5082-4f7b-926f-7bfbac3490ba logicalsectorsize=512 sectorsize=512 wwid=eui.e8238fa6bf530001001b448b45a2bcf6\\n *-volume:0 UNCLAIMED\\n description: Windows FAT volume\\n vendor: MSDOS5.0\\n physical id: 1\\n bus info: nvme@0:1,1\\n version: FAT32\\n serial: 74bd-e763\\n size: 95MiB\\n capacity: 99MiB\\n capabilities: boot fat initialized\\n configuration: FATs=2 filesystem=fat name=EFI system partition\\n *-volume:1\\n description: reserved partition\\n vendor: Windows\\n physical id: 2\\n bus info: nvme@0:1,2\\n logical name: /dev/nvme0n1p2\\n serial: 0ea6d81a-270e-4676-b42f-41e3e89d8733\\n capacity: 15MiB\\n capabilities: nofs\\n configuration: name=Microsoft reserved partition\\n *-volume:2\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 3\\n bus info: nvme@0:1,3\\n logical name: /dev/nvme0n1p3\\n version: 3.1\\n serial: c851c6e2-393b-f34f-a874-3f47e3b4d22a\\n size: 465GiB\\n capacity: 465GiB\\n capabilities: ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:22:01 filesystem=ntfs name=Basic data partition state=clean\\n *-volume:3\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 4\\n bus info: nvme@0:1,4\\n logical name: /dev/nvme0n1p4\\n version: 3.1\\n serial: 4c29-9ee3\\n size: 523MiB\\n capacity: 523MiB\\n capabilities: boot precious ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:25:01 filesystem=ntfs state=clean\\n *-volume:4\\n description: EXT4 volume\\n vendor: Linux\\n physical id: 5\\n bus info: nvme@0:1,5\\n logical name: /dev/nvme0n1p5\\n logical name: /\\n logical name: /var/snap/firefox/common/host-hunspell\\n version: 1.0\\n serial: c6c4e62b-4240-443a-8feb-6001a7f1b7b5\\n size: 465GiB\\n capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized\\n configuration: created=2024-03-22 19:59:07 filesystem=ext4 lastmountpoint=/ modified=2024-09-12 18:36:24 mount.fstype=ext4 mount.options=ro,noexec,noatime,errors=remount-ro mounted=2024-09-12 18:36:25 state=mounted\\n *-pci:1\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0\\n vendor: Intel Corporation\\n physical id: 7\\n bus info: pci@0000:00:07.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:127 ioport:4000(size=4096) memory:7c000000-881fffff ioport:6000000000(size=469762048)\\n *-pci:2\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1\\n vendor: Intel Corporation\\n physical id: 7.1\\n bus info: pci@0000:00:07.1\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:128 ioport:5000(size=4096) memory:6e000000-7a1fffff ioport:6020000000(size=469762048)\\n *-pci:3\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2\\n vendor: Intel Corporation\\n physical id: 7.2\\n bus info: pci@0000:00:07.2\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:129 ioport:6000(size=4096) memory:60000000-6c1fffff ioport:6040000000(size=469762048)\\n *-pci:4\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3\\n vendor: Intel Corporation\\n physical id: 7.3\\n bus info: pci@0000:00:07.3\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:130 ioport:7000(size=4096) memory:52000000-5e1fffff ioport:6060000000(size=469762048)\\n *-generic:1 UNCLAIMED\\n description: System peripheral\\n product: GNA Scoring Accelerator module\\n vendor: Intel Corporation\\n physical id: 8\\n bus info: pci@0000:00:08.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff memory:605d1d8000-605d1d8fff\\n *-generic:2\\n description: Signal processing controller\\n product: Tigerlake Telemetry Aggregator Driver\\n vendor: Intel Corporation\\n physical id: a\\n bus info: pci@0000:00:0a.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress pm cap_list\\n configuration: driver=intel_vsec latency=0\\n resources: iomemory:600-5ff irq:0 memory:605d1c0000-605d1c7fff\\n *-usb:0\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 USB Controller\\n vendor: Intel Corporation\\n physical id: d\\n bus info: pci@0000:00:0d.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: iomemory:600-5ff irq:148 memory:605d1b0000-605d1bffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@1\\n logical name: usb1\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=1 speed=480Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@2\\n logical name: usb2\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-usb:1\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #0\\n vendor: Intel Corporation\\n physical id: d.2\\n bus info: pci@0000:00:0d.2\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d140000-605d17ffff memory:605d1d7000-605d1d7fff\\n *-usb:2\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #1\\n vendor: Intel Corporation\\n physical id: d.3\\n bus info: pci@0000:00:0d.3\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d100000-605d13ffff memory:605d1d6000-605d1d6fff\\n *-communication:0\\n description: Serial controller\\n product: Tiger Lake-LP Integrated Sensor Hub\\n vendor: Intel Corporation\\n physical id: 12\\n bus info: pci@0000:00:12.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm 8250 bus_master cap_list\\n configuration: driver=intel_ish_ipc latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1a0000-605d1affff\\n *-usb:3\\n description: USB controller\\n product: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller\\n vendor: Intel Corporation\\n physical id: 14\\n bus info: pci@0000:00:14.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: irq:156 memory:7a400000-7a40ffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@3\\n logical name: usb3\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=12 speed=480Mbit/s\\n *-usb:0\\n description: Human interface device\\n product: HDMI Expansion Card\\n vendor: Framework\\n physical id: 1\\n bus info: usb@3:1\\n version: 0.00\\n serial: 11AD1D0001DB3E1540120B00\\n capabilities: usb-2.01\\n configuration: driver=usbhid maxpower=100mA speed=12Mbit/s\\n *-usb:1\\n description: Video\\n product: Laptop Camera\\n vendor: Generic\\n physical id: 7\\n bus info: usb@3:7\\n version: 0.21\\n serial: 200901010001\\n capabilities: usb-2.01\\n configuration: driver=uvcvideo maxpower=300mA speed=480Mbit/s\\n *-usb:2 UNCLAIMED\\n description: Generic USB device\\n product: Goodix USB2.0 MISC\\n vendor: Goodix Technology Co., Ltd.\\n physical id: 9\\n bus info: usb@3:9\\n version: 1.00\\n serial: UID7D62CCAE_XXXX_MOC_B0\\n capabilities: usb-2.00\\n configuration: maxpower=100mA speed=12Mbit/s\\n *-usb:3\\n description: Bluetooth wireless interface\\n product: AX210 Bluetooth\\n vendor: Intel Corp.\\n physical id: a\\n bus info: usb@3:a\\n version: 0.00\\n capabilities: bluetooth usb-2.01\\n configuration: driver=btusb maxpower=100mA speed=12Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@4\\n logical name: usb4\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-memory UNCLAIMED\\n description: RAM memory\\n product: Tiger Lake-LP Shared SRAM\\n vendor: Intel Corporation\\n physical id: 14.2\\n bus info: pci@0000:00:14.2\\n version: 20\\n width: 64 bits\\n clock: 33MHz (30.3ns)\\n capabilities: pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff memory:605d1cc000-605d1cffff memory:605d1d5000-605d1d5fff\\n *-serial:0\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #0\\n vendor: Intel Corporation\\n physical id: 15\\n bus info: pci@0000:00:15.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:27 memory:4017000000-4017000fff\\n *-serial:1\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #1\\n vendor: Intel Corporation\\n physical id: 15.1\\n bus info: pci@0000:00:15.1\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:40 memory:4017001000-4017001fff\\n *-serial:2\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #3\\n vendor: Intel Corporation\\n physical id: 15.3\\n bus info: pci@0000:00:15.3\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:30 memory:4017002000-4017002fff\\n *-communication:1\\n description: Communication controller\\n product: Tiger Lake-LP Management Engine Interface\\n vendor: Intel Corporation\\n physical id: 16\\n bus info: pci@0000:00:16.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=mei_me latency=0\\n resources: iomemory:600-5ff irq:191 memory:605d1d1000-605d1d1fff\\n *-pci:5\\n description: PCI bridge\\n product: Tiger Lake-LP PCI Express Root Port #10\\n vendor: Intel Corporation\\n physical id: 1d\\n bus info: pci@0000:00:1d.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:131 memory:7a200000-7a2fffff\\n *-network\\n description: Wireless interface\\n product: Wi-Fi 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak]\\n vendor: Intel Corporation\\n physical id: 0\\n bus info: pci@0000:aa:00.0\\n logical name: wlp170s0\\n version: 1a\\n serial: 00:93:37:96:a0:14\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\\n configuration: broadcast=yes driver=iwlwifi driverversion=6.8.0-44-generic firmware=86.fb5c9aeb.0 ty-a0-gf-a0-86.uc ip=192.168.179.3 latency=0 link=yes multicast=yes wireless=IEEE 802.11\\n resources: irq:17 memory:7a200000-7a203fff\\n *-isa\\n description: ISA bridge\\n product: Tiger Lake-LP LPC Controller\\n vendor: Intel Corporation\\n physical id: 1f\\n bus info: pci@0000:00:1f.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: isa bus_master\\n configuration: latency=0\\n *-pnp00:00\\n product: PnP device PNP0303\\n physical id: 0\\n capabilities: pnp\\n configuration: driver=i8042 kbd\\n *-pnp00:01\\n product: PnP device PNP0f03\\n physical id: 1\\n capabilities: pnp\\n configuration: driver=i8042 aux\\n *-pnp00:02\\n product: PnP device PNP0c02\\n physical id: 2\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:03\\n product: PnP device PNP0c02\\n physical id: 3\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:04\\n product: PnP device PNP0c02\\n physical id: 4\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:05\\n product: PnP device PNP0c02\\n physical id: 5\\n capabilities: pnp\\n configuration: driver=system\\n *-multimedia\\n description: Audio device\\n product: Tiger Lake-LP Smart Sound Technology Audio Controller\\n vendor: Intel Corporation\\n physical id: 1f.3\\n bus info: pci@0000:00:1f.3\\n logical name: card0\\n logical name: /dev/snd/controlC0\\n logical name: /dev/snd/hwC0D0\\n logical name: /dev/snd/hwC0D2\\n logical name: /dev/snd/pcmC0D0c\\n logical name: /dev/snd/pcmC0D0p\\n logical name: /dev/snd/pcmC0D3p\\n logical name: /dev/snd/pcmC0D7p\\n logical name: /dev/snd/pcmC0D8p\\n logical name: /dev/snd/pcmC0D9p\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=snd_hda_intel latency=32\\n resources: iomemory:600-5ff iomemory:600-5ff irq:205 memory:605d1c8000-605d1cbfff memory:605d000000-605d0fffff\\n *-input:0\\n product: HDA Intel PCH Mic\\n physical id: 0\\n logical name: input12\\n logical name: /dev/input/event9\\n *-input:1\\n product: HDA Intel PCH Headphone\\n physical id: 1\\n logical name: input13\\n logical name: /dev/input/event10\\n *-input:2\\n product: HDA Intel PCH HDMI/DP,pcm=3\\n physical id: 2\\n logical name: input14\\n logical name: /dev/input/event11\\n *-input:3\\n product: HDA Intel PCH HDMI/DP,pcm=7\\n physical id: 3\\n logical name: input15\\n logical name: /dev/input/event12\\n *-input:4\\n product: HDA Intel PCH HDMI/DP,pcm=8\\n physical id: 4\\n logical name: input16\\n logical name: /dev/input/event13\\n *-input:5\\n product: HDA Intel PCH HDMI/DP,pcm=9\\n physical id: 5\\n logical name: input17\\n logical name: /dev/input/event14\\n *-serial:3\\n description: SMBus\\n product: Tiger Lake-LP SMBus Controller\\n vendor: Intel Corporation\\n physical id: 1f.4\\n bus info: pci@0000:00:1f.4\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n configuration: driver=i801_smbus latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1d0000-605d1d00ff ioport:efa0(size=32)\\n *-serial:4\\n description: Serial bus controller\\n product: Tiger Lake-LP SPI Controller\\n vendor: Intel Corporation\\n physical id: 1f.5\\n bus info: pci@0000:00:1f.5\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: bus_master\\n configuration: driver=intel-spi latency=0\\n resources: irq:0 memory:50400000-50400fff\\n *-battery\\n description: Lithium Ion Battery\\n product: FRANBBAT\\n vendor: FRANBBATA112610BG3\\n physical id: 1\\n version: 2021/7/5\\n serial: 0194\\n slot: Front\\n configuration: voltage=0.0V\\n *-power UNCLAIMED\\n description: OEM Define 1\\n product: OEM Define 5\\n vendor: OEM Define 2\\n physical id: 2\\n version: OEM Define 6\\n serial: OEM Define 3\\n capacity: 75mWh\\n *-input:0\\n product: Lid Switch\\n physical id: 3\\n logical name: input0\\n logical name: /dev/input/event0\\n capabilities: platform\\n *-input:1\\n product: Power Button\\n physical id: 4\\n logical name: input1\\n logical name: /dev/input/event1\\n capabilities: platform\\n *-input:2\\n product: PIXA3854:00 093A:0274 Touchpad\\n physical id: 5\\n logical name: input10\\n logical name: /dev/input/event6\\n logical name: /dev/input/mouse1\\n capabilities: i2c\\n *-input:3\\n product: Video Bus\\n physical id: 6\\n logical name: input11\\n logical name: /dev/input/event8\\n capabilities: platform\\n *-input:4\\n product: AT Translated Set 2 keyboard\\n physical id: 7\\n logical name: input2\\n logical name: /dev/input/event2\\n logical name: input2::capslock\\n logical name: input2::numlock\\n logical name: input2::scrolllock\\n capabilities: i8042\\n *-input:5\\n product: ImExPS/2 Generic Explorer Mouse\\n physical id: 8\\n logical name: input4\\n logical name: /dev/input/event7\\n logical name: /dev/input/mouse2\\n capabilities: i8042\\n *-input:6\\n product: FRMW0001:00 32AC:0006 Wireless Radio Control\\n physical id: 9\\n logical name: input5\\n logical name: /dev/input/event3\\n capabilities: i2c\\n *-input:7\\n product: FRMW0001:00 32AC:0006 Consumer Control\\n physical id: a\\n logical name: input6\\n logical name: /dev/input/event4\\n capabilities: i2c\\n *-input:8\\n product: PIXA3854:00 093A:0274 Mouse\\n physical id: b\\n logical name: input9\\n logical name: /dev/input/event5\\n logical name: /dev/input/mouse0\\n capabilities: i2c\\n", "Operating System": "Ubuntu 24.04.1 LTS", "Scaling Governor": "powersave", "CPU Complete Dump": {"/sys/devices/system/cpu/online": "0-7\\n", "/sys/devices/system/cpu/uevent": "", "/sys/devices/system/cpu/offline": "\\n", "/sys/devices/system/cpu/present": "0-7\\n", "/sys/devices/system/cpu/isolated": "\\n", "/sys/devices/system/cpu/modalias": "cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n", "/sys/devices/system/cpu/possible": "0-7\\n", "/sys/devices/system/cpu/nohz_full": " (null)\\n", "/sys/devices/system/cpu/kernel_max": "8191\\n", "/sys/devices/system/cpu/smt/active": "1\\n", "/sys/devices/system/cpu/cpu0/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu1/online": "1\\n", "/sys/devices/system/cpu/cpu1/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu2/online": "1\\n", "/sys/devices/system/cpu/cpu2/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu3/online": "1\\n", "/sys/devices/system/cpu/cpu3/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu4/online": "1\\n", "/sys/devices/system/cpu/cpu4/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu5/online": "1\\n", "/sys/devices/system/cpu/cpu5/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu6/online": "1\\n", "/sys/devices/system/cpu/cpu6/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu7/online": "1\\n", "/sys/devices/system/cpu/cpu7/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/power/async": "disabled\\n", "/sys/devices/system/cpu/smt/control": "on\\n", "/sys/devices/system/cpu/power/control": "auto\\n", "/sys/devices/system/cpu/hotplug/states": " 0: offline\\n 1: threads:prepare\\n 2: perf:prepare\\n 3: perf/x86:prepare\\n 8: x86/mce:dead\\n 9: virtio/net:dead\\n 11: slub:dead\\n 13: mm/writeback:dead\\n 14: mm/vmstat:dead\\n 15: softirq:dead\\n 20: irq_poll:dead\\n 21: block/softirq:dead\\n 22: block/bio:dead\\n 23: acpi/cpu-drv:dead\\n 25: block/mq:dead\\n 26: fs/buffer:dead\\n 27: printk:dead\\n 28: mm/memctrl:dead\\n 29: lib/percpu_cnt:dead\\n 30: lib/radix:dead\\n 31: mm/page_alloc:pcp\\n 32: net/dev:dead\\n 34: iommu/iova:dead\\n 36: padata:dead\\n 38: random:prepare\\n 39: workqueue:prepare\\n 41: hrtimers:prepare\\n 43: x86/x2apic:prepare\\n 44: smpcfd:prepare\\n 45: relay:prepare\\n 47: RCU/tree:prepare\\n 55: base/topology:prepare\\n 58: trace/RB:prepare\\n 59: mm/zsmalloc:prepare\\n 63: timers:prepare\\n 65: fork:vm_stack_cache\\n 66: crash/cpuhp\\n 86: cpu:kick_ap\\n 87: cpu:bringup\\n 88: idle:dead\\n 89: ap:offline\\n 90: x86/cachectrl:starting\\n 91: sched:starting\\n 92: RCU/tree:dying\\n104: perf/x86:starting\\n106: perf/x86/cstate:starting\\n137: smpcfd:dying\\n138: hrtimers:dying\\n141: ap:online\\n142: cpu:teardown\\n145: kvm/cpu:online\\n146: sched:waitempty\\n147: smpboot/threads:online\\n148: irq/affinity:online\\n149: block/mq:online\\n151: x86/intel/epb:online\\n152: perf:online\\n153: perf/x86:online\\n154: perf/x86/intel/uncore:online\\n157: perf/x86/rapl:online\\n158: perf/x86/cstate:online\\n184: lockup_detector:online\\n185: workqueue:online\\n186: random:online\\n187: RCU/tree:online\\n188: base/cacheinfo:online\\n189: x86/splitlock\\n190: mm/writeback:online\\n191: mm/vmstat:online\\n192: padata:online\\n193: mm/compaction:online\\n194: io-wq/online\\n195: lib/percpu_cnt:online\\n196: idle/intel:online\\n197: acpi/cpu-drv:online\\n198: virtio/net:online\\n199: x86/therm:online\\n200: cpufreq:online\\n201: leds/trigger:starting\\n202: x86/mce:online\\n203: x86/microcode:online\\n204: x86/resctrl/cat:online:\\n205: printk:online\\n206: trace/hwlat:online\\n207: trace/osnoise:online\\n208: swap_slots_cache\\n209: x86/msr:online\\n210: powercap/rapl:online\\n211: perf/x86/intel/i915:online\\n212: powercap/rapl:online\\n213: hwmon/coretemp:online\\n214: thermal/x86_pkg:online\\n215: platform/x86/uncore-freq:online\\n232: sched:active\\n233: online\\n", "/sys/devices/system/cpu/cpu0/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu1/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu2/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu3/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu4/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu5/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu6/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu7/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu0/cache/uevent": "", "/sys/devices/system/cpu/cpu0/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu1/cache/uevent": "", "/sys/devices/system/cpu/cpu1/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu2/cache/uevent": "", "/sys/devices/system/cpu/cpu2/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu3/cache/uevent": "", "/sys/devices/system/cpu/cpu3/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu4/cache/uevent": "", "/sys/devices/system/cpu/cpu4/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu5/cache/uevent": "", "/sys/devices/system/cpu/cpu5/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu6/cache/uevent": "", "/sys/devices/system/cpu/cpu6/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu7/cache/uevent": "", "/sys/devices/system/cpu/cpu7/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu0/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu0/power/control": "auto\\n", "/sys/devices/system/cpu/cpu1/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu1/power/control": "auto\\n", "/sys/devices/system/cpu/cpu2/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu2/power/control": "auto\\n", "/sys/devices/system/cpu/cpu3/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu3/power/control": "auto\\n", "/sys/devices/system/cpu/cpu4/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu4/power/control": "auto\\n", "/sys/devices/system/cpu/cpu5/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu5/power/control": "auto\\n", "/sys/devices/system/cpu/cpu6/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu6/power/control": "auto\\n", "/sys/devices/system/cpu/cpu7/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu7/power/control": "auto\\n", "/sys/devices/system/cpu/cpu0/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu1/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu2/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu3/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu4/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu5/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu6/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu7/hotplug/target": "233\\n", "/sys/devices/system/cpu/intel_pstate/status": "active\\n", "/sys/devices/system/cpu/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/vulnerabilities/mds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu0/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu2/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu3/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu4/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu6/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu7/topology/die_id": "0\\n", "/sys/devices/system/cpu/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/vulnerabilities/l1tf": "Not affected\\n", "/sys/devices/system/cpu/cpu0/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu2/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu3/topology/core_id": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu6/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu7/topology/core_id": "3\\n", "/sys/devices/system/cpu/intel_pstate/no_turbo": "0\\n", "/sys/devices/system/cpu/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/vulnerabilities/srbds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu0/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu0/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu0/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu0/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu0/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu0/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu1/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu1/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu1/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu1/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu1/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu1/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu2/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu2/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu2/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu2/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu2/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu2/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu3/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu3/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu3/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu3/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu3/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu3/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu4/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu4/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu4/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu4/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu4/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu4/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu5/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu5/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu5/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu5/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu5/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu5/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu6/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu6/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu6/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu6/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu6/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu6/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu7/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu7/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu7/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu7/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu7/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu7/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpuidle/current_driver": "intel_idle\\n", "/sys/devices/system/cpu/intel_pstate/turbo_pct": "47\\n", "/sys/devices/system/cpu/cpu0/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu0/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu1/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu1/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu2/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu3/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu3/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu4/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu4/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu5/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu5/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu6/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu7/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu7/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu0/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu0/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/time": "57712\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/time": "17083322\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/time": "20497630\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/time": "377495887\\n", "/sys/devices/system/cpu/cpu0/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu1/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/time": "63367\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/time": "11380691\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/time": "10204582\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/time": "396751912\\n", "/sys/devices/system/cpu/cpu1/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu2/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/time": "53407\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/time": "12596136\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/time": "15413966\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/time": "388475973\\n", "/sys/devices/system/cpu/cpu2/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu3/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu3/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/time": "64999\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/time": "9852697\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/time": "8873992\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/time": "402899689\\n", "/sys/devices/system/cpu/cpu3/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpu4/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu4/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/time": "44038\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/time": "8256698\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/time": "6637790\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/time": "407623759\\n", "/sys/devices/system/cpu/cpu4/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu5/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/time": "55138\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/time": "9499904\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/time": "8239080\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/time": "406758780\\n", "/sys/devices/system/cpu/cpu5/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu6/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/time": "49762\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/time": "9530376\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/time": "7803189\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/time": "409242508\\n", "/sys/devices/system/cpu/cpu6/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu7/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu7/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/time": "62399\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/time": "9473987\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/time": "7937998\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/time": "405592869\\n", "/sys/devices/system/cpu/cpu7/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpuidle/current_governor": "menu\\n", "/sys/devices/system/cpu/intel_pstate/num_pstates": "39\\n", "/sys/devices/system/cpu/vulnerabilities/meltdown": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/retbleed": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/below": "1172\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/usage": "1313\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/above": "1255\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/below": "11333\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/usage": "56737\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/above": "1554\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/below": "11\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/usage": "22399\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/above": "28562\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/usage": "52665\\n", "/sys/devices/system/cpu/cpu0/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/below": "1547\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/usage": "1659\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/above": "1163\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/below": "6216\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/usage": "49377\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/above": "1075\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/below": "9\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/usage": "11257\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/above": "11613\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/usage": "29287\\n", "/sys/devices/system/cpu/cpu1/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/below": "1097\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/usage": "1175\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/above": "1741\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/below": "6469\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/usage": "54805\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/above": "1899\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/below": "9\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/usage": "16927\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/above": "9107\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/usage": "36213\\n", "/sys/devices/system/cpu/cpu2/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/below": "1488\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/usage": "1691\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/above": "1925\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/below": "5256\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/usage": "46814\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/above": "1286\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/below": "30\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/usage": "9659\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/above": "7493\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/usage": "25539\\n", "/sys/devices/system/cpu/cpu3/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/below": "1423\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/usage": "1654\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/above": "1038\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/below": "4635\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/usage": "41901\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/above": "797\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/below": "12\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/usage": "7249\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/above": "4100\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/usage": "16838\\n", "/sys/devices/system/cpu/cpu4/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/below": "1331\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/usage": "1426\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/above": "1275\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/below": "5280\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/usage": "45962\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/above": "1106\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/below": "32\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/usage": "8940\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/above": "5233\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/usage": "17372\\n", "/sys/devices/system/cpu/cpu5/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/below": "1117\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/usage": "1208\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/above": "1713\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/below": "5069\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/usage": "46272\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/above": "944\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/below": "11\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/usage": "8494\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/above": "4210\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/usage": "19065\\n", "/sys/devices/system/cpu/cpu6/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/below": "1459\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/usage": "1668\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/above": "1778\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/below": "5088\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/usage": "45936\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/above": "992\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/below": "14\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/usage": "8631\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/above": "5016\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/usage": "19560\\n", "/sys/devices/system/cpu/cpu7/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/intel_pstate/max_perf_pct": "100\\n", "/sys/devices/system/cpu/intel_pstate/min_perf_pct": "9\\n", "/sys/devices/system/cpu/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu0/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu1/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu2/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu3/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu4/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu5/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu6/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu7/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v1": "Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v2": "Mitigation: Enhanced / Automatic IBRS; IBPB: conditional; RSB filling; PBRSB-eIBRS: SW sequence; BHI: SW loop, KVM: SW loop\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu0/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu1/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu2/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu3/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu4/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu5/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu6/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu7/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpuidle/available_governors": "ladder menu teo \\n", "/sys/devices/system/cpu/cpuidle/current_governor_ro": "menu\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/feedback_ctrs": "ref:128486301840 del:78479811716\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/feedback_ctrs": "ref:78766421040 del:45304680461\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/feedback_ctrs": "ref:83631520656 del:46911811305\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/feedback_ctrs": "ref:70678352568 del:39415098277\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/feedback_ctrs": "ref:68077036560 del:44643804294\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/feedback_ctrs": "ref:65346090360 del:39051504136\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/feedback_ctrs": "ref:58480316592 del:35840112586\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/feedback_ctrs": "ref:67056424728 del:41958364529\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpufreq/policy0/related_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/related_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/related_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/related_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/related_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/related_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/related_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/related_cpus": "7\\n", "/sys/devices/system/cpu/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpufreq/policy0/affected_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/affected_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/affected_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/affected_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/affected_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/affected_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/affected_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/affected_cpus": "7\\n", "/sys/devices/system/cpu/vulnerabilities/itlb_multihit": "Not affected\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu0/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu1/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu2/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu3/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu4/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu5/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu6/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu7/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy1/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy2/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy3/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy4/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy5/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy6/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy7/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/vulnerabilities/mmio_stale_data": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/tsx_async_abort": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq": "715079\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_cur_freq": "400220\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_cur_freq": "400792\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_cur_freq": "3815200\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_cur_freq": "1069205\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_cur_freq": "2600383\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_cur_freq": "3840158\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu0/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/vulnerabilities/spec_store_bypass": "Mitigation: Speculative Store Bypass disabled via prctl\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu1/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu2/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu3/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu4/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu5/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu6/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu7/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/vulnerabilities/gather_data_sampling": "Mitigation: Microcode\\n", "/sys/devices/system/cpu/vulnerabilities/spec_rstack_overflow": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/vulnerabilities/reg_file_data_sampling": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us": "59817541\\n", "/sys/devices/system/cpu/cpu0/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us": "15846041\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/min_freq_khz": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_min_freq_khz": "400000\\n"}, "Docker Containers": "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES", "Network Interfaces": "2: wlp170s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1456 qdisc noqueue state UP group default qlen 1000\\n link/ether 00:93:37:96:a0:14 brd ff:ff:ff:ff:ff:ff\\n--\\n4: br-5358121b016d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:31:4c:7c:39 brd ff:ff:ff:ff:ff:ff\\n--\\n5: br-6e0ae77042d6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:29:4c:03:1e brd ff:ff:ff:ff:ff:ff\\n--\\n6: br-7688b5ca7e2d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:e5:22:19:30 brd ff:ff:ff:ff:ff:ff\\n--\\n7: br-9ba2a39b0b1e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:f5:74:c1:66 brd ff:ff:ff:ff:ff:ff\\n--\\n8: br-ce560083466a: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:a4:f4:58:34 brd ff:ff:ff:ff:ff:ff\\n--\\n9: br-17d7b4ff19e9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:40:0a:a9:6e brd ff:ff:ff:ff:ff:ff\\n--\\n10: br-b8fe670a4cd7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:15:10:5f:b5 brd ff:ff:ff:ff:ff:ff\\n--\\n11: br-c26dcd3569f9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:53:0c:b7:f6 brd ff:ff:ff:ff:ff:ff\\n--\\n13: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:2f:19:92:44 brd ff:ff:ff:ff:ff:ff\\n--\\n15: veth4b2531f@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default \\n link/ether 16:4d:d1:07:e9:34 brd ff:ff:ff:ff:ff:ff link-netnsid 0\\n--\\n27: br-cd08359ec224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:cb:56:8d:7d brd ff:ff:ff:ff:ff:ff\\n--\\n29: veth4f67909@if28: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether c2:8b:74:ce:4b:f2 brd ff:ff:ff:ff:ff:ff link-netnsid 2\\n--\\n31: veth3d72cc1@if30: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 56:6f:f8:d3:95:47 brd ff:ff:ff:ff:ff:ff link-netnsid 1\\n--\\n33: veth888843b@if32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 72:81:21:75:96:2a brd ff:ff:ff:ff:ff:ff link-netnsid 3\\n--\\n35: veth0c4fb2f@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 1e:1a:b4:b7:47:13 brd ff:ff:ff:ff:ff:ff link-netnsid 4\\n", "Current Clocksource": "tsc", "RAPL Energy Filtering": "0\\n", "Installed Python Packages": "aiohappyeyeballs==2.4.0\\naiohttp==3.10.3\\naiosignal==1.3.1\\nalembic==1.13.2\\nannotated-types==0.7.0\\nanybadge==1.14.0\\nanyio==4.4.0\\nattrs==24.2.0\\ncertifi==2024.8.30\\ncharset-normalizer==3.3.2\\nclick==8.1.7\\ncolorlog==6.8.2\\ndeepdiff==7.0.1\\ndnspython==2.6.1\\ndocker==7.1.0\\nemail_validator==2.2.0\\nfastapi==0.112.0\\nfastapi-cli==0.0.5\\nfrozenlist==1.4.1\\ngreenlet==3.1.0\\ngunicorn==23.0.0\\nh11==0.14.0\\nhiredis==3.0.0\\nhttpcore==1.0.5\\nhttptools==0.6.1\\nhttpx==0.27.2\\nidna==3.8\\nJinja2==3.1.4\\njoblib==1.4.2\\nMako==1.3.5\\nmarkdown-it-py==3.0.0\\nMarkupSafe==2.1.5\\nmdurl==0.1.2\\nmultidict==6.1.0\\nnumpy==2.0.1\\nnvidia-nccl-cu12==2.22.3\\noptuna==3.6.1\\nordered-set==4.1.0\\norjson==3.10.7\\npackaging==24.1\\npandas==2.2.2\\nplotext==5.2.8\\npsutil==6.0.0\\npsycopg==3.2.1\\npsycopg-binary==3.2.1\\npsycopg-pool==3.2.2\\npyarrow==17.0.0\\npydantic==2.9.1\\npydantic_core==2.23.3\\nPygments==2.18.0\\npyserial==3.5\\npython-dateutil==2.9.0.post0\\npython-dotenv==1.0.1\\npython-multipart==0.0.9\\npytz==2024.2\\nPyYAML==6.0.2\\nredis==5.0.8\\nrequests==2.32.3\\nrich==13.8.1\\nschema==0.7.7\\nscikit-learn==1.5.1\\nscipy==1.14.0\\nshellingham==1.5.4\\nsix==1.16.0\\nsniffio==1.3.1\\nSQLAlchemy==2.0.34\\nstarlette==0.37.2\\nthreadpoolctl==3.5.0\\ntqdm==4.66.5\\ntyper==0.12.5\\ntyping_extensions==4.12.2\\ntzdata==2024.1\\nurllib3==2.2.2\\nuvicorn==0.30.6\\nuvicorn-worker==0.2.0\\nuvloop==0.20.0\\nwatchfiles==0.24.0\\nwebsockets==13.0.1\\nxgboost==2.1.0\\nyarl==1.11.1\\n", "Installed System Packages": "Desired=Unknown/Install/Remove/Purge/Hold\\n| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend\\n|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\\n||/ Name Version Architecture Description\\n+++-=============================================-==========================================-============-===================================================================================\\nii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information\\nii acl 2.3.2-1build1 amd64 access control list - utilities\\nii adduser 3.137ubuntu1 all add and remove users and groups\\nii adwaita-icon-theme 46.0-1 all default icon theme of GNOME\\nii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files\\nii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files\\nii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files\\nii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA\\nii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs\\nii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn\'t go by time\\nii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version\\nii apparmor 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 user-space parser utility for AppArmor\\nii apport 2.28.1-0ubuntu3.1 all automatically generate crash reports for debugging\\nii apport-core-dump-handler 2.28.1-0ubuntu3.1 all Kernel core dump handler for Apport\\nii apport-gtk 2.28.1-0ubuntu3.1 all GTK+ frontend for the apport crash report system\\nii apport-symptoms 0.25 all symptom scripts for apport\\nii appstream 1.0.2-1build6 amd64 Software component metadata management\\nii apt 2.7.14build2 amd64 commandline package manager\\nii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads\\nii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads\\nii apt-utils 2.7.14build2 amd64 package management related utility programs\\nii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service\\nii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients\\nii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker\\nii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell\\nii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)\\nii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)\\nii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon\\nii baobab 46.0-1build1 amd64 GNOME disk usage analyzer\\nii base-files 13ubuntu10.1 amd64 Debian base system miscellaneous files\\nii base-passwd 3.6.3build1 amd64 Debian base system master password and group files\\nii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell\\nii bash-completion 1:2.11-8 all programmable completion for the bash shell\\nii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language\\nii bind9-dnsutils 1:9.18.28-0ubuntu0.24.04.1 amd64 Clients provided with BIND 9\\nii bind9-host 1:9.18.28-0ubuntu0.24.04.1 amd64 DNS Lookup Utility\\nii bind9-libs:amd64 1:9.18.28-0ubuntu0.24.04.1 amd64 Shared Libraries used by BIND 9\\nii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities\\nii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities\\nii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target\\nii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons\\nii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS\\nii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon\\nii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices\\nii boot-repair 4ppa2081 all Graphical tool to repair boot problems\\nii boot-sav 4ppa2081 all Librairies for Boot-Info, OS-uninstaller and Boot-repair\\nii boot-sav-extra 4ppa2081 all Extra librairies for OS-uninstaller and Boot-repair\\nii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)\\nii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF\\nii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display\\nii bsdextrautils 2.39.3-9ubuntu6.1 amd64 extra utilities from 4.4BSD-Lite\\nii bsdutils 1:2.39.3-9ubuntu6.1 amd64 basic utilities from 4.4BSD-Lite\\nii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation\\nii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages\\nii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs\\nii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities\\nii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities\\nii ca-certificates 20240203 all Common CA certificates\\nii ca-certificates-java 20240118 all Common CA certificates (JKS keystore)\\nii cloud-guest-utils 0.33-1 all cloud guest utilities\\nii cloud-init 24.2-0ubuntu1~24.04.2 all initialization and customization tool for cloud instances\\nii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon\\nii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files\\nii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions\\nii console-setup 1.226ubuntu1 all console font and keymap setup program\\nii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup\\nii containerd.io 1.7.21-1 amd64 An open and reliable container runtime\\nii coreutils 9.4-3ubuntu6 amd64 GNU core utilities\\nii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files\\nii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)\\nii cpp-11 11.4.0-9ubuntu1 amd64 GNU C preprocessor\\nii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor\\nii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu\\nii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture\\nii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2\\nii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon\\nii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon\'s configuration files\\nii cups 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface\\nii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed\\nii cups-bsd 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - BSD commands\\nii cups-client 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - client programs (SysV)\\nii cups-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - common files\\nii cups-core-drivers 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - driverless printing\\nii cups-daemon 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - daemon\\nii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package\\nii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing\\nii cups-ipp-utils 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities\\nii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges\\nii cups-ppdc 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities\\nii cups-server-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - server common files\\nii curl 8.5.0-2ubuntu10.3 amd64 command line tool for transferring data with URL syntax\\nii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell\\nii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)\\nii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)\\nii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)\\nii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)\\nii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)\\nii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)\\nii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator\\nii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities\\nii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end\\nii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service\\nii debconf 1.5.86ubuntu1 all Debian configuration management system\\nii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf\\nii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian\\nii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files\\nii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)\\nii dictionaries-common 1.29.7 all spelling dictionaries - common utilities\\nii diffutils 1:3.10-1build1 amd64 File comparison utilities\\nii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service\\nii distro-info 1.7build1 amd64 provides information about the distributions\' releases\\nii distro-info-data 0.60ubuntu0.1 all information about the distributions\' releases (data files)\\nii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder\\nii dmsetup 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme\\nii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key\\nii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable\\nii docbook-xml 4.5-12 all standard XML documentation system for software and systems\\nii docker-buildx-plugin 0.16.2-1~ubuntu.22.04~jammy amd64 Docker Buildx cli plugin.\\nii docker-ce 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker: the open-source application container engine\\nii docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine\\nii docker-ce-rootless-extras 5:27.2.1-1~ubuntu.22.04~jammy amd64 Rootless support for Docker.\\nii docker-compose-plugin 2.29.2-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.\\nii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems\\nii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system\\nii dpkg-dev 1.22.6ubuntu6.1 all Debian package development tools\\nii dracut-install 060+5-1ubuntu3.2 amd64 dracut is an event driven initramfs infrastructure (dracut-install)\\nii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities\\nii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends\\nii ed 1.20.1-1 amd64 classic UNIX line editor\\nii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager\\nii eject 2.39.3-9ubuntu6.1 amd64 ejects CDs and operates CD-Changers under Linux\\nii emacsen-common 3.0.5 all Common facilities for all emacsen\\nii enchant-2 2.3.3-2build2 amd64 Wrapper for various spell checker engines (binary programs)\\nii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program\\nii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files\\nii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings\\nii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer\\nii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files\\nii evolution-data-server 3.52.3-0ubuntu1 amd64 evolution database backend server\\nii evolution-data-server-common 3.52.3-0ubuntu1 all architecture independent files for Evolution Data Server\\nii fakeroot 1.33-1 amd64 tool for simulating superuser privileges\\nii fdisk 2.39.3-9ubuntu6.1 amd64 collection of partitioning utilities\\nii file 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers\\nii file-roller 44.3-0ubuntu1 amd64 archive manager for GNOME\\nii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs\\nii firefox 1:1snap1-0ubuntu5 amd64 Transitional package - firefox -> firefox snap\\nii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed\\nii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries\\nii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration\\nii fonts-beng 2:1.3 all Metapackage to install Bengali and Assamese fonts\\nii fonts-beng-extra 3.3.1-2 all TrueType fonts for Bengali language\\nii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters\\nii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters\\nii fonts-deva 2:1.4 all Meta package to install all Devanagari fonts\\nii fonts-deva-extra 3.0-6 all Free fonts for Devanagari script\\nii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)\\nii fonts-freefont-ttf 20211204+svn4273-2 all Freefont Serif, Sans and Mono Truetype fonts\\nii fonts-gargi 2.0-6 all OpenType Devanagari font\\nii fonts-gubbi 1.3-7 all Gubbi free font for Kannada script\\nii fonts-gujr 2:1.5 all Meta package to install all Gujarati fonts\\nii fonts-gujr-extra 1.0.1-2 all Free fonts for Gujarati script\\nii fonts-guru 2:1.3 all Meta package to install all Punjabi fonts\\nii fonts-guru-extra 2.0-5 all Free fonts for Punjabi language\\nii fonts-indic 2:1.4 all Meta package to install all Indian language fonts\\nii fonts-kalapi 1.0-5 all Kalapi Gujarati Unicode font\\nii fonts-knda 2:1.3 all Meta package for Kannada fonts\\nii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier\\nii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow\\nii fonts-lohit-beng-assamese 2.91.5-2 all Lohit TrueType font for Assamese Language\\nii fonts-lohit-beng-bengali 2.91.5-3 all Lohit TrueType font for Bengali Language\\nii fonts-lohit-deva 2.95.4-5 all Lohit TrueType font for Devanagari script\\nii fonts-lohit-gujr 2.92.4-4 all Lohit TrueType font for Gujarati Language\\nii fonts-lohit-guru 2.91.2-3 all Lohit TrueType font for Punjabi Language\\nii fonts-lohit-knda 2.5.4-3 all Lohit TrueType font for Kannada Language\\nii fonts-lohit-mlym 2.92.2-2 all Lohit TrueType font for Malayalam Language\\nii fonts-lohit-orya 2.91.2-2 all Lohit TrueType font for Oriya Language\\nii fonts-lohit-taml 2.91.3-2 all Lohit TrueType font for Tamil Language\\nii fonts-lohit-taml-classical 2.5.4-2 all Lohit Tamil TrueType fonts for Tamil script\\nii fonts-lohit-telu 2.5.5-2build1 all Lohit TrueType font for Telugu Language\\nii fonts-mlym 2:1.3 all Meta package to install all Malayalam fonts\\nii fonts-nakula 1.0-4 all Free Unicode compliant Devanagari font\\nii fonts-navilu 1.2-4 all Handwriting font for Kannada\\nii fonts-noto-cjk 1:20230817+repack1-3 all \\"No Tofu\\" font families with large Unicode coverage (CJK regular and bold)\\nii fonts-noto-color-emoji 2.042-1 all color emoji font from Google\\nii fonts-noto-core 20201225-2 all \\"No Tofu\\" font families with large Unicode coverage (core)\\nii fonts-noto-mono 20201225-2 all \\"No Tofu\\" monospaced font family with large Unicode coverage\\nii fonts-opensymbol 4:102.12+LibO24.2.5-0ubuntu0.24.04.2 all OpenSymbol TrueType font\\nii fonts-orya 2:1.3 all Meta package to install all Odia fonts\\nii fonts-orya-extra 2.0-6 all Free fonts for Odia script\\nii fonts-pagul 1.0-9 all Free TrueType font for the Sourashtra language\\nii fonts-sahadeva 1.0-5 all Free Unicode compliant Devanagari font\\nii fonts-samyak-deva 1.2.2-6 all Samyak TrueType font for Devanagari script\\nii fonts-samyak-gujr 1.2.2-6 all Samyak TrueType font for Gujarati language\\nii fonts-samyak-mlym 1.2.2-6 all Samyak TrueType font for Malayalam language\\nii fonts-samyak-taml 1.2.2-6 all Samyak TrueType font for Tamil language\\nii fonts-sarai 1.0-3 all truetype font for devanagari script\\nii fonts-sil-annapurna 2.000-2 all smart font for languages using Devanagari script\\nii fonts-smc 1:7.5 all Metapackage for various TrueType fonts for Malayalam Language\\nii fonts-smc-anjalioldlipi 7.1.2-2 all AnjaliOldLipi malayalam font\\nii fonts-smc-chilanka 1.540-2 all Chilanka malayalam font\\nii fonts-smc-dyuthi 3.0.2-2 all Dyuthi malayalam font\\nii fonts-smc-gayathri 1.200-1 all Gayathri Malayalam font\\nii fonts-smc-karumbi 1.1.2-2 all Karumbi malayalam font\\nii fonts-smc-keraleeyam 3.0.2-2 all Keraleeyam malayalam font\\nii fonts-smc-manjari 2.200-1 all Manjari malayalam font\\nii fonts-smc-meera 7.0.3-1 all Meera malayalam font\\nii fonts-smc-rachana 7.0.2-1build1 all Rachana malayalam font\\nii fonts-smc-raghumalayalamsans 2.2.1-1 all RaghuMalayalamSans malayalam font\\nii fonts-smc-suruma 3.2.3-1 all Suruma malayalam font\\nii fonts-smc-uroob 2.0.2-1 all Uroob malayalam font\\nii fonts-taml 2:1.4 all Meta package to install all Tamil fonts\\nii fonts-telu 2:1.3 all Meta package to install all Telugu fonts\\nii fonts-telu-extra 2.0-6 all Free fonts for Telugu script\\nii fonts-teluguvijayam 2.1-1 all TrueType fonts for Telugu script (te)\\nii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu\\nii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts\\nii fonts-yrsa-rasa 2.005-1 all Open-source, libre fonts for Latin + Gujarati\\nii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database\\nii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access\\nii freeipmi-common 1.6.13-3 all GNU implementation of the IPMI protocol - common files\\nii freeipmi-tools 1.6.13-3 amd64 GNU implementation of the IPMI protocol - tools\\nii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly\\nii ftp 20230507-2build3 all dummy transitional package for tnftp\\nii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)\\nii fwupd 1.9.24-1~24.04.1 amd64 Firmware update daemon\\nii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary\\nii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler\\nii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler\\nii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture\\nii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture\\nii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand\\nii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)\\nii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler\\nii gcc-11 11.4.0-9ubuntu1 amd64 GNU C compiler\\nii gcc-11-base:amd64 11.4.0-9ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler\\nii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture\\nii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture\\nii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)\\nii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)\\nii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger\\nii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool\\nii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager\\nii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service\\nii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library\\nii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system\\nii ghostscript 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF\\nii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService\\nii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita\\nii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)\\nii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)\\nii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4\\nii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library\\nii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components\\nii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library\\nii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library\\nii gir1.2-gdesktopenums-3.0:amd64 46.1-0ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas\\nii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library - GObject-Introspection\\nii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager\\nii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)\\nii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library\\nii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule\\nii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library\\nii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar\\nii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)\\nii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth\\nii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)\\nii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)\\nii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)\\nii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library\\nii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data\\nii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library\\nii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy\\nii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)\\nii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data\\nii gir1.2-javascriptcoregtk-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-javascriptcoregtk-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-mutter-14:amd64 46.2-1ubuntu0.24.04.1 amd64 GObject introspection data for Mutter\\nii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library\\nii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4\\nii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)\\nii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library\\nii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings\\nii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)\\nii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit\\nii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files\\nii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)\\nii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1\\nii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library\\nii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data\\nii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library\\nii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower\\nii gir1.2-vte-2.91:amd64 0.76.0-1ubuntu0.1 amd64 GObject introspection data for the VTE library\\nii gir1.2-webkit-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-webkit2-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library\\nii git 1:2.43.0-1ubuntu7.1 amd64 fast, scalable, distributed revision control system\\nii git-man 1:2.43.0-1ubuntu7.1 all fast, scalable, distributed revision control system (manual pages)\\nii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)\\nii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd\\nii glade2script 3.2.4~ppa23 all Glade interface engine for scripts\\nii glade2script-python3 3.2.4~ppa23 all Glade interface engine for scripts (Python3 version)\\nii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib\\nii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files\\nii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services\\nii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons\\nii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files\\nii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app\\nii gnome-calculator 1:46.1-1ubuntu1~24.04.1 amd64 GNOME desktop calculator\\nii gnome-characters 46.0-1build1 amd64 character map application\\nii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support\\nii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop\\nii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files\\nii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images\\nii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps\\nii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media\\nii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME\\nii gnome-initial-setup 46.2-1ubuntu0.24.04.1 amd64 Initial GNOME system setup helper\\nii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)\\nii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library\\nii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal\\nii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii gnome-online-accounts 3.50.4-0ubuntu2 amd64 service to manage online accounts for the GNOME desktop\\nii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop\\nii gnome-remote-desktop 46.3-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire\\nii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime\\nii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events\\nii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files\\nii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings\\nii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files\\nii gnome-shell 46.0-0ubuntu6~24.04.4 amd64 graphical shell for the GNOME desktop\\nii gnome-shell-common 46.0-0ubuntu6~24.04.4 all common files for the GNOME graphical shell\\nii gnome-shell-extension-appindicator 58-1 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell\\nii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell\\nii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell\\nii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1.1 all extension which adds a Windows-like snap assist to GNOME Shell\\nii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam\\nii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME\\nii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME\\nii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application\\nii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator\\nii gnome-text-editor 46.3-0ubuntu2 amd64 simple text editor for GNOME\\nii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine\\nii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files\\nii gnome-user-docs 46.0-1ubuntu1 all GNOME Help\\nii gnome-user-docs-de 46.0-1ubuntu1 all GNOME Help (German)\\nii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement\\nii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files\\nii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs\\nii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations\\nii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent\\nii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client\\nii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities\\nii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version\\nii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool\\nii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep\\nii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)\\nii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)\\nii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)\\nii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)\\nii grub-gfxpayload-lists 0.7build2 amd64 GRUB gfxpayload blacklist\\nii grub-pc 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)\\nii grub-pc-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)\\nii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)\\nii gsettings-desktop-schemas 46.1-0ubuntu1 all GSettings desktop-wide schemas\\nii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu\\nii gstreamer1.0-alsa:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugin for ALSA\\nii gstreamer1.0-gl:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for GL\\nii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)\\nii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit\\nii gstreamer1.0-pipewire:amd64 1.0.5-1ubuntu1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server\\nii gstreamer1.0-plugins-base:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins from the \\"base\\" set\\nii gstreamer1.0-plugins-base-apps 1.24.2-1ubuntu0.1 amd64 GStreamer helper programs from the \\"base\\" set\\nii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the \\"good\\" set\\nii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer\\nii gstreamer1.0-x:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for X11 and Pango\\nii gtk-update-icon-cache 3.24.41-4ubuntu1.1 amd64 icon theme caching utility\\nii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine\\nii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1.1 amd64 pixbuf-based theme for GTK 2\\nii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module\\nii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends\\nii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files\\nii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers\\nii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server\\nii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries\\nii gzip 1.12-1ubuntu3 amd64 GNU compression utilities\\nii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance\\nii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader\\nii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer\\nii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes\\nii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name\\nii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)\\nii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files\\nii humanity-icon-theme 0.6.16 all Humanity Icon theme\\nii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell\\nii hwdata 0.379-1 all hardware identification / configuration data\\nii ibus 1.5.29-2 amd64 Intelligent Input Bus - core\\nii ibus-data 1.5.29-2 all Intelligent Input Bus - data files\\nii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support\\nii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support\\nii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support\\nii ibus-table 1.17.4-2 all table engine for IBus\\nii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs\\nii ieee-data 20220827.1 all OUI and IAB listings\\nii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy\\nii im-config 0.57-2 all Input method configuration framework\\nii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client\\nii info 7.1-3build2 amd64 Standalone GNU Info documentation browser\\nii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed\\nii init-system-helpers 1.66ubuntu1 all helper tools for all init systems\\nii initramfs-tools 0.142ubuntu25.2 all generic modular initramfs generator (automation)\\nii initramfs-tools-bin 0.142ubuntu25.2 amd64 binaries used by initramfs-tools\\nii initramfs-tools-core 0.142ubuntu25.2 all generic modular initramfs generator (core tools)\\nii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem\\nii install-info 7.1-3build2 amd64 Manage installed documentation in info format\\nii intel-microcode 3.20240813.0ubuntu0.24.04.2 amd64 Processor microcode firmware for Intel CPUs\\nii ipmitool 1.8.19-7build2 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)\\nii ipp-usb 0.9.24-0ubuntu3.1 amd64 Daemon for IPP over USB printer support\\nii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools\\nii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT\\nii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts\\nii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host\\nii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations\\nii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool\\nii java-common 0.75+exp1 all Base package for Java runtimes\\nii javascript-common 11+nmu1 all Base support for JavaScript library packages\\nii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor\\nii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities\\nii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker\\nii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences\\nii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service\\nii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot\\nii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules\\nii language-pack-de 1:24.04+20240817 all translation updates for language German\\nii language-pack-de-base 1:24.04+20240817 all translations for language German\\nii language-pack-en 1:24.04+20240817 all translation updates for language English\\nii language-pack-en-base 1:24.04+20240817 all translations for language English\\nii language-pack-gnome-de 1:24.04+20240817 all GNOME translation updates for language German\\nii language-pack-gnome-de-base 1:24.04+20240817 all GNOME translations for language German\\nii language-pack-gnome-en 1:24.04+20240817 all GNOME translation updates for language English\\nii language-pack-gnome-en-base 1:24.04+20240817 all GNOME translations for language English\\nii language-selector-common 0.225 all Language selector for Ubuntu\\nii language-selector-gnome 0.225 all Language selector frontend for Ubuntu\\nii laptop-detect 0.16 all system chassis type checker\\nii less 590-2ubuntu2.1 amd64 pager program similar to more\\nii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library\\nii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library\\nii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries\\nii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library\\nii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones\\nii libaio1t64:amd64 0.3.113-6build1 amd64 Linux kernel AIO access library - shared library\\nii libalgorithm-diff-perl 1.201-1 all module to find differences between files\\nii libalgorithm-diff-xs-perl:amd64 0.04-8build3 amd64 module to find differences between files (XS accelerated)\\nii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data\\nii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)\\nii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library\\nii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library\\nii libapparmor1:amd64 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 changehat AppArmor library\\nii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services\\nii libapr1-dev 1.7.2-3.1build2 amd64 Apache Portable Runtime Library - Development Headers\\nii libapr1t64:amd64 1.7.2-3.1build2 amd64 Apache Portable Runtime Library\\nii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library\\nii libarchive13t64:amd64 3.7.2-2ubuntu0.1 amd64 Multi-format archive and compression library (shared library)\\nii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library\\nii libasan6:amd64 11.4.0-9ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers\\nii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications\\nii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library\\nii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components\\nii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library\\nii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library\\nii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge\\nii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library\\nii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit\\nii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)\\nii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions\\nii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions\\nii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library\\nii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library\\nii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files\\nii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing\\nii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework\\nii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library\\nii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files\\nii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library\\nii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi\'s embeddable mDNS/DNS-SD library\\nii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library\\nii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices\\nii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)\\nii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators\\nii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)\\nii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries\\nii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)\\nii libblkid-dev:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library - headers\\nii libblkid1:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library\\nii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev\\nii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev\\nii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev\\nii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev\\nii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev\\nii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev\\nii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev\\nii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev\\nii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices\\nii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack\\nii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library\\nii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization\\nii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading\\nii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)\\nii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)\\nii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library\\nii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)\\nii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library\\nii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions\\nii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations\\nii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes\\nii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime\\nii libc-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Binaries\\nii libc-dev-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Development binaries\\nii libc-devtools 2.39-0ubuntu8.3 amd64 GNU C Library: Development tools\\nii libc6:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Shared libraries\\nii libc6-dbg:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: detached debugging symbols\\nii libc6-dev:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Development Libraries and Header Files\\nii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library\\nii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl\\nii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)\\nii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library\\nii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)\\nii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library\\nii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)\\nii libcamel-1.2-64t64:amd64 3.52.3-0ubuntu1 amd64 Evolution MIME message handling library\\nii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library\\nii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra\\nii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds\\nii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra\\nii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds\\nii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library\\nii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)\\nii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)\\nii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)\\nii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB\\nii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs\\nii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction\\nii libcdio19t64:amd64 2.1.0-4.1ubuntu1.2 amd64 library to read and control CD-ROM\\nii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)\\nii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library\\nii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library\\nii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes\\nii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)\\nii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)\\nii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord\\nii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime\\nii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime\\nii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library\\nii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library\\nii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files\\nii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library\\nii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.1 amd64 disk encryption support - shared library\\nii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)\\nii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)\\nii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library\\nii libcups2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Core library\\nii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files\\nii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library\\nii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Raster image library\\nii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)\\nii libcurl4t64:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)\\nii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library\\nii libdata-dump-perl 1.25-1 all Perl module to help dump data structures\\nii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library\\nii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]\\nii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)\\nii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC\\nii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus\\nii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version\\nii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library\\nii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation\\nii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)\\nii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server\\nii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)\\nii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library\\nii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK\\nii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib\\nii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression\\nii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre\\nii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format\\nii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files\\nii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules\\nii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime\\nii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files\\nii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime\\nii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime\\nii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime\\nii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime\\nii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library\\nii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)\\nii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information\\nii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library\\nii libebackend-1.2-11t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libebook-1.2-21t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution address books\\nii libebook-contacts-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution contacts books\\nii libecal-2.0-3:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution calendars\\nii libedata-book-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution address books\\nii libedata-cal-2.0-2t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution calendars\\nii libedataserver-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedataserverui-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries\\nii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library\\nii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libegl-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library\\nii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support\\nii libei1:amd64 1.2.1-1 amd64 Emulated Input client library\\nii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library\\nii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files\\nii libenchant-2-2:amd64 2.3.3-2build2 amd64 Wrapper library for various spell checker engines (runtime libs)\\nii libencode-locale-perl 1.05-3 all utility to determine the locale encoding\\nii libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files\\nii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library\\nii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way\\nii libespeak-ng1:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: shared library\\nii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)\\nii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices\\nii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library\\nii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets\\nii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)\\nii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files\\nii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library\\nii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library\\nii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit\\nii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries\\nii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library\\nii libexttextcat-data 3.4.7-1build1 all Language detection library - data files\\nii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions\\nii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries\\nii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C\\nii libfdisk1:amd64 2.39.3-9ubuntu6.1 amd64 fdisk partitioning library\\nii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)\\nii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime\\nii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision\\nii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects\\nii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification\\nii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files\\nii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)\\nii libfile-listing-perl 6.16-1 all module to parse directory listings\\nii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types\\nii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library\\nii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library\\nii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files\\nii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime\\nii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library\\nii libfprint-2-2 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, shared libraries\\nii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, drivers shared libraries\\nii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX\\nii libfreeipmi17 1.6.13-3 amd64 GNU IPMI - libraries\\nii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)\\nii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)\\nii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files\\nii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm\\nii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers\\nii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)\\nii libfwupd2:amd64 1.9.24-1~24.04.1 amd64 Firmware update daemon library\\nii libgail-common:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- common modules\\nii libgail18t64:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- shared libraries\\nii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)\\nii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)\\nii libgbm1:amd64 24.0.9-0ubuntu0.1 amd64 generic buffer management API -- runtime\\nii libgcc-11-dev:amd64 11.4.0-9ubuntu1 amd64 GCC support library (development files)\\nii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)\\nii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library\\nii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks\\nii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks\\nii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks\\nii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library\\nii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library\\nii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files\\nii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries\\nii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version) \\nii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version) \\nii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library\\nii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library (thumbnailer)\\nii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 all GDK Pixbuf library - data files\\nii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)\\nii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library\\nii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service\\nii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim\\nii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library\\nii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)\\nii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)\\nii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data\\nii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform\\nii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support\\nii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules\\nii libgl1-mesa-dri:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules\\nii libglapi-mesa:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the GL API -- shared library\\nii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support\\nii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries\\nii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries\\nrc libglib2.0-0:amd64 2.72.4-0ubuntu2.3 amd64 GLib library of C routines\\nii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines\\nii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library\\nii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library\\nii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library\\nii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library\\nii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)\\nii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)\\nii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library\\nii libglx-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library\\nii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support\\nii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library\\nii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME\\nii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files\\nii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library\\nii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library\\nii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version\\nii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files\\nii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files\\nii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files\\nii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library\\nii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.2 amd64 GNU TLS library - main runtime library\\nii libgoa-1.0-0b:amd64 3.50.4-0ubuntu2 amd64 library for GNOME Online Accounts\\nii libgoa-1.0-common 3.50.4-0ubuntu2 all library for GNOME Online Accounts - common files\\nii libgoa-backend-1.0-2:amd64 3.50.4-0ubuntu2 amd64 backend library for GNOME Online Accounts\\nii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library\\nii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library\\nii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)\\nii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME\\nii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library\\nii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages\\nii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library\\nii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library\\nii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)\\nii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types\\nii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library\\nii libgs-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - ICC profiles\\nii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF - Library\\nii libgs10-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - common files\\nii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version\\nii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files\\nii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds\\nii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications\\nii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files\\nii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism\\nii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP\\nii libgstreamer-gl1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer GL libraries\\nii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer libraries from the \\"base\\" set\\nii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the \\"good\\" set\\nii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements\\nrc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library\\nii libgtk-3-0t64:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library\\nii libgtk-3-bin 3.24.41-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk-3-common 3.24.41-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library\\nii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library\\nii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library\\nii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library\\nrc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-bin 2.24.33-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk2.0-common 2.24.33-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library\\nii libgtkmm-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)\\nii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget\\nii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget\\nii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)\\nii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)\\nii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev\\nii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP\\nii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP\\nii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP\\nii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1\\nii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library\\nii libgweather-4-common 4.4.2-1build1 all GWeather common files\\nii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)\\nii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones\\nii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)\\nii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend\\nii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)\\nii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin\\nii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin\\nii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin\\nii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library\\nii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)\\nii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries\\nii libhtml-form-perl 6.11-1 all module that represents an HTML form element\\nii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats\\nii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents\\nii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML\\nii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees\\nii libhttp-cookies-perl 6.11-1 all HTTP cookie jars\\nii libhttp-daemon-perl 6.16-1 all simple http server class\\nii libhttp-date-perl 6.06-1 all module of date conversion routines\\nii libhttp-message-perl 6.45-1ubuntu1 all perl interface to HTTP style messages\\nii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation\\nii libhunspell-1.7-0:amd64 1.7.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)\\nii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library\\nii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library\\nii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)\\nii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)\\nii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library\\nii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode\\nii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications\\nii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library\\nii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)\\nii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access\\nii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library\\nii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library\\nii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices\\nii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser\\nii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks\\nii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library\\nii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection\\nii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets\\nii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)\\nii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library\\nii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library\\nii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics\\nii libipmiconsole2 1.6.13-3 amd64 GNU IPMI - Serial-over-Lan library\\nii libipmidetect0 1.6.13-3 amd64 GNU IPMI - IPMI node detection library\\nii libipsec-mb1 1.5-1build1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library\\nii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library\\nii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints\\nii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems\\nii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images\\nii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library\\nii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library\\nii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data\\nii libjavascriptcoregtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjavascriptcoregtk-6.0-1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries\\nii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries\\nii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library\\nii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library\\nii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group\'s JPEG runtime library (dependency package)\\nii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library\\nii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications\\nii libjs-sphinxdoc 7.2.6-6 all JavaScript support for Sphinx documentation\\nii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript\'s functional programming helper library\\nii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library\\nii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library\\nii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)\\nii libjudydebian1 1.0.5-5.1build1 amd64 C library for creating and accessing dynamic arrays\\nii libk5crypto3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Crypto Library\\nii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)\\nii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs\\nii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library\\nii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)\\nii libkrb5-3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries\\nii libkrb5support0:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Support library\\nii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library\\nii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data\\nii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages\\nii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)\\nii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library\\nii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)\\nii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)\\nii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)\\nii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries\\nii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries\\nii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library\\nii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library\\nii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library\\nii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl\\nii liblouis-data 3.29.0-1build1 all Braille translation library - data\\nii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs\\nii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities\\nii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data\\nii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs\\nii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)\\nii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool\\nii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)\\nii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)\\nii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)\\nii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4\\nii libluajit-5.1-2:amd64 2.1.0+git20231223.c525bcb+dfsg-1 amd64 Just in time compiler for Lua - library version\\nii libluajit-5.1-common 2.1.0+git20231223.c525bcb+dfsg-1 all Just in time compiler for Lua - common files\\nii liblwp-mediatypes-perl 6.04-2 all module to guess media type for a file or a URL\\nii liblwp-protocol-https-perl 6.13-1 all HTTPS driver for LWP::UserAgent\\nii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime\\nii liblzma5:amd64 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression library\\nii liblzo2-2:amd64 2.10-2build4 amd64 data compression library\\nii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using \\"magic\\" numbers (compiled magic file)\\nrc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs\\nii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library\\nii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library\\nii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol\\nii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports\\nii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line\\nii libmd0:amd64 1.1.0-2build1 amd64 message digest functions from BSD systems - shared library\\nii libmediaart-2.0-0:amd64 1.9.6-1build2 amd64 media art extraction and cache management library\\nii libmhash2:amd64 0.9.9.9-9build3 amd64 Library for cryptographic hashing and message authentication\\nii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries\\nii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library\\nii libmount-dev:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library - headers\\nii libmount1:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library\\nii libmozjs-115-0t64:amd64 115.10.0-1 amd64 SpiderMonkey JavaScript library\\nii libmp3lame0:amd64 3.100-6build1 amd64 MP3 encoding library\\nii libmpc3:amd64 1.3.1-1build1 amd64 multiple precision complex floating-point library\\nii libmpfr6:amd64 4.2.1-1build1 amd64 multiple precision floating-point computation\\nii libmpg123-0t64:amd64 1.32.5-1ubuntu1 amd64 MPEG layer 1/2/3 audio decoder (shared library)\\nii libmsgraph-0-1:amd64 0.2.1-0ubuntu3 amd64 library for accessing the Microsoft Graph API\\nii libmtdev1t64:amd64 1.1.6-1.1build1 amd64 Multitouch Protocol Translation Library - shared library\\nii libmtp-common 1.1.21-3.1build1 all Media Transfer Protocol (MTP) common files\\nii libmtp-runtime 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) runtime tools\\nii libmtp9t64:amd64 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) library\\nii libmutter-14-0:amd64 46.2-1ubuntu0.24.04.1 amd64 window manager library from the Mutter window manager\\nii libmysqlclient21:amd64 8.0.39-0ubuntu0.24.04.2 amd64 MySQL database client library\\nii libmythes-1.2-0:amd64 2:1.2.5-1build1 amd64 simple thesaurus library\\nii libnautilus-extension4:amd64 1:46.2-0ubuntu0.2 amd64 libraries for nautilus components - runtime version\\nii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling\\nii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)\\nii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol\\nii libnet-dbus-perl 1.2.0-2build3 amd64 Perl extension for the DBus bindings\\nii libnet-http-perl 6.23-1 all module providing low-level HTTP connection client\\nii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP\\nii libnet-ssleay-perl:amd64 1.94-1build4 amd64 Perl module for Secure Sockets Layer (SSL)\\nii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library\\nii libnetplan1:amd64 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration runtime library\\nii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)\\nii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik\'s Windowing Toolkit - text mode windowing with slang\\nii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library\\nii libnfs14:amd64 5.0.2-1build1 amd64 NFS client library (shared library)\\nii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library\\nii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library\\nii libnghttp2-14:amd64 1.59.0-1ubuntu0.1 amd64 library implementing HTTP/2 protocol (shared library)\\nii libnl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets\\nii libnl-genl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - generic netlink\\nii libnl-route-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - route interface\\nii libnm0:amd64 1.46.0-1ubuntu2 amd64 GObject-based client library for NetworkManager\\nii libnma-common 1.10.6-3build2 all NetworkManager GUI library - translations\\nii libnma-gtk4-0:amd64 1.10.6-3build2 amd64 NetworkManager GUI GTK4 library\\nii libnma0:amd64 1.10.6-3build2 amd64 NetworkManager GUI library\\nii libnotify-bin 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Utilities)\\nii libnotify4:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon\\nii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads\\nii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library\\nii libnss-mdns:amd64 0.15.1-4build1 amd64 NSS module for Multicast DNS name resolution\\nii libnss-systemd:amd64 255.4-1ubuntu8.4 amd64 nss module providing dynamic user and group name resolution\\nii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries\\nii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)\\nii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy\\nii libnvme1t64 1.8-3build1 amd64 NVMe management library (library)\\nii libogg0:amd64 1.3.5-3build1 amd64 Ogg bitstream library\\nii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library\\nii libopengl0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- OpenGL support\\nii libopenipmi0t64 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface - runtime\\nii libopenjp2-7:amd64 2.5.0-2build3 amd64 JPEG 2000 image compression/decompression library\\nii libopus0:amd64 1.4-1build1 amd64 Opus codec runtime library\\nii liborc-0.4-0t64:amd64 1:0.4.38-1ubuntu0.1 amd64 Library of Optimized Inner Loops Runtime Compiler\\nii liborcus-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents\\nii liborcus-parser-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents - parser library\\nii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime\\nii libpackagekit-glib2-18:amd64 1.2.8-2build3 amd64 Library for accessing PackageKit using GLib\\nii libpam-cap:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (PAM module)\\nii libpam-fprintd:amd64 1.94.3-1 amd64 PAM module for fingerprint authentication through fprintd\\nii libpam-gnome-keyring:amd64 46.1-2build1 amd64 PAM module to unlock the GNOME keyring upon login\\nii libpam-modules:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM\\nii libpam-modules-bin 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM - helper binaries\\nii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength\\nii libpam-runtime 1.5.3-5ubuntu5.1 all Runtime support for the PAM library\\nii libpam-sss:amd64 2.9.4-1.1ubuntu6.1 amd64 Pam module for the System Security Services Daemon\\nii libpam-systemd:amd64 255.4-1ubuntu8.4 amd64 system and service manager - PAM module\\nii libpam0g:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules library\\nii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangomm-2.48-1t64:amd64 2.52.0-1build1 amd64 C++ Wrapper for pango (shared libraries)\\nii libpangoxft-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)\\nii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics\\nii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library\\nii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture\\nii libpcaudio0:amd64 1.2-2build3 amd64 C API to different audio devices - shared library\\nii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)\\nii libpciaccess0:amd64 0.17-3build1 amd64 Generic PCI access library for X\\nii libpcre2-16-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files\\nii libpcre2-32-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 32 bit runtime files\\nii libpcre2-8-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files\\nii libpcre2-dev:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - development files\\nii libpcre2-posix3:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files\\nii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)\\nii libpeas-1.0-0:amd64 1.36.0-3build4 amd64 Application plugin library\\nii libpeas-common 1.36.0-3build4 all Application plugin library (common files)\\nii libperl5.38t64:amd64 5.38.2-3.2build2 amd64 shared Perl library\\nii libphonenumber8:amd64 8.12.57+ds-4.2build3 amd64 parsing/formatting/validating phone numbers\\nii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library\\nii libpipewire-0.3-0t64:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server\\nii libpipewire-0.3-common 1.0.5-1ubuntu1 all libraries for the PipeWire multimedia server - common files\\nii libpipewire-0.3-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - modules\\nii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo\\nii libpkcs11-helper1t64:amd64 1.29.0-2.1build2 amd64 library that simplifies the interaction with PKCS#11\\nii libpkgconf3:amd64 1.8.1-2build1 amd64 shared library for pkgconf\\nii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists\\nii libplymouth5:amd64 24.004.60-1ubuntu7 amd64 graphical boot animation and logger - shared libraries\\nii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)\\nii libpolkit-agent-1-0:amd64 124-2ubuntu1 amd64 polkit Authentication Agent API\\nii libpolkit-gobject-1-0:amd64 124-2ubuntu1 amd64 polkit Authorization API\\nii libpoppler-cpp0t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (CPP shared library)\\nii libpoppler-glib8t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (GLib-based shared library)\\nii libpoppler134:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library\\nii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters\\nii libportal-gtk4-1:amd64 0.7.1-5build5 amd64 Flatpak portal library for GTK 4 GUIs\\nii libportal1:amd64 0.7.1-5build5 amd64 Flatpak portal library - non-GUI part\\nii libppd2:amd64 2:2.0.0-0ubuntu4 amd64 OpenPrinting libppd - Shared library\\nii libppd2-common 2:2.0.0-0ubuntu4 all OpenPrinting libppd - Auxiliary files\\nii libpq5:amd64 16.4-0ubuntu0.24.04.2 amd64 PostgreSQL C client library\\nii libproc2-0:amd64 2:4.0.4-4ubuntu3 amd64 library for accessing process information from /proc\\nii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)\\nii libprotobuf32t64:amd64 3.21.12-8.2build1 amd64 protocol buffers C++ library\\nii libproxy1-plugin-gsettings:amd64 0.5.4-4build1 amd64 transitional package for libproxy GSettings plugin\\nii libproxy1-plugin-networkmanager:amd64 0.5.4-4build1 amd64 transitional package for libproxy NetworkManager plugin\\nii libproxy1v5:amd64 0.5.4-4build1 amd64 automatic proxy configuration management library (shared)\\nii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)\\nii libpulse-mainloop-glib0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries (glib support)\\nii libpulse0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries\\nii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)\\nii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation\\nii libpython3-dev:amd64 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii libpython3.12-dev:amd64 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (standard library, version 3.12)\\nii libpython3.12t64:amd64 3.12.3-1ubuntu0.1 amd64 Shared Python runtime library (version 3.12)\\nii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol\\nii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports\\nii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line\\nii libqpdf29t64:amd64 11.9.0-1.1build1 amd64 runtime library for PDF transformation/inspection software\\nii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol\\nii libquadmath0:amd64 14-20240412-0ubuntu1 amd64 GCC Quad-Precision Math Library\\nii libraptor2-0:amd64 2.0.16-3build3 amd64 Raptor 2 RDF syntax library\\nii libraqm0:amd64 0.10.1-1build1 amd64 Library for complex text layout\\nii librasqal3t64:amd64 0.9.33-2.1build1 amd64 Rasqal RDF query library\\nii libraw1394-11:amd64 2.1.2-2build3 amd64 library for direct access to IEEE 1394 bus (aka FireWire)\\nii librdf0t64:amd64 1.0.17-3.1ubuntu3 amd64 Redland Resource Description Framework (RDF) library\\nii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries\\nii libreoffice-common 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- arch-independent files\\nii libreoffice-core 4:24.2.5-0ubuntu0.24.04.2 amd64 office productivity suite -- arch-dependent files\\nii libreoffice-style-colibre 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- colibre symbol style\\nii libreoffice-style-yaru 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- Yaru symbol style\\nii libreoffice-uiconfig-common 4:24.2.5-0ubuntu0.24.04.2 all UI data (\\"config\\") for LibreOffice (\\"common\\" set)\\nii librest-1.0-0:amd64 0.9.1-6build3 amd64 REST service access library\\nii librevenge-0.0-0:amd64 0.0.5-3build1 amd64 Base Library for writing document interface filters\\nii libroc0.3:amd64 0.3.0+dfsg-7ubuntu2 amd64 real-time audio streaming over the network (shared library)\\nii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)\\nii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)\\nii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)\\nii librygel-core-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - core library\\nii librygel-db-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - db library\\nii librygel-renderer-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - renderer library\\nii librygel-server-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - server library\\nii libsamplerate0:amd64 0.2.2-4build1 amd64 Audio sample rate conversion library\\nii libsane-common 1.2.1-7build4 all API library for scanners -- documentation and support files\\nii libsane-hpaio:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP SANE backend for multi-function peripherals\\nii libsane1:amd64 1.2.1-7build4 amd64 API library for scanners\\nii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library\\nii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules\\nii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)\\nii libsbc1:amd64 2.0-1build1 amd64 Sub Band CODEC library - runtime\\nii libsctp-dev:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - development files\\nii libsctp1:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - shared library\\nii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter\\nii libsecret-1-0:amd64 0.21.4-1build3 amd64 Secret store\\nii libsecret-common 0.21.4-1build3 all Secret store (common files)\\nii libselinux1:amd64 3.5-2ubuntu2 amd64 SELinux runtime shared libraries\\nii libselinux1-dev:amd64 3.5-2ubuntu2 amd64 SELinux development headers\\nii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries\\nii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library\\nii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files\\nii libsensors-dev:amd64 1:3.6.0-9build1 amd64 lm-sensors development kit\\nii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors\\nii libsepol-dev:amd64 3.5-2build1 amd64 SELinux binary policy manipulation library and development files\\nii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies\\nii libsframe1:amd64 2.42-4ubuntu2 amd64 Library to handle the SFrame format (runtime library)\\nii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion\\nii libshout3:amd64 2.4.6-1build2 amd64 MP3/Ogg Vorbis broadcast streaming library\\nii libsigc++-3.0-0:amd64 3.6.0-2 amd64 type-safe Signal Framework for C++ - runtime\\nii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version\\nii libslirp0:amd64 4.7.0-1ubuntu3 amd64 General purpose TCP-IP emulator library\\nii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library\\nii libsmartcols1:amd64 2.39.3-9ubuntu6.1 amd64 smart column output alignment library\\nii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 shared library for communication with SMB/CIFS servers\\nii libsnapd-glib-2-1:amd64 1.64-0ubuntu5 amd64 GLib snapd library\\nii libsndfile1:amd64 1.2.2-1ubuntu5 amd64 Library for reading/writing audio files\\nii libsnmp-base 5.9.4+dfsg-1.1ubuntu3 all SNMP configuration script, MIBs and documentation\\nii libsnmp40t64:amd64 5.9.4+dfsg-1.1ubuntu3 amd64 SNMP (Simple Network Management Protocol) library\\nii libsonic0:amd64 0.2.0-13build1 amd64 Simple library to speed up or slow down speech\\nii libsoup-2.4-1:amd64 2.74.3-6ubuntu1 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-0:amd64 3.4.4-5build2 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-common 3.4.4-5build2 all HTTP library implementation in C -- Common files\\nii libsoup2.4-common 2.74.3-6ubuntu1 all HTTP library implementation in C -- Common files\\nii libsource-highlight-common 3.1.9-4.3build1 all architecture-independent files for source highlighting library\\nii libsource-highlight4t64:amd64 3.1.9-4.3build1 amd64 source highlighting library\\nii libspa-0.2-bluetooth:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - bluetooth plugins\\nii libspa-0.2-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server Simple Plugin API - modules\\nii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents\\nii libspeechd2:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Shared libraries\\nii libspeex1:amd64 1.2.1-2ubuntu2 amd64 The Speex codec runtime library\\nii libspeexdsp1:amd64 1.2.1-1ubuntu3 amd64 DSP library derived from speex\\nii libsqlite3-0:amd64 3.45.1-1ubuntu2 amd64 SQLite 3 shared library\\nii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library\\nii libssh-4:amd64 0.10.6-2build2 amd64 tiny C SSH library (OpenSSL flavor)\\nrc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libssl3t64:amd64 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libstartup-notification0:amd64 0.12-6build3 amd64 library for program launch feedback (shared library)\\nii libstdc++-13-dev:amd64 13.2.0-23ubuntu4 amd64 GNU Standard C++ Library v3 (development files)\\nii libstdc++6:amd64 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3\\nii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval\\nii libsynctex2:amd64 2023.20230311.66589-9build3 amd64 TeX Live: SyncTeX parser library\\nii libsysmetrics1:amd64 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics - shared lib\\nii libsystemd-shared:amd64 255.4-1ubuntu8.4 amd64 systemd shared private library\\nii libsystemd0:amd64 255.4-1ubuntu8.4 amd64 systemd utility library\\nii libtag1v5:amd64 1.13.1-1build1 amd64 audio meta-data library\\nii libtag1v5-vanilla:amd64 1.13.1-1build1 amd64 audio meta-data library - vanilla flavour\\nii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator\\nii libtasn1-6:amd64 4.19.0-3build1 amd64 Manage ASN.1 structures (runtime)\\nii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files\\nii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library\\nii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process\\nii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library\\nii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal\\nii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl\\nii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap\\nii libthai-data 0.1.29-2build1 all Data files for Thai language support library\\nii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library\\nii libtheora0:amd64 1.1.1+dfsg.1-16.1build3 amd64 Theora Video Compression Codec\\nii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays\\nii libtiff6:amd64 4.5.1+git230720-4ubuntu2.2 amd64 Tag Image File Format (TIFF) library\\nii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information\\nii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling\\nii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files\\nii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library\\nii libtotem-plparser-common 3.26.6-1build5 all Totem Playlist Parser library - common files\\nii libtotem-plparser18:amd64 3.26.6-1build5 amd64 Totem Playlist Parser library - runtime files\\nii libtraceevent1:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (shared library)\\nii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (plugins)\\nii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)\\nii libtracker-sparql-3.0-0:amd64 3.7.1-1build1 amd64 metadata database, indexer and search tool - library\\nii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch\\nii libtsan0:amd64 11.4.0-9ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtsan2:amd64 14-20240412-0ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-rc0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-libtpms0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-spi-helper0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tctildr0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtwolame0:amd64 0.4.0-2build3 amd64 MPEG Audio Layer 2 encoding library\\nii libu2f-udev 1.1.10-3build3 all Universal 2nd Factor (U2F) — transitional package\\nii libubsan1:amd64 14-20240412-0ubuntu1 amd64 UBSan -- undefined behaviour sanitizer (runtime)\\nii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library\\nii libudev1:amd64 255.4-1ubuntu8.4 amd64 libudev shared library\\nii libudisks2-0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2\\nii libunistring5:amd64 1.1-2build1 amd64 Unicode string library for C\\nii libunity-protocol-private0:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - private library\\nii libunity-scopes-json-def-desktop 7.1.4+19.04.20190319-6build4 all binding to get places into the launcher - desktop def file\\nii libunity9:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - shared library\\nii libuno-cppu3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU public library\\nii libuno-cppuhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU helper library\\nii libuno-purpenvhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- \\"purpose environment\\" helper\\nii libuno-sal3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL public library\\nii libuno-salhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library\\nii libunwind8:amd64 1.6.2-3build1 amd64 library to determine the call-chain of a program - runtime\\nii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library\\nii liburi-perl 5.27-1 all module to manipulate and access URI strings\\nii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library\\nii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library\\nii libuuid1:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library\\nii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library\\nii libv4l-0t64:amd64 1.26.1-4build3 amd64 Collection of video4linux support libraries\\nii libv4lconvert0t64:amd64 1.26.1-4build3 amd64 Video4linux frame format conversion library\\nii libvisual-0.4-0:amd64 0.4.2-2build1 amd64 audio visualization framework\\nii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases\\nii libvorbis0a:amd64 1.3.7-1build3 amd64 decoder library for Vorbis General Audio Compression Codec\\nii libvorbisenc2:amd64 1.3.7-1build3 amd64 encoder library for Vorbis General Audio Compression Codec\\nii libvorbisfile3:amd64 1.3.7-1build3 amd64 high-level API for Vorbis General Audio Compression Codec\\nii libvpx9:amd64 1.14.0-1ubuntu2.1 amd64 VP8 and VP9 video codec (shared library)\\nii libvte-2.91-0:amd64 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime files\\nii libvte-2.91-common 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - common files\\nii libvulkan1:amd64 1.3.275.0-1build1 amd64 Vulkan loader library\\nii libwacom-common 2.10.0-2 all Wacom model feature query library (common files)\\nii libwacom9:amd64 2.10.0-2 amd64 Wacom model feature query library\\nii libwavpack1:amd64 5.6.0-1build1 amd64 audio codec (lossy and lossless) - library\\nii libwayland-client0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - client library\\nii libwayland-cursor0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - cursor library\\nii libwayland-egl1:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - EGL library\\nii libwayland-server0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - server library\\nii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba winbind client library\\nii libwebkit2gtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebkitgtk-6.0-4:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.\\nii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebrtc-audio-processing1:amd64 0.3.1-0ubuntu6 amd64 AudioProcessing module from the WebRTC project.\\nii libwhoopsie-preferences0 23build3 amd64 Ubuntu error tracker submission settings - shared library\\nii libwhoopsie0:amd64 0.2.77build3 amd64 Ubuntu error tracker submission - shared library\\nii libwinpr3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Windows Portable Runtime library\\nii libwireplumber-0.4-0:amd64 0.4.17-1ubuntu4 amd64 Shared libraries for WirePlumber\\nii libwmf-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion library\\nii libwmf-0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin\\nii libwmf0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin - transitional package\\nii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library\\nii libwnck-3-0:amd64 43.0-3build4 amd64 Window Navigator Construction Kit - runtime files\\nii libwnck-3-common 43.0-3build4 all Window Navigator Construction Kit - common files\\nii libwoff1:amd64 1.0.2-2build1 amd64 library for converting fonts to WOFF 2.0\\nii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema\'s TCP wrappers library\\nii libwww-perl 6.76-1 all simple and consistent interface to the world-wide web\\nii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions\\nii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library\\nii libx11-data 2:1.8.7-1build1 all X11 client-side library\\nii libx11-protocol-perl 0.56-9 all Perl module for the X Window System Protocol, version 11\\nii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library\\nii libxatracker2:amd64 24.0.9-0ubuntu0.1 amd64 X acceleration library -- runtime\\nii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library\\nii libxaw7:amd64 2:1.0.14-1build2 amd64 X11 Athena Widget library\\nii libxcb-damage0:amd64 1.15-1ubuntu2 amd64 X C Binding, damage extension\\nii libxcb-dri2-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri2 extension\\nii libxcb-dri3-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri3 extension\\nii libxcb-glx0:amd64 1.15-1ubuntu2 amd64 X C Binding, glx extension\\nii libxcb-icccm4:amd64 0.4.1-1.1build3 amd64 utility libraries for X C Binding -- icccm\\nii libxcb-image0:amd64 0.4.0-2build1 amd64 utility libraries for X C Binding -- image\\nii libxcb-keysyms1:amd64 0.4.0-1build4 amd64 utility libraries for X C Binding -- keysyms\\nii libxcb-present0:amd64 1.15-1ubuntu2 amd64 X C Binding, present extension\\nii libxcb-randr0:amd64 1.15-1ubuntu2 amd64 X C Binding, randr extension\\nii libxcb-render-util0:amd64 0.3.9-1build4 amd64 utility libraries for X C Binding -- render-util\\nii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension\\nii libxcb-res0:amd64 1.15-1ubuntu2 amd64 X C Binding, res extension\\nii libxcb-shape0:amd64 1.15-1ubuntu2 amd64 X C Binding, shape extension\\nii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension\\nii libxcb-sync1:amd64 1.15-1ubuntu2 amd64 X C Binding, sync extension\\nii libxcb-util1:amd64 0.4.0-1build3 amd64 utility libraries for X C Binding -- atom, aux and event\\nii libxcb-xfixes0:amd64 1.15-1ubuntu2 amd64 X C Binding, xfixes extension\\nii libxcb-xkb1:amd64 1.15-1ubuntu2 amd64 X C Binding, XKEYBOARD extension\\nii libxcb-xv0:amd64 1.15-1ubuntu2 amd64 X C Binding, xv extension\\nii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding\\nii libxcomposite1:amd64 1:0.4.5-1build3 amd64 X11 Composite extension library\\nii libxcursor1:amd64 1:1.2.1-1build1 amd64 X cursor management library\\nii libxcvt0:amd64 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator -- shared library\\nii libxdamage1:amd64 1:1.1.6-1build1 amd64 X11 damaged region extension library\\nii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library\\nii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library\\nii libxfixes3:amd64 1:6.0.0-2build1 amd64 X11 miscellaneous \'fixes\' extension library\\nii libxfont2:amd64 1:2.0.6-1build1 amd64 X11 font rasterisation library\\nii libxft2:amd64 2.3.6-1build1 amd64 FreeType-based font drawing library for X\\nii libxi6:amd64 2:1.8.1-1build1 amd64 X11 Input extension library\\nii libxinerama1:amd64 2:1.1.4-3build1 amd64 X11 Xinerama extension library\\nii libxkbcommon-x11-0:amd64 1.6.0-1build1 amd64 library to create keymaps with the XKB X11 protocol\\nii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library\\nii libxkbfile1:amd64 1:1.1.0-1build4 amd64 X11 keyboard file manipulation library\\nii libxkbregistry0:amd64 1.6.0-1build1 amd64 library to query available RMLVO\\nii libxklavier16:amd64 5.4-5build2 amd64 X Keyboard Extension high-level API\\nii libxml-parser-perl 2.47-1build3 amd64 Perl module for parsing XML files\\nii libxml-twig-perl 1:3.52-2 all Perl module for processing huge XML documents in tree mode\\nii libxml-xpathengine-perl 0.14-2 all re-usable XPath engine for DOM-like trees\\nii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3 amd64 GNOME XML library\\nii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library\\nii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library\\nii libxmlsec1t64-nss:amd64 1.2.39-5build2 amd64 Nss engine for the XML security library\\nii libxmu6:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous utility library\\nii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library\\nii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library\\nii libxrandr2:amd64 2:1.5.2-2build1 amd64 X11 RandR extension library\\nii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library\\nii libxres1:amd64 2:1.2.1-1build1 amd64 X11 Resource extension library\\nii libxshmfence1:amd64 1.3-1build5 amd64 X shared memory fences - shared library\\nii libxslt1.1:amd64 1.1.39-0exp1build1 amd64 XSLT 1.0 processing library - runtime library\\nii libxss1:amd64 1:1.2.3-1build3 amd64 X11 Screen Saver extension library\\nii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library\\nii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library\\nii libxtst6:amd64 2:1.2.3-1.1build1 amd64 X11 Testing -- Record extension library\\nii libxv1:amd64 2:1.0.11-1.1build1 amd64 X11 Video extension library\\nii libxvmc1:amd64 2:1.0.12-2build3 amd64 X11 Video extension library\\nii libxxf86dga1:amd64 2:1.1.5-1build1 amd64 X11 Direct Graphics Access extension library\\nii libxxf86vm1:amd64 1:1.1.4-1build4 amd64 X11 XFree86 video mode extension library\\nii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash\\nii libyajl2:amd64 2.1.0-5build1 amd64 Yet Another JSON Library\\nii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library\\nii libyelp0:amd64 42.2-1build2 amd64 Library for the GNOME help browser\\nii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm\\nii linux-base 4.5ubuntu9 all Linux image base package\\nii linux-firmware 20240318.git3b128b60-0ubuntu2.3 amd64 Firmware for Linux kernel drivers\\nii linux-generic 6.8.0-44.44 amd64 Complete Generic Linux kernel and headers\\nii linux-headers-6.8.0-40 6.8.0-40.40 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-6.8.0-44 6.8.0-44.44 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-generic 6.8.0-44.44 amd64 Generic Linux kernel headers\\nrc linux-image-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Signed kernel image generic\\nii linux-image-6.8.0-40-generic 6.8.0-40.40 amd64 Signed kernel image generic\\nii linux-image-6.8.0-44-generic 6.8.0-44.44 amd64 Signed kernel image generic\\nii linux-image-generic 6.8.0-44.44 amd64 Generic Linux kernel image\\nii linux-libc-dev:amd64 6.8.0-44.44 amd64 Linux Kernel Headers for development\\nrc linux-modules-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-sound-base 1.0.25+dfsg-0ubuntu7 all base package for ALSA and OSS sound systems\\nii linux-tools-6.8.0-40 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-44 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-common 6.8.0-44.44 all Linux kernel version specific tools for version 6.8.0\\nii lm-sensors 1:3.6.0-9build1 amd64 utilities to read temperature/voltage/fan sensors\\nii locales 2.39-0ubuntu8.3 all GNU C Library: National Language (locale) data [support]\\nii login 1:4.13+dfsg1-4ubuntu3 amd64 system login tools\\nii logrotate 3.21.0-2build1 amd64 Log rotation utility\\nii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file\\nii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality\\nii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)\\nii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration\\nii lsof 4.95.0-1build3 amd64 utility to list open files\\nii lto-disabled-list 47 all list of packages not to build with LTO\\nii mailcap 3.70+nmu1ubuntu1 all Debian\'s mailcap system, and support programs\\nii make 4.3-4.1build2 amd64 utility for directing compilation\\nii man-db 2.12.0-4build2 amd64 tools for reading manual pages\\nii manpages 6.7-2 all Manual pages about using a GNU/Linux system\\nii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development\\nii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language\\nii media-types 10.1.0 all List of standard media types and their usual file extension\\nii memtest86+ 7.00-1build1 amd64 stand-alone memory tester for x86 and x86-64\\nii mesa-vulkan-drivers:amd64 24.0.9-0ubuntu0.1 amd64 Mesa Vulkan graphics drivers\\nii mobile-broadband-provider-info 20230416-1 all database of mobile broadband service providers\\nii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems\\nii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys\\nii mongodb-database-tools 100.9.4 amd64 mongodb-database-tools package provides tools for working with the MongoDB server: \\nii mongodb-org-database-tools-extra 7.0.9 amd64 Extra MongoDB database tools\\nii mongodb-org-server 7.0.9 amd64 MongoDB database server\\nii mongodb-org-shell 7.0.9 amd64 MongoDB shell client\\nii mongodb-org-tools 7.0.9 amd64 MongoDB tools\\nii mount 2.39.3-9ubuntu6.1 amd64 tools for mounting and manipulating filesystems\\nii mousetweaks 3.32.0-4build2 amd64 mouse accessibility enhancements for the GNOME desktop\\nii mscompress 0.4-10build1 amd64 Microsoft \\"compress.exe/expand.exe\\" compatible (de)compressor\\nii msr-tools 1.3-5build1 amd64 Utilities for modifying MSRs from userspace\\nii mtr-tiny 0.95-1.1build2 amd64 Full screen ncurses traceroute tool\\nii mutter-common 46.2-1ubuntu0.24.04.1 all shared files for the Mutter window manager\\nii mutter-common-bin 46.2-1ubuntu0.24.04.1 amd64 shared programs for the Mutter window manager\\nii mysql-common 5.8+1.1.0build1 all MySQL database common files, e.g. /etc/mysql/my.cnf\\nii nano 7.2-2build1 amd64 small, friendly text editor inspired by Pico\\nii nautilus 1:46.2-0ubuntu0.2 amd64 file manager and graphical shell for GNOME\\nii nautilus-data 1:46.2-0ubuntu0.2 all data files for nautilus\\nii nautilus-extension-gnome-terminal:amd64 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application - Nautilus extension\\nii nautilus-sendto 3.8.6-7build2 amd64 easily send files via email from within Nautilus\\nii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions\\nii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages\\nii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions\\nii net-tools 2.10-0.1ubuntu4 amd64 NET-3 networking toolkit\\nii netbase 6.4 all Basic TCP/IP networking system\\nii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife\\nii netplan-generator 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration systemd-generator\\nii netplan.io 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration for various backends\\nii network-manager 1.46.0-1ubuntu2 amd64 network management framework (daemon and userspace tools)\\nii network-manager-config-connectivity-ubuntu 1.46.0-1ubuntu2 all NetworkManager configuration to enable connectivity checking\\nii network-manager-gnome 1.34.0-1ubuntu3 amd64 network management framework (GNOME frontend)\\nii network-manager-openvpn 1.10.2-4build2 amd64 network management framework (OpenVPN plugin core)\\nii network-manager-openvpn-gnome 1.10.2-4build2 amd64 network management framework (OpenVPN plugin GNOME GUI)\\nii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)\\nii network-manager-pptp-gnome 1.2.12-3build2 amd64 network management framework (PPTP plugin GNOME GUI)\\nii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes\\nii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project\\nii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE\\nii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool\\nii openipmi 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface (for servers)\\nii openjdk-17-jre-headless:amd64 17.0.12+7-1ubuntu2~24.04 amd64 OpenJDK Java runtime, using Hotspot JIT (headless)\\nii openprinting-ppds 20230202-1 all OpenPrinting printer support - PostScript PPD files\\nii openssh-client 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) client, for secure access to remote machines\\nii openssh-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) server, for secure access from remote machines\\nii openssh-sftp-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines\\nii openssl 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - cryptographic utility\\nii openvpn 2.6.9-1ubuntu4.1 amd64 virtual private network daemon\\nii orca 46.1-1ubuntu1 all Scriptable screen reader\\nii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives\\nii p11-kit 0.25.3-4ubuntu2.1 amd64 p11-glue utilities\\nii p11-kit-modules:amd64 0.25.3-4ubuntu2.1 amd64 p11-glue proxy and trust modules\\nii packagekit 1.2.8-2build3 amd64 Provides a package management service\\nii packagekit-tools 1.2.8-2build3 amd64 Provides PackageKit command-line tools\\nii parted 3.6-4build1 amd64 disk partition manipulator\\nii passwd 1:4.13+dfsg1-4ubuntu3 amd64 change and administer password and group data\\nii pastebinit 1.6.2-1 all command-line pastebin client\\nii patch 2.7.6-7build3 amd64 Apply a diff file to an original\\nii pci.ids 0.0~2024.03.31-1 all PCI ID Repository\\nii pciutils 1:3.10.0-2build1 amd64 PCI utilities\\nii pcmciautils 018-14build1 amd64 PCMCIA utilities for Linux 2.6\\nii perl 5.38.2-3.2build2 amd64 Larry Wall\'s Practical Extraction and Report Language\\nii perl-base 5.38.2-3.2build2 amd64 minimal Perl system\\nii perl-modules-5.38 5.38.2-3.2build2 all Core Perl modules\\nii perl-openssl-defaults:amd64 7build3 amd64 version compatibility baseline for Perl OpenSSL packages\\nii pigz 2.8-1 amd64 Parallel Implementation of GZip\\nii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG\\nii pinentry-gnome3 1.2.1-3ubuntu5 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG\\nii pipewire:amd64 1.0.5-1ubuntu1 amd64 audio and video processing engine multimedia server\\nii pipewire-alsa:amd64 1.0.5-1ubuntu1 amd64 PipeWire ALSA plugin, for ALSA applications to output via PipeWire\\nii pipewire-audio 1.0.5-1ubuntu1 all recommended set of PipeWire packages for a standard audio desktop use\\nii pipewire-bin 1.0.5-1ubuntu1 amd64 PipeWire multimedia server - programs\\nrc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire\\nii pipewire-pulse 1.0.5-1ubuntu1 amd64 PipeWire PulseAudio daemon\\nii pkexec 124-2ubuntu1 amd64 run commands as another user with polkit authorization\\nii pkgconf:amd64 1.8.1-2build1 amd64 manage compile and link flags for libraries\\nii pkgconf-bin 1.8.1-2build1 amd64 manage compile and link flags for libraries (binaries)\\nii plymouth 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer\\nii plymouth-label 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - label control\\nii plymouth-theme-spinner 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - spinner theme\\nii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme\\nii policykit-1 124-2ubuntu1 amd64 transitional package for polkitd and pkexec\\nii policykit-desktop-privileges 0.22 all run common desktop actions without password\\nii polkitd 124-2ubuntu1 amd64 framework for managing administrative policies and privileges\\nii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library\\nii poppler-utils 24.02.0-1ubuntu9.1 amd64 PDF utilities (based on Poppler)\\nii power-profiles-daemon 0.21-1 amd64 Makes power profiles handling available over D-Bus.\\nii powermgmt-base 1.37 all common utils for power management\\nii powertop 2.15-3build1 amd64 diagnose issues with power consumption and management\\nii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon\\nii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client\\nii printer-driver-brlaser 6-3build2 amd64 printer driver for (some) Brother laser printers\\nii printer-driver-c2esp 27-11ubuntu7 amd64 printer driver for Kodak ESP AiO color inkjet Series\\nii printer-driver-foo2zjs 20200505dfsg0-2ubuntu6 amd64 printer driver for ZjStream-based printers\\nii printer-driver-foo2zjs-common 20200505dfsg0-2ubuntu6 all printer driver for ZjStream-based printers - common files\\nii printer-driver-hpcups 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)\\nii printer-driver-m2300w 0.51-15build2 amd64 printer driver for Minolta magicolor 2300W/2400W color laser printers\\nii printer-driver-min12xxw 0.0.9-11build3 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW\\nii printer-driver-pnm2ppa 1.13+nondbs-0ubuntu10 amd64 printer driver for HP-GDI printers\\nii printer-driver-postscript-hp 3.23.12+dfsg0-0ubuntu5 amd64 HP Printers PostScript Descriptions\\nii printer-driver-ptouch 1.7-1build2 amd64 printer driver Brother P-touch label printers\\nii printer-driver-pxljr 1.4+repack0-6build2 amd64 printer driver for HP Color LaserJet 35xx/36xx\\nii printer-driver-sag-gdi 0.1-8 all printer driver for Ricoh Aficio SP 1000s/SP 1100s\\nii printer-driver-splix 2.0.0+svn315-7fakesync1ubuntu1 amd64 Driver for Samsung and Xerox SPL2 and SPLc laser printers\\nii procps 2:4.0.4-4ubuntu3 amd64 /proc file system utilities\\nii psmisc 23.7-1build1 amd64 utilities that use the proc file system\\nii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes\\nrc pulseaudio 1:15.99.1+dfsg1-1ubuntu2.2 amd64 PulseAudio sound server\\nii python-apt-common 2.7.7ubuntu3 all Python interface to libapt-pkg (locales)\\nii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files\\nii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii python3-apport 2.28.1-0ubuntu3.1 all Python 3 library for Apport crash report handling\\nii python3-apt 2.7.7ubuntu3 amd64 Python 3 interface to libapt-pkg\\nii python3-aptdaemon 1.1.1+bzr982-0ubuntu44 all Python 3 module for the server and client of aptdaemon\\nii python3-aptdaemon.gtk3widgets 1.1.1+bzr982-0ubuntu44 all Python 3 GTK+ 3 widgets to run an aptdaemon client\\nii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)\\nii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x\\nii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)\\nii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)\\nii python3-brlapi:amd64 6.6-4ubuntu5 amd64 Braille display access via BRLTTY - Python3 bindings\\nii python3-cairo 1.25.1-2build2 amd64 Python3 bindings for the Cairo vector graphics library\\nii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)\\nii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime\\nii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)\\nii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x\\nii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x\\nii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.\\nii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3\\nii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)\\nii python3-cups:amd64 2.0.1-5build6 amd64 Python3 bindings for CUPS\\nii python3-cupshelpers 1.5.18-1ubuntu9 all Python utility modules around the CUPS printing system\\nii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module\\nii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)\\nii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3\\nii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats\\nii python3-defer 1.0.6-2.1ubuntu1 all Small framework for asynchronous programming (Python 3)\\nii python3-dev 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii python3-distro 1.9.0-1 all Linux OS platform information API\\nii python3-distro-info 1.7build1 all information about distributions\' releases (Python 3 module)\\nii python3-distupgrade 1:24.04.23 all manage release upgrades\\nii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x\\nii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries\\nii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3\\nii python3-ibus-1.0 1.5.29-2 all Intelligent Input Bus - introspection overrides for Python (Python 3)\\nii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)\\nii python3-importlib-metadata 4.12.0-1 all library to access the metadata for a Python package - Python 3.x\\nii python3-jinja2 3.1.2-1ubuntu1.1 all small but fast and easy to use stand-alone template engine\\nii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x\\nii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x\\nii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)\\nii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token\\nii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)\\nii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)\\nii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs\\nii python3-louis 3.29.0-1build1 all Python bindings for liblouis\\nii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins\\nii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library\\nii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package\\nii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)\\nii python3-more-itertools 10.2.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)\\nii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)\\nii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x\\nii python3-netplan 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration Python bindings\\nii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3\\nii python3-olefile 0.46-3 all Python module to read/write MS OLE2 files\\nii python3-packaging 24.0-1 all core utilities for python3 packages\\nii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications\\nii python3-pil:amd64 10.2.0-1ubuntu1 amd64 Python Imaging Library (Python3)\\nii python3-pip 24.0+dfsg-1ubuntu1 all Python package installer\\nii python3-pip-whl 24.0+dfsg-1ubuntu1 all Python package installer (pip wheel)\\nii python3-pkg-resources 68.1.2-2ubuntu1 all Package Discovery and Resource Access using pkg_resources\\nii python3-problem-report 2.28.1-0ubuntu3.1 all Python 3 library to handle problem reports\\nii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3\\nii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3\\nii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x\\nii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python\\nii python3-requests 2.31.0+dfsg-1ubuntu1 all elegant and simple HTTP library for Python3, built for human beings\\nii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more\\nii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port\\nii python3-setuptools 68.1.2-2ubuntu1 all Python3 Distutils Enhancements\\nii python3-setuptools-whl 68.1.2-2ubuntu1 all Python Distutils Enhancements (wheel package)\\nii python3-six 1.16.0-4 all Python 2 and 3 compatibility library\\nii python3-software-properties 0.99.48 all manage the repositories that you install software from\\nii python3-speechd 0.12.0~rc2-2build3 all Python interface to Speech Dispatcher\\nii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd\\nii python3-tz 2024.1-2 all Python3 version of the Olson timezone database\\nii python3-uno 4:24.2.5-0ubuntu0.24.04.2 amd64 Python-UNO bridge\\nii python3-update-manager 1:24.04.6 all Python 3.x module for update-manager\\nii python3-urllib3 2.0.7-1 all HTTP library with thread-safe connection pooling for Python3\\nii python3-venv 3.12.3-0ubuntu2 amd64 venv module for python3 (default python3 version)\\nii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files\\nii python3-wheel 0.42.0-2 all built-package format for Python\\nii python3-xdg 0.28-2 all Python 3 library to access freedesktop.org standards\\nii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)\\nii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3\\nii python3-zipp 1.0.0-6ubuntu0.1 all pathlib-compatible Zipfile object wrapper - Python 3.x\\nrc python3.10-venv 3.10.12-1~22.04.5 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.10)\\nii python3.12 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (version 3.12)\\nii python3.12-dev 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii python3.12-minimal 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii python3.12-venv 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.12)\\nii readline-common 8.2-4build1 all GNU readline and history libraries, common files\\nii rfkill 2.39.3-9ubuntu6.1 amd64 tool for enabling and disabling wireless devices\\nii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions\\nii rsync 3.2.7-1ubuntu1 amd64 fast, versatile, remote (and local) file-copying tool\\nii rsyslog 8.2312.0-3ubuntu9 amd64 reliable system and kernel logging daemon\\nii rtkit 0.13-5build1 amd64 Realtime Policy and Watchdog Daemon\\nii rygel 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services\\nii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba core libraries\\nii sane-airscan 0.99.29-0ubuntu4 amd64 SANE backend for AirScan (eSCL) and WSD document scanner\\nii sane-utils 1.2.1-7build4 amd64 API library for scanners -- utilities\\nii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers\\nii seahorse 43.0-3build2 amd64 GNOME front end for GnuPG\\nii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX\\nii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text\\nii sensible-utils 0.0.22 all Utilities for sensible alternative selection\\nii session-migration 0.3.9build1 amd64 Tool to migrate in user session settings\\nii sgml-base 1.31 all SGML infrastructure and SGML catalog file support\\nii sgml-data 2.0.11+nmu1 all common SGML and XML data\\nii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec\\nii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)\\nii slirp4netns 1.2.1-1build2 amd64 User-mode networking for unprivileged network namespaces\\nii snapd 2.63.1+24.04 amd64 Daemon and tooling that enable snap packages\\nii software-properties-common 0.99.48 all manage the repositories that you install software from (common)\\nii software-properties-gtk 0.99.48 all manage the repositories that you install software from (gtk)\\nii sound-icons 0.1-8 all Sounds for speech enabled applications\\nii sound-theme-freedesktop 0.8-2ubuntu1 all freedesktop.org sound theme\\nii speech-dispatcher 0.12.0~rc2-2build3 amd64 Common interface to speech synthesizers\\nii speech-dispatcher-audio-plugins:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Audio output plugins\\nii speech-dispatcher-espeak-ng 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Espeak-ng output module\\nii spice-vdagent 0.22.1-4build3 amd64 Spice agent for Linux\\nii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems\\nii ssh-import-id 5.11-0ubuntu2 all securely retrieve an SSH public key and install it locally\\nii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL\\nii strace 6.8-0ubuntu2 amd64 System call tracer\\nii stress-ng 0.17.06-1build1 amd64 tool to load and stress a computer\\nii sudo 1.9.15p5-3ubuntu5 amd64 Provide limited super user privileges to specific users\\nii switcheroo-control 2.6-2build2 amd64 D-Bus service to check the availability of dual-GPU\\nii sysbench 1.0.20+ds-6build2 amd64 multi-threaded benchmark tool for database systems\\nii sysbox-ce 0.6.4.linux amd64 Sysbox Community Edition (CE) is a next-generation container runtime,\\nii syslinux-common 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 all collection of bootloaders (common)\\nii sysstat 12.6.1-2 amd64 system performance tools for Linux\\nii system-config-printer-common 1.5.18-1ubuntu9 all backend and the translation files for system-config-printer\\nii system-config-printer-udev 1.5.18-1ubuntu9 amd64 Utilities to detect and configure printers automatically\\nii systemd 255.4-1ubuntu8.4 amd64 system and service manager\\nii systemd-dev 255.4-1ubuntu8.4 all systemd development files\\nii systemd-hwe-hwdb 255.1.3 all udev rules for hardware enablement (HWE)\\nii systemd-oomd 255.4-1ubuntu8.4 amd64 userspace out-of-memory (OOM) killer\\nii systemd-resolved 255.4-1ubuntu8.4 amd64 systemd DNS resolver\\nii systemd-sysv 255.4-1ubuntu8.4 amd64 system and service manager - SysV compatibility symlinks\\nii systemd-timesyncd 255.4-1ubuntu8.4 amd64 minimalistic service to synchronize local time with NTP servers\\nii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities\\nii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility\\nii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell\\nii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell\\nii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer\\nii tecla 46.0-1build1 amd64 keyboard layout viewer for the GNOME desktop\\nii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch\\nii thermald 2.5.6-2build2 amd64 Thermal monitoring and controlling daemon\\nii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage\\nii tinyproxy 1.11.1-3 all Lightweight, non-caching, optionally anonymizing HTTP proxy\\nii tinyproxy-bin 1.11.1-3 amd64 Lightweight, non-caching, optionally anonymizing HTTP proxy (executable only)\\nii tnftp 20230507-2build3 amd64 enhanced ftp client\\nii tpm-udev 0.6ubuntu1 all udev rules for TPM modules\\nii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel\\nii tracker 3.7.1-1build1 amd64 metadata database, indexer and search tool\\nii tracker-extract 3.7.1-1build1 amd64 metadata database, indexer and search tool - metadata extractors\\nii tracker-miner-fs 3.7.1-1build1 amd64 metadata database, indexer and search tool - filesystem indexer\\nii tzdata 2024a-3ubuntu1.1 all time zone and daylight-saving time data\\nii ubuntu-advantage-desktop-daemon 1.11 amd64 Daemon to allow access to ubuntu-advantage via D-Bus\\nii ubuntu-desktop 1.539.1 amd64 Ubuntu desktop system\\nii ubuntu-desktop-minimal 1.539.1 amd64 Ubuntu desktop minimal system\\nii ubuntu-docs 24.04.2 all Ubuntu Desktop Guide\\nii ubuntu-drivers-common 1:0.9.7.6ubuntu3.1 amd64 Detect and install additional Ubuntu driver packages\\nii ubuntu-kernel-accessories 1.539.1 amd64 packages useful to install by default on systems with kernels\\nii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive\\nii ubuntu-minimal 1.539.1 amd64 Minimal core of Ubuntu\\nii ubuntu-mono 24.04-0ubuntu1 all Ubuntu Mono Icon theme\\nii ubuntu-pro-client 33.2~24.04.1 amd64 Management tools for Ubuntu Pro\\nii ubuntu-pro-client-l10n 33.2~24.04.1 amd64 Translations for Ubuntu Pro Client\\nii ubuntu-release-upgrader-core 1:24.04.23 all manage release upgrades\\nii ubuntu-release-upgrader-gtk 1:24.04.23 all manage release upgrades\\nii ubuntu-report 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics\\nii ubuntu-session 46.0-1ubuntu4 all Ubuntu session with GNOME Shell\\nii ubuntu-settings 24.04.4 all default settings for the Ubuntu desktop\\nii ubuntu-standard 1.539.1 amd64 Ubuntu standard system\\nii ubuntu-wallpapers 24.04.2 all Ubuntu Wallpapers\\nii ubuntu-wallpapers-noble 24.04.2 all Ubuntu 24.04 Wallpapers\\nii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files\\nii udev 255.4-1ubuntu8.4 amd64 /dev/ and hotplug management daemon\\nii udisks2 2.10.1-6build1 amd64 D-Bus service to access and manipulate storage devices\\nii ufw 0.36.2-6 all program for managing a Netfilter firewall\\nii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades\\nii unifi 8.1.127-25320-1 all Ubiquiti UniFi server\\nii uno-libs-private 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- private libraries used by public ones\\nii unzip 6.0-28ubuntu4 amd64 De-archiver for .zip files\\nii update-inetd 4.53 all inetd configuration file updater\\nii update-manager 1:24.04.6 all GNOME application that manages apt updates\\nii update-manager-core 1:24.04.6 all manage release upgrades\\nii update-notifier 3.192.68build3 amd64 Daemon which notifies about package updates\\nii update-notifier-common 3.192.68build3 all Files shared between update-notifier and other packages\\nii upower 1.90.3-1 amd64 abstraction for power management\\nii ure 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment\\nii usb-creator-common 0.3.17 all create a startup disk using a CD or disc image (common files)\\nii usb-creator-gtk 0.3.17 all create a startup disk using a CD or disc image (for GNOME)\\nii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling \\"flip flop\\" USB devices\\nii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch\\nii usb.ids 2024.03.18-1 all USB ID Repository\\nii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices\\nii usbutils 1:017-3build1 amd64 Linux USB utilities\\nii util-linux 2.39.3-9ubuntu6.1 amd64 miscellaneous system utilities\\nii uuid-dev:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library - headers and static libraries\\nii uuid-runtime 2.39.3-9ubuntu6.1 amd64 runtime components for the Universally Unique ID library\\nii vim-common 2:9.1.0016-1ubuntu7.2 all Vi IMproved - Common files\\nii vim-tiny 2:9.1.0016-1ubuntu7.2 amd64 Vi IMproved - enhanced vi editor - compact version\\nii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict\\nii wbritish 2020.12.07-2 all British English dictionary words for /usr/share/dict\\nii webp-pixbuf-loader:amd64 0.2.4-2build2 amd64 WebP Image format GdkPixbuf loader\\nii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web\\nii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts\\nii whoopsie 0.2.77build3 amd64 Ubuntu error tracker submission\\nii whoopsie-preferences 23build3 amd64 System preferences for error reporting\\nii wireless-regdb 2022.06.06-0ubuntu2 all wireless regulatory database\\nii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions\\nii wireplumber 0.4.17-1ubuntu4 amd64 modular session / policy manager for PipeWire\\nii wngerman 20161207-12 all New German orthography wordlist\\nii wogerman 1:2-39 all Traditional German wordlist\\nii wpasupplicant 2:2.10-21ubuntu0.1 amd64 client support for WPA and WPA2 (IEEE 802.11i)\\nii wswiss 20161207-12 all Swiss (German) orthography wordlist\\nii x11-apps 7.7+11build3 amd64 X applications\\nii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure\\nii x11-session-utils 7.7+6build2 amd64 X session utilities\\nii x11-utils 7.7+6build2 amd64 X11 utilities\\nii x11-xkb-utils 7.7+8build2 amd64 X11 XKB utilities\\nii x11-xserver-utils 7.7+10build2 amd64 X server utilities\\nii xauth 1:1.1.2-1build1 amd64 X authentication utility\\nii xbitmaps 1.1.1-2.2 all Base X bitmaps\\nii xbrlapi 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display - xbrlapi\\nii xcursor-themes 1.0.6-0ubuntu1 all Base X cursor themes\\nii xcvt 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator\\nii xdg-dbus-proxy 0.1.5-1build2 amd64 filtering D-Bus proxy\\nii xdg-desktop-portal 1.18.4-1ubuntu2 amd64 desktop integration portal for Flatpak and Snap\\nii xdg-desktop-portal-gnome 46.2-0ubuntu1 amd64 GNOME portal backend for xdg-desktop-portal\\nii xdg-desktop-portal-gtk 1.15.1-1build2 amd64 GTK+/GNOME portal backend for xdg-desktop-portal\\nii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories\\nii xdg-user-dirs-gtk 0.11-1build2 amd64 tool to manage well known user directories (Gtk extension)\\nii xdg-utils 1.1.3-4.1ubuntu3 all desktop integration utilities from freedesktop.org\\nii xfonts-base 1:1.0.5+nmu1 all standard fonts for X\\nii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts\\nii xfonts-scalable 1:1.0.3-1.3 all scalable fonts for X\\nii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs\\nii xinit 1.4.1-0ubuntu5 amd64 X server initialisation tool\\nii xinput 1.6.4-1build1 amd64 Runtime configuration and test of XInput devices\\nii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data\\nii xml-core 0.19 all XML infrastructure and XML catalog file support\\nii xorg 1:7.7+23ubuntu3 amd64 X.Org X Window System\\nii xorg-docs-core 1:1.7.1-1.2 all Core documentation for the X.org X Window System\\nii xorriso 1:1.5.6-1.1ubuntu3 amd64 command line ISO-9660 and Rock Ridge manipulation tool\\nii xserver-common 2:21.1.12-1ubuntu1 all common files used by various X servers\\nii xserver-xephyr 2:21.1.12-1ubuntu1 amd64 nested X server\\nii xserver-xorg 1:7.7+23ubuntu3 amd64 X.Org X server\\nii xserver-xorg-core 2:21.1.12-1ubuntu1 amd64 Xorg X server - core server\\nii xserver-xorg-input-all 1:7.7+23ubuntu3 amd64 X.Org X server -- input driver metapackage\\nii xserver-xorg-input-libinput 1.4.0-1build1 amd64 X.Org X server -- libinput input driver\\nii xserver-xorg-input-wacom 1:1.2.0-1ubuntu2 amd64 X.Org X server -- Wacom input driver\\nii xserver-xorg-legacy 2:21.1.12-1ubuntu1 amd64 setuid root Xorg server wrapper\\nii xserver-xorg-video-all 1:7.7+23ubuntu3 amd64 X.Org X server -- output driver metapackage\\nii xserver-xorg-video-amdgpu 23.0.0-1build1 amd64 X.Org X server -- AMDGPU display driver\\nii xserver-xorg-video-ati 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI display driver wrapper\\nii xserver-xorg-video-fbdev 1:0.5.0-2build2 amd64 X.Org X server -- fbdev display driver\\nii xserver-xorg-video-intel 2:2.99.917+git20210115-1build1 amd64 X.Org X server -- Intel i8xx, i9xx display driver\\nii xserver-xorg-video-nouveau 1:1.0.17-2build1 amd64 X.Org X server -- Nouveau display driver\\nii xserver-xorg-video-qxl 0.1.6-1build1 amd64 X.Org X server -- QXL display driver\\nii xserver-xorg-video-radeon 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI Radeon display driver\\nii xserver-xorg-video-vesa 1:2.6.0-1 amd64 X.Org X server -- VESA display driver\\nii xserver-xorg-video-vmware 1:13.4.0-1build1 amd64 X.Org X server -- VMware display driver\\nii xwayland 2:23.2.6-1 amd64 X server for running X clients under Wayland\\nii xxd 2:9.1.0016-1ubuntu7.2 amd64 tool to make (or reverse) a hex dump\\nii xz-utils 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression utilities\\nii yaru-theme-gnome-shell 24.04.2-0ubuntu1 all Yaru GNOME Shell desktop theme from the Ubuntu Community\\nii yaru-theme-gtk 24.04.2-0ubuntu1 all Yaru GTK theme from the Ubuntu Community\\nii yaru-theme-icon 24.04.2-0ubuntu1 all Yaru icon theme from the Ubuntu Community\\nii yaru-theme-sound 24.04.2-0ubuntu1 all Yaru sound theme from the Ubuntu Community\\nii yelp 42.2-1build2 amd64 Help browser for GNOME\\nii yelp-xsl 42.1-2 all XSL stylesheets for the yelp help browser\\nii zenity 4.0.1-1build3 amd64 Display graphical dialog boxes from shell scripts\\nii zenity-common 4.0.1-1build3 all Display graphical dialog boxes from shell scripts (common files)\\nii zip 3.0-13build1 amd64 Archiver for .zip files\\nii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime\\nii zlib1g-dev:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - development\\nii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool\\n", "Turbo Boost (Legacy non intel_pstate)": "File not found"}',E'{"uri": "/home/arne/Sites/green-coding/example-applications/", "uri_type": "folder", "name": "Stress Test #2", "filename": "stress/usage_scenario.yml", "branch": null, "debug_mode": false, "allow_unsafe": false, "skip_system_checks": false, "skip_unsafe": true, "verbose_provider_boot": false, "full_docker_prune": false, "dev_no_sleeps": false, "dev_no_build": true, "dev_no_metrics": false, "dev_flow_timetravel": false, "dev_no_optimizations": false, "docker_prune": false, "job_id": null}',1,E'64134395e83e6e57cf6247a2b0ec11b562d1fa95',E'{"sci": {"I": 436, "EL": 4, "RS": 1, "TE": 181000}, "measurement": {"boot": {"wait_time_dependencies": 60}, "idle-duration": 5, "pre-test-sleep": 5, "total-duration": 3600, "post-test-sleep": 5, "metric-providers": {"linux": {"network.io.cgroup.container.provider.NetworkIoCgroupContainerProvider": {"resolution": 99}, "cpu.energy.rapl.msr.component.provider.CpuEnergyRaplMsrComponentProvider": {"resolution": 99}, "cpu.utilization.procfs.system.provider.CpuUtilizationProcfsSystemProvider": {"resolution": 99}, "memory.total.cgroup.container.provider.MemoryTotalCgroupContainerProvider": {"resolution": 99}, "psu.energy.dc.rapl.msr.machine.provider.PsuEnergyDcRaplMsrMachineProvider": {"resolution": 99}, "cpu.utilization.cgroup.container.provider.CpuUtilizationCgroupContainerProvider": {"resolution": 99}}, "macos": {"powermetrics.provider.PowermetricsProvider": {"resolution": 99}, "cpu.utilization.mach.system.provider.CpuUtilizationMachSystemProvider": {"resolution": 99}}, "common": {"network.connections.proxy.container.provider.NetworkConnectionsProxyContainerProvider": null}}, "baseline-duration": 5, "flow-process-duration": 1800, "phase-transition-time": 1, "system_check_threshold": 3}}',1726159442546177,1726159467048191,E'[{"start": 1726159443547731, "name": "[BASELINE]", "end": 1726159448548351}, {"start": 1726159449549372, "name": "[INSTALLATION]", "end": 1726159449567911}, {"start": 1726159450568124, "name": "[BOOT]", "end": 1726159450939392}, {"start": 1726159453950302, "name": "[IDLE]", "end": 1726159458950680}, {"start": 1726159459950891, "name": "[RUNTIME]", "end": 1726159465047297}, {"start": 1726159459951056, "name": "Stress", "end": 1726159465047247}, {"start": 1726159466047735, "name": "[REMOVE]", "end": 1726159467048168}]',NULL,NULL,FALSE,E'2024-09-13 16:43:51.948989+00',E'2024-09-12 16:44:32.073458+00'), -(E'f4ed967e-7c27-4055-815f-ea437fc11d25',NULL,E'Stress Test #3',E'/home/arne/Sites/green-coding/example-applications/',E'main',E'58c7a5002c684f41f8d7a355f3ede641d8e45ddc',E'2024-07-10 13:48:46+00',E'manual',NULL,E'{"name": "Stress Container One Core 5 Seconds", "author": "Arne Tarara <arne@green-coding.berlin>", "description": "A simple 5 seconds stress on the system with one core. Expected display result is a rectangle shaped load.", "flow": [{"name": "Stress", "container": "gcb-alpine-stress", "commands": [{"type": "console", "command": "stress-ng -c 1 -t 5 -q", "note": "Starting Stress"}]}], "version": "2", "services": {"gcb-alpine-stress": {"container_name": "gcb-alpine-stress", "image": "gcb_alpine_stress", "build": "."}}}',E'stress/usage_scenario.yml',E'{"SGX": "This CPU does not support Intel SGX", "Uptime": " 18:44:39 up 8 min, 3 users, load average: 1.05, 0.77, 0.43", "Cpu Info": "11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz", "Platform": "Linux", "Processes": "USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\\nroot 1 0.8 0.0 23440 14188 ? Ss 18:36 0:03 /sbin/init splash\\nroot 2 0.0 0.0 0 0 ? S 18:36 0:00 [kthreadd]\\nroot 3 0.0 0.0 0 0 ? S 18:36 0:00 [pool_workqueue_release]\\nroot 4 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_g]\\nroot 5 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_p]\\nroot 6 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-slub_]\\nroot 7 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-netns]\\nroot 8 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:0-events]\\nroot 9 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:0H-events_highpri]\\nroot 10 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:1-events_freezable]\\nroot 12 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mm_pe]\\nroot 13 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_kthread]\\nroot 14 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_rude_kthread]\\nroot 15 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_trace_kthread]\\nroot 16 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/0]\\nroot 17 0.1 0.0 0 0 ? I 18:36 0:00 [rcu_preempt]\\nroot 18 0.0 0.0 0 0 ? S 18:36 0:00 [migration/0]\\nroot 19 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/0]\\nroot 20 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/0]\\nroot 21 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/1]\\nroot 22 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/1]\\nroot 23 0.0 0.0 0 0 ? S 18:36 0:00 [migration/1]\\nroot 24 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/1]\\nroot 26 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:0H-events_highpri]\\nroot 27 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/2]\\nroot 28 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/2]\\nroot 29 0.0 0.0 0 0 ? S 18:36 0:00 [migration/2]\\nroot 30 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/2]\\nroot 31 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:0-pm]\\nroot 32 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:0H-events_highpri]\\nroot 33 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/3]\\nroot 34 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/3]\\nroot 35 0.0 0.0 0 0 ? S 18:36 0:00 [migration/3]\\nroot 36 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/3]\\nroot 37 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:0-pm]\\nroot 38 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:0H-events_highpri]\\nroot 39 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/4]\\nroot 40 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/4]\\nroot 41 0.0 0.0 0 0 ? S 18:36 0:00 [migration/4]\\nroot 42 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/4]\\nroot 43 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:0-mm_percpu_wq]\\nroot 44 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:0H-events_highpri]\\nroot 45 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/5]\\nroot 46 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/5]\\nroot 47 0.0 0.0 0 0 ? S 18:36 0:00 [migration/5]\\nroot 48 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/5]\\nroot 49 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:0-i915-unordered]\\nroot 50 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:0H-events_highpri]\\nroot 51 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/6]\\nroot 52 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/6]\\nroot 53 0.0 0.0 0 0 ? S 18:36 0:00 [migration/6]\\nroot 54 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/6]\\nroot 56 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:0H-kblockd]\\nroot 57 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/7]\\nroot 58 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/7]\\nroot 59 0.0 0.0 0 0 ? S 18:36 0:00 [migration/7]\\nroot 60 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/7]\\nroot 62 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:0H-kblockd]\\nroot 63 0.0 0.0 0 0 ? S 18:36 0:00 [kdevtmpfs]\\nroot 64 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-inet_]\\nroot 65 0.0 0.0 0 0 ? S 18:36 0:00 [kauditd]\\nroot 67 0.0 0.0 0 0 ? S 18:36 0:00 [khungtaskd]\\nroot 68 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:2-flush-259:0]\\nroot 69 0.0 0.0 0 0 ? S 18:36 0:00 [oom_reaper]\\nroot 70 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-write]\\nroot 71 0.0 0.0 0 0 ? S 18:36 0:00 [kcompactd0]\\nroot 72 0.0 0.0 0 0 ? SN 18:36 0:00 [ksmd]\\nroot 73 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:1-mm_percpu_wq]\\nroot 74 0.0 0.0 0 0 ? SN 18:36 0:00 [khugepaged]\\nroot 75 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kinte]\\nroot 76 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kbloc]\\nroot 77 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-blkcg]\\nroot 79 0.0 0.0 0 0 ? S 18:36 0:00 [irq/9-acpi]\\nroot 80 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:1-mm_percpu_wq]\\nroot 81 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:1-events]\\nroot 82 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tpm_d]\\nroot 83 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ata_s]\\nroot 84 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md]\\nroot 85 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md_bi]\\nroot 86 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-edac-]\\nroot 87 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-devfr]\\nroot 88 0.0 0.0 0 0 ? S 18:36 0:00 [watchdogd]\\nroot 89 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:1-events]\\nroot 90 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:1H-kblockd]\\nroot 91 0.0 0.0 0 0 ? S 18:36 0:00 [kswapd0]\\nroot 92 0.0 0.0 0 0 ? S 18:36 0:00 [ecryptfs-kthread]\\nroot 93 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kthro]\\nroot 94 0.0 0.0 0 0 ? S 18:36 0:00 [irq/127-pciehp]\\nroot 95 0.0 0.0 0 0 ? S 18:36 0:00 [irq/128-pciehp]\\nroot 96 0.0 0.0 0 0 ? S 18:36 0:00 [irq/129-pciehp]\\nroot 97 0.0 0.0 0 0 ? S 18:36 0:00 [irq/130-pciehp]\\nroot 98 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:1-events]\\nroot 99 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:1-mm_percpu_wq]\\nroot 100 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-acpi_]\\nroot 101 0.0 0.0 0 0 ? S 18:36 0:00 [hwrng]\\nroot 102 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:2-events]\\nroot 103 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mld]\\nroot 104 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:1H]\\nroot 105 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipv6_]\\nroot 112 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kstrp]\\nroot 114 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:0-hci0]\\nroot 128 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-charg]\\nroot 129 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:3-mm_percpu_wq]\\nroot 153 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:1H-kblockd]\\nroot 157 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:1H-kblockd]\\nroot 185 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:1H-kblockd]\\nroot 186 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:1H]\\nroot 194 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:1H-kblockd]\\nroot 195 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:1H-kblockd]\\nroot 196 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:2-rcu_gp]\\nroot 217 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:2-events]\\nroot 218 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 219 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 220 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 221 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 223 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:3-rcu_gp]\\nroot 224 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:2-events_freezable]\\nroot 225 0.0 0.0 0 0 ? S 18:36 0:00 [irq/173-FRMW0001:00]\\nroot 226 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:2-events]\\nroot 227 0.0 0.0 0 0 ? S 18:36 0:00 [irq/174-PIXA3854:00]\\nroot 264 0.0 0.0 0 0 ? S 18:36 0:00 [jbd2/nvme0n1p5-8]\\nroot 265 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ext4-]\\nroot 315 0.1 0.0 67096 17564 ? S<s 18:36 0:00 /usr/lib/systemd/systemd-journald\\nroot 349 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:4-events]\\nroot 351 0.2 0.0 30832 8576 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-udevd\\nroot 395 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 423 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:5-flush-259:0]\\nroot 449 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:6-ext4-rsv-conversion]\\nroot 450 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:7-ext4-rsv-conversion]\\nroot 451 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:8-events_unbound]\\nroot 452 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:9-events_unbound]\\nroot 468 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:2-events]\\nroot 514 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cfg80]\\nroot 520 0.0 0.0 0 0 ? S 18:36 0:00 [irq/191-mei_me]\\nroot 531 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-crypt]\\nroot 534 0.3 0.0 0 0 ? S 18:36 0:01 [irq/192-iwlwifi:default_queue]\\nroot 535 0.0 0.0 0 0 ? S 18:36 0:00 [irq/193-iwlwifi:queue_1]\\nroot 536 0.0 0.0 0 0 ? S 18:36 0:00 [irq/194-iwlwifi:queue_2]\\nroot 538 0.6 0.0 0 0 ? S 18:36 0:03 [irq/195-iwlwifi:queue_3]\\nroot 539 0.0 0.0 0 0 ? S 18:36 0:00 [irq/196-iwlwifi:queue_4]\\nroot 540 0.0 0.0 0 0 ? S 18:36 0:00 [irq/197-iwlwifi:queue_5]\\nroot 541 0.0 0.0 0 0 ? S 18:36 0:00 [irq/198-iwlwifi:queue_6]\\nroot 542 0.0 0.0 0 0 ? S 18:36 0:00 [irq/199-iwlwifi:queue_7]\\nroot 543 0.0 0.0 0 0 ? S 18:36 0:00 [irq/200-iwlwifi:queue_8]\\nroot 544 0.0 0.0 0 0 ? S 18:36 0:00 [irq/201-iwlwifi:exception]\\nroot 576 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ttm]\\nroot 583 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cros_]\\nroot 586 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc0]\\nroot 587 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc1]\\nroot 588 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc2]\\nroot 589 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc3]\\nroot 640 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:3-mm_percpu_wq]\\nsystemd+ 660 0.1 0.0 17728 7680 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-oomd\\nsystemd+ 665 0.1 0.0 21584 12800 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-resolved\\nsystemd+ 671 0.0 0.0 91044 7680 ? Ssl 18:36 0:00 /usr/lib/systemd/systemd-timesyncd\\nroot 754 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:3-cgroup_destroy]\\nroot 785 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:3-hci0]\\nroot 790 0.0 0.0 314260 8124 ? Ssl 18:36 0:00 /usr/libexec/accounts-daemon\\navahi 793 0.1 0.0 8780 3840 ? Ss 18:36 0:00 avahi-daemon: running [framebook.local]\\nroot 794 0.0 0.0 13684 6528 ? Ss 18:36 0:00 /usr/libexec/bluetooth/bluetoothd\\nroot 795 0.0 0.0 9804 2816 ? Ss 18:36 0:00 /usr/sbin/cron -f -P\\nmessage+ 796 0.6 0.0 11992 6528 ? Ss 18:36 0:03 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngnome-r+ 800 0.0 0.0 439064 16176 ? Ssl 18:36 0:00 /usr/libexec/gnome-remote-desktop-daemon --system\\nroot 804 0.0 0.0 314320 7808 ? Ssl 18:36 0:00 /usr/libexec/iio-sensor-proxy\\npolkitd 812 0.1 0.0 384348 10120 ? Ssl 18:36 0:00 /usr/lib/polkit-1/polkitd --no-debug\\nroot 815 0.0 0.0 314180 7856 ? Ssl 18:36 0:00 /usr/libexec/power-profiles-daemon\\nroot 831 0.3 0.1 2287584 35108 ? Ssl 18:36 0:01 /usr/lib/snapd/snapd\\nroot 836 0.0 0.0 310432 6912 ? Ssl 18:36 0:00 /usr/libexec/switcheroo-control\\nroot 838 0.8 0.0 725084 13012 ? Ssl 18:36 0:03 /usr/bin/sysbox-mgr\\nroot 842 0.2 0.0 18136 9220 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-logind\\nroot 844 0.1 0.0 425420 10368 ? Ssl 18:36 0:00 /usr/sbin/thermald --systemd --dbus-enable --adaptive\\nroot 845 0.0 0.0 469148 13116 ? Ssl 18:36 0:00 /usr/libexec/udisks2/udisksd\\navahi 893 0.0 0.0 8420 1284 ? S 18:36 0:00 avahi-daemon: chroot helper\\nroot 898 0.3 0.0 338968 21172 ? Ssl 18:36 0:01 /usr/sbin/NetworkManager --no-daemon\\nroot 901 0.0 0.0 18400 11264 ? Ss 18:36 0:00 /usr/sbin/wpa_supplicant -u -s -O DIR=/run/wpa_supplicant GROUP=netdev\\nroot 913 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipmi-]\\nsyslog 919 0.0 0.0 222508 6016 ? Ssl 18:36 0:00 /usr/sbin/rsyslogd -n -iNONE\\nroot 971 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:3-pm]\\nroot 1073 0.0 0.0 392104 12664 ? Ssl 18:36 0:00 /usr/sbin/ModemManager\\nroot 1085 0.0 0.0 314184 8224 ? Ssl 18:36 0:00 /usr/libexec/boltd\\nroot 1086 0.0 0.0 317632 9472 ? Ssl 18:36 0:00 /usr/libexec/upowerd\\nroot 1113 0.0 0.0 1166524 11008 ? Ssl 18:36 0:00 /usr/bin/sysbox-fs\\nroot 1121 0.0 0.0 2800 1664 ? Ss 18:36 0:00 /bin/sh -c /usr/bin/sysbox-runc --version && /usr/bin/sysbox-mgr --version && /usr/bin/sysbox-fs --version && /bin/sleep infinity\\nroot 1149 0.0 0.0 9076 2176 ? S 18:36 0:00 /bin/sleep infinity\\nroot 1430 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 1439 0.0 0.0 38488 11392 ? Ss 18:36 0:00 /usr/sbin/cupsd -l\\nroot 1447 0.3 0.2 2249812 65312 ? Ssl 18:36 0:01 /usr/bin/containerd\\nroot 1469 0.0 0.0 315384 9472 ? Ssl 18:36 0:00 /usr/sbin/gdm3\\nroot 1492 0.0 0.0 242664 9856 ? Sl 18:36 0:00 gdm-session-worker [pam/gdm-launch-environment]\\ngdm 1499 0.3 0.0 20988 11904 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\ngdm 1500 0.0 0.0 21400 3600 ? S 18:36 0:00 (sd-pam)\\ngdm 1512 0.0 0.0 114056 12032 ? S<sl 18:36 0:00 /usr/bin/pipewire\\ngdm 1513 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\ngdm 1515 0.0 0.0 407672 18944 ? S<sl 18:36 0:00 /usr/bin/wireplumber\\ngdm 1516 0.0 0.0 110484 11008 ? S<sl 18:36 0:00 /usr/bin/pipewire-pulse\\ngdm 1517 0.0 0.0 236396 6272 tty1 Ssl+ 18:36 0:00 /usr/libexec/gdm-wayland-session dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\ngdm 1525 0.0 0.0 9420 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngdm 1533 0.0 0.0 6500 2432 tty1 S+ 18:36 0:00 dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\nrtkit 1535 0.0 0.0 22940 3456 ? SNsl 18:36 0:00 /usr/libexec/rtkit-daemon\\ngdm 1537 0.0 0.0 9856 5120 tty1 S+ 18:36 0:00 dbus-daemon --nofork --print-address 4 --session\\ngdm 1546 0.0 0.0 521532 18048 tty1 Sl+ 18:36 0:00 /usr/libexec/gnome-session-binary --autostart /usr/share/gdm/greeter/autostart\\ngdm 1548 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\ngdm 1557 0.0 0.0 310008 6400 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 1564 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/128/doc\\ngdm 1590 2.4 0.6 4424672 205540 tty1 Sl+ 18:36 0:11 /usr/bin/gnome-shell\\nroot 1621 0.0 0.0 0 0 ? S< 18:36 0:00 [krfcommd]\\ncups-br+ 1656 0.0 0.0 268504 19840 ? Ssl 18:36 0:00 /usr/sbin/cups-browsed\\nroot 1657 0.5 0.2 3317612 94284 ? Ssl 18:36 0:02 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock\\nkernoops 1659 0.0 0.0 12744 2184 ? Ss 18:36 0:00 /usr/sbin/kerneloops --test\\nkernoops 1662 0.0 0.0 12744 2188 ? Ss 18:36 0:00 /usr/sbin/kerneloops\\nroot 1702 0.0 0.0 12020 8064 ? Ss 18:36 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups\\nroot 2398 0.0 0.0 1238168 13672 ? Sl 18:36 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928 -address /run/containerd/containerd.sock\\nroot 2511 0.0 0.0 1136 512 ? Ss 18:36 0:00 /sbin/docker-init -- buildkitd --allow-insecure-entitlement=network.host\\nroot 2717 0.0 0.1 1271012 34000 ? Sl 18:36 0:00 buildkitd --allow-insecure-entitlement=network.host\\nroot 2728 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:3-mm_percpu_wq]\\nroot 2863 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tls-s]\\nroot 2998 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:4-pm]\\nroot 2999 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:5-kacpi_notify]\\nroot 3000 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:6-events]\\nroot 3001 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:7-kacpi_notify]\\ngdm 3022 0.0 0.0 383120 7680 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi-bus-launcher\\ngdm 3028 0.0 0.0 9420 4992 tty1 S+ 18:36 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/128/at-spi/bus\\ngdm 3030 0.0 0.2 529220 73856 tty1 Sl+ 18:36 0:00 /usr/bin/Xwayland :1024 -rootless -noreset -accessx -core -auth /run/user/128/.mutter-Xwaylandauth.4R00T2 -listenfd 4 -listenfd 5 -displayfd 6 -initfd 7 -byteswappedclients\\ngdm 3034 0.0 0.0 236068 7296 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session\\ncolord 3035 0.0 0.0 320904 14776 ? Ssl 18:36 0:00 /usr/libexec/colord\\ngdm 3069 0.0 0.0 310008 6400 tty1 Sl+ 18:36 0:00 /usr/libexec/xdg-permission-store\\ngdm 3078 0.0 0.0 2663384 26852 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.Shell.Notifications\\ngdm 3080 0.0 0.0 544408 13440 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sharing\\ngdm 3091 0.0 0.0 487204 19200 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-wacom\\ngdm 3095 0.0 0.0 414336 19904 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-color\\ngdm 3100 0.0 0.0 412624 19204 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-keyboard\\ngdm 3109 0.0 0.0 324188 11520 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-print-notifications\\ngdm 3114 0.0 0.0 458120 7040 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-rfkill\\ngdm 3119 0.0 0.0 386768 8192 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-smartcard\\ngdm 3129 0.0 0.0 432620 12416 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-datetime\\ngdm 3146 0.0 0.0 595396 24488 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-media-keys\\ngdm 3149 0.0 0.0 310116 6528 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-screensaver-proxy\\ngdm 3155 0.0 0.0 394584 9984 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sound\\ngdm 3163 0.0 0.0 384468 6912 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-a11y-settings\\ngdm 3169 0.0 0.0 459824 8320 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-housekeeping\\ngdm 3172 0.1 0.0 524880 23336 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-power\\ngdm 3290 0.0 0.0 416764 15232 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-printer\\ngdm 3333 0.0 0.0 2794456 27380 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.ScreenSaver\\ngdm 3345 0.0 0.2 992124 77664 tty1 Sl+ 18:36 0:00 /usr/libexec/mutter-x11-frames\\ngdm 3346 0.0 0.0 389372 12224 tty1 Sl 18:36 0:00 ibus-daemon --panel disable -r --xim\\ngdm 3360 0.0 0.0 311020 7296 tty1 Sl 18:36 0:00 /usr/libexec/ibus-dconf\\ngdm 3362 0.0 0.2 610420 66612 tty1 Sl 18:36 0:00 /usr/libexec/ibus-x11 --kill-daemon\\ngdm 3364 0.0 0.0 310984 7424 tty1 Sl+ 18:36 0:00 /usr/libexec/ibus-portal\\ngdm 3378 0.0 0.0 237196 7424 tty1 Sl 18:36 0:00 /usr/libexec/ibus-engine-simple\\nroot 3437 0.0 0.0 15116 8048 ? Ss 18:36 0:00 sshd: arne [priv]\\narne 3449 0.1 0.0 21024 12288 ? Ss 18:36 0:00 /usr/lib/systemd/systemd --user\\narne 3453 0.0 0.0 21396 3596 ? S 18:36 0:00 (sd-pam)\\narne 3464 0.0 0.0 109524 8576 ? Ssl 18:36 0:00 /usr/bin/pipewire\\narne 3465 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\narne 3468 0.0 0.0 39000 11776 ? Ss 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3472 0.0 0.0 405708 16000 ? Ssl 18:36 0:00 /usr/bin/wireplumber\\narne 3475 0.0 0.0 109904 10496 ? Ssl 18:36 0:00 /usr/bin/pipewire-pulse\\narne 3501 0.0 0.0 9444 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\narne 3542 0.0 0.0 15276 7108 ? S 18:36 0:00 sshd: arne@pts/0\\narne 3544 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\narne 3549 0.0 0.0 309864 6272 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 3556 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc\\narne 3594 0.0 0.0 353012 21644 ? Sl 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3599 0.0 0.0 11980 5632 pts/0 Ss 18:36 0:00 -bash\\nroot 3669 0.0 0.0 15116 8176 ? Ss 18:37 0:00 sshd: arne [priv]\\narne 3711 0.8 0.0 15276 7108 ? S 18:37 0:03 sshd: arne@pts/1\\narne 3712 0.0 0.0 11980 5632 pts/1 Ss 18:37 0:00 -bash\\nroot 3755 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/7:3-cgroup_destroy]\\nroot 3759 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:8-kacpi_notify]\\nroot 3760 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:9-kacpi_notify]\\nroot 3801 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:10-kacpi_notify]\\nroot 3834 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:11-kacpi_notify]\\nroot 3835 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:12-pm]\\nroot 3878 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:13-kacpi_notify]\\nroot 3879 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:14-events]\\nroot 3880 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:15-kacpi_notify]\\nroot 4401 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:5-pm]\\nroot 4402 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:6]\\nroot 4403 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/3:4]\\ngdm 4742 0.0 0.0 317072 9856 ? Ssl 18:40 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/128/keyring\\nroot 4828 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/4:3-events]\\nroot 4875 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/0:16-pm]\\nroot 4983 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/6:0-rcu_gp]\\nroot 5020 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:0-mm_percpu_wq]\\nroot 5028 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/7:0]\\narne 5100 0.0 0.0 2068224 25984 pts/0 Sl+ 18:42 0:00 docker compose up\\narne 5122 0.1 0.1 2169824 45824 pts/0 Sl+ 18:42 0:00 /usr/libexec/docker/cli-plugins/docker-compose compose up\\nroot 5207 0.0 0.0 1745288 4352 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5214 0.0 0.0 1745032 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5235 0.0 0.0 1238168 13400 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45 -address /run/containerd/containerd.sock\\nroot 5262 0.0 0.0 1237912 13180 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2 -address /run/containerd/containerd.sock\\n999 5282 2.7 0.0 37240 8576 ? Ssl 18:42 0:03 redis-server *:6379\\n999 5289 0.0 0.0 219720 29824 ? Ss 18:42 0:00 postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key -c work_mem=16MB -p 9573\\nroot 5393 0.0 0.0 2040984 4864 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5405 0.0 0.0 1597568 4096 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5419 0.0 0.0 1237912 13056 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7 -address /run/containerd/containerd.sock\\nroot 5450 0.0 0.0 1238168 13312 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf -address /run/containerd/containerd.sock\\nroot 5471 0.0 0.0 1136 512 ? Ss 18:42 0:00 /sbin/docker-init -- /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5479 0.0 0.0 12120 7984 ? Ss 18:42 0:00 nginx: master process nginx -g daemon off;\\nroot 5535 0.0 0.0 4344 3200 ? S 18:42 0:00 /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5536 0.2 0.0 37560 31352 ? S 18:42 0:00 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5560 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5561 0.0 0.0 12328 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5562 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5563 0.0 0.0 12344 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5564 0.0 0.0 12124 4528 ? S 18:42 0:00 nginx: worker process\\nwww-data 5565 0.0 0.0 12328 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5566 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5567 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5570 3.7 0.4 1173056 145288 ? Sl 18:42 0:04 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5571 3.5 0.4 1173060 145536 ? Sl 18:42 0:04 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5572 3.6 0.4 877032 139256 ? Sl 18:42 0:04 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5573 3.5 0.4 1172940 145476 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5574 3.3 0.4 1174084 147244 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5575 3.4 0.4 877048 139480 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5576 3.2 0.4 1173300 146304 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5577 3.0 0.4 1174076 146560 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\n999 5620 0.0 0.0 219720 5912 ? Ss 18:42 0:00 postgres: checkpointer \\n999 5621 0.0 0.0 219864 6680 ? Ss 18:42 0:00 postgres: background writer \\n999 5623 0.0 0.0 219720 10008 ? Ss 18:42 0:00 postgres: walwriter \\n999 5624 0.0 0.0 221312 8984 ? Ss 18:42 0:00 postgres: autovacuum launcher \\n999 5625 0.0 0.0 221288 8088 ? Ss 18:42 0:00 postgres: logical replication launcher \\nroot 5968 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:2-events]\\nroot 5969 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:4-events]\\nroot 5970 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:5-pm]\\nroot 5971 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:6]\\nroot 6175 0.0 0.0 0 0 ? I 18:43 0:00 [kworker/6:2-events]\\ngdm 6293 0.0 0.0 0 0 tty1 Z+ 18:43 0:00 [dbus-daemon] <defunct>\\n999 6343 0.0 0.0 223116 19508 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54078) idle\\n999 6349 0.0 0.0 222676 19096 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54084) idle\\n999 6350 0.0 0.0 222812 19096 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54090) idle\\n999 6351 0.0 0.0 222544 19096 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54098) idle\\n999 6355 0.0 0.0 222520 18072 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54100) idle\\n999 6357 0.0 0.0 222520 18200 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54116) idle\\n999 6358 0.0 0.0 222992 19152 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54120) idle\\n999 6359 0.0 0.0 222520 18072 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54118) idle\\n999 6360 0.0 0.0 222320 14744 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54142) idle\\n999 6361 0.0 0.0 222852 19224 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54156) idle\\nroot 6919 1.2 0.0 312356 8704 ? Ssl 18:44 0:00 /usr/libexec/nm-dispatcher\\n999 6953 0.0 0.0 221804 14616 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.4(37048) idle\\n999 6954 0.0 0.0 221944 17816 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.4(37058) idle\\narne 6956 91.1 0.3 928148 130328 pts/1 Sl+ 18:44 0:01 python3 runner.py --uri /home/arne/Sites/green-coding/example-applications/ --filename stress/usage_scenario.yml --name Stress Test #3 --dev-no-build --skip-unsafe\\n999 6962 0.0 0.0 222120 19992 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.1(35644) idle\\n999 6963 0.0 0.0 222052 19864 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.1(35646) idle\\nroot 7090 9.8 0.0 17276 7552 ? Ss 18:44 0:00 /usr/lib/systemd/systemd-hostnamed\\narne 7177 0.0 0.0 2800 1664 pts/1 S+ 18:44 0:00 /bin/sh -c /usr/bin/ps -aux\\narne 7178 0.0 0.0 15512 5376 pts/1 R+ 18:44 0:00 /usr/bin/ps -aux\\n", "Disk Usage": 323006111744, "Docker Info": "Client: Docker Engine - Community\\n Version: 27.2.1\\n Context: default\\n Debug Mode: false\\n Plugins:\\n buildx: Docker Buildx (Docker Inc.)\\n Version: v0.16.2\\n Path: /usr/libexec/docker/cli-plugins/docker-buildx\\n compose: Docker Compose (Docker Inc.)\\n Version: v2.29.2\\n Path: /usr/libexec/docker/cli-plugins/docker-compose\\n\\nServer:\\n Containers: 5\\n Running: 5\\n Paused: 0\\n Stopped: 0\\n Images: 13\\n Server Version: 27.2.1\\n Storage Driver: overlayfs\\n driver-type: io.containerd.snapshotter.v1\\n Logging Driver: json-file\\n Cgroup Driver: systemd\\n Cgroup Version: 2\\n Plugins:\\n Volume: local\\n Network: bridge host ipvlan macvlan null overlay\\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\\n Swarm: inactive\\n Runtimes: io.containerd.runc.v2 runc sysbox-runc\\n Default Runtime: runc\\n Init Binary: docker-init\\n containerd version: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc version: v1.1.13-0-g58aa920\\n init version: de40ad0\\n Security Options:\\n apparmor\\n seccomp\\n Profile: builtin\\n cgroupns\\n Kernel Version: 6.8.0-44-generic\\n Operating System: Ubuntu 24.04.1 LTS\\n OSType: linux\\n Architecture: x86_64\\n CPUs: 8\\n Total Memory: 31.13GiB\\n Name: framebook\\n ID: 492c90f2-99f1-437f-a14b-9f1e5d514ca9\\n Docker Root Dir: /var/lib/docker\\n Debug Mode: false\\n Username: greencoding\\n Experimental: false\\n Insecure Registries:\\n 127.0.0.0/8\\n Live Restore Enabled: false\\n Default Address Pools:\\n Base: 172.25.0.0/16, Size: 24\\n\\n", "Free Memory": 31149862912, "Turbo Boost": "0", "Architecture": "x86-64", "Memory Total": "32646584 kB", "Power Limits": {"/sys/devices/virtual/powercap/intel-rapl/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/name": "package-0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/name": "psys\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj": "1591530044\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/energy_uj": "3362522580\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_name": "peak_power\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/name": "core\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/name": "uncore\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/energy_uj": "582231175\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/energy_uj": "7976908\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_max_power_uw": "28000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_power_limit_uw": "200000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_time_window_us": "31981568\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_power_limit_uw": "64000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_time_window_us": "2440\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_power_limit_uw": "121000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_time_window_us": "27983872\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_suspended_time": "0\\n"}, "IO Scheduling": "File not found", "Linux Version": "Linux 6.8.0-44-generic", "CPU Scheduling": {"/sys/kernel/debug/sched/debug": "Sched Debug Version: v0.11, 6.8.0-44-generic #44-Ubuntu\\nktime : 497483.553784\\nsched_clk : 497549.132697\\ncpu_clk : 497504.691595\\njiffies : 4295164620\\nsched_clock_stable() : 1\\n\\nsysctl_sched\\n .sysctl_sched_base_slice : 3.000000\\n .sysctl_sched_features : 6237751\\n .sysctl_sched_tunable_scaling : 1 (logarithmic)\\n\\ncpu#0, 2400.000 MHz\\n .nr_running : 1\\n .nr_switches : 154921\\n .nr_uninterruptible : -53\\n .next_balance : 4295.164656\\n .curr->pid : 7188\\n .clock : 497505.138798\\n .clock_task : 497505.138798\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[0]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4887.526742\\n .avg_vruntime : 4887.526742\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 1048576\\n .load_avg : 1024\\n .runnable_avg : 705\\n .util_avg : 705\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1024\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497505.138798\\n .se->vruntime : 12884.405142\\n .se->sum_exec_runtime : 5318.268118\\n .se->load.weight : 430530\\n .se->avg.load_avg : 420\\n .se->avg.util_avg : 705\\n .se->avg.runnable_avg : 705\\n\\ncfs_rq[0]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12884.405142\\n .avg_vruntime : 12884.405142\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 430530\\n .load_avg : 420\\n .runnable_avg : 705\\n .util_avg : 705\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 410\\n .tg_load_avg : 724\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497505.138798\\n .se->vruntime : 19912.859941\\n .se->sum_exec_runtime : 5581.180766\\n .se->load.weight : 600002\\n .se->avg.load_avg : 585\\n .se->avg.util_avg : 705\\n .se->avg.runnable_avg : 705\\n\\ncfs_rq[0]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3213.270766\\n .avg_vruntime : 3213.270766\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497416.362608\\n .se->vruntime : 69914.661487\\n .se->sum_exec_runtime : 3832.543890\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 551.618312\\n .avg_vruntime : 551.618312\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497215.744525\\n .se->vruntime : 69913.485373\\n .se->sum_exec_runtime : 570.686452\\n .se->load.weight : 102633\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[0]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 423.674061\\n .avg_vruntime : 423.674061\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497218.176288\\n .se->vruntime : 69914.263485\\n .se->sum_exec_runtime : 441.443863\\n .se->load.weight : 178206\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/dbus.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 429.467639\\n .avg_vruntime : 429.467639\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497117.814859\\n .se->vruntime : 69904.558399\\n .se->sum_exec_runtime : 430.641510\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69914.661487\\n .avg_vruntime : 69914.661487\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497416.362608\\n .se->vruntime : 110072.663291\\n .se->sum_exec_runtime : 17856.059450\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[0]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19912.859941\\n .avg_vruntime : 19912.859941\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 600002\\n .load_avg : 585\\n .runnable_avg : 705\\n .util_avg : 705\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 571\\n .tg_load_avg : 918\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497505.138798\\n .se->vruntime : 110132.315335\\n .se->sum_exec_runtime : 8494.259480\\n .se->load.weight : 658172\\n .se->avg.load_avg : 642\\n .se->avg.util_avg : 705\\n .se->avg.runnable_avg : 705\\n\\ncfs_rq[0]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 110132.315335\\n .avg_vruntime : 110132.315335\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 658172\\n .load_avg : 652\\n .runnable_avg : 716\\n .util_avg : 705\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[0]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[0]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n Spool_workqueue_ 3 50.484081 E 53.473963 3.000000 0.010118 3 120 0.000000 0.010118 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_g 4 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_p 5 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-slub_ 6 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-netns 7 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n I kworker/0:0 8 59814.143606 E 59817.054498 3.000000 291.283992 683 120 0.000000 291.283992 0.000000 0.000000 0 0 /\\n I kworker/0:0H 9 61.484472 E 61.518998 3.000000 0.013159 4 100 0.000000 0.013159 0.000000 0.000000 0 0 /\\n I kworker/0:1 10 110102.994176 E 110105.979830 3.000000 443.597693 1685 120 0.000000 443.597693 0.000000 0.000000 0 0 /\\n Ikworker/R-mm_pe 12 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_kthre 13 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_rude_ 14 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_trace 15 429.940627 E 432.911629 3.000000 0.267245 7 120 0.000000 0.267245 0.000000 0.000000 0 0 /\\n S ksoftirqd/0 16 110072.064479 E 110075.052085 3.000000 62.114379 2756 120 0.000000 62.114379 0.000000 0.000000 0 0 /\\n S migration/0 18 0.626525 E 0.123004 0.750000 7.381194 186 0 0.000000 7.381194 0.000000 0.000000 0 0 /\\n S idle_inject/0 19 0.467865 E 0.280188 0.750000 0.005407 3 49 0.000000 0.005407 0.000000 0.000000 0 0 /\\n S cpuhp/0 20 8335.382094 E 8338.316225 3.000000 1.150907 26 120 0.000000 1.150907 0.000000 0.000000 0 0 /\\n S khungtaskd 67 108672.106140 E 108674.969065 3.000000 1.182887 6 120 0.000000 1.182887 0.000000 0.000000 0 0 /\\n Ikworker/R-charg 128 50.473963 E 50.508549 3.000000 0.093293 2 100 0.000000 0.093293 0.000000 0.000000 0 0 /\\n I kworker/0:1H 157 108759.587105 E 108759.621661 3.000000 8.225065 447 100 0.000000 8.225065 0.000000 0.000000 0 0 /\\n I kworker/0:2 224 106653.295552 E 106656.280240 3.000000 289.143519 1046 120 0.000000 289.143519 0.000000 0.000000 0 0 /\\n I kworker/u16:5 423 108686.231098 E 108689.221814 3.000000 311.055376 6044 120 0.000000 311.055376 0.000000 0.000000 0 0 /\\n Sirq/193-iwlwifi 535 3646.117837 E 3649.116436 3.000000 2.670325 15 49 0.000000 2.670325 0.000000 0.000000 0 0 /\\n Ikworker/R-cros_ 583 4098.545142 E 4098.579743 3.000000 0.004733 2 100 0.000000 0.004733 0.000000 0.000000 0 0 /\\n S card1-crtc0 586 4105.692415 E 4108.689897 3.000000 0.071775 4 49 0.000000 0.071775 0.000000 0.000000 0 0 /\\n S card1-crtc1 587 4105.694050 E 4108.692415 3.000000 0.002284 2 49 0.000000 0.002284 0.000000 0.000000 0 0 /\\n S card1-crtc2 588 4105.695887 E 4108.694050 3.000000 0.002459 2 49 0.000000 0.002459 0.000000 0.000000 0 0 /\\n S card1-crtc3 589 4105.697510 E 4108.695887 3.000000 0.002237 2 49 0.000000 0.002237 0.000000 0.000000 0 0 /\\n S sd-resolve 762 2.805469 E 4.473698 3.000000 3.300131 16 120 0.000000 3.300131 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n I kworker/0:3 754 107744.893763 E 107747.883590 3.000000 300.467214 839 120 0.000000 300.467214 0.000000 0.000000 0 0 /\\n Saccounts-daemon 790 14.253092 E 16.355003 3.000000 133.580546 272 120 0.000000 133.580546 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S bluetoothd 794 16.633153 E 19.566497 3.000000 95.102018 395 120 0.000000 95.102018 0.000000 0.000000 0 0 /system.slice/bluetooth.service\\n S gdbus 936 13.969662 E 16.117388 3.000000 134.487699 479 120 0.000000 134.487699 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S gmain 1041 0.924491 E 2.068097 3.000000 0.059449 2 120 0.000000 0.059449 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S cleanup 1103 7.256534 E 10.181598 3.000000 0.315513 4 120 0.000000 0.315513 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S avahi-daemon 893 0.811987 E 2.186352 3.000000 0.137179 4 120 0.000000 0.137179 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S gdbus 1098 5.410405 E 7.152417 3.000000 21.180934 75 120 0.000000 21.180934 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1474 423.674061 E 426.660929 3.000000 114.125825 5014 120 0.000000 114.125825 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1475 0.003081 E 2.997094 3.000000 0.496009 16 120 0.000000 0.496009 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gmain 1483 3.022894 E 5.996257 3.000000 0.026637 1 120 0.000000 0.026637 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pw-data-loop 1534 8.779134 E 11.773129 3.000000 0.034056 3 79 0.000000 0.034056 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1569 1880.003146 E 1881.958162 3.000000 41.683534 431 120 0.000000 41.683534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1554 9.640752 E 12.603939 3.000000 0.065887 2 120 0.000000 0.065887 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1556 10.631341 E 13.583311 3.000000 0.917172 22 120 0.000000 0.917172 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fusermount3 1564 9.813596 E 12.812048 3.000000 0.930269 5 120 0.000000 0.930269 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1604 2082.041252 E 2085.016150 3.000000 16.345525 87 120 0.000000 16.345525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 1683 10.500403 E 11.973892 3.000000 42.294132 289 120 0.000000 42.294132 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1674 550.471058 E 553.466104 3.000000 85.825897 2668 120 0.000000 85.825897 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2406 550.458434 E 552.367724 3.000000 118.847457 2984 120 0.000000 118.847457 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2416 374.234438 E 377.219668 3.000000 35.780266 1608 120 0.000000 35.780266 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1662 0.339085 E 2.445153 3.000000 1.213060 14 120 0.000000 1.213060 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S docker-init 2511 4.002446 E 6.890174 3.000000 51.928413 540 120 0.000000 51.928413 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2764 1.983811 E 4.744663 3.000000 18.886864 175 120 0.000000 18.886864 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/0:4 2998 59771.957357 E 59774.932526 3.000000 271.888982 1142 120 0.000000 271.888982 0.000000 0.000000 0 0 /\\n I kworker/0:5 2999 59772.125702 E 59775.104333 3.000000 138.814812 467 120 0.000000 138.814812 0.000000 0.000000 0 0 /\\n I kworker/0:6 3000 106645.660039 E 106648.638963 3.000000 278.875952 1115 120 0.000000 278.875952 0.000000 0.000000 0 0 /\\n I kworker/0:7 3001 59757.114051 E 59760.069565 3.000000 105.172095 199 120 0.000000 105.172095 0.000000 0.000000 0 0 /\\n S Xwayland 3030 823.312878 E 826.243091 3.000000 73.675981 404 120 0.000000 73.675981 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:sh0 3265 798.437067 E 801.432850 3.000000 0.043697 5 120 0.000000 0.043697 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3082 846.693163 E 849.149172 3.000000 0.987458 8 120 0.000000 0.987458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3105 850.647701 E 853.480247 3.000000 0.288156 7 120 0.000000 0.288156 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3117 753.415062 E 755.693222 3.000000 0.802525 2 120 0.000000 0.802525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3122 46.671710 E 49.646140 3.000000 0.025570 1 120 0.000000 0.025570 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3133 795.342480 E 798.312721 3.000000 2.282013 41 120 0.000000 2.282013 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3128 789.541948 E 792.521534 3.000000 0.623284 13 120 0.000000 0.623284 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-print-notif 3109 794.936793 E 797.917349 3.000000 26.108835 70 120 0.000000 26.108835 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3157 53.427679 E 56.401651 3.000000 0.026028 1 120 0.000000 0.026028 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-a11y-settin 3163 794.888778 E 797.870455 3.000000 6.166578 47 120 0.000000 6.166578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3176 794.880654 E 797.815559 3.000000 5.039055 51 120 0.000000 5.039055 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3340 1927.697033 E 1927.760897 3.000000 47.743714 9 120 0.000000 47.743714 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3349 808.794366 E 811.794366 3.000000 10.264307 5 120 0.000000 10.264307 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x11:sh0 3377 816.300810 E 819.286174 3.000000 0.014636 1 120 0.000000 0.014636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter:traceq0 3381 817.363254 E 1021.171202 3.000000 0.084925 1 139 0.000000 0.084925 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3386 818.412051 E 821.351989 3.000000 0.093107 2 120 0.000000 0.093107 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3387 817.414689 E 820.396299 3.000000 0.018390 1 120 0.000000 0.018390 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3389 818.351989 E 821.340314 3.000000 0.199289 7 120 0.000000 0.199289 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3366 811.073812 E 814.040000 3.000000 0.033812 1 120 0.000000 0.033812 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3393 819.206920 E 822.175436 3.000000 0.075475 3 120 0.000000 0.075475 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-portal 3364 2007.693323 E 2010.683621 3.000000 3.592916 25 120 0.000000 3.592916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3465 4.873835 E 7.857378 3.000000 12.993458 14 120 0.000000 12.993458 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3507 5.151991 E 8.096082 3.000000 0.172631 6 120 0.000000 0.172631 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3506 5.696636 E 8.662738 3.000000 0.223461 7 120 0.000000 0.223461 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-permission- 3549 8.115189 E 11.087827 3.000000 4.193195 7 120 0.000000 4.193195 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/0:8 3759 59756.400082 E 59759.380811 3.000000 1.022501 23 120 0.000000 1.022501 0.000000 0.000000 0 0 /\\n I kworker/0:9 3760 59770.205205 E 59773.169769 3.000000 1.596805 44 120 0.000000 1.596805 0.000000 0.000000 0 0 /\\n I kworker/0:10 3801 59771.969076 E 59774.937321 3.000000 0.905114 21 120 0.000000 0.905114 0.000000 0.000000 0 0 /\\n I kworker/0:11 3834 59756.809577 E 59759.790531 3.000000 0.552745 12 120 0.000000 0.552745 0.000000 0.000000 0 0 /\\n I kworker/0:12 3835 106653.311957 E 106656.295552 3.000000 148.657890 267 120 0.000000 148.657890 0.000000 0.000000 0 0 /\\n I kworker/0:13 3878 59770.675693 E 59773.644782 3.000000 0.401815 9 120 0.000000 0.401815 0.000000 0.000000 0 0 /\\n I kworker/0:14 3879 59838.813777 E 59841.697927 3.000000 118.760857 459 120 0.000000 118.760857 0.000000 0.000000 0 0 /\\n I kworker/0:15 3880 59757.553220 E 59760.501134 3.000000 0.251809 8 120 0.000000 0.251809 0.000000 0.000000 0 0 /\\n I kworker/0:16 4875 106655.724790 E 106656.772624 3.000000 51.472422 564 120 0.000000 51.472422 0.000000 0.000000 0 0 /\\n S docker 5108 142.053576 E 144.677977 3.000000 0.445408 2 120 0.000000 0.445408 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5125 145.841713 E 148.838155 3.000000 2.587746 33 120 0.000000 2.587746 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5128 153.640018 E 156.632884 3.000000 8.548291 260 120 0.000000 8.548291 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5138 147.883780 E 150.508821 3.000000 3.072613 60 120 0.000000 3.072613 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5207 380.169185 E 383.159727 3.000000 1.776241 5 120 0.000000 1.776241 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5209 380.159727 E 383.144516 3.000000 0.125477 4 120 0.000000 0.125477 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5265 317.900081 E 320.886003 3.000000 0.088538 5 120 0.000000 0.088538 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6177 406.824249 E 409.321199 3.000000 1.348428 5 120 0.000000 1.348428 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_close_file 5371 0.996541 E 1.988580 3.000000 0.014879 1 120 0.000000 0.014879 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S bio_lazy_free 5373 0.971337 E 2.003459 3.000000 0.025204 2 120 0.000000 0.025204 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5402 391.629910 E 394.593552 3.000000 0.036358 1 120 0.000000 0.036358 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5404 440.410950 E 443.311576 3.000000 0.200935 4 120 0.000000 0.200935 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5423 412.747998 E 415.704313 3.000000 7.703882 77 120 0.000000 7.703882 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5426 321.885108 E 324.879367 3.000000 0.005741 1 120 0.000000 0.005741 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5459 331.501159 E 334.467439 3.000000 1.138122 31 120 0.000000 1.138122 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bash 5535 0.374091 E 2.004330 3.000000 1.369761 2 120 0.000000 1.369761 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5560 1.881197 E 4.297811 3.000000 87.562664 10 120 0.000000 87.562664 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5598 1096.827304 E 1099.827304 3.000000 67.403138 16 120 0.000000 67.403138 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5664 1810.667125 E 1813.659738 3.000000 48.028793 19 120 0.000000 48.028793 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6353 2962.498940 E 2965.273620 3.000000 9.925404 79 120 0.000000 9.925404 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6354 2962.532768 E 2965.492613 3.000000 10.767032 25 120 0.000000 10.767032 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5613 1154.546552 E 1157.489793 3.000000 50.490838 17 120 0.000000 50.490838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5688 1886.290395 E 1889.290395 3.000000 33.583605 11 120 0.000000 33.583605 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5689 1886.727601 E 1889.716108 3.000000 34.006642 14 120 0.000000 34.006642 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5691 1887.153050 E 1890.141066 3.000000 34.415056 12 120 0.000000 34.415056 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6337 2948.346864 E 2951.320900 3.000000 0.105808 3 120 0.000000 0.105808 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5605 1128.699724 E 1130.733412 3.000000 59.322321 20 120 0.000000 59.322321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5674 1837.950616 E 1840.941193 3.000000 34.976674 14 120 0.000000 34.976674 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5676 1842.845926 E 1842.887818 3.000000 39.859633 14 120 0.000000 39.859633 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5645 1691.475316 E 1694.467524 3.000000 28.433086 12 120 0.000000 28.433086 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5646 1692.040496 E 1695.034677 3.000000 28.990755 9 120 0.000000 28.990755 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5639 1491.853459 E 1492.774908 3.000000 56.154692 21 120 0.000000 56.154692 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5706 1914.066082 E 1916.114488 3.000000 31.948839 9 120 0.000000 31.948839 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5708 1917.130715 E 1920.121651 3.000000 35.002311 12 120 0.000000 35.002311 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5575 3213.270766 E 3216.169396 3.000000 3248.776681 1769 120 0.000000 3248.776681 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5626 1181.663383 E 1181.681283 3.000000 50.832084 14 120 0.000000 50.832084 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5655 1726.481090 E 1729.473436 3.000000 36.998391 11 120 0.000000 36.998391 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5717 1958.888518 E 1961.882843 3.000000 34.652408 11 120 0.000000 34.652408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6347 2960.545968 E 2963.333661 3.000000 9.357649 17 120 0.000000 9.357649 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5724 1963.859694 E 1966.846384 3.000000 63.747694 20 120 0.000000 63.747694 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6359 111.477320 E 114.300776 3.000000 6.070420 13 120 0.000000 6.070420 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n Spool-nm-dispatc 6927 77.829754 E 80.799100 3.000000 5.459637 9 120 0.000000 5.459637 0.000000 0.000000 0 0 /system.slice/NetworkManager-dispatcher.service\\n S python3 7046 4725.996727 E 4726.142976 3.000000 110.893879 6 120 0.000000 110.893879 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 6962 136.020760 E 138.985200 3.000000 3.905181 14 120 0.000000 3.905181 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n>R python3 7188 4887.526742 E 4887.527058 3.000000 25.029813 1 120 0.000000 25.029813 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#1, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 141698\\n .nr_uninterruptible : 56\\n .next_balance : 4295.164624\\n .curr->pid : 0\\n .clock : 497505.244171\\n .clock_task : 497505.244171\\n .avg_idle : 898297\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[1]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3482.113510\\n .avg_vruntime : 3482.113510\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497501.954091\\n .se->vruntime : 73209.832335\\n .se->sum_exec_runtime : 4021.057351\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 496.408136\\n .avg_vruntime : 496.408136\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497212.409610\\n .se->vruntime : 73207.127153\\n .se->sum_exec_runtime : 505.830008\\n .se->load.weight : 14007\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 374.710195\\n .avg_vruntime : 374.710195\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497321.474948\\n .se->vruntime : 73209.487953\\n .se->sum_exec_runtime : 391.834756\\n .se->load.weight : 308404\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/cups-browsed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 31.811502\\n .avg_vruntime : 31.811502\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.106963\\n .se->vruntime : 73198.434830\\n .se->sum_exec_runtime : 33.910145\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69.824440\\n .avg_vruntime : 69.824440\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.240745\\n .se->vruntime : 73198.478085\\n .se->sum_exec_runtime : 71.116579\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/systemd-logind.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 262.513913\\n .avg_vruntime : 262.513913\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.395730\\n .se->vruntime : 73209.729098\\n .se->sum_exec_runtime : 263.707935\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 73209.832335\\n .avg_vruntime : 73209.832335\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497501.954091\\n .se->vruntime : 112136.319166\\n .se->sum_exec_runtime : 21728.515485\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5282.286791\\n .avg_vruntime : 5282.286791\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 619\\n .runnable_avg : 310\\n .util_avg : 310\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 619\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.462327\\n .se->vruntime : 13388.194488\\n .se->sum_exec_runtime : 5288.749187\\n .se->load.weight : 243313\\n .se->avg.load_avg : 143\\n .se->avg.util_avg : 310\\n .se->avg.runnable_avg : 310\\n\\ncfs_rq[1]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13388.194488\\n .avg_vruntime : 13388.194488\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 143\\n .runnable_avg : 310\\n .util_avg : 310\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 143\\n .tg_load_avg : 724\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.462327\\n .se->vruntime : 26456.800369\\n .se->sum_exec_runtime : 5525.721169\\n .se->load.weight : 221688\\n .se->avg.load_avg : 130\\n .se->avg.util_avg : 310\\n .se->avg.runnable_avg : 310\\n\\ncfs_rq[1]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 26456.800369\\n .avg_vruntime : 26456.800369\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 130\\n .runnable_avg : 310\\n .util_avg : 310\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 130\\n .tg_load_avg : 918\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.462327\\n .se->vruntime : 112136.177651\\n .se->sum_exec_runtime : 10847.739991\\n .se->load.weight : 158386\\n .se->avg.load_avg : 93\\n .se->avg.util_avg : 310\\n .se->avg.runnable_avg : 310\\n\\ncfs_rq[1]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 112136.323599\\n .avg_vruntime : 112136.323599\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 93\\n .runnable_avg : 311\\n .util_avg : 311\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[1]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[1]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n I rcu_preempt 17 112136.323599 E 112139.319166 3.000000 555.354396 15819 120 0.000000 555.354396 0.000000 0.000000 0 0 /\\n S cpuhp/1 21 7932.094818 E 7935.015583 3.000000 0.356355 26 120 0.000000 0.356355 0.000000 0.000000 0 0 /\\n S idle_inject/1 22 -1.046696 E 0.298424 0.750000 0.006020 3 49 0.000000 0.006020 0.000000 0.000000 0 0 /\\n S migration/1 23 0.056269 E 0.693236 0.750000 170.276741 176 0 0.000000 170.276741 0.000000 0.000000 0 0 /\\n S ksoftirqd/1 24 112136.203612 E 112139.192249 3.000000 28.623848 699 120 0.000000 28.623848 0.000000 0.000000 0 0 /\\n I kworker/1:0H 26 21.947051 E 21.981566 3.000000 0.017963 4 100 0.000000 0.017963 0.000000 0.000000 0 0 /\\n Ikworker/R-write 70 -1.034874 E -1.000265 3.000000 0.000849 2 100 0.000000 0.000849 0.000000 0.000000 0 0 /\\n S ksmd 72 -1.034874 E 8.135275 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/9-acpi 79 0.888458 E 2.110113 3.000000 28.241209 93 49 0.000000 28.241209 0.000000 0.000000 0 0 /\\n I kworker/1:1 89 110520.559885 E 110523.496783 3.000000 52.629865 1086 120 0.000000 52.629865 0.000000 0.000000 0 0 /\\n I kworker/1:1H 185 110813.650322 E 110813.684796 3.000000 5.308662 426 100 0.000000 5.308662 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 221 392.789305 E 392.823904 3.000000 0.005027 2 100 0.000000 0.005027 0.000000 0.000000 0 0 /\\n Sjbd2/nvme0n1p5- 264 110813.670283 E 110816.650322 3.000000 82.660068 1482 120 0.000000 82.660068 0.000000 0.000000 0 0 /\\n I kworker/u16:7 450 110228.547058 E 110231.504609 3.000000 185.340990 3240 120 0.000000 185.340990 0.000000 0.000000 0 0 /\\n I kworker/u16:9 452 112134.569693 E 112137.362435 3.000000 215.067204 2839 120 0.000000 215.067204 0.000000 0.000000 0 0 /\\n Ikworker/R-crypt 531 2507.555715 E 2507.590316 3.000000 0.005940 2 100 0.000000 0.005940 0.000000 0.000000 0 0 /\\n Sirq/194-iwlwifi 536 3740.895044 E 3743.891071 3.000000 4.620247 25 49 0.000000 4.620247 0.000000 0.000000 0 0 /\\n I kworker/u17:3 785 111839.603576 E 111839.637946 3.000000 304.470349 7074 100 0.000000 304.470349 0.000000 0.000000 0 0 /\\n S gmain 910 0.472046 E 3.459363 3.000000 0.047699 2 120 0.000000 0.047699 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S polkitd 812 69.824440 E 72.781269 3.000000 678.489840 1237 120 0.000000 678.489840 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S gmain 923 3.433860 E 6.421449 3.000000 0.067212 2 120 0.000000 0.067212 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S gdbus 924 7.269924 E 9.126327 3.000000 20.415944 94 120 0.000000 20.415944 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 2924 248.955894 E 251.818007 3.000000 91.527058 125 120 0.000000 91.527058 0.000000 0.000000 0 0 /system.slice/snapd.service\\n Sswitcheroo-cont 836 7.518062 E 10.434047 3.000000 44.143872 152 120 0.000000 44.143872 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 855 678.794948 E 681.780048 3.000000 2.778419 30 120 0.000000 2.778419 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 856 2.227776 E 5.225721 3.000000 94.523149 368 120 0.000000 94.523149 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S systemd-logind 842 262.513913 E 265.426403 3.000000 1428.755370 5668 120 0.000000 1428.755370 0.000000 0.000000 0 0 /system.slice/systemd-logind.service\\n I kworker/1:3 971 99567.576275 E 99568.532374 3.000000 89.510496 905 120 0.000000 89.510496 0.000000 0.000000 0 0 /\\n S ModemManager 1073 5.563007 E 8.197024 3.000000 77.347997 382 120 0.000000 77.347997 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S pool-spawner 1106 14.206991 E 17.144135 3.000000 0.125154 3 120 0.000000 0.125154 0.000000 0.000000 0 0 /system.slice/upower.service\\n S gmain 1107 14.144135 E 17.122581 3.000000 0.021554 1 120 0.000000 0.021554 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1118 0.488564 E 2.489338 3.000000 0.204262 22 120 0.000000 0.204262 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S cupsd 1439 4.468166 E 6.566988 3.000000 22.666250 96 120 0.000000 22.666250 0.000000 0.000000 0 0 /system.slice/cups.service\\n S containerd 1458 332.847699 E 335.052522 3.000000 181.796101 4487 120 0.000000 181.796101 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1473 374.367368 E 377.361959 3.000000 129.047272 4222 120 0.000000 129.047272 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdm3 1469 28.866371 E 31.777617 3.000000 29.629979 80 120 0.000000 29.629979 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S systemd 1499 204.416541 E 206.236596 3.000000 1486.265198 649 120 0.000000 1486.265198 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pipewire 1512 16.254098 E 16.510392 3.000000 32.093335 224 109 0.000000 32.093335 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1527 11.267137 E 14.210616 3.000000 0.188517 6 120 0.000000 0.188517 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1541 11.066776 E 14.063472 3.000000 0.112549 13 79 0.000000 0.112549 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1551 11.210616 E 14.180555 3.000000 0.056827 2 120 0.000000 0.056827 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1553 14.775624 E 17.722860 3.000000 0.661282 10 120 0.000000 0.661282 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1526 0.567104 E 2.363017 3.000000 0.680927 15 120 0.000000 0.680927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgnome-session-b 1546 4026.427161 E 4028.816499 3.000000 72.220451 386 120 0.000000 72.220451 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1555 11.411258 E 14.381068 3.000000 0.030190 1 120 0.000000 0.030190 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1559 11.464077 E 14.455527 3.000000 0.052819 2 120 0.000000 0.052819 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1601 4276.728703 E 4277.548241 3.000000 682.557345 2167 120 0.000000 682.557345 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1602 241.182424 E 244.164119 3.000000 1.813576 72 120 0.000000 1.813576 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S KMS thread 1618 4040.643096 E 4043.470042 3.000000 312.191032 825 79 0.000000 312.191032 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-s:disk$0 3004 8.656514 E 213.116341 3.000000 0.090177 1 139 0.000000 0.090177 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3014 167.316606 E 170.276345 3.000000 71.365629 133 120 0.000000 71.365629 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S cups-browsed 1656 31.811502 E 34.715810 3.000000 188.075025 825 120 0.000000 188.075025 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1670 304.900140 E 305.802357 3.000000 107.084760 2032 120 0.000000 107.084760 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1672 144.769731 E 147.755909 3.000000 0.723957 32 120 0.000000 0.723957 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2526 305.308381 E 307.900140 3.000000 3.053644 65 120 0.000000 3.053644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2527 290.625017 E 293.618099 3.000000 99.602375 2905 120 0.000000 99.602375 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2422 374.710195 E 377.705692 3.000000 30.216123 124 120 0.000000 30.216123 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2814 0.304479 E 2.637087 3.000000 0.714735 5 120 0.000000 0.714735 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3024 60.304780 E 63.271147 3.000000 0.033633 1 120 0.000000 0.033633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:gdrv0 3269 566.947492 E 569.942158 3.000000 0.048510 3 120 0.000000 0.048510 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3038 563.666293 E 566.641667 3.000000 4.306399 54 120 0.000000 4.306399 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3081 645.782212 E 648.340009 3.000000 0.896962 8 120 0.000000 0.896962 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3085 646.371136 E 648.782212 3.000000 1.123443 8 120 0.000000 1.123443 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-wacom 3091 644.537177 E 647.284944 3.000000 366.045403 439 120 0.000000 366.045403 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3118 160.094256 E 163.069340 3.000000 0.024916 1 120 0.000000 0.024916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-color 3095 4231.675018 E 4233.740565 3.000000 130.213067 58 120 0.000000 130.213067 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-keyboard 3100 648.247208 E 651.166836 3.000000 121.441087 43 120 0.000000 121.441087 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3123 160.645856 E 163.586872 3.000000 0.058984 1 120 0.000000 0.058984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-smartcard 3119 563.386800 E 566.368384 3.000000 7.380501 47 120 0.000000 7.380501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3141 163.322124 E 166.295023 3.000000 0.027101 1 120 0.000000 0.027101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3152 563.387981 E 566.317884 3.000000 5.186420 57 120 0.000000 5.186420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-datetime 3129 563.405186 E 566.383009 3.000000 11.094354 49 120 0.000000 11.094354 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3201 553.536426 E 556.465699 3.000000 0.162455 3 120 0.000000 0.162455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3219 184.113084 E 187.101602 3.000000 0.087152 2 120 0.000000 0.087152 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3292 378.083610 E 380.401752 3.000000 0.681858 1 120 0.000000 0.681858 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3342 4042.206196 E 4044.992366 3.000000 1.492101 12 120 0.000000 1.492101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3345 634.080030 E 637.037078 3.000000 79.580450 171 120 0.000000 79.580450 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-:disk$0 3376 606.974571 E 811.460271 3.000000 0.041875 2 139 0.000000 0.041875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x:gdrv0 3383 611.246200 E 614.198837 3.000000 0.047363 1 120 0.000000 0.047363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3382 611.727160 E 614.717547 3.000000 0.569298 17 120 0.000000 0.569298 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S sshd 3437 7.898835 E 10.142566 3.000000 77.928271 33 120 0.000000 77.928271 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S pipewire-pulse 3475 5.257457 E 8.249472 3.000000 16.156993 25 120 0.000000 16.156993 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/1:0 5020 112134.369935 E 112137.362435 3.000000 22.196989 343 120 0.000000 22.196989 0.000000 0.000000 0 0 /\\n S docker 5111 76.881186 E 79.675463 3.000000 2.727325 5 120 0.000000 2.727325 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5211 495.628660 E 498.604235 3.000000 1.688882 57 120 0.000000 1.688882 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6176 351.781271 E 354.774407 3.000000 1.835287 16 120 0.000000 1.835287 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5395 483.830087 E 486.827818 3.000000 2.995671 127 120 0.000000 2.995671 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5427 352.663385 E 355.341777 3.000000 3.272944 43 120 0.000000 3.272944 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5528 290.121910 E 293.092020 3.000000 0.588842 12 120 0.000000 0.588842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5600 849.366916 E 852.353840 3.000000 39.919317 22 120 0.000000 39.919317 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5665 1661.043325 E 1661.083812 3.000000 55.912313 17 120 0.000000 55.912313 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5616 882.220441 E 885.175429 3.000000 29.865267 12 120 0.000000 29.865267 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5618 881.421942 E 884.354331 3.000000 29.053625 11 120 0.000000 29.053625 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5687 1785.074279 E 1788.064636 3.000000 41.826708 13 120 0.000000 41.826708 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5573 3482.010273 E 3484.935192 3.000000 3418.014504 1552 120 0.000000 3418.014504 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5697 1797.414029 E 1798.448640 3.000000 30.959422 9 120 0.000000 30.959422 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5700 1798.495212 E 1801.486113 3.000000 32.018896 11 120 0.000000 32.018896 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5574 3482.113510 E 3485.010273 3.000000 3258.199905 2042 120 0.000000 3258.199905 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5633 1752.220599 E 1755.211488 3.000000 57.584088 17 120 0.000000 57.584088 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6334 3165.588717 E 3168.411649 3.000000 10.885334 28 120 0.000000 10.885334 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5715 1835.502622 E 1838.493962 3.000000 42.959724 13 120 0.000000 42.959724 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5620 102.625658 E 105.242092 3.000000 0.383566 1 120 0.000000 0.383566 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/1:2 5968 99564.615043 E 99567.596256 3.000000 2.063702 7 120 0.000000 2.063702 0.000000 0.000000 0 0 /\\n I kworker/1:4 5969 99564.670410 E 99567.651157 3.000000 1.351890 24 120 0.000000 1.351890 0.000000 0.000000 0 0 /\\n I kworker/1:5 5970 99564.679214 E 99567.667609 3.000000 1.049866 11 120 0.000000 1.049866 0.000000 0.000000 0 0 /\\n I kworker/1:6 5971 99556.785859 E 99559.784868 3.000000 0.049506 2 120 0.000000 0.049506 0.000000 0.000000 0 0 /\\n S postgres 6343 191.721640 E 194.273749 3.000000 14.562361 11 120 0.000000 14.562361 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6360 192.003609 E 194.721640 3.000000 4.910316 11 120 0.000000 4.910316 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6958 5124.159081 E 5127.148837 3.000000 0.080839 3 120 0.000000 0.080839 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 6961 5124.148837 E 5127.140799 3.000000 0.104426 5 120 0.000000 0.104426 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 7045 5248.571145 E 5250.742544 3.000000 110.637307 10 120 0.000000 110.637307 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 7187 5282.286791 E 5285.254677 3.000000 0.311821 2 120 0.000000 0.311821 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#2, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 172010\\n .nr_uninterruptible : -227\\n .next_balance : 4295.164620\\n .curr->pid : 0\\n .clock : 497502.006475\\n .clock_task : 497502.006475\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[2]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2359.028521\\n .avg_vruntime : 2359.028521\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 660\\n .runnable_avg : 280\\n .util_avg : 280\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 660\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.110788\\n .se->vruntime : 9700.865330\\n .se->sum_exec_runtime : 2369.446459\\n .se->load.weight : 242582\\n .se->avg.load_avg : 152\\n .se->avg.util_avg : 280\\n .se->avg.runnable_avg : 280\\n\\ncfs_rq[2]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9700.865330\\n .avg_vruntime : 9700.865330\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 152\\n .runnable_avg : 280\\n .util_avg : 280\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 152\\n .tg_load_avg : 724\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.110788\\n .se->vruntime : 15794.893436\\n .se->sum_exec_runtime : 2641.920554\\n .se->load.weight : 331721\\n .se->avg.load_avg : 208\\n .se->avg.util_avg : 280\\n .se->avg.runnable_avg : 280\\n\\ncfs_rq[2]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 584.930034\\n .avg_vruntime : 584.930034\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497495.964649\\n .se->vruntime : 77370.917005\\n .se->sum_exec_runtime : 587.517067\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 491.623970\\n .avg_vruntime : 491.623970\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497453.176759\\n .se->vruntime : 77370.746453\\n .se->sum_exec_runtime : 492.924100\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3807.017509\\n .avg_vruntime : 3807.017509\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497502.006475\\n .se->vruntime : 77370.992460\\n .se->sum_exec_runtime : 4289.472037\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 581.134705\\n .avg_vruntime : 581.134705\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497420.462807\\n .se->vruntime : 77370.665318\\n .se->sum_exec_runtime : 595.768286\\n .se->load.weight : 149796\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 352.363352\\n .avg_vruntime : 352.363352\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497217.468221\\n .se->vruntime : 77369.754425\\n .se->sum_exec_runtime : 367.735247\\n .se->load.weight : 218231\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12.013346\\n .avg_vruntime : 12.013346\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.222133\\n .se->vruntime : 77357.566862\\n .se->sum_exec_runtime : 13.774267\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 77370.992460\\n .avg_vruntime : 77370.992460\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497502.006475\\n .se->vruntime : 111879.234462\\n .se->sum_exec_runtime : 21144.600992\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[2]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15794.893436\\n .avg_vruntime : 15794.893436\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 208\\n .runnable_avg : 280\\n .util_avg : 280\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 208\\n .tg_load_avg : 918\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.110788\\n .se->vruntime : 111879.089108\\n .se->sum_exec_runtime : 4413.396552\\n .se->load.weight : 406022\\n .se->avg.load_avg : 255\\n .se->avg.util_avg : 280\\n .se->avg.runnable_avg : 280\\n\\ncfs_rq[2]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 111879.234462\\n .avg_vruntime : 111879.234462\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 256\\n .runnable_avg : 283\\n .util_avg : 283\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[2]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[2]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/2 27 10232.512266 E 10235.476962 3.000000 0.310145 26 120 0.000000 0.310145 0.000000 0.000000 0 0 /\\n S idle_inject/2 28 -1.048574 E 0.451426 1.500000 0.000962 3 49 0.000000 0.000962 0.000000 0.000000 0 0 /\\n S migration/2 29 0.100700 E 0.850203 0.750000 170.525144 193 0 0.000000 170.525144 0.000000 0.000000 0 0 /\\n S ksoftirqd/2 30 111876.363419 E 111879.250608 3.000000 25.592931 1028 120 0.000000 25.592931 0.000000 0.000000 0 0 /\\n I kworker/2:0 31 62457.803260 E 62460.735327 3.000000 8.218140 34 120 0.000000 8.218140 0.000000 0.000000 0 0 /\\n I kworker/2:0H 32 103.304456 E 103.338997 3.000000 0.014834 5 100 0.000000 0.014834 0.000000 0.000000 0 0 /\\n S oom_reaper 69 -1.013776 E 1.986224 3.000000 0.000042 2 120 0.000000 0.000042 0.000000 0.000000 0 0 /\\n I kworker/2:1 80 111879.098389 E 111882.089108 3.000000 322.969787 4820 120 0.000000 322.969787 0.000000 0.000000 0 0 /\\n I kworker/2:1H 195 111574.113875 E 111574.147027 3.000000 5.101369 323 100 0.000000 5.101369 0.000000 0.000000 0 0 /\\n I kworker/2:2 217 109122.668372 E 109125.655350 3.000000 119.024839 1710 120 0.000000 119.024839 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 218 470.398502 E 470.433104 3.000000 0.005099 2 100 0.000000 0.005099 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 219 470.401038 E 470.435644 3.000000 0.002850 2 100 0.000000 0.002850 0.000000 0.000000 0 0 /\\n I kworker/2:3 223 109854.351465 E 109857.342116 3.000000 156.728798 1900 120 0.000000 156.728798 0.000000 0.000000 0 0 /\\n I kworker/2:4 349 62418.902108 E 62421.893366 3.000000 2.337037 7 120 0.000000 2.337037 0.000000 0.000000 0 0 /\\n S irq/191-mei_me 520 2425.538335 E 2428.535129 3.000000 1.457719 39 49 0.000000 1.457719 0.000000 0.000000 0 0 /\\n Sirq/195-iwlwifi 538 3925.397830 E 3928.395543 3.000000 3187.591130 16177 49 0.000000 3187.591130 0.000000 0.000000 0 0 /\\n S systemd-oomd 660 38.424962 E 41.386089 3.000000 625.763835 663 120 0.000000 625.763835 0.000000 0.000000 0 0 /system.slice/systemd-oomd.service\\n S snapd 854 181.532524 E 181.847161 3.000000 74.669991 322 120 0.000000 74.669991 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 838 584.930034 E 587.917657 3.000000 441.306675 5913 120 0.000000 441.306675 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n R sysbox-mgr 851 584.917657 E 587.894281 3.000000 1451.198506 19925 120 0.000000 1451.198506 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 844 12.013346 E 14.969853 3.000000 37.062496 413 120 0.000000 37.062496 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S pool-spawner 876 1.965147 E 4.922053 3.000000 0.074621 2 120 0.000000 0.074621 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gdbus 939 134.760380 E 137.649676 3.000000 423.490843 3105 120 0.000000 423.490843 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n Ikworker/R-ipmi- 913 6961.772658 E 6961.807253 3.000000 0.015936 2 100 0.000000 0.015936 0.000000 0.000000 0 0 /\\n S rsyslogd 919 33.759388 E 36.497758 3.000000 30.430189 90 120 0.000000 30.430189 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S pool-spawner 1100 6.890317 E 9.858408 3.000000 0.106301 5 120 0.000000 0.106301 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1116 2.347087 E 5.294553 3.000000 0.174658 34 120 0.000000 0.174658 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sh 1121 12.505172 E 15.381318 3.000000 5.274342 15 120 0.000000 5.274342 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1459 348.978428 E 351.210860 3.000000 132.622842 5139 120 0.000000 132.622842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1460 345.354639 E 346.777298 3.000000 226.427537 5508 120 0.000000 226.427537 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1461 0.881565 E 2.097726 3.000000 0.020709 1 120 0.000000 0.020709 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1490 352.363352 E 355.355256 3.000000 165.017494 3612 120 0.000000 165.017494 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sgdm-session-wor 1492 0.021664 E 2.378098 3.000000 7.685172 93 120 0.000000 7.685172 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 1500 0.906613 E 1.951424 3.000000 0.141963 1 120 0.000000 0.141963 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pw-data-loop 1536 3.469723 E 6.464575 3.000000 0.024781 3 79 0.000000 0.024781 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sgdm-wayland-ses 1517 0.890985 E 3.860521 3.000000 4.316422 18 120 0.000000 4.316422 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1565 410.548304 E 413.512933 3.000000 0.246882 6 120 0.000000 0.246882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1603 1004.645404 E 1007.549856 3.000000 8.913530 96 120 0.000000 8.913530 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1608 1004.652516 E 1007.645404 3.000000 10.006127 117 120 0.000000 10.006127 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shel:sh0 3005 31.707816 E 34.581346 3.000000 0.126470 1 120 0.000000 0.126470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3012 33.382173 E 238.030347 3.000000 0.007470 1 139 0.000000 0.007470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3013 33.387365 E 36.382173 3.000000 0.005192 1 120 0.000000 0.005192 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3276 121.709419 E 124.678683 3.000000 0.030736 1 120 0.000000 0.030736 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Spool-gnome-shel 6918 1035.078658 E 1038.065537 3.000000 0.440852 3 120 0.000000 0.440852 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1666 392.441719 E 395.424069 3.000000 85.574576 1861 120 0.000000 85.574576 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1699 581.134705 E 584.127817 3.000000 183.081203 5220 120 0.000000 183.081203 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2722 1.991100 E 4.985710 3.000000 0.640714 24 120 0.000000 0.640714 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Ikworker/R-tls-s 2863 22769.817423 E 22769.852008 3.000000 0.015449 2 100 0.000000 0.015449 0.000000 0.000000 0 0 /\\n S dconf worker 3025 46.149564 E 49.142692 3.000000 0.447278 11 120 0.000000 0.447278 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S colord 3035 21.580781 E 24.092855 3.000000 92.765102 187 120 0.000000 92.765102 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gmain 3041 0.737224 E 2.242460 3.000000 0.155686 2 120 0.000000 0.155686 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gjs 3078 487.170160 E 488.823207 3.000000 59.101805 83 120 0.000000 59.101805 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3130 407.533407 E 410.525336 3.000000 0.766318 14 120 0.000000 0.766318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3187 98.848084 E 101.823175 3.000000 0.095370 2 120 0.000000 0.095370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-media-keys 3146 953.008761 E 955.920109 3.000000 135.098877 137 120 0.000000 135.098877 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3202 99.517382 E 102.480455 3.000000 0.036927 1 120 0.000000 0.036927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3344 968.712808 E 971.613739 3.000000 1.076193 11 120 0.000000 1.076193 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3354 424.550236 E 427.529183 3.000000 0.083867 3 120 0.000000 0.083867 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3369 435.646524 E 438.628102 3.000000 0.253340 7 120 0.000000 0.253340 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3372 999.168925 E 1002.117870 3.000000 1.312504 18 120 0.000000 1.312504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3379 436.877871 E 439.851438 3.000000 0.116796 2 120 0.000000 0.116796 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Ssnapd-desktop-i 3468 39.501067 E 42.224366 3.000000 18.969394 43 120 0.000000 18.969394 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/2:5 4401 62457.735327 E 62460.617124 3.000000 6.696486 19 120 0.000000 6.696486 0.000000 0.000000 0 0 /\\n I kworker/2:6 4402 62417.302767 E 62420.302240 3.000000 0.074093 2 120 0.000000 0.074093 0.000000 0.000000 0 0 /\\n Sgnome-keyring-d 4742 2.112296 E 4.991437 3.000000 7.218223 25 120 0.000000 7.218223 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5101 203.349617 E 206.337477 3.000000 5.861286 130 120 0.000000 5.861286 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5107 171.690383 E 174.331107 3.000000 0.500947 6 120 0.000000 0.500947 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5124 193.061150 E 195.671496 3.000000 8.594148 49 120 0.000000 8.594148 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5126 193.996527 E 196.991799 3.000000 3.299204 35 120 0.000000 3.299204 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5139 203.799310 E 206.773495 3.000000 12.319108 260 120 0.000000 12.319108 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5244 328.901508 E 331.699763 3.000000 4.417929 36 120 0.000000 4.417929 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5269 329.621690 E 332.601100 3.000000 4.023516 36 120 0.000000 4.023516 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6331 563.327535 E 566.288551 3.000000 1.399849 10 120 0.000000 1.399849 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5408 390.450618 E 393.442277 3.000000 0.052751 3 120 0.000000 0.052751 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5420 342.780894 E 345.777466 3.000000 3.349551 390 120 0.000000 3.349551 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5422 342.777466 E 345.758551 3.000000 2.523078 30 120 0.000000 2.523078 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5458 342.819120 E 345.806210 3.000000 3.188163 34 120 0.000000 3.188163 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5561 27.019019 E 29.648923 3.000000 8.102906 13 120 0.000000 8.102906 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5565 27.505903 E 30.461672 3.000000 0.909916 7 120 0.000000 0.909916 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5570 3807.017509 E 3809.942054 3.000000 3646.740499 2482 120 0.000000 3646.740499 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5599 1243.917125 E 1246.899112 3.000000 28.626410 23 120 0.000000 28.626410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5602 1243.759704 E 1246.752160 3.000000 26.340665 20 120 0.000000 26.340665 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5603 1244.273695 E 1246.859634 3.000000 28.925019 24 120 0.000000 28.925019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5667 2030.812810 E 2033.802093 3.000000 56.273299 24 120 0.000000 56.273299 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5615 1308.530001 E 1309.304684 3.000000 24.830628 15 120 0.000000 24.830628 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5572 3806.942054 E 3809.851850 3.000000 3440.959410 1432 120 0.000000 3440.959410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5643 1834.821469 E 1835.836851 3.000000 61.193099 20 120 0.000000 61.193099 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6952 3784.360937 E 3787.346589 3.000000 0.047881 3 120 0.000000 0.047881 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5634 1604.905533 E 1607.825141 3.000000 53.244457 20 120 0.000000 53.244457 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5704 2161.079209 E 2164.073284 3.000000 28.505268 11 120 0.000000 28.505268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5705 2161.257548 E 2162.782519 3.000000 28.668075 12 120 0.000000 28.668075 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5710 2162.173294 E 2164.602104 3.000000 29.547294 16 120 0.000000 29.547294 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6333 3512.110147 E 3514.864100 3.000000 10.868019 29 120 0.000000 10.868019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5630 1334.192609 E 1335.792534 3.000000 36.310197 11 120 0.000000 36.310197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5680 2127.508196 E 2130.499659 3.000000 35.630276 19 120 0.000000 35.630276 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5685 2131.985144 E 2134.985144 3.000000 40.053783 21 120 0.000000 40.053783 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5656 1932.156392 E 1935.156392 3.000000 101.676739 50 120 0.000000 101.676739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5623 491.623970 E 494.607886 3.000000 44.595881 486 120 0.000000 44.595881 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6355 489.285025 E 492.062048 3.000000 5.973594 11 120 0.000000 5.973594 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6960 2182.365284 E 2185.337009 3.000000 7.977046 251 120 0.000000 7.977046 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 7043 2309.270120 E 2312.270120 3.000000 110.548756 24 120 0.000000 110.548756 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 7186 2359.028521 E 2362.021867 3.000000 3.910798 2 120 0.000000 3.910798 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#3, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 156862\\n .nr_uninterruptible : 10\\n .next_balance : 4295.164620\\n .curr->pid : 0\\n .clock : 497501.172251\\n .clock_task : 497501.172251\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[3]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 780.685551\\n .avg_vruntime : 780.685551\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497491.044441\\n .se->vruntime : 2517.569379\\n .se->sum_exec_runtime : 795.542392\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2928.835287\\n .avg_vruntime : 2928.835287\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497219.096831\\n .se->vruntime : 10974.540017\\n .se->sum_exec_runtime : 2934.518955\\n .se->load.weight : 87894\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10974.540017\\n .avg_vruntime : 10974.540017\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 734\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497219.096831\\n .se->vruntime : 17090.730978\\n .se->sum_exec_runtime : 3528.683275\\n .se->load.weight : 96823\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2973.043075\\n .avg_vruntime : 2973.043075\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497459.771282\\n .se->vruntime : 74741.328385\\n .se->sum_exec_runtime : 3338.234357\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 442.534419\\n .avg_vruntime : 442.534419\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497340.167581\\n .se->vruntime : 74741.165953\\n .se->sum_exec_runtime : 466.992933\\n .se->load.weight : 128397\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 628.914695\\n .avg_vruntime : 628.914695\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497218.164834\\n .se->vruntime : 74740.665510\\n .se->sum_exec_runtime : 647.244169\\n .se->load.weight : 144773\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/accounts-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 11.299244\\n .avg_vruntime : 11.299244\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.817352\\n .se->vruntime : 74741.359559\\n .se->sum_exec_runtime : 12.100758\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/systemd-hostnamed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5.616092\\n .avg_vruntime : 5.616092\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497127.355858\\n .se->vruntime : 74731.680744\\n .se->sum_exec_runtime : 6.664668\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/NetworkManager.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 155.659088\\n .avg_vruntime : 155.659088\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497021.663963\\n .se->vruntime : 74727.359834\\n .se->sum_exec_runtime : 157.200260\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 74741.359559\\n .avg_vruntime : 74741.359559\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.817352\\n .se->vruntime : 99476.065659\\n .se->sum_exec_runtime : 18295.568560\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[3]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2517.569379\\n .avg_vruntime : 2517.569379\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497491.044441\\n .se->vruntime : 17090.957086\\n .se->sum_exec_runtime : 882.586804\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[3]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 17090.957086\\n .avg_vruntime : 17090.957086\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 932\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497491.044441\\n .se->vruntime : 99476.192665\\n .se->sum_exec_runtime : 5090.509018\\n .se->load.weight : 1134\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[3]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 99476.192665\\n .avg_vruntime : 99476.192665\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[3]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.037684\\n .rt_runtime : 950.000000\\n\\ndl_rq[3]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/3 33 7886.138537 E 7889.102720 3.000000 0.348500 26 120 0.000000 0.348500 0.000000 0.000000 0 0 /\\n S idle_inject/3 34 -1.048518 E 0.451482 1.500000 0.001036 3 49 0.000000 0.001036 0.000000 0.000000 0 0 /\\n S migration/3 35 0.198781 E 0.948241 0.750000 170.787270 193 0 0.000000 170.787270 0.000000 0.000000 0 0 /\\n S ksoftirqd/3 36 99427.640776 E 99430.636871 3.000000 25.627736 1008 120 0.000000 25.627736 0.000000 0.000000 0 0 /\\n I kworker/3:0 37 97184.338678 E 97187.338678 3.000000 99.189840 924 120 0.000000 99.189840 0.000000 0.000000 0 0 /\\n I kworker/3:0H 38 6.472894 E 6.507461 3.000000 0.011946 4 100 0.000000 0.011946 0.000000 0.000000 0 0 /\\n Ikworker/R-inet_ 64 -1.038883 E -1.004274 3.000000 0.009635 2 100 0.000000 0.009635 0.000000 0.000000 0 0 /\\n S kauditd 65 46475.465473 E 46478.440242 3.000000 2.812791 141 120 0.000000 2.812791 0.000000 0.000000 0 0 /\\n I kworker/u16:2 68 92943.982882 E 92946.978221 3.000000 96.575686 3120 120 0.000000 96.575686 0.000000 0.000000 0 0 /\\n S kcompactd0 71 99444.817853 E 99447.809899 3.000000 49.519337 988 120 0.000000 49.519337 0.000000 0.000000 0 0 /\\n I kworker/3:1 73 97535.156122 E 97538.144666 3.000000 144.491415 1086 120 0.000000 144.491415 0.000000 0.000000 0 0 /\\n S khugepaged 74 99475.286261 E 99678.862581 3.000000 6.430961 133 139 0.000000 6.430961 0.000000 0.000000 0 0 /\\n Ikworker/R-kinte 75 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-kbloc 76 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-blkcg 77 0.992084 E 0.957475 3.000000 0.000070 2 100 0.000000 0.000070 0.000000 0.000000 0 0 /\\n Ikworker/R-tpm_d 82 0.481367 E 0.446758 3.000000 0.000111 2 100 0.000000 0.000111 0.000000 0.000000 0 0 /\\n I kworker/R-md 84 0.480619 E 0.446010 3.000000 0.000748 2 100 0.000000 0.000748 0.000000 0.000000 0 0 /\\n Ikworker/R-edac- 86 0.479971 E 0.445362 3.000000 0.000648 2 100 0.000000 0.000648 0.000000 0.000000 0 0 /\\n S watchdogd 88 0.469682 E 2.529619 3.000000 0.000699 2 49 0.000000 0.000699 0.000000 0.000000 0 0 /\\n Ikworker/R-kthro 93 0.358457 E 0.323888 3.000000 0.021180 2 100 0.000000 0.021180 0.000000 0.000000 0 0 /\\n S irq/127-pciehp 94 0.342701 E 2.655906 3.000000 0.020513 2 49 0.000000 0.020513 0.000000 0.000000 0 0 /\\n I kworker/u17:0 114 59020.770974 E 59020.805494 3.000000 170.119960 4180 100 0.000000 170.119960 0.000000 0.000000 0 0 /\\n I kworker/3:1H 153 99427.540860 E 99427.575393 3.000000 24.218911 1705 100 0.000000 24.218911 0.000000 0.000000 0 0 /\\n I kworker/3:2 226 98117.683634 E 98120.611629 3.000000 53.517767 565 120 0.000000 53.517767 0.000000 0.000000 0 0 /\\n Sirq/192-iwlwifi 534 4059.665296 E 4062.645526 3.000000 1523.643938 12763 49 0.000000 1523.643938 0.000000 0.000000 0 0 /\\n Sirq/196-iwlwifi 539 3926.018591 E 3929.015940 3.000000 18.982208 103 49 0.000000 18.982208 0.000000 0.000000 0 0 /\\n I kworker/R-ttm 576 4266.892470 E 4266.927070 3.000000 0.005129 2 100 0.000000 0.005129 0.000000 0.000000 0 0 /\\n S gmain 930 11.299244 E 14.296788 3.000000 83.234865 917 120 0.000000 83.234865 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 938 6.914745 E 9.332271 3.000000 25.658172 104 120 0.000000 25.658172 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S cron 795 4.743527 E 7.661846 3.000000 5.867256 17 120 0.000000 5.867256 0.000000 0.000000 0 0 /system.slice/cron.service\\n Sgnome-remote-de 800 6.461804 E 9.080981 3.000000 30.145068 265 120 0.000000 30.145068 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 922 3.894639 E 6.842135 3.000000 0.090432 2 120 0.000000 0.090432 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 831 206.525041 E 209.519124 3.000000 30.118582 233 120 0.000000 30.118582 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 852 310.199492 E 310.516321 3.000000 174.131223 492 120 0.000000 174.131223 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 853 2.078318 E 5.068150 3.000000 0.396308 18 120 0.000000 0.396308 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 859 -1.009569 E 1.951424 3.000000 0.039007 1 120 0.000000 0.039007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 888 16.413333 E 18.362122 3.000000 17.064715 94 120 0.000000 17.064715 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S in:imklog 955 52.986035 E 55.922447 3.000000 12.498230 135 120 0.000000 12.498230 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S sysbox-fs 1117 -1.009201 E 1.951424 3.000000 0.039375 1 120 0.000000 0.039375 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1476 442.134137 E 445.131399 3.000000 133.401239 4803 120 0.000000 133.401239 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1482 0.012894 E 2.894979 3.000000 0.583316 4 120 0.000000 0.583316 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gdbus 1496 0.233532 E 2.720526 3.000000 1.188965 22 120 0.000000 1.188965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S wireplumber 1515 9.144716 E 9.344452 3.000000 112.045348 651 109 0.000000 112.045348 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1528 7.387174 E 10.325290 3.000000 0.194691 7 120 0.000000 0.194691 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1538 7.325290 E 10.316534 3.000000 0.041734 2 120 0.000000 0.041734 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1518 2.669021 E 5.657668 3.000000 0.061989 3 120 0.000000 0.061989 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1568 8.156596 E 11.144147 3.000000 0.100728 3 120 0.000000 0.100728 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1561 8.265857 E 11.247889 3.000000 0.366731 9 120 0.000000 0.366731 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gnome-shell 1590 780.685551 E 783.618823 3.000000 10057.830458 5788 120 0.000000 10057.830458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1599 743.620777 E 746.301887 3.000000 23.237789 145 120 0.000000 23.237789 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1605 739.406875 E 742.385180 3.000000 9.806741 95 120 0.000000 9.806741 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3008 5.879336 E 210.308511 3.000000 0.040484 1 139 0.000000 0.040484 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3009 5.885425 E 8.879336 3.000000 0.006089 1 120 0.000000 0.006089 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1681 0.987359 E 2.007769 3.000000 0.061217 2 120 0.000000 0.061217 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 2442 200.802238 E 203.083797 3.000000 2.686930 84 120 0.000000 2.686930 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2401 442.534419 E 445.515155 3.000000 16.595226 79 120 0.000000 16.595226 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 3726 442.515155 E 445.423905 3.000000 31.114055 63 120 0.000000 31.114055 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2721 0.409380 E 3.265151 3.000000 4.476361 233 120 0.000000 4.476361 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2723 0.432282 E 2.528786 3.000000 3.337825 71 120 0.000000 3.337825 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2727 0.657300 E 2.325290 3.000000 0.078513 3 120 0.000000 0.078513 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/3:3 2728 99473.937450 E 99476.931139 3.000000 49.234446 485 120 0.000000 49.234446 0.000000 0.000000 0 0 /\\n S Xwaylan:disk$0 3264 278.898908 E 483.348085 3.000000 0.083880 3 139 0.000000 0.083880 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sat-spi2-registr 3034 320.892867 E 323.863419 3.000000 9.827853 77 120 0.000000 9.827853 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3084 396.608166 E 398.928697 3.000000 1.378050 9 120 0.000000 1.378050 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3104 50.860674 E 53.826398 3.000000 0.155648 6 120 0.000000 0.155648 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3161 51.477948 E 54.430767 3.000000 0.086363 2 120 0.000000 0.086363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3165 265.319650 E 268.242694 3.000000 4.804589 50 120 0.000000 4.804589 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sound 3155 264.524415 E 267.507911 3.000000 10.096889 65 120 0.000000 10.096889 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3200 264.748433 E 267.666962 3.000000 4.545875 44 120 0.000000 4.545875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3173 52.876485 E 55.844305 3.000000 0.094693 4 120 0.000000 0.094693 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3195 53.525055 E 56.511106 3.000000 0.140273 3 120 0.000000 0.140273 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3212 262.457088 E 265.449831 3.000000 0.389984 12 120 0.000000 0.389984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-printer 3290 687.615620 E 690.465261 3.000000 187.874291 30 120 0.000000 187.874291 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3339 700.168791 E 703.029139 3.000000 0.936467 13 120 0.000000 0.936467 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3351 699.316593 E 701.734734 3.000000 3.194350 33 120 0.000000 3.194350 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3355 311.731393 E 314.671777 3.000000 0.146965 3 120 0.000000 0.146965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3356 408.298560 E 411.135610 3.000000 9.785534 67 120 0.000000 9.785534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-dconf 3360 312.231880 E 315.209559 3.000000 3.710779 6 120 0.000000 3.710779 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3365 311.671777 E 314.666437 3.000000 0.056426 2 120 0.000000 0.056426 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3368 312.703029 E 315.657097 3.000000 0.439195 10 120 0.000000 0.439195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3509 -1.026522 E 1.969433 3.000000 0.022054 3 120 0.000000 0.022054 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3511 3.665450 E 6.655609 3.000000 0.052600 3 120 0.000000 0.052600 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3551 9.844973 E 12.792466 3.000000 0.052507 1 120 0.000000 0.052507 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3599 197.020590 E 197.487604 3.000000 67.673866 80 120 0.000000 67.673866 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S sshd 3669 24.119215 E 26.352417 3.000000 60.985253 32 120 0.000000 60.985253 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sshd 3711 2926.023897 E 2928.977717 3.000000 3636.860203 10506 120 0.000000 3636.860203 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n I kworker/3:4 4403 56560.146387 E 56563.133575 3.000000 0.175468 2 120 0.000000 0.175468 0.000000 0.000000 0 0 /\\n S pool-spawner 4748 11.609030 E 14.551046 3.000000 0.057984 1 120 0.000000 0.057984 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5100 224.686053 E 227.677039 3.000000 61.547451 14 120 0.000000 61.547451 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5110 268.721718 E 271.652332 3.000000 1.698855 16 120 0.000000 1.698855 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5127 268.080230 E 270.854937 3.000000 0.225293 1 120 0.000000 0.225293 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5262 307.365255 E 310.358223 3.000000 2.509248 7 120 0.000000 2.509248 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5263 424.777743 E 427.733472 3.000000 2.795014 451 120 0.000000 2.795014 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5270 424.733472 E 427.726428 3.000000 1.497961 26 120 0.000000 1.497961 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5393 441.075088 E 444.057442 3.000000 1.906891 4 120 0.000000 1.906891 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5397 441.007142 E 443.951633 3.000000 0.134457 6 120 0.000000 0.134457 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5403 609.845983 E 612.799808 3.000000 2.957254 10 120 0.000000 2.957254 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5455 329.155687 E 332.140177 3.000000 0.106899 6 120 0.000000 0.106899 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5539 425.926857 E 428.852694 3.000000 3.386327 29 120 0.000000 3.386327 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5666 1455.901773 E 1455.931322 3.000000 52.537643 16 120 0.000000 52.537643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5571 2973.043075 E 2975.959313 3.000000 3578.365971 2069 120 0.000000 3578.365971 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5692 1542.872428 E 1545.867503 3.000000 39.486389 14 120 0.000000 39.486389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6339 2749.264215 E 2752.131956 3.000000 10.760643 17 120 0.000000 10.760643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6342 2748.954739 E 2751.740522 3.000000 9.140090 22 120 0.000000 9.140090 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5607 675.005069 E 677.994134 3.000000 108.505409 56 120 0.000000 108.505409 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5675 1497.517568 E 1500.507764 3.000000 53.995739 18 120 0.000000 53.995739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5642 1261.164512 E 1264.157881 3.000000 21.195408 8 120 0.000000 21.195408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5701 1573.282016 E 1576.275123 3.000000 54.439900 15 120 0.000000 54.439900 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6335 2738.808672 E 2741.790683 3.000000 0.042506 3 120 0.000000 0.042506 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5631 796.046325 E 798.991768 3.000000 40.045155 23 120 0.000000 40.045155 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5681 1527.879182 E 1529.909057 3.000000 33.967325 14 120 0.000000 33.967325 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5684 1530.679057 E 1533.672041 3.000000 36.744957 12 120 0.000000 36.744957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5711 1596.022219 E 1599.010783 3.000000 26.922198 10 120 0.000000 26.922198 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5712 1598.317683 E 1601.311774 3.000000 27.952471 10 120 0.000000 27.952471 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5713 1598.100775 E 1601.093750 3.000000 28.977268 10 120 0.000000 28.977268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5716 1603.713181 E 1606.705277 3.000000 27.988249 8 120 0.000000 27.988249 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5648 1264.334911 E 1267.326576 3.000000 21.039304 8 120 0.000000 21.039304 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5649 1267.119289 E 1270.110336 3.000000 23.813972 11 120 0.000000 23.813972 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5652 1267.460598 E 1270.456344 3.000000 24.138886 11 120 0.000000 24.138886 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5718 1603.710384 E 1606.705277 3.000000 34.052954 13 120 0.000000 34.052954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6357 944.544491 E 947.340961 3.000000 6.012580 14 120 0.000000 6.012580 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6358 944.703813 E 947.544491 3.000000 12.880370 18 120 0.000000 12.880370 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S gmain 6925 0.001064 E 2.901765 3.000000 1.047512 2 120 0.000000 1.047512 0.000000 0.000000 0 0 /system.slice/NetworkManager-dispatcher.service\\n S python3 7044 2924.838871 E 2927.838871 3.000000 110.667241 10 120 0.000000 110.667241 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 6963 951.349598 E 954.266241 3.000000 3.884621 20 120 0.000000 3.884621 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n Ssystemd-hostnam 7090 5.616092 E 6.745800 3.000000 53.542987 35 120 0.000000 53.542987 0.000000 0.000000 0 0 /system.slice/systemd-hostnamed.service\\n\\ncpu#4, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 128158\\n .nr_uninterruptible : 183\\n .next_balance : 4295.164618\\n .curr->pid : 0\\n .clock : 497501.173860\\n .clock_task : 497501.173860\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[4]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1944.970380\\n .avg_vruntime : 1944.970380\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497220.030017\\n .se->vruntime : 9437.509445\\n .se->sum_exec_runtime : 1950.351383\\n .se->load.weight : 70959\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9437.509445\\n .avg_vruntime : 9437.509445\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 734\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497220.030017\\n .se->vruntime : 16012.126423\\n .se->sum_exec_runtime : 2229.937572\\n .se->load.weight : 72817\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3427.424798\\n .avg_vruntime : 3427.424798\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497459.545194\\n .se->vruntime : 78548.333500\\n .se->sum_exec_runtime : 3798.622274\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 356.320000\\n .avg_vruntime : 356.320000\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497495.976844\\n .se->vruntime : 78548.411862\\n .se->sum_exec_runtime : 358.269067\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 341.943614\\n .avg_vruntime : 341.943614\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497321.502516\\n .se->vruntime : 78548.143535\\n .se->sum_exec_runtime : 376.359887\\n .se->load.weight : 20560\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 503.949606\\n .avg_vruntime : 503.949606\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497420.458495\\n .se->vruntime : 78548.250754\\n .se->sum_exec_runtime : 509.359633\\n .se->load.weight : 149796\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3.087442\\n .avg_vruntime : 3.087442\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.191738\\n .se->vruntime : 78537.948168\\n .se->sum_exec_runtime : 4.198595\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/NetworkManager.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 797.677320\\n .avg_vruntime : 797.677320\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497022.212252\\n .se->vruntime : 78536.830841\\n .se->sum_exec_runtime : 799.842849\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 35.563003\\n .avg_vruntime : 35.563003\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.790431\\n .se->vruntime : 78548.399197\\n .se->sum_exec_runtime : 36.771709\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 78548.411862\\n .avg_vruntime : 78548.411862\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497495.976844\\n .se->vruntime : 107287.703998\\n .se->sum_exec_runtime : 21414.622424\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 16012.126423\\n .avg_vruntime : 16012.126423\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 932\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497220.030017\\n .se->vruntime : 107285.193499\\n .se->sum_exec_runtime : 5046.736335\\n .se->load.weight : 72733\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 107287.703998\\n .avg_vruntime : 107287.703998\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[4]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[4]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/4 39 8611.189859 E 8614.138975 3.000000 0.358588 26 120 0.000000 0.358588 0.000000 0.000000 0 0 /\\n S idle_inject/4 40 -1.048576 E 1.201424 2.250000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S migration/4 41 1.176891 E 3.426891 2.250000 170.202864 187 0 0.000000 170.202864 0.000000 0.000000 0 0 /\\n S ksoftirqd/4 42 107275.396273 E 107278.386915 3.000000 19.946993 866 120 0.000000 19.946993 0.000000 0.000000 0 0 /\\n I kworker/4:0 43 105589.986036 E 105592.957919 3.000000 21.927530 359 120 0.000000 21.927530 0.000000 0.000000 0 0 /\\n I kworker/4:0H 44 132.163682 E 132.198197 3.000000 0.019668 4 100 0.000000 0.019668 0.000000 0.000000 0 0 /\\n I kworker/4:1 81 107287.193696 E 107290.061197 3.000000 194.010824 1929 120 0.000000 194.010824 0.000000 0.000000 0 0 /\\n Ikworker/R-ata_s 83 5.270300 E 5.304909 3.000000 0.000746 2 100 0.000000 0.000746 0.000000 0.000000 0 0 /\\n Ikworker/R-md_bi 85 5.270300 E 5.304909 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-devfr 87 5.273628 E 5.308237 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/128-pciehp 95 0.339759 E 2.659354 3.000000 0.006738 3 49 0.000000 0.006738 0.000000 0.000000 0 0 /\\n S hwrng 101 104169.378197 E 104172.004284 3.000000 32.638105 129 120 0.000000 32.638105 0.000000 0.000000 0 0 /\\n I kworker/4:1H 194 105945.711537 E 105945.745619 3.000000 9.610625 900 100 0.000000 9.610625 0.000000 0.000000 0 0 /\\n I kworker/4:2 468 57914.251469 E 57917.233388 3.000000 0.155689 16 120 0.000000 0.155689 0.000000 0.000000 0 0 /\\n Ikworker/R-cfg80 514 3339.240577 E 3339.275140 3.000000 0.012808 2 100 0.000000 0.012808 0.000000 0.000000 0 0 /\\n Sirq/197-iwlwifi 540 3926.376252 E 3929.374115 3.000000 16.719953 59 49 0.000000 16.719953 0.000000 0.000000 0 0 /\\n Sirq/201-iwlwifi 544 3926.622118 E 3929.620867 3.000000 0.136252 5 49 0.000000 0.136252 0.000000 0.000000 0 0 /\\n S pool-spawner 929 0.427240 E 3.421670 3.000000 0.182155 7 120 0.000000 0.182155 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 918 4.224344 E 6.070337 3.000000 17.705503 95 120 0.000000 17.705503 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 1042 1.501824 E 4.479627 3.000000 0.055072 2 120 0.000000 0.055072 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 1046 129.468386 E 131.898861 3.000000 215.763894 846 120 0.000000 215.763894 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2920 130.059417 E 132.172014 3.000000 70.491335 218 120 0.000000 70.491335 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 3003 129.397742 E 132.297517 3.000000 105.749007 125 120 0.000000 105.749007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 951 356.320000 E 359.307335 3.000000 1512.223802 17518 120 0.000000 1512.223802 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gdbus 906 3.087442 E 5.901575 3.000000 72.148857 316 120 0.000000 72.148857 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S NetworkManager 898 797.677320 E 800.577400 3.000000 1090.033107 1684 120 0.000000 1090.033107 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S gmain 935 797.477194 E 800.400831 3.000000 23.046878 125 120 0.000000 23.046878 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S in:imuxsock 954 35.563003 E 38.526935 3.000000 100.515992 2733 120 0.000000 100.515992 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S gmain 1094 3.946236 E 6.930995 3.000000 0.050521 2 120 0.000000 0.050521 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gmain 1093 3.276503 E 6.269558 3.000000 0.066470 2 120 0.000000 0.066470 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1505 338.961701 E 341.185688 3.000000 216.388156 5914 120 0.000000 216.388156 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1532 0.548481 E 3.506291 3.000000 0.195304 7 120 0.000000 0.195304 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1547 0.212741 E 3.208152 3.000000 0.019168 3 79 0.000000 0.019168 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1519 -1.009572 E 1.951424 3.000000 0.039004 1 120 0.000000 0.039004 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1535 10.910098 E 14.575757 3.000000 65.949337 133 121 0.000000 65.949337 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S dbus-daemon 1537 1214.673737 E 1214.818968 3.000000 135.717794 759 120 0.000000 135.717794 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1563 0.636104 E 3.602310 3.000000 0.327847 4 120 0.000000 0.327847 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1598 1211.818968 E 1214.276078 3.000000 1.025386 14 120 0.000000 1.025386 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1606 1171.874267 E 1174.846737 3.000000 9.832992 85 120 0.000000 9.832992 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1682 -1.007916 E 1.951424 3.000000 0.040660 1 120 0.000000 0.040660 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1700 295.680439 E 298.486174 3.000000 10.233894 150 120 0.000000 10.233894 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2443 284.936640 E 287.916427 3.000000 35.663598 1701 120 0.000000 35.663598 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2524 503.949606 E 506.922531 3.000000 153.791873 5238 120 0.000000 153.791873 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2525 494.838632 E 496.826450 3.000000 81.962403 2629 120 0.000000 81.962403 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2677 501.003354 E 502.914394 3.000000 87.408194 3015 120 0.000000 87.408194 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2402 44.216112 E 47.201754 3.000000 0.083347 6 120 0.000000 0.083347 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2404 341.943614 E 344.836449 3.000000 32.730786 85 120 0.000000 32.730786 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2420 44.291955 E 47.265037 3.000000 1.429798 32 120 0.000000 1.429798 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 3027 494.594461 E 497.580076 3.000000 1.096695 37 120 0.000000 1.096695 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dbus-daemon 3028 871.982914 E 874.971379 3.000000 8.820633 75 120 0.000000 8.820633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3040 23.893471 E 26.854493 3.000000 0.075685 2 120 0.000000 0.075685 0.000000 0.000000 0 0 /system.slice/colord.service\\n S pool-spawner 3070 84.801335 E 87.763845 3.000000 0.076250 2 120 0.000000 0.076250 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3071 84.763845 E 87.725839 3.000000 0.038006 1 120 0.000000 0.038006 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3086 585.187130 E 587.886236 3.000000 0.803427 9 120 0.000000 0.803427 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3113 121.997580 E 124.912918 3.000000 1.251295 53 120 0.000000 1.251295 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3107 1223.116574 E 1224.402910 3.000000 263.923787 824 120 0.000000 263.923787 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3120 104.510615 E 107.420360 3.000000 0.090255 1 120 0.000000 0.090255 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3132 104.942110 E 107.902899 3.000000 0.039211 1 120 0.000000 0.039211 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3147 432.291787 E 435.215403 3.000000 15.128436 45 120 0.000000 15.128436 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-housekeepin 3169 1179.911267 E 1180.688133 3.000000 192.325882 134 120 0.000000 192.325882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3199 432.208898 E 435.123843 3.000000 4.825108 55 120 0.000000 4.825108 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-power 3172 934.048735 E 936.983961 3.000000 531.922828 648 120 0.000000 531.922828 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gjs 3333 961.492427 E 962.754198 3.000000 64.931215 51 120 0.000000 64.931215 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3388 494.502646 E 497.479395 3.000000 0.383639 13 120 0.000000 0.383639 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x1:disk$0 3384 493.429311 E 698.009560 3.000000 0.064318 1 139 0.000000 0.064318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3391 494.823326 E 497.820442 3.000000 0.047210 2 120 0.000000 0.047210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 3453 0.638992 E 1.951424 3.000000 0.409584 1 120 0.000000 0.409584 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S module-rt 3508 16.982589 E 19.952500 3.000000 0.177132 8 120 0.000000 0.177132 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3512 16.731938 E 19.727789 3.000000 0.017591 3 120 0.000000 0.017591 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3519 17.278259 E 20.249377 3.000000 0.054962 2 120 0.000000 0.054962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S dbus-daemon 3501 17.501364 E 20.425841 3.000000 9.308695 60 120 0.000000 9.308695 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3547 17.425841 E 20.278259 3.000000 0.147582 1 120 0.000000 0.147582 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3596 0.171413 E 2.703804 3.000000 0.124783 1 120 0.000000 0.124783 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gdbus 4750 0.089371 E 2.823358 3.000000 0.503147 15 120 0.000000 0.503147 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S timer 4751 0.479745 E 2.495817 3.000000 0.024438 1 120 0.000000 0.024438 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/4:3 4828 57914.289385 E 57917.286600 3.000000 0.108756 5 120 0.000000 0.108756 0.000000 0.000000 0 0 /\\n S docker 5109 152.126586 E 155.068735 3.000000 0.361652 5 120 0.000000 0.361652 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5122 196.344791 E 199.329849 3.000000 63.034858 39 120 0.000000 63.034858 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5210 492.520235 E 495.479950 3.000000 56.125173 1081 120 0.000000 56.125173 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5215 339.661927 E 342.648638 3.000000 0.213475 22 120 0.000000 0.213475 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5237 325.340076 E 328.291160 3.000000 1.425958 24 120 0.000000 1.425958 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5242 260.021354 E 262.990538 3.000000 1.439470 33 120 0.000000 1.439470 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5267 249.428702 E 252.410406 3.000000 0.050853 2 120 0.000000 0.050853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sjemalloc_bg_thd 5374 138.276375 E 141.265876 3.000000 0.148449 5 120 0.000000 0.148449 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Sjemalloc_bg_thd 5375 0.560167 E 2.423287 3.000000 0.016546 1 120 0.000000 0.016546 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5406 339.715217 E 342.703512 3.000000 0.169404 19 120 0.000000 0.169404 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5407 291.517519 E 294.508545 3.000000 0.110756 6 120 0.000000 0.110756 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5428 264.775703 E 267.763855 3.000000 0.397285 12 120 0.000000 0.397285 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5429 326.607007 E 329.598801 3.000000 4.587651 59 120 0.000000 4.587651 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5452 332.887320 E 335.883751 3.000000 1.930435 283 120 0.000000 1.930435 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5453 327.346101 E 330.230161 3.000000 4.320992 54 120 0.000000 4.320992 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5479 5.910874 E 8.239062 3.000000 24.294118 29 120 0.000000 24.294118 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5536 3424.780534 E 3426.955601 3.000000 336.806050 186 120 0.000000 336.806050 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5564 5.960558 E 8.911409 3.000000 0.756076 9 120 0.000000 0.756076 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 6352 3217.175095 E 3220.135461 3.000000 0.148844 2 120 0.000000 0.148844 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6356 3217.180599 E 3220.172006 3.000000 0.055941 3 120 0.000000 0.055941 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5693 2182.334914 E 2185.327152 3.000000 38.955454 14 120 0.000000 38.955454 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5670 2131.268004 E 2134.260351 3.000000 36.996673 11 120 0.000000 36.996673 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5671 2135.196688 E 2138.196688 3.000000 40.909890 14 120 0.000000 40.909890 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5640 1921.565079 E 1924.559625 3.000000 28.984572 12 120 0.000000 28.984572 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5644 1921.963150 E 1922.987767 3.000000 52.350338 20 120 0.000000 52.350338 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5696 2197.393849 E 2200.390282 3.000000 31.127998 15 120 0.000000 31.127998 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5699 2197.192376 E 2200.184357 3.000000 30.902525 11 120 0.000000 30.902525 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6949 3396.569385 E 3399.549503 3.000000 0.102516 3 120 0.000000 0.102516 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5632 1326.785621 E 1326.892101 3.000000 100.083757 4 120 0.000000 100.083757 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5576 3427.424798 E 3430.361826 3.000000 3049.787302 1472 120 0.000000 3049.787302 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5658 1985.657062 E 1988.647654 3.000000 37.909073 12 120 0.000000 37.909073 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5660 1989.692299 E 1989.732082 3.000000 55.543120 15 120 0.000000 55.543120 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5719 2242.781412 E 2242.811558 3.000000 49.489219 18 120 0.000000 49.489219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6341 3216.000387 E 3218.984690 3.000000 0.065197 3 120 0.000000 0.065197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5624 172.876578 E 175.813170 3.000000 3.034044 18 120 0.000000 3.034044 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6959 1789.132223 E 1792.073332 3.000000 7.071444 203 120 0.000000 7.071444 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 7042 1919.203942 E 1919.415864 3.000000 110.894718 4 120 0.000000 110.894718 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#5, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 134569\\n .nr_uninterruptible : -18\\n .next_balance : 4295.164625\\n .curr->pid : 0\\n .clock : 497506.147835\\n .clock_task : 497506.147835\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[5]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3282.032592\\n .avg_vruntime : 3282.032592\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497475.728528\\n .se->vruntime : 10324.133597\\n .se->sum_exec_runtime : 3286.519722\\n .se->load.weight : 260865\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10324.133597\\n .avg_vruntime : 10324.133597\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 734\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497475.728528\\n .se->vruntime : 17790.534185\\n .se->sum_exec_runtime : 3581.345739\\n .se->load.weight : 50526\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3322.879680\\n .avg_vruntime : 3322.879680\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497501.954023\\n .se->vruntime : 67475.841206\\n .se->sum_exec_runtime : 3900.837535\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 452.782137\\n .avg_vruntime : 452.782137\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497217.761471\\n .se->vruntime : 67475.202167\\n .se->sum_exec_runtime : 470.991854\\n .se->load.weight : 132369\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 514.210794\\n .avg_vruntime : 514.210794\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497420.499273\\n .se->vruntime : 67475.735296\\n .se->sum_exec_runtime : 535.955889\\n .se->load.weight : 299593\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[5]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 146.784382\\n .avg_vruntime : 146.784382\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.223514\\n .se->vruntime : 67467.746020\\n .se->sum_exec_runtime : 148.095944\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 36.949545\\n .avg_vruntime : 36.949545\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497384.542329\\n .se->vruntime : 67475.567191\\n .se->sum_exec_runtime : 38.017195\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 247.994319\\n .avg_vruntime : 247.994319\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497395.773497\\n .se->vruntime : 67475.586527\\n .se->sum_exec_runtime : 252.203272\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 67475.841206\\n .avg_vruntime : 67475.841206\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497501.954023\\n .se->vruntime : 98857.836698\\n .se->sum_exec_runtime : 17313.939613\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 17790.534185\\n .avg_vruntime : 17790.534185\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 932\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497475.728528\\n .se->vruntime : 98857.730788\\n .se->sum_exec_runtime : 5822.210901\\n .se->load.weight : 8287\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 98857.836698\\n .avg_vruntime : 98857.836698\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[5]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[5]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/5 45 6999.749005 E 7002.677723 3.000000 0.271587 26 120 0.000000 0.271587 0.000000 0.000000 0 0 /\\n S idle_inject/5 46 -1.043636 E 1.204967 2.250000 0.004272 3 49 0.000000 0.004272 0.000000 0.000000 0 0 /\\n S migration/5 47 3.168235 E 5.417506 2.250000 171.634300 192 0 0.000000 171.634300 0.000000 0.000000 0 0 /\\n S ksoftirqd/5 48 98825.587623 E 98828.570739 3.000000 32.835923 1386 120 0.000000 32.835923 0.000000 0.000000 0 0 /\\n I kworker/5:0 49 98612.184515 E 98615.134313 3.000000 252.229903 3204 120 0.000000 252.229903 0.000000 0.000000 0 0 /\\n I kworker/5:0H 50 785.846494 E 785.880922 3.000000 0.029057 4 100 0.000000 0.029057 0.000000 0.000000 0 0 /\\n I kworker/5:1H 90 97128.160237 E 97128.194674 3.000000 7.797242 396 100 0.000000 7.797242 0.000000 0.000000 0 0 /\\n S irq/129-pciehp 96 0.336759 E 2.662268 3.000000 0.006014 3 49 0.000000 0.006014 0.000000 0.000000 0 0 /\\n Ikworker/R-acpi_ 100 803.615043 E 803.649645 3.000000 0.003136 2 100 0.000000 0.003136 0.000000 0.000000 0 0 /\\n I kworker/5:2 102 58304.487734 E 58307.474531 3.000000 6.779451 136 120 0.000000 6.779451 0.000000 0.000000 0 0 /\\n I kworker/R-mld 103 822.822143 E 822.856734 3.000000 0.020268 2 100 0.000000 0.020268 0.000000 0.000000 0 0 /\\n Ikworker/R-ipv6_ 105 822.824530 E 822.859136 3.000000 0.002654 2 100 0.000000 0.002654 0.000000 0.000000 0 0 /\\n Ikworker/R-kstrp 112 825.212532 E 825.247134 3.000000 0.002925 2 100 0.000000 0.002925 0.000000 0.000000 0 0 /\\n I kworker/5:3 129 98810.878457 E 98813.872195 3.000000 124.644485 1051 120 0.000000 124.644485 0.000000 0.000000 0 0 /\\n Sirq/173-FRMW000 225 1210.147450 E 1213.127987 3.000000 0.350809 4 49 0.000000 0.350809 0.000000 0.000000 0 0 /\\n Sirq/174-PIXA385 227 1218.791465 E 1221.760797 3.000000 0.479717 4 49 0.000000 0.479717 0.000000 0.000000 0 0 /\\n S psimon 395 1769.940955 E 1772.934339 3.000000 0.031393 2 98 0.000000 0.031393 0.000000 0.000000 0 0 /\\n Sirq/198-iwlwifi 541 3741.717084 E 3744.716044 3.000000 9.242721 43 49 0.000000 9.242721 0.000000 0.000000 0 0 /\\n S pool-spawner 917 0.598568 E 2.374275 3.000000 0.139307 3 120 0.000000 0.139307 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S gdbus 1047 146.784382 E 149.571325 3.000000 204.579908 921 120 0.000000 204.579908 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 925 153.000612 E 155.985479 3.000000 186.267585 561 120 0.000000 186.267585 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2921 150.000733 E 153.000733 3.000000 139.295594 243 120 0.000000 139.295594 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gmain 953 0.274092 E 3.243919 3.000000 0.030173 1 120 0.000000 0.030173 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 858 3.421352 E 6.394871 3.000000 1.493133 34 120 0.000000 1.493133 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 950 241.680588 E 244.656210 3.000000 474.773382 6218 120 0.000000 474.773382 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S pool-spawner 877 0.968110 E 1.951424 3.000000 0.080466 1 120 0.000000 0.080466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S thermald 1119 366.983089 E 369.983089 3.000000 547.403307 273 120 0.000000 547.403307 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S wpa_supplicant 901 6.788165 E 8.726785 3.000000 320.936053 483 120 0.000000 320.936053 0.000000 0.000000 0 0 /system.slice/wpa_supplicant.service\\n S pool-spawner 1096 5.835716 E 8.797854 3.000000 0.070490 2 120 0.000000 0.070490 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1108 18.729605 E 21.619214 3.000000 22.615599 123 120 0.000000 22.615599 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1113 1.961790 E 4.958126 3.000000 10.058361 153 120 0.000000 10.058361 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1114 3.774906 E 6.730419 3.000000 2.013745 76 120 0.000000 2.013745 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1115 1.948170 E 4.912969 3.000000 0.190242 20 120 0.000000 0.190242 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1447 2.681121 E 5.678513 3.000000 22.987360 343 120 0.000000 22.987360 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1477 452.713860 E 455.706101 3.000000 155.987423 3795 120 0.000000 155.987423 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 5141 450.115320 E 452.518423 3.000000 62.525377 2595 120 0.000000 62.525377 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 1485 3.989182 E 6.948338 3.000000 16.521431 131 120 0.000000 16.521431 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gmain 1494 2.779321 E 5.771975 3.000000 0.065744 3 120 0.000000 0.065744 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire-pulse 1516 26.233418 E 26.485480 3.000000 19.482467 71 109 0.000000 19.482467 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S rtkit-daemon 1549 3.958778 E 6.794019 3.000000 5.929165 83 120 0.000000 5.929165 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n Sxdg-permission- 1557 26.114410 E 28.921546 3.000000 4.480217 9 120 0.000000 4.480217 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dockerd 1657 171.907138 E 174.896341 3.000000 206.971759 2083 120 0.000000 206.971759 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1664 514.210794 E 517.208382 3.000000 343.079515 26546 120 0.000000 343.079515 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1669 344.620239 E 347.584650 3.000000 69.767271 2073 120 0.000000 69.767271 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2394 356.668054 E 359.629743 3.000000 47.946204 1790 120 0.000000 47.946204 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2528 512.387548 E 514.255346 3.000000 146.434323 4719 120 0.000000 146.434323 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2718 514.142517 E 517.138834 3.000000 94.010123 4335 120 0.000000 94.010123 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2817 0.969895 E 2.006035 3.000000 0.078681 2 120 0.000000 0.078681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S pool-spawner 3023 33.403610 E 36.375096 3.000000 0.062687 2 120 0.000000 0.062687 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3036 49.145973 E 52.105602 3.000000 0.040371 1 120 0.000000 0.040371 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 3069 409.720330 E 411.795486 3.000000 3.645960 9 120 0.000000 3.645960 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3087 923.987178 E 926.920563 3.000000 0.691954 9 120 0.000000 0.691954 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sharing 3080 1534.450250 E 1536.264625 3.000000 147.938188 1040 120 0.000000 147.938188 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3102 260.315442 E 263.308450 3.000000 0.043178 2 120 0.000000 0.043178 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3125 271.161595 E 274.095199 3.000000 0.721540 8 120 0.000000 0.721540 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3134 695.253497 E 698.160802 3.000000 18.015111 51 120 0.000000 18.015111 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-rfkill 3114 1529.873050 E 1532.424632 3.000000 19.584288 228 120 0.000000 19.584288 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3142 271.415232 E 274.408854 3.000000 0.052239 2 120 0.000000 0.052239 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3144 283.234823 E 286.195976 3.000000 0.156948 5 120 0.000000 0.156948 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3148 1529.632211 E 1531.021586 3.000000 37.418242 247 120 0.000000 37.418242 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3160 274.593574 E 277.561112 3.000000 0.032462 1 120 0.000000 0.032462 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3205 694.073828 E 697.059396 3.000000 0.539966 11 120 0.000000 0.539966 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3190 291.047172 E 294.041558 3.000000 0.069455 3 120 0.000000 0.069455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3191 291.082083 E 294.047172 3.000000 0.064373 2 120 0.000000 0.064373 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3171 277.903854 E 280.871361 3.000000 0.032493 1 120 0.000000 0.032493 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3208 289.768671 E 292.723596 3.000000 0.045075 1 120 0.000000 0.045075 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3341 1268.500237 E 1271.417686 3.000000 1.040132 11 120 0.000000 1.040132 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3347 710.823685 E 713.793865 3.000000 0.043738 2 120 0.000000 0.043738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3348 710.793865 E 713.767416 3.000000 0.026449 1 120 0.000000 0.026449 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-daemon 3346 949.332769 E 952.288245 3.000000 42.959636 73 120 0.000000 42.959636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11 3362 923.587585 E 926.310829 3.000000 45.522706 130 120 0.000000 45.522706 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3371 726.850047 E 729.799574 3.000000 0.076524 2 120 0.000000 0.076524 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sibus-engine-sim 3378 728.885393 E 731.863437 3.000000 4.625539 14 120 0.000000 4.625539 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3513 1.729229 E 4.725188 3.000000 0.034825 5 120 0.000000 0.034825 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S wireplumber 3472 11.462644 E 13.755284 3.000000 40.504423 63 120 0.000000 40.504423 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3555 8.358478 E 11.299358 3.000000 0.319715 3 120 0.000000 0.319715 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3550 7.088145 E 10.059456 3.000000 0.088092 2 120 0.000000 0.088092 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3553 7.326957 E 10.315957 3.000000 0.238812 7 120 0.000000 0.238812 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fusermount3 3556 8.289925 E 10.425022 3.000000 0.864903 1 120 0.000000 0.864903 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Ssnapd-desktop-i 3594 12.810910 E 15.645251 3.000000 16.524009 26 120 0.000000 16.524009 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gmain 3597 12.645251 E 15.600431 3.000000 0.044820 1 120 0.000000 0.044820 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S bash 3712 3092.322775 E 3094.637549 3.000000 259.159400 524 120 0.000000 259.159400 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S docker 5103 77.367826 E 80.361952 3.000000 2.654622 20 120 0.000000 2.654622 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5104 76.789473 E 79.661122 3.000000 0.935648 8 120 0.000000 0.935648 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5105 76.471056 E 79.122576 3.000000 0.348480 1 120 0.000000 0.348480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5131 80.563750 E 83.192223 3.000000 1.136131 12 120 0.000000 1.136131 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5212 345.929760 E 348.904077 3.000000 0.025683 1 120 0.000000 0.025683 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5213 505.356239 E 508.342503 3.000000 0.329773 14 120 0.000000 0.329773 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5221 346.057686 E 349.014905 3.000000 0.042781 1 120 0.000000 0.042781 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5236 434.523935 E 437.488841 3.000000 1.210480 204 120 0.000000 1.210480 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5239 318.088842 E 321.070226 3.000000 0.081546 6 120 0.000000 0.081546 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5241 434.488841 E 437.319817 3.000000 3.195668 33 120 0.000000 3.195668 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5396 393.299699 E 396.076725 3.000000 0.339736 7 120 0.000000 0.339736 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5401 502.700871 E 505.698656 3.000000 0.782410 16 120 0.000000 0.782410 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5405 356.859342 E 359.855343 3.000000 1.795184 14 120 0.000000 1.795184 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5409 356.858058 E 359.853277 3.000000 0.086967 4 120 0.000000 0.086967 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5410 356.739028 E 359.714574 3.000000 0.024454 1 120 0.000000 0.024454 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5419 323.414770 E 326.408620 3.000000 2.963462 8 120 0.000000 2.963462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5421 323.427369 E 326.411167 3.000000 0.463860 15 120 0.000000 0.463860 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5454 327.251540 E 330.239598 3.000000 0.078194 9 120 0.000000 0.078194 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5460 441.039361 E 444.029375 3.000000 3.596224 67 120 0.000000 3.596224 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5563 4.567941 E 7.480591 3.000000 6.436335 18 120 0.000000 6.436335 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5614 1204.439296 E 1207.439296 3.000000 25.601066 7 120 0.000000 25.601066 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5617 1206.891768 E 1209.822325 3.000000 28.034014 9 120 0.000000 28.034014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5619 1208.780352 E 1210.861964 3.000000 29.914255 9 120 0.000000 29.914255 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6346 3174.366197 E 3177.354263 3.000000 0.074281 3 120 0.000000 0.074281 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5608 1185.932477 E 1188.922565 3.000000 37.946501 14 120 0.000000 37.946501 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5672 1995.255322 E 1995.274003 3.000000 73.850813 20 120 0.000000 73.850813 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5641 1768.202285 E 1771.193258 3.000000 54.929183 14 120 0.000000 54.929183 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5695 2071.651562 E 2071.688139 3.000000 32.936801 11 120 0.000000 32.936801 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6951 3276.159243 E 3279.007946 3.000000 6.751696 107 120 0.000000 6.751696 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5637 1539.174198 E 1540.010364 3.000000 38.326835 12 120 0.000000 38.326835 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5638 1538.793722 E 1540.152260 3.000000 37.736919 12 120 0.000000 37.736919 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5709 2084.464804 E 2087.450225 3.000000 29.991031 9 120 0.000000 29.991031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5654 2046.336174 E 2049.326048 3.000000 38.012486 12 120 0.000000 38.012486 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5657 1803.954929 E 1805.989704 3.000000 38.959841 12 120 0.000000 38.959841 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5659 1807.015254 E 1809.026693 3.000000 42.007189 11 120 0.000000 42.007189 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5714 2109.823685 E 2109.851682 3.000000 36.490008 12 120 0.000000 36.490008 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6340 3174.527383 E 3177.507711 3.000000 0.096351 3 120 0.000000 0.096351 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5577 3322.879680 E 3325.773770 3.000000 3022.859989 1853 120 0.000000 3022.859989 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6336 3174.358195 E 3177.331577 3.000000 0.116229 3 120 0.000000 0.116229 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6345 3187.769027 E 3190.605767 3.000000 11.445595 34 120 0.000000 11.445595 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5621 36.949545 E 39.925962 3.000000 56.237483 557 120 0.000000 56.237483 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 5625 10.233587 E 12.608430 3.000000 0.625157 1 120 0.000000 0.625157 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6361 28.804050 E 31.622006 3.000000 6.682534 15 120 0.000000 6.682534 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S gdbus 6929 4.485510 E 7.189139 3.000000 7.478934 6 120 0.000000 7.478934 0.000000 0.000000 0 0 /system.slice/NetworkManager-dispatcher.service\\n S postgres 6954 36.911461 E 39.874056 3.000000 3.570335 11 120 0.000000 3.570335 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 7041 3237.691681 E 3238.919476 3.000000 110.841959 19 120 0.000000 110.841959 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#6, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 140491\\n .nr_uninterruptible : 108\\n .next_balance : 4295.164617\\n .curr->pid : 0\\n .clock : 497501.176085\\n .clock_task : 497501.176085\\n .avg_idle : 835722\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[6]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 16.783234\\n .avg_vruntime : 16.783234\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 2\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 2\\n .tg_load_avg : 2\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497478.760357\\n .se->vruntime : 71627.085610\\n .se->sum_exec_runtime : 17.844843\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2149.220825\\n .avg_vruntime : 2149.220825\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497219.934310\\n .se->vruntime : 8962.405008\\n .se->sum_exec_runtime : 2153.220542\\n .se->load.weight : 78438\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 8962.405008\\n .avg_vruntime : 8962.405008\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 734\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497219.934310\\n .se->vruntime : 15143.404856\\n .se->sum_exec_runtime : 2315.262802\\n .se->load.weight : 81066\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15143.404856\\n .avg_vruntime : 15143.404856\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 932\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497219.934310\\n .se->vruntime : 98068.401882\\n .se->sum_exec_runtime : 3494.171920\\n .se->load.weight : 88146\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 408.436905\\n .avg_vruntime : 408.436905\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497331.046898\\n .se->vruntime : 71626.227584\\n .se->sum_exec_runtime : 430.520200\\n .se->load.weight : 59353\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 54.612888\\n .avg_vruntime : 54.612888\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497117.977117\\n .se->vruntime : 71615.660789\\n .se->sum_exec_runtime : 56.517708\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 71.076334\\n .avg_vruntime : 71.076334\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 6\\n .runnable_avg : 5\\n .util_avg : 5\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 6\\n .tg_load_avg : 6\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.785431\\n .se->vruntime : 71627.498616\\n .se->sum_exec_runtime : 90.101238\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 71.974868\\n .avg_vruntime : 71.974868\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497287.264804\\n .se->vruntime : 71625.962515\\n .se->sum_exec_runtime : 73.076152\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/dbus.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 278.862546\\n .avg_vruntime : 278.862546\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.041240\\n .se->vruntime : 71617.011594\\n .se->sum_exec_runtime : 280.009160\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 497.380276\\n .avg_vruntime : 497.380276\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497218.164094\\n .se->vruntime : 71625.544844\\n .se->sum_exec_runtime : 507.431385\\n .se->load.weight : 198939\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3581.328488\\n .avg_vruntime : 3581.328488\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497416.468171\\n .se->vruntime : 71626.632875\\n .se->sum_exec_runtime : 4136.262738\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 71627.498616\\n .avg_vruntime : 71627.498616\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 8\\n .util_avg : 8\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.785431\\n .se->vruntime : 98070.434372\\n .se->sum_exec_runtime : 17352.802227\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 8\\n .se->avg.runnable_avg : 8\\n\\ncfs_rq[6]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 98070.434372\\n .avg_vruntime : 98070.434372\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 8\\n .util_avg : 8\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[6]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[6]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/6 51 8615.222785 E 8618.158454 3.000000 0.252486 26 120 0.000000 0.252486 0.000000 0.000000 0 0 /\\n S idle_inject/6 52 -1.048596 E 1.201404 2.250000 0.001435 3 49 0.000000 0.001435 0.000000 0.000000 0 0 /\\n S migration/6 53 3.285100 E 5.534388 2.250000 171.657785 191 0 0.000000 171.657785 0.000000 0.000000 0 0 /\\n S ksoftirqd/6 54 98048.101018 E 98051.094175 3.000000 22.622981 744 120 0.000000 22.622981 0.000000 0.000000 0 0 /\\n I kworker/6:0H 56 96990.773692 E 96990.806383 3.000000 6.821617 378 100 0.000000 6.821617 0.000000 0.000000 0 0 /\\n S irq/130-pciehp 97 0.333820 E 2.665268 3.000000 0.005759 3 49 0.000000 0.005759 0.000000 0.000000 0 0 /\\n I kworker/6:1 98 92929.297618 E 92932.280639 3.000000 14.071602 230 120 0.000000 14.071602 0.000000 0.000000 0 0 /\\n I kworker/6:1H 104 0.901750 E 0.936338 3.000000 0.024295 2 100 0.000000 0.024295 0.000000 0.000000 0 0 /\\n Ikworker/R-ext4- 265 715.149068 E 715.183650 3.000000 0.016782 2 100 0.000000 0.016782 0.000000 0.000000 0 0 /\\n Ssystemd-journal 315 71.076334 E 73.358940 3.000000 715.572252 1877 119 0.000000 715.572252 0.000000 0.000000 0 0 /system.slice/systemd-journald.service\\n I kworker/u16:8 451 98009.286991 E 98012.281330 3.000000 248.615208 2242 120 0.000000 248.615208 0.000000 0.000000 0 0 /\\n Sirq/199-iwlwifi 542 3741.720024 E 3744.718960 3.000000 2.028888 29 49 0.000000 2.028888 0.000000 0.000000 0 0 /\\n I kworker/6:3 640 98068.899772 E 98071.875103 3.000000 129.657057 2038 120 0.000000 129.657057 0.000000 0.000000 0 0 /\\n Ssystemd-resolve 665 32.186455 E 34.681032 3.000000 654.082425 891 120 0.000000 654.082425 0.000000 0.000000 0 0 /system.slice/systemd-resolved.service\\n S avahi-daemon 793 71.974868 E 74.930348 3.000000 608.368912 2115 120 0.000000 608.368912 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S dbus-daemon 796 278.862546 E 281.640467 3.000000 3452.100865 6272 120 0.000000 3452.100865 0.000000 0.000000 0 0 /system.slice/dbus.service\\n Siio-sensor-prox 804 51.794222 E 54.650306 3.000000 342.582748 667 120 0.000000 342.582748 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S pool-spawner 931 3.995045 E 6.943176 3.000000 0.051869 1 120 0.000000 0.051869 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S snapd 926 367.367203 E 370.290744 3.000000 115.851942 463 120 0.000000 115.851942 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1045 246.848037 E 249.653279 3.000000 94.409312 356 120 0.000000 94.409312 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2922 361.812146 E 364.803584 3.000000 106.436659 92 120 0.000000 106.436659 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 958 9.238449 E 12.208952 3.000000 0.475075 10 120 0.000000 0.475075 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 949 3.796978 E 6.673936 3.000000 0.123042 1 120 0.000000 0.123042 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 1112 5.262021 E 8.244316 3.000000 0.017705 1 120 0.000000 0.017705 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S udisksd 845 34.124021 E 35.133500 3.000000 135.003646 385 120 0.000000 135.003646 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gmain 875 34.200375 E 37.124021 3.000000 19.479817 131 120 0.000000 19.479817 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S probing-thread 1075 6.567609 E 9.544668 3.000000 0.022941 1 120 0.000000 0.022941 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 937 1.153308 E 4.086953 3.000000 0.098542 2 120 0.000000 0.098542 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S upowerd 1086 18.314235 E 19.435362 3.000000 149.624500 180 120 0.000000 149.624500 0.000000 0.000000 0 0 /system.slice/upower.service\\n S psimon 1430 9260.147662 E 9263.146878 3.000000 0.006730 2 98 0.000000 0.006730 0.000000 0.000000 0 0 /\\n S module-rt 1530 2.618657 E 5.543553 3.000000 0.223127 6 120 0.000000 0.223127 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sdbus-run-sessio 1533 0.258773 E 2.587285 3.000000 1.487986 5 120 0.000000 1.487986 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1550 -1.032441 E 2.697765 3.000000 3.911414 67 0 0.000000 3.911414 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S gmain 1566 17.297077 E 20.277928 3.000000 0.097746 7 120 0.000000 0.097746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1570 17.355420 E 20.297077 3.000000 0.588370 21 120 0.000000 0.588370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1609 663.305754 E 666.279043 3.000000 9.676271 85 120 0.000000 9.676271 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1610 663.283542 E 666.279043 3.000000 10.313237 92 120 0.000000 10.313237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3029 275.589042 E 276.659165 3.000000 15.079471 7 120 0.000000 15.079471 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S krfcommd 1621 10074.755342 E 10075.075292 3.000000 0.065550 2 110 0.000000 0.065550 0.000000 0.000000 0 0 /\\n S dockerd 1667 360.733205 E 363.572264 3.000000 44.912651 1440 120 0.000000 44.912651 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1668 10.959996 E 13.909631 3.000000 0.136753 4 120 0.000000 0.136753 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1671 376.622448 E 379.612498 3.000000 35.314543 1107 120 0.000000 35.314543 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2691 497.380276 E 500.374310 3.000000 262.577213 6036 120 0.000000 262.577213 0.000000 0.000000 0 0 /system.slice/docker.service\\n S sshd 1702 74.518561 E 77.246586 3.000000 11.486317 11 120 0.000000 11.486317 0.000000 0.000000 0 0 /system.slice/ssh.service\\n Scontainerd-shim 2398 30.228595 E 33.220919 3.000000 3.863503 51 120 0.000000 3.863503 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2400 408.436905 E 411.409663 3.000000 5.876321 353 120 0.000000 5.876321 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2417 28.278836 E 31.246599 3.000000 0.032237 1 120 0.000000 0.032237 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2418 30.220839 E 33.148343 3.000000 0.624572 15 120 0.000000 0.624572 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2419 408.409663 E 411.403612 3.000000 20.338272 88 120 0.000000 20.338272 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2717 7.476168 E 10.461486 3.000000 28.234681 817 120 0.000000 28.234681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2724 8.330328 E 11.312981 3.000000 0.730104 41 120 0.000000 0.730104 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2729 0.009183 E 2.987065 3.000000 0.474507 16 120 0.000000 0.474507 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2763 28.885776 E 31.856462 3.000000 5.264668 92 120 0.000000 5.264668 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3037 69.004645 E 71.977650 3.000000 0.026995 1 120 0.000000 0.026995 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3083 288.025683 E 289.715393 3.000000 1.607031 8 120 0.000000 1.607031 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3088 286.715393 E 289.284690 3.000000 1.401843 9 120 0.000000 1.401843 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3124 87.455847 E 90.416578 3.000000 0.039269 1 120 0.000000 0.039269 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3131 302.640897 E 305.308430 3.000000 2.994609 50 120 0.000000 2.994609 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3158 93.881548 E 96.817284 3.000000 0.064264 1 120 0.000000 0.064264 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3182 109.126031 E 111.562635 3.000000 0.591888 2 120 0.000000 0.591888 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3184 108.724420 E 111.678855 3.000000 0.093578 2 120 0.000000 0.093578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3216 109.368449 E 112.350997 3.000000 0.217820 14 120 0.000000 0.217820 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3213 602.863968 E 605.510516 3.000000 272.558231 744 120 0.000000 272.558231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3293 586.573053 E 589.290637 3.000000 24.862703 32 120 0.000000 24.862703 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3337 606.691952 E 609.593211 3.000000 1.370128 13 120 0.000000 1.370128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3338 606.814834 E 609.691952 3.000000 1.139504 13 120 0.000000 1.139504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S module-rt 3510 4.969118 E 7.891565 3.000000 0.240480 6 120 0.000000 0.240480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3523 5.394138 E 8.306091 3.000000 0.426467 6 120 0.000000 0.426467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S sshd 3542 60.689261 E 63.665913 3.000000 199.656379 769 120 0.000000 199.656379 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S pool-spawner 3546 5.427172 E 8.394138 3.000000 0.089890 2 120 0.000000 0.089890 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3548 5.547188 E 8.427172 3.000000 0.773129 24 120 0.000000 0.773129 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 4749 16.047752 E 18.987863 3.000000 0.059889 1 120 0.000000 0.059889 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/6:0 4983 96634.618925 E 96637.616998 3.000000 12.473409 255 120 0.000000 12.473409 0.000000 0.000000 0 0 /\\n S docker 5106 50.986184 E 53.966096 3.000000 2.021095 12 120 0.000000 2.021095 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5123 60.920947 E 63.912920 3.000000 17.115287 834 120 0.000000 17.115287 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5140 54.263056 E 57.253692 3.000000 4.202288 102 120 0.000000 4.202288 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5208 492.932688 E 495.929247 3.000000 21.437964 1443 120 0.000000 21.437964 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5731 483.761839 E 486.733986 3.000000 0.448403 16 120 0.000000 0.448403 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5240 265.802650 E 268.788465 3.000000 0.020995 2 120 0.000000 0.020995 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5243 266.286329 E 269.275178 3.000000 0.261505 4 120 0.000000 0.261505 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5264 273.123925 E 276.097681 3.000000 1.821770 25 120 0.000000 1.821770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5266 267.028584 E 270.019464 3.000000 0.210716 13 120 0.000000 0.210716 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5339 389.040955 E 392.007327 3.000000 6.564462 141 120 0.000000 6.564462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S redis-server 5282 16.783234 E 19.330499 3.000000 3162.525615 1211 120 0.000000 3162.525615 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 6329 483.494365 E 486.415842 3.000000 7.135258 37 120 0.000000 7.135258 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 6330 482.410504 E 485.226121 3.000000 2.054356 6 120 0.000000 2.054356 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5450 279.103396 E 282.098400 3.000000 2.396339 8 120 0.000000 2.396339 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 5471 3581.328488 E 3584.304185 3.000000 24.480632 142 120 0.000000 24.480632 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5566 1.448927 E 4.109470 3.000000 0.339457 1 120 0.000000 0.339457 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5604 954.763097 E 957.751202 3.000000 28.240943 116 120 0.000000 28.240943 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5663 1792.640288 E 1795.640288 3.000000 38.952545 12 120 0.000000 38.952545 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5668 1789.732642 E 1791.724291 3.000000 35.988177 10 120 0.000000 35.988177 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5606 969.507874 E 972.497742 3.000000 25.491566 11 120 0.000000 25.491566 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5609 971.056429 E 974.046014 3.000000 27.020193 26 120 0.000000 27.020193 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5610 971.458654 E 974.453476 3.000000 27.417031 12 120 0.000000 27.417031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5707 1930.771185 E 1933.761817 3.000000 30.988047 9 120 0.000000 30.988047 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6332 3066.536604 E 3069.518774 3.000000 0.120233 3 120 0.000000 0.120233 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5628 1001.868572 E 1004.809337 3.000000 27.930046 12 120 0.000000 27.930046 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5629 1002.170072 E 1005.109190 3.000000 33.107018 10 120 0.000000 33.107018 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5679 1895.668218 E 1898.660660 3.000000 32.971433 10 120 0.000000 32.971433 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5683 1896.759957 E 1898.798855 3.000000 34.012241 10 120 0.000000 34.012241 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5720 1943.308345 E 1946.308345 3.000000 26.777888 7 120 0.000000 26.777888 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5723 1942.666364 E 1944.688960 3.000000 26.120826 8 120 0.000000 26.120826 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6338 3080.378005 E 3083.193564 3.000000 9.671179 24 120 0.000000 9.671179 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n I kworker/6:2 6175 92929.306949 E 92932.303713 3.000000 0.028876 4 120 0.000000 0.028876 0.000000 0.000000 0 0 /\\n Z dbus-daemon 6293 644.368969 E 647.080696 3.000000 0.476516 2 120 0.000000 0.476516 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S postgres 6349 40.808053 E 43.686063 3.000000 11.516885 17 120 0.000000 11.516885 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6350 95.275207 E 97.830285 3.000000 8.981273 12 120 0.000000 8.981273 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S nm-dispatcher 6919 2.496354 E 2.922935 3.000000 90.556467 8 120 0.000000 90.556467 0.000000 0.000000 0 0 /system.slice/NetworkManager-dispatcher.service\\n S pool-spawner 6926 0.077065 E 2.370182 3.000000 0.971511 2 120 0.000000 0.971511 0.000000 0.000000 0 0 /system.slice/NetworkManager-dispatcher.service\\n S postgres 6953 94.830285 E 97.127168 3.000000 2.944614 8 120 0.000000 2.944614 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 7047 2120.115320 E 2121.237028 3.000000 110.487350 4 120 0.000000 110.487350 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#7, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 139220\\n .nr_uninterruptible : -59\\n .next_balance : 4295.164623\\n .curr->pid : 0\\n .clock : 497507.259102\\n .clock_task : 497507.259102\\n .avg_idle : 526409\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[7]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4533.730836\\n .avg_vruntime : 4533.730836\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 176\\n .runnable_avg : 174\\n .util_avg : 174\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 176\\n .tg_load_avg : 2479\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497476.091236\\n .se->vruntime : 11749.989153\\n .se->sum_exec_runtime : 4538.688206\\n .se->load.weight : 103551\\n .se->avg.load_avg : 17\\n .se->avg.util_avg : 174\\n .se->avg.runnable_avg : 174\\n\\ncfs_rq[7]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 11749.989153\\n .avg_vruntime : 11749.989153\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 17\\n .runnable_avg : 174\\n .util_avg : 174\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 17\\n .tg_load_avg : 732\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497476.091236\\n .se->vruntime : 21037.107324\\n .se->sum_exec_runtime : 4673.216259\\n .se->load.weight : 43744\\n .se->avg.load_avg : 7\\n .se->avg.util_avg : 174\\n .se->avg.runnable_avg : 174\\n\\ncfs_rq[7]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3606.225784\\n .avg_vruntime : 3606.225784\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497115.762106\\n .se->vruntime : 66184.003099\\n .se->sum_exec_runtime : 4247.201799\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 566.860264\\n .avg_vruntime : 566.860264\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497218.153282\\n .se->vruntime : 66198.812475\\n .se->sum_exec_runtime : 585.160611\\n .se->load.weight : 33156\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 397.911414\\n .avg_vruntime : 397.911414\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497218.216670\\n .se->vruntime : 66198.816549\\n .se->sum_exec_runtime : 408.170927\\n .se->load.weight : 64567\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 52.151449\\n .avg_vruntime : 52.151449\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.073239\\n .se->vruntime : 66184.250191\\n .se->sum_exec_runtime : 53.225227\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 25.730452\\n .avg_vruntime : 25.730452\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.815277\\n .se->vruntime : 66198.877049\\n .se->sum_exec_runtime : 27.260284\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 66198.877049\\n .avg_vruntime : 66198.877049\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.815277\\n .se->vruntime : 107608.478717\\n .se->sum_exec_runtime : 16059.245281\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 21037.107324\\n .avg_vruntime : 21037.107324\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 7\\n .runnable_avg : 174\\n .util_avg : 174\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 7\\n .tg_load_avg : 931\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497476.091236\\n .se->vruntime : 107608.418217\\n .se->sum_exec_runtime : 8802.771884\\n .se->load.weight : 19164\\n .se->avg.load_avg : 3\\n .se->avg.util_avg : 174\\n .se->avg.runnable_avg : 174\\n\\ncfs_rq[7]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 383.199617\\n .avg_vruntime : 383.199617\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497449.453007\\n .se->vruntime : 107585.868216\\n .se->sum_exec_runtime : 387.779494\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 107608.491893\\n .avg_vruntime : 107608.491893\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 6\\n .runnable_avg : 176\\n .util_avg : 175\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[7]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[7]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S systemd 1 383.199617 E 386.187759 3.000000 3991.056069 4406 120 0.000000 3991.056069 0.000000 0.000000 0 0 /init.scope\\n S kthreadd 2 100764.923125 E 100767.859098 3.000000 6.873833 205 120 0.000000 6.873833 0.000000 0.000000 0 0 /\\n S cpuhp/7 57 8699.309454 E 8702.275668 3.000000 0.282413 26 120 0.000000 0.282413 0.000000 0.000000 0 0 /\\n S idle_inject/7 58 -1.048578 E 1.201422 2.250000 0.001352 3 49 0.000000 0.001352 0.000000 0.000000 0 0 /\\n S migration/7 59 3.384442 E 5.633801 2.250000 171.548927 184 0 0.000000 171.548927 0.000000 0.000000 0 0 /\\n S ksoftirqd/7 60 107464.531476 E 107467.379716 3.000000 18.337863 468 120 0.000000 18.337863 0.000000 0.000000 0 0 /\\n I kworker/7:0H 62 104628.465805 E 104628.500385 3.000000 9.475703 313 100 0.000000 9.475703 0.000000 0.000000 0 0 /\\n S kdevtmpfs 63 9325.916585 E 9328.878568 3.000000 8.686237 285 120 0.000000 8.686237 0.000000 0.000000 0 0 /\\n S kswapd0 91 0.799409 E 2.181565 3.000000 0.034879 3 120 0.000000 0.034879 0.000000 0.000000 0 0 /\\n Secryptfs-kthrea 92 -1.016388 E 1.982554 3.000000 0.003235 2 120 0.000000 0.003235 0.000000 0.000000 0 0 /\\n I kworker/7:1 99 107608.491893 E 107611.478717 3.000000 269.821830 2330 120 0.000000 269.821830 0.000000 0.000000 0 0 /\\n I kworker/7:1H 186 54.192213 E 54.226778 3.000000 0.130453 2 100 0.000000 0.130453 0.000000 0.000000 0 0 /\\n I kworker/7:2 196 64826.238662 E 64829.224947 3.000000 133.597384 774 120 0.000000 133.597384 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 220 260.331222 E 260.365822 3.000000 0.004276 2 100 0.000000 0.004276 0.000000 0.000000 0 0 /\\n S systemd-udevd 351 795.132127 E 797.132674 3.000000 1168.005347 2448 120 0.000000 1168.005347 0.000000 0.000000 0 0 /system.slice/systemd-udevd.service\\n I kworker/u16:6 449 105233.974044 E 105236.797656 3.000000 30.549253 679 120 0.000000 30.549253 0.000000 0.000000 0 0 /\\n Sirq/200-iwlwifi 543 3741.722959 E 3744.721790 3.000000 194.114558 1010 49 0.000000 194.114558 0.000000 0.000000 0 0 /\\n Ssystemd-timesyn 671 11.148111 E 14.012820 3.000000 65.946334 83 120 0.000000 65.946334 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n S gmain 932 5.984093 E 8.944402 3.000000 0.039691 1 120 0.000000 0.039691 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n Spower-profiles- 815 6.306037 E 8.958709 3.000000 42.592465 217 120 0.000000 42.592465 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 849 296.563492 E 299.451852 3.000000 336.107931 16267 120 0.000000 336.107931 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S pool-spawner 952 0.552605 E 2.408198 3.000000 0.084044 2 120 0.000000 0.084044 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S gmain 874 8.807278 E 11.798542 3.000000 0.044986 2 120 0.000000 0.044986 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S rs:main Q:Reg 956 25.730452 E 28.709173 3.000000 124.239181 2678 120 0.000000 124.239181 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S gdbus 1104 37.768442 E 39.540502 3.000000 25.778299 96 120 0.000000 25.778299 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S boltd 1085 23.517329 E 25.690659 3.000000 210.685483 1171 120 0.000000 210.685483 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S sysbox-fs 1120 -1.040991 E 1.951424 3.000000 0.113711 2 120 0.000000 0.113711 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sleep 1149 39.073787 E 39.604681 3.000000 7.280071 3 120 0.000000 7.280071 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1457 397.911414 E 400.908446 3.000000 107.715396 14123 120 0.000000 107.715396 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1493 0.604404 E 2.386227 3.000000 0.063206 3 120 0.000000 0.063206 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 1513 11.763534 E 14.743230 3.000000 12.527238 32 120 0.000000 12.527238 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1525 22.920219 E 25.873281 3.000000 11.380453 155 120 0.000000 11.380453 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sxdg-document-po 1548 22.929418 E 25.920219 3.000000 6.358220 29 120 0.000000 6.358220 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fuse mainloop 1567 19.595470 E 22.587394 3.000000 0.137316 5 120 0.000000 0.137316 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1558 18.304433 E 21.267038 3.000000 0.111080 2 120 0.000000 0.111080 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1607 3301.521958 E 3304.500149 3.000000 105.597955 89 120 0.000000 105.597955 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1665 387.715999 E 390.699088 3.000000 82.085644 1953 120 0.000000 82.085644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1673 0.023012 E 2.973127 3.000000 0.586838 20 120 0.000000 0.586838 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1703 404.236973 E 407.207709 3.000000 45.206785 1218 120 0.000000 45.206785 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1659 19.131514 E 22.099682 3.000000 1.546424 14 120 0.000000 1.546424 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S buildkitd 2818 12.785587 E 15.624806 3.000000 12.971388 33 120 0.000000 12.971388 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Sat-spi-bus-laun 3022 424.559544 E 427.521167 3.000000 3.389602 32 120 0.000000 3.389602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayla:traceq0 3268 365.997005 E 570.481954 3.000000 0.077355 4 139 0.000000 0.077355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3043 57.661466 E 60.641092 3.000000 4.306383 153 120 0.000000 4.306383 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gdbus 3073 207.807359 E 210.334322 3.000000 2.467237 14 120 0.000000 2.467237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3110 30.677526 E 33.625817 3.000000 0.075552 2 120 0.000000 0.075552 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3111 30.630162 E 33.591988 3.000000 0.038174 1 120 0.000000 0.038174 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3135 50.522322 E 53.477690 3.000000 0.080793 3 120 0.000000 0.080793 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3143 51.324937 E 54.279106 3.000000 0.083157 2 120 0.000000 0.083157 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3189 52.566712 E 55.538836 3.000000 0.112926 2 120 0.000000 0.112926 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3211 1467.846211 E 1470.663093 3.000000 19.246036 145 120 0.000000 19.246036 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-screensaver 3149 357.671192 E 360.642427 3.000000 5.256014 42 120 0.000000 5.256014 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3164 357.647615 E 360.580773 3.000000 4.749683 47 120 0.000000 4.749683 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3207 353.954110 E 356.900350 3.000000 0.139738 3 120 0.000000 0.139738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3291 223.408768 E 226.036502 3.000000 1.806394 7 120 0.000000 1.806394 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3343 3092.494350 E 3095.348483 3.000000 1.291563 13 120 0.000000 1.291563 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11:sh0 3385 419.506573 E 422.481074 3.000000 0.025499 1 120 0.000000 0.025499 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3392 424.607454 E 427.559544 3.000000 0.047910 1 120 0.000000 0.047910 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3370 394.943027 E 397.936848 3.000000 0.039410 2 120 0.000000 0.039410 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3380 419.140487 E 422.107152 3.000000 0.033335 1 120 0.000000 0.033335 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S systemd 3449 27.023024 E 28.860798 3.000000 755.385181 511 120 0.000000 755.385181 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S pipewire 3464 22.074172 E 25.016557 3.000000 16.001058 53 120 0.000000 16.001058 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3517 12.573708 E 15.568099 3.000000 0.023024 3 120 0.000000 0.023024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-document-po 3544 22.100524 E 25.096416 3.000000 5.893123 20 120 0.000000 5.893123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3557 22.144924 E 25.141339 3.000000 0.142775 5 120 0.000000 0.142775 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3558 22.141339 E 25.132316 3.000000 0.068673 3 120 0.000000 0.068673 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3598 3.360579 E 6.033303 3.000000 11.821224 56 120 0.000000 11.821224 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/7:3 3755 104454.365410 E 104457.340488 3.000000 16.941908 109 120 0.000000 16.941908 0.000000 0.000000 0 0 /\\n I kworker/7:0 5028 64826.231853 E 64829.229716 3.000000 0.008146 2 120 0.000000 0.008146 0.000000 0.000000 0 0 /\\n S docker 5102 27.814553 E 30.440931 3.000000 2.687934 20 120 0.000000 2.687934 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5129 38.486461 E 41.413433 3.000000 14.279948 330 120 0.000000 14.279948 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5130 32.710798 E 35.321772 3.000000 4.743828 75 120 0.000000 4.743828 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5214 396.628965 E 399.619883 3.000000 1.632861 6 120 0.000000 1.632861 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5216 396.205006 E 399.151410 3.000000 0.149899 4 120 0.000000 0.149899 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5217 396.329416 E 399.319519 3.000000 0.046450 2 120 0.000000 0.046450 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5218 396.450772 E 399.445603 3.000000 0.020033 2 120 0.000000 0.020033 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5219 396.731794 E 399.686069 3.000000 0.045725 1 120 0.000000 0.045725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5222 396.826857 E 399.811763 3.000000 0.015094 1 120 0.000000 0.015094 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5235 270.215607 E 273.195321 3.000000 2.769908 8 120 0.000000 2.769908 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5238 381.722352 E 384.707417 3.000000 3.484287 61 120 0.000000 3.484287 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5268 382.748296 E 385.548410 3.000000 3.158146 34 120 0.000000 3.158146 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_aof 5372 6.171250 E 9.150339 3.000000 0.020911 1 120 0.000000 0.020911 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S postgres 5289 117.159013 E 119.451687 3.000000 70.996204 134 120 0.000000 70.996204 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S docker-proxy 6328 549.309056 E 552.248047 3.000000 1.010855 13 120 0.000000 1.010855 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6178 362.549412 E 365.534457 3.000000 0.839896 6 120 0.000000 0.839896 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5457 284.338260 E 287.332839 3.000000 0.005421 1 120 0.000000 0.005421 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6179 383.770780 E 386.557348 3.000000 1.968910 8 120 0.000000 1.968910 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5562 2.778332 E 4.759018 3.000000 2.874720 9 120 0.000000 2.874720 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5567 0.289699 E 2.872177 3.000000 0.417522 2 120 0.000000 0.417522 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5601 910.364125 E 913.358635 3.000000 41.347394 21 120 0.000000 41.347394 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5662 1681.165612 E 1681.188384 3.000000 52.890599 17 120 0.000000 52.890599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5690 1759.655576 E 1761.689682 3.000000 32.986562 10 120 0.000000 32.986562 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5611 927.013891 E 930.004534 3.000000 30.958221 12 120 0.000000 30.958221 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5673 1716.676043 E 1719.667802 3.000000 47.953219 14 120 0.000000 47.953219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5698 1774.551283 E 1776.580995 3.000000 33.736341 12 120 0.000000 33.736341 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6950 3585.432725 E 3588.280345 3.000000 9.846769 66 120 0.000000 9.846769 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5635 1287.816586 E 1288.577374 3.000000 38.206043 11 120 0.000000 38.206043 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5636 1287.895610 E 1290.746600 3.000000 38.107591 11 120 0.000000 38.107591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5627 989.132258 E 992.064464 3.000000 56.892128 21 120 0.000000 56.892128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5682 1750.007994 E 1752.998981 3.000000 35.980149 10 120 0.000000 35.980149 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6344 3198.674402 E 3201.541368 3.000000 11.659960 15 120 0.000000 11.659960 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6348 3190.540404 E 3193.521302 3.000000 0.070215 3 120 0.000000 0.070215 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5647 1753.844207 E 1756.837808 3.000000 23.001512 8 120 0.000000 23.001512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5650 1495.354451 E 1498.348112 3.000000 23.003437 7 120 0.000000 23.003437 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5651 1498.355809 E 1501.345904 3.000000 25.997880 8 120 0.000000 25.997880 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5653 1499.385527 E 1502.375556 3.000000 27.015431 8 120 0.000000 27.015431 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5721 1803.013378 E 1806.006859 3.000000 29.898894 9 120 0.000000 29.898894 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5722 1807.064009 E 1810.054337 3.000000 33.945514 12 120 0.000000 33.945514 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6351 116.428855 E 119.105967 3.000000 7.747425 17 120 0.000000 7.747425 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6956 4533.730836 E 4536.708903 3.000000 998.652546 583 120 0.000000 998.652546 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Sjemalloc_bg_thd 7048 3537.883854 E 3540.833650 3.000000 0.050204 1 120 0.000000 0.050204 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\n"}, "Docker Version": "Client: Docker Engine - Community\\n Version: 27.2.1\\n API version: 1.47\\n Go version: go1.22.7\\n Git commit: 9e34c9b\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Context: default\\n\\nServer: Docker Engine - Community\\n Engine:\\n Version: 27.2.1\\n API version: 1.47 (minimum version 1.24)\\n Go version: go1.22.7\\n Git commit: 8b539b8\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Experimental: false\\n containerd:\\n Version: 1.7.21\\n GitCommit: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc:\\n Version: 1.1.13\\n GitCommit: v1.1.13-0-g58aa920\\n docker-init:\\n Version: 0.19.0\\n GitCommit: de40ad0\\n", "Hardware Model": "Laptop", "Virtualization": "Unknown", "CPU Utilization": 1.2, "Hardware Vendor": "Framework", "Hyper Threading": "1", "Hardware Details": "framebook\\n description: Notebook\\n product: Laptop (FRANBMCP0A)\\n vendor: Framework\\n version: AA\\n serial: FRANBMCPAA1484005R\\n width: 64 bits\\n capabilities: smbios-3.3.0 dmi-3.3.0 smp vsyscall32\\n configuration: administrator_password=disabled boot=normal chassis=notebook family=FRANBMCP power-on_password=disabled sku=FRANBMCP0A uuid=1cd24d0f-5c53-ec11-810d-283616200463\\n *-core\\n description: Motherboard\\n product: FRANBMCP0A\\n vendor: Framework\\n physical id: 0\\n version: AA\\n serial: FRANBMCPAA1484005R\\n slot: *\\n *-firmware\\n description: BIOS\\n vendor: INSYDE Corp.\\n physical id: 0\\n version: 03.19\\n date: 05/29/2023\\n size: 128KiB\\n capacity: 12MiB\\n capabilities: pci upgrade shadowing cdboot bootselect int9keyboard int10video acpi usb biosbootspecification uefi\\n *-cpu\\n description: CPU\\n product: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\\n vendor: Intel Corp.\\n physical id: 4\\n bus info: cpu@0\\n version: 6.140.1\\n serial: To Be Filled By O.E.M.\\n slot: U3E1\\n size: 891MHz\\n capacity: 4200MHz\\n width: 64 bits\\n clock: 100MHz\\n capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect md_clear ibt flush_l1d arch_capabilities cpufreq\\n configuration: cores=4 enabledcores=4 microcode=184 threads=8\\n *-cache:0\\n description: L1 cache\\n physical id: 6\\n slot: L1 Cache\\n size: 128KiB\\n capacity: 128KiB\\n capabilities: synchronous internal write-back instruction\\n configuration: level=1\\n *-cache:1\\n description: L2 cache\\n physical id: 7\\n slot: L2 Cache\\n size: 5MiB\\n capacity: 5MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=2\\n *-cache:2\\n description: L3 cache\\n physical id: 8\\n slot: L3 Cache\\n size: 8MiB\\n capacity: 8MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=3\\n *-cache\\n description: L1 cache\\n physical id: 5\\n slot: L1 Cache\\n size: 192KiB\\n capacity: 192KiB\\n capabilities: synchronous internal write-back data\\n configuration: level=1\\n *-memory\\n description: System Memory\\n physical id: 14\\n slot: System board or motherboard\\n size: 32GiB\\n *-bank:0\\n description: [empty]\\n physical id: 0\\n slot: Controller0-ChannelA-DIMM0\\n *-bank:1\\n description: SODIMM DDR4 Synchronous 3200 MHz (0.3 ns)\\n product: CT32G4SFD832A.M16FF\\n vendor: Crucial Technology\\n physical id: 1\\n serial: E63FE743\\n slot: Controller1-ChannelA-DIMM0\\n size: 32GiB\\n width: 64 bits\\n clock: 3200MHz (0.3ns)\\n *-pci\\n description: Host bridge\\n product: 11th Gen Core Processor Host Bridge/DRAM Registers\\n vendor: Intel Corporation\\n physical id: 100\\n bus info: pci@0000:00:00.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n *-display\\n description: VGA compatible controller\\n product: TigerLake-LP GT2 [Iris Xe Graphics]\\n vendor: Intel Corporation\\n physical id: 2\\n bus info: pci@0000:00:02.0\\n logical name: /dev/fb0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb\\n configuration: depth=32 driver=i915 latency=0 mode=2256x1504 resolution=2256,1504 visual=truecolor xres=2256 yres=1504\\n resources: iomemory:600-5ff iomemory:400-3ff irq:204 memory:605c000000-605cffffff memory:4000000000-400fffffff ioport:3000(size=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff\\n *-generic:0\\n description: Signal processing controller\\n product: TigerLake-LP Dynamic Tuning Processor Participant\\n vendor: Intel Corporation\\n physical id: 4\\n bus info: pci@0000:00:04.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: driver=proc_thermal latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d180000-605d19ffff\\n *-pci:0\\n description: PCI bridge\\n product: 11th Gen Core Processor PCIe Controller\\n vendor: Intel Corporation\\n physical id: 6\\n bus info: pci@0000:00:06.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:126 memory:7a300000-7a3fffff\\n *-nvme\\n description: NVMe device\\n product: WDS100T1X0E-00AFY0\\n vendor: Sandisk Corp\\n physical id: 0\\n bus info: pci@0000:01:00.0\\n logical name: /dev/nvme0\\n version: 614900WD\\n serial: 22047A801405\\n width: 64 bits\\n clock: 33MHz\\n capabilities: nvme pm msi msix pciexpress nvm_express bus_master cap_list\\n configuration: driver=nvme latency=0 nqn=nqn.2018-01.com.wdc:nguid:E8238FA6BF53-0001-001B448B45A2BCF6 state=live\\n resources: irq:16 memory:7a300000-7a303fff\\n *-namespace:0\\n description: NVMe disk\\n physical id: 0\\n logical name: hwmon2\\n *-namespace:1\\n description: NVMe disk\\n physical id: 2\\n logical name: /dev/ng0n1\\n *-namespace:2\\n description: NVMe disk\\n physical id: 1\\n bus info: nvme@0:1\\n logical name: /dev/nvme0n1\\n size: 931GiB (1TB)\\n capabilities: gpt-1.00 partitioned partitioned:gpt\\n configuration: guid=45dd4e4e-5082-4f7b-926f-7bfbac3490ba logicalsectorsize=512 sectorsize=512 wwid=eui.e8238fa6bf530001001b448b45a2bcf6\\n *-volume:0 UNCLAIMED\\n description: Windows FAT volume\\n vendor: MSDOS5.0\\n physical id: 1\\n bus info: nvme@0:1,1\\n version: FAT32\\n serial: 74bd-e763\\n size: 95MiB\\n capacity: 99MiB\\n capabilities: boot fat initialized\\n configuration: FATs=2 filesystem=fat name=EFI system partition\\n *-volume:1\\n description: reserved partition\\n vendor: Windows\\n physical id: 2\\n bus info: nvme@0:1,2\\n logical name: /dev/nvme0n1p2\\n serial: 0ea6d81a-270e-4676-b42f-41e3e89d8733\\n capacity: 15MiB\\n capabilities: nofs\\n configuration: name=Microsoft reserved partition\\n *-volume:2\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 3\\n bus info: nvme@0:1,3\\n logical name: /dev/nvme0n1p3\\n version: 3.1\\n serial: c851c6e2-393b-f34f-a874-3f47e3b4d22a\\n size: 465GiB\\n capacity: 465GiB\\n capabilities: ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:22:01 filesystem=ntfs name=Basic data partition state=clean\\n *-volume:3\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 4\\n bus info: nvme@0:1,4\\n logical name: /dev/nvme0n1p4\\n version: 3.1\\n serial: 4c29-9ee3\\n size: 523MiB\\n capacity: 523MiB\\n capabilities: boot precious ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:25:01 filesystem=ntfs state=clean\\n *-volume:4\\n description: EXT4 volume\\n vendor: Linux\\n physical id: 5\\n bus info: nvme@0:1,5\\n logical name: /dev/nvme0n1p5\\n logical name: /\\n logical name: /var/snap/firefox/common/host-hunspell\\n version: 1.0\\n serial: c6c4e62b-4240-443a-8feb-6001a7f1b7b5\\n size: 465GiB\\n capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized\\n configuration: created=2024-03-22 19:59:07 filesystem=ext4 lastmountpoint=/ modified=2024-09-12 18:36:24 mount.fstype=ext4 mount.options=ro,noexec,noatime,errors=remount-ro mounted=2024-09-12 18:36:25 state=mounted\\n *-pci:1\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0\\n vendor: Intel Corporation\\n physical id: 7\\n bus info: pci@0000:00:07.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:127 ioport:4000(size=4096) memory:7c000000-881fffff ioport:6000000000(size=469762048)\\n *-pci:2\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1\\n vendor: Intel Corporation\\n physical id: 7.1\\n bus info: pci@0000:00:07.1\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:128 ioport:5000(size=4096) memory:6e000000-7a1fffff ioport:6020000000(size=469762048)\\n *-pci:3\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2\\n vendor: Intel Corporation\\n physical id: 7.2\\n bus info: pci@0000:00:07.2\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:129 ioport:6000(size=4096) memory:60000000-6c1fffff ioport:6040000000(size=469762048)\\n *-pci:4\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3\\n vendor: Intel Corporation\\n physical id: 7.3\\n bus info: pci@0000:00:07.3\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:130 ioport:7000(size=4096) memory:52000000-5e1fffff ioport:6060000000(size=469762048)\\n *-generic:1 UNCLAIMED\\n description: System peripheral\\n product: GNA Scoring Accelerator module\\n vendor: Intel Corporation\\n physical id: 8\\n bus info: pci@0000:00:08.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff memory:605d1d8000-605d1d8fff\\n *-generic:2\\n description: Signal processing controller\\n product: Tigerlake Telemetry Aggregator Driver\\n vendor: Intel Corporation\\n physical id: a\\n bus info: pci@0000:00:0a.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress pm cap_list\\n configuration: driver=intel_vsec latency=0\\n resources: iomemory:600-5ff irq:0 memory:605d1c0000-605d1c7fff\\n *-usb:0\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 USB Controller\\n vendor: Intel Corporation\\n physical id: d\\n bus info: pci@0000:00:0d.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: iomemory:600-5ff irq:148 memory:605d1b0000-605d1bffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@1\\n logical name: usb1\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=1 speed=480Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@2\\n logical name: usb2\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-usb:1\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #0\\n vendor: Intel Corporation\\n physical id: d.2\\n bus info: pci@0000:00:0d.2\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d140000-605d17ffff memory:605d1d7000-605d1d7fff\\n *-usb:2\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #1\\n vendor: Intel Corporation\\n physical id: d.3\\n bus info: pci@0000:00:0d.3\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d100000-605d13ffff memory:605d1d6000-605d1d6fff\\n *-communication:0\\n description: Serial controller\\n product: Tiger Lake-LP Integrated Sensor Hub\\n vendor: Intel Corporation\\n physical id: 12\\n bus info: pci@0000:00:12.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm 8250 bus_master cap_list\\n configuration: driver=intel_ish_ipc latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1a0000-605d1affff\\n *-usb:3\\n description: USB controller\\n product: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller\\n vendor: Intel Corporation\\n physical id: 14\\n bus info: pci@0000:00:14.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: irq:156 memory:7a400000-7a40ffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@3\\n logical name: usb3\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=12 speed=480Mbit/s\\n *-usb:0\\n description: Human interface device\\n product: HDMI Expansion Card\\n vendor: Framework\\n physical id: 1\\n bus info: usb@3:1\\n version: 0.00\\n serial: 11AD1D0001DB3E1540120B00\\n capabilities: usb-2.01\\n configuration: driver=usbhid maxpower=100mA speed=12Mbit/s\\n *-usb:1\\n description: Video\\n product: Laptop Camera\\n vendor: Generic\\n physical id: 7\\n bus info: usb@3:7\\n version: 0.21\\n serial: 200901010001\\n capabilities: usb-2.01\\n configuration: driver=uvcvideo maxpower=300mA speed=480Mbit/s\\n *-usb:2 UNCLAIMED\\n description: Generic USB device\\n product: Goodix USB2.0 MISC\\n vendor: Goodix Technology Co., Ltd.\\n physical id: 9\\n bus info: usb@3:9\\n version: 1.00\\n serial: UID7D62CCAE_XXXX_MOC_B0\\n capabilities: usb-2.00\\n configuration: maxpower=100mA speed=12Mbit/s\\n *-usb:3\\n description: Bluetooth wireless interface\\n product: AX210 Bluetooth\\n vendor: Intel Corp.\\n physical id: a\\n bus info: usb@3:a\\n version: 0.00\\n capabilities: bluetooth usb-2.01\\n configuration: driver=btusb maxpower=100mA speed=12Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@4\\n logical name: usb4\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-memory UNCLAIMED\\n description: RAM memory\\n product: Tiger Lake-LP Shared SRAM\\n vendor: Intel Corporation\\n physical id: 14.2\\n bus info: pci@0000:00:14.2\\n version: 20\\n width: 64 bits\\n clock: 33MHz (30.3ns)\\n capabilities: pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff memory:605d1cc000-605d1cffff memory:605d1d5000-605d1d5fff\\n *-serial:0\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #0\\n vendor: Intel Corporation\\n physical id: 15\\n bus info: pci@0000:00:15.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:27 memory:4017000000-4017000fff\\n *-serial:1\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #1\\n vendor: Intel Corporation\\n physical id: 15.1\\n bus info: pci@0000:00:15.1\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:40 memory:4017001000-4017001fff\\n *-serial:2\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #3\\n vendor: Intel Corporation\\n physical id: 15.3\\n bus info: pci@0000:00:15.3\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:30 memory:4017002000-4017002fff\\n *-communication:1\\n description: Communication controller\\n product: Tiger Lake-LP Management Engine Interface\\n vendor: Intel Corporation\\n physical id: 16\\n bus info: pci@0000:00:16.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=mei_me latency=0\\n resources: iomemory:600-5ff irq:191 memory:605d1d1000-605d1d1fff\\n *-pci:5\\n description: PCI bridge\\n product: Tiger Lake-LP PCI Express Root Port #10\\n vendor: Intel Corporation\\n physical id: 1d\\n bus info: pci@0000:00:1d.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:131 memory:7a200000-7a2fffff\\n *-network\\n description: Wireless interface\\n product: Wi-Fi 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak]\\n vendor: Intel Corporation\\n physical id: 0\\n bus info: pci@0000:aa:00.0\\n logical name: wlp170s0\\n version: 1a\\n serial: 00:93:37:96:a0:14\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\\n configuration: broadcast=yes driver=iwlwifi driverversion=6.8.0-44-generic firmware=86.fb5c9aeb.0 ty-a0-gf-a0-86.uc ip=192.168.179.3 latency=0 link=yes multicast=yes wireless=IEEE 802.11\\n resources: irq:17 memory:7a200000-7a203fff\\n *-isa\\n description: ISA bridge\\n product: Tiger Lake-LP LPC Controller\\n vendor: Intel Corporation\\n physical id: 1f\\n bus info: pci@0000:00:1f.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: isa bus_master\\n configuration: latency=0\\n *-pnp00:00\\n product: PnP device PNP0303\\n physical id: 0\\n capabilities: pnp\\n configuration: driver=i8042 kbd\\n *-pnp00:01\\n product: PnP device PNP0f03\\n physical id: 1\\n capabilities: pnp\\n configuration: driver=i8042 aux\\n *-pnp00:02\\n product: PnP device PNP0c02\\n physical id: 2\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:03\\n product: PnP device PNP0c02\\n physical id: 3\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:04\\n product: PnP device PNP0c02\\n physical id: 4\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:05\\n product: PnP device PNP0c02\\n physical id: 5\\n capabilities: pnp\\n configuration: driver=system\\n *-multimedia\\n description: Audio device\\n product: Tiger Lake-LP Smart Sound Technology Audio Controller\\n vendor: Intel Corporation\\n physical id: 1f.3\\n bus info: pci@0000:00:1f.3\\n logical name: card0\\n logical name: /dev/snd/controlC0\\n logical name: /dev/snd/hwC0D0\\n logical name: /dev/snd/hwC0D2\\n logical name: /dev/snd/pcmC0D0c\\n logical name: /dev/snd/pcmC0D0p\\n logical name: /dev/snd/pcmC0D3p\\n logical name: /dev/snd/pcmC0D7p\\n logical name: /dev/snd/pcmC0D8p\\n logical name: /dev/snd/pcmC0D9p\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=snd_hda_intel latency=32\\n resources: iomemory:600-5ff iomemory:600-5ff irq:205 memory:605d1c8000-605d1cbfff memory:605d000000-605d0fffff\\n *-input:0\\n product: HDA Intel PCH Mic\\n physical id: 0\\n logical name: input12\\n logical name: /dev/input/event9\\n *-input:1\\n product: HDA Intel PCH Headphone\\n physical id: 1\\n logical name: input13\\n logical name: /dev/input/event10\\n *-input:2\\n product: HDA Intel PCH HDMI/DP,pcm=3\\n physical id: 2\\n logical name: input14\\n logical name: /dev/input/event11\\n *-input:3\\n product: HDA Intel PCH HDMI/DP,pcm=7\\n physical id: 3\\n logical name: input15\\n logical name: /dev/input/event12\\n *-input:4\\n product: HDA Intel PCH HDMI/DP,pcm=8\\n physical id: 4\\n logical name: input16\\n logical name: /dev/input/event13\\n *-input:5\\n product: HDA Intel PCH HDMI/DP,pcm=9\\n physical id: 5\\n logical name: input17\\n logical name: /dev/input/event14\\n *-serial:3\\n description: SMBus\\n product: Tiger Lake-LP SMBus Controller\\n vendor: Intel Corporation\\n physical id: 1f.4\\n bus info: pci@0000:00:1f.4\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n configuration: driver=i801_smbus latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1d0000-605d1d00ff ioport:efa0(size=32)\\n *-serial:4\\n description: Serial bus controller\\n product: Tiger Lake-LP SPI Controller\\n vendor: Intel Corporation\\n physical id: 1f.5\\n bus info: pci@0000:00:1f.5\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: bus_master\\n configuration: driver=intel-spi latency=0\\n resources: irq:0 memory:50400000-50400fff\\n *-battery\\n description: Lithium Ion Battery\\n product: FRANBBAT\\n vendor: FRANBBATA112610BG3\\n physical id: 1\\n version: 2021/7/5\\n serial: 0194\\n slot: Front\\n configuration: voltage=0.0V\\n *-power UNCLAIMED\\n description: OEM Define 1\\n product: OEM Define 5\\n vendor: OEM Define 2\\n physical id: 2\\n version: OEM Define 6\\n serial: OEM Define 3\\n capacity: 75mWh\\n *-input:0\\n product: Lid Switch\\n physical id: 3\\n logical name: input0\\n logical name: /dev/input/event0\\n capabilities: platform\\n *-input:1\\n product: Power Button\\n physical id: 4\\n logical name: input1\\n logical name: /dev/input/event1\\n capabilities: platform\\n *-input:2\\n product: PIXA3854:00 093A:0274 Touchpad\\n physical id: 5\\n logical name: input10\\n logical name: /dev/input/event6\\n logical name: /dev/input/mouse1\\n capabilities: i2c\\n *-input:3\\n product: Video Bus\\n physical id: 6\\n logical name: input11\\n logical name: /dev/input/event8\\n capabilities: platform\\n *-input:4\\n product: AT Translated Set 2 keyboard\\n physical id: 7\\n logical name: input2\\n logical name: /dev/input/event2\\n logical name: input2::capslock\\n logical name: input2::numlock\\n logical name: input2::scrolllock\\n capabilities: i8042\\n *-input:5\\n product: ImExPS/2 Generic Explorer Mouse\\n physical id: 8\\n logical name: input4\\n logical name: /dev/input/event7\\n logical name: /dev/input/mouse2\\n capabilities: i8042\\n *-input:6\\n product: FRMW0001:00 32AC:0006 Wireless Radio Control\\n physical id: 9\\n logical name: input5\\n logical name: /dev/input/event3\\n capabilities: i2c\\n *-input:7\\n product: FRMW0001:00 32AC:0006 Consumer Control\\n physical id: a\\n logical name: input6\\n logical name: /dev/input/event4\\n capabilities: i2c\\n *-input:8\\n product: PIXA3854:00 093A:0274 Mouse\\n physical id: b\\n logical name: input9\\n logical name: /dev/input/event5\\n logical name: /dev/input/mouse0\\n capabilities: i2c\\n", "Operating System": "Ubuntu 24.04.1 LTS", "Scaling Governor": "powersave", "CPU Complete Dump": {"/sys/devices/system/cpu/online": "0-7\\n", "/sys/devices/system/cpu/uevent": "", "/sys/devices/system/cpu/offline": "\\n", "/sys/devices/system/cpu/present": "0-7\\n", "/sys/devices/system/cpu/isolated": "\\n", "/sys/devices/system/cpu/modalias": "cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n", "/sys/devices/system/cpu/possible": "0-7\\n", "/sys/devices/system/cpu/nohz_full": " (null)\\n", "/sys/devices/system/cpu/kernel_max": "8191\\n", "/sys/devices/system/cpu/smt/active": "1\\n", "/sys/devices/system/cpu/cpu0/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu1/online": "1\\n", "/sys/devices/system/cpu/cpu1/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu2/online": "1\\n", "/sys/devices/system/cpu/cpu2/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu3/online": "1\\n", "/sys/devices/system/cpu/cpu3/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu4/online": "1\\n", "/sys/devices/system/cpu/cpu4/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu5/online": "1\\n", "/sys/devices/system/cpu/cpu5/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu6/online": "1\\n", "/sys/devices/system/cpu/cpu6/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu7/online": "1\\n", "/sys/devices/system/cpu/cpu7/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/power/async": "disabled\\n", "/sys/devices/system/cpu/smt/control": "on\\n", "/sys/devices/system/cpu/power/control": "auto\\n", "/sys/devices/system/cpu/hotplug/states": " 0: offline\\n 1: threads:prepare\\n 2: perf:prepare\\n 3: perf/x86:prepare\\n 8: x86/mce:dead\\n 9: virtio/net:dead\\n 11: slub:dead\\n 13: mm/writeback:dead\\n 14: mm/vmstat:dead\\n 15: softirq:dead\\n 20: irq_poll:dead\\n 21: block/softirq:dead\\n 22: block/bio:dead\\n 23: acpi/cpu-drv:dead\\n 25: block/mq:dead\\n 26: fs/buffer:dead\\n 27: printk:dead\\n 28: mm/memctrl:dead\\n 29: lib/percpu_cnt:dead\\n 30: lib/radix:dead\\n 31: mm/page_alloc:pcp\\n 32: net/dev:dead\\n 34: iommu/iova:dead\\n 36: padata:dead\\n 38: random:prepare\\n 39: workqueue:prepare\\n 41: hrtimers:prepare\\n 43: x86/x2apic:prepare\\n 44: smpcfd:prepare\\n 45: relay:prepare\\n 47: RCU/tree:prepare\\n 55: base/topology:prepare\\n 58: trace/RB:prepare\\n 59: mm/zsmalloc:prepare\\n 63: timers:prepare\\n 65: fork:vm_stack_cache\\n 66: crash/cpuhp\\n 86: cpu:kick_ap\\n 87: cpu:bringup\\n 88: idle:dead\\n 89: ap:offline\\n 90: x86/cachectrl:starting\\n 91: sched:starting\\n 92: RCU/tree:dying\\n104: perf/x86:starting\\n106: perf/x86/cstate:starting\\n137: smpcfd:dying\\n138: hrtimers:dying\\n141: ap:online\\n142: cpu:teardown\\n145: kvm/cpu:online\\n146: sched:waitempty\\n147: smpboot/threads:online\\n148: irq/affinity:online\\n149: block/mq:online\\n151: x86/intel/epb:online\\n152: perf:online\\n153: perf/x86:online\\n154: perf/x86/intel/uncore:online\\n157: perf/x86/rapl:online\\n158: perf/x86/cstate:online\\n184: lockup_detector:online\\n185: workqueue:online\\n186: random:online\\n187: RCU/tree:online\\n188: base/cacheinfo:online\\n189: x86/splitlock\\n190: mm/writeback:online\\n191: mm/vmstat:online\\n192: padata:online\\n193: mm/compaction:online\\n194: io-wq/online\\n195: lib/percpu_cnt:online\\n196: idle/intel:online\\n197: acpi/cpu-drv:online\\n198: virtio/net:online\\n199: x86/therm:online\\n200: cpufreq:online\\n201: leds/trigger:starting\\n202: x86/mce:online\\n203: x86/microcode:online\\n204: x86/resctrl/cat:online:\\n205: printk:online\\n206: trace/hwlat:online\\n207: trace/osnoise:online\\n208: swap_slots_cache\\n209: x86/msr:online\\n210: powercap/rapl:online\\n211: perf/x86/intel/i915:online\\n212: powercap/rapl:online\\n213: hwmon/coretemp:online\\n214: thermal/x86_pkg:online\\n215: platform/x86/uncore-freq:online\\n232: sched:active\\n233: online\\n", "/sys/devices/system/cpu/cpu0/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu1/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu2/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu3/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu4/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu5/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu6/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu7/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu0/cache/uevent": "", "/sys/devices/system/cpu/cpu0/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu1/cache/uevent": "", "/sys/devices/system/cpu/cpu1/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu2/cache/uevent": "", "/sys/devices/system/cpu/cpu2/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu3/cache/uevent": "", "/sys/devices/system/cpu/cpu3/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu4/cache/uevent": "", "/sys/devices/system/cpu/cpu4/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu5/cache/uevent": "", "/sys/devices/system/cpu/cpu5/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu6/cache/uevent": "", "/sys/devices/system/cpu/cpu6/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu7/cache/uevent": "", "/sys/devices/system/cpu/cpu7/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu0/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu0/power/control": "auto\\n", "/sys/devices/system/cpu/cpu1/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu1/power/control": "auto\\n", "/sys/devices/system/cpu/cpu2/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu2/power/control": "auto\\n", "/sys/devices/system/cpu/cpu3/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu3/power/control": "auto\\n", "/sys/devices/system/cpu/cpu4/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu4/power/control": "auto\\n", "/sys/devices/system/cpu/cpu5/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu5/power/control": "auto\\n", "/sys/devices/system/cpu/cpu6/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu6/power/control": "auto\\n", "/sys/devices/system/cpu/cpu7/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu7/power/control": "auto\\n", "/sys/devices/system/cpu/cpu0/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu1/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu2/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu3/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu4/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu5/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu6/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu7/hotplug/target": "233\\n", "/sys/devices/system/cpu/intel_pstate/status": "active\\n", "/sys/devices/system/cpu/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/vulnerabilities/mds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu0/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu2/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu3/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu4/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu6/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu7/topology/die_id": "0\\n", "/sys/devices/system/cpu/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/vulnerabilities/l1tf": "Not affected\\n", "/sys/devices/system/cpu/cpu0/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu2/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu3/topology/core_id": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu6/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu7/topology/core_id": "3\\n", "/sys/devices/system/cpu/intel_pstate/no_turbo": "0\\n", "/sys/devices/system/cpu/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/vulnerabilities/srbds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu0/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu0/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu0/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu0/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu0/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu0/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu1/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu1/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu1/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu1/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu1/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu1/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu2/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu2/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu2/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu2/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu2/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu2/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu3/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu3/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu3/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu3/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu3/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu3/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu4/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu4/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu4/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu4/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu4/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu4/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu5/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu5/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu5/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu5/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu5/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu5/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu6/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu6/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu6/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu6/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu6/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu6/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu7/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu7/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu7/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu7/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu7/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu7/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpuidle/current_driver": "intel_idle\\n", "/sys/devices/system/cpu/intel_pstate/turbo_pct": "47\\n", "/sys/devices/system/cpu/cpu0/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu0/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu1/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu1/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu2/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu3/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu3/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu4/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu4/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu5/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu5/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu6/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu7/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu7/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu0/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu0/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/time": "62712\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/time": "19587515\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/time": "23599847\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/time": "414933286\\n", "/sys/devices/system/cpu/cpu0/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu1/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/time": "64048\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/time": "12617480\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/time": "11121695\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/time": "433585098\\n", "/sys/devices/system/cpu/cpu1/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu2/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/time": "58977\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/time": "13906545\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/time": "16504675\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/time": "429687308\\n", "/sys/devices/system/cpu/cpu2/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu3/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu3/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/time": "69625\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/time": "10779368\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/time": "9538751\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/time": "445863300\\n", "/sys/devices/system/cpu/cpu3/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpu4/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu4/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/time": "48588\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/time": "9079342\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/time": "7241393\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/time": "449900248\\n", "/sys/devices/system/cpu/cpu4/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu5/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/time": "59182\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/time": "10324865\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/time": "8904902\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/time": "449671709\\n", "/sys/devices/system/cpu/cpu5/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu6/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/time": "54784\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/time": "10574461\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/time": "8699972\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/time": "451682562\\n", "/sys/devices/system/cpu/cpu6/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu7/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu7/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/time": "66955\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/time": "10474764\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/time": "8559453\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/time": "447327553\\n", "/sys/devices/system/cpu/cpu7/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpuidle/current_governor": "menu\\n", "/sys/devices/system/cpu/intel_pstate/num_pstates": "39\\n", "/sys/devices/system/cpu/vulnerabilities/meltdown": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/retbleed": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/below": "1263\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/usage": "1404\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/above": "1357\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/below": "13109\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/usage": "64370\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/above": "1695\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/below": "12\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/usage": "25721\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/above": "31628\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/usage": "58401\\n", "/sys/devices/system/cpu/cpu0/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/below": "1570\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/usage": "1682\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/above": "1276\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/below": "6824\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/usage": "55291\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/above": "1157\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/below": "16\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/usage": "12200\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/above": "12466\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/usage": "31834\\n", "/sys/devices/system/cpu/cpu1/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/below": "1252\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/usage": "1414\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/above": "1903\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/below": "7160\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/usage": "60687\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/above": "2043\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/below": "11\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/usage": "18111\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/above": "9701\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/usage": "38733\\n", "/sys/devices/system/cpu/cpu2/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/below": "1574\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/usage": "1780\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/above": "2037\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/below": "5737\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/usage": "51294\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/above": "1382\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/below": "31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/usage": "10399\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/above": "7980\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/usage": "27409\\n", "/sys/devices/system/cpu/cpu3/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/below": "1532\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/usage": "1801\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/above": "1204\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/below": "5102\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/usage": "46528\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/above": "866\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/below": "15\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/usage": "7895\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/above": "4514\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/usage": "18379\\n", "/sys/devices/system/cpu/cpu4/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/below": "1445\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/usage": "1541\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/above": "1385\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/below": "5802\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/usage": "50037\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/above": "1180\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/below": "32\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/usage": "9672\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/above": "5439\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/usage": "18648\\n", "/sys/devices/system/cpu/cpu5/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/below": "1233\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/usage": "1333\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/above": "1831\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/below": "5588\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/usage": "51433\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/above": "1062\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/below": "15\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/usage": "9454\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/above": "4521\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/usage": "21736\\n", "/sys/devices/system/cpu/cpu6/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/below": "1549\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/usage": "1832\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/above": "1986\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/below": "5714\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/usage": "50817\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/above": "1079\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/below": "15\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/usage": "9309\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/above": "5263\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/usage": "21304\\n", "/sys/devices/system/cpu/cpu7/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/intel_pstate/max_perf_pct": "100\\n", "/sys/devices/system/cpu/intel_pstate/min_perf_pct": "9\\n", "/sys/devices/system/cpu/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu0/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu1/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu2/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu3/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu4/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu5/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu6/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu7/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v1": "Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v2": "Mitigation: Enhanced / Automatic IBRS; IBPB: conditional; RSB filling; PBRSB-eIBRS: SW sequence; BHI: SW loop, KVM: SW loop\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu0/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu1/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu2/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu3/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu4/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu5/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu6/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu7/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpuidle/available_governors": "ladder menu teo \\n", "/sys/devices/system/cpu/cpuidle/current_governor_ro": "menu\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/feedback_ctrs": "ref:134983448088 del:81316507663\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/feedback_ctrs": "ref:94803001152 del:59580894407\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/feedback_ctrs": "ref:88605357432 del:49376285422\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/feedback_ctrs": "ref:73314305976 del:40729478776\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/feedback_ctrs": "ref:72761789904 del:48415742388\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/feedback_ctrs": "ref:68356272744 del:41535765315\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/feedback_ctrs": "ref:61592302728 del:37415527396\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/feedback_ctrs": "ref:72593622312 del:44991807404\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpufreq/policy0/related_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/related_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/related_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/related_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/related_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/related_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/related_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/related_cpus": "7\\n", "/sys/devices/system/cpu/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpufreq/policy0/affected_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/affected_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/affected_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/affected_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/affected_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/affected_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/affected_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/affected_cpus": "7\\n", "/sys/devices/system/cpu/vulnerabilities/itlb_multihit": "Not affected\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu0/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu1/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu2/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu3/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu4/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu5/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu6/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu7/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy1/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy2/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy3/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy4/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy5/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy6/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy7/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/vulnerabilities/mmio_stale_data": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/tsx_async_abort": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq": "399127\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_cur_freq": "425088\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_cur_freq": "3847984\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_cur_freq": "2231491\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_cur_freq": "3889466\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu0/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/vulnerabilities/spec_store_bypass": "Mitigation: Speculative Store Bypass disabled via prctl\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu1/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu2/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu3/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu4/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu5/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu6/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu7/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_nonlinear_perf": "13\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/vulnerabilities/gather_data_sampling": "Mitigation: Microcode\\n", "/sys/devices/system/cpu/vulnerabilities/spec_rstack_overflow": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/vulnerabilities/reg_file_data_sampling": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us": "67911948\\n", "/sys/devices/system/cpu/cpu0/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us": "15846041\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/min_freq_khz": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_min_freq_khz": "400000\\n"}, "Docker Containers": "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES", "Network Interfaces": "2: wlp170s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1456 qdisc noqueue state UP group default qlen 1000\\n link/ether 00:93:37:96:a0:14 brd ff:ff:ff:ff:ff:ff\\n--\\n4: br-5358121b016d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:31:4c:7c:39 brd ff:ff:ff:ff:ff:ff\\n--\\n5: br-6e0ae77042d6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:29:4c:03:1e brd ff:ff:ff:ff:ff:ff\\n--\\n6: br-7688b5ca7e2d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:e5:22:19:30 brd ff:ff:ff:ff:ff:ff\\n--\\n7: br-9ba2a39b0b1e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:f5:74:c1:66 brd ff:ff:ff:ff:ff:ff\\n--\\n8: br-ce560083466a: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:a4:f4:58:34 brd ff:ff:ff:ff:ff:ff\\n--\\n9: br-17d7b4ff19e9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:40:0a:a9:6e brd ff:ff:ff:ff:ff:ff\\n--\\n10: br-b8fe670a4cd7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:15:10:5f:b5 brd ff:ff:ff:ff:ff:ff\\n--\\n11: br-c26dcd3569f9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:53:0c:b7:f6 brd ff:ff:ff:ff:ff:ff\\n--\\n13: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:2f:19:92:44 brd ff:ff:ff:ff:ff:ff\\n--\\n15: veth4b2531f@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default \\n link/ether 16:4d:d1:07:e9:34 brd ff:ff:ff:ff:ff:ff link-netnsid 0\\n--\\n27: br-cd08359ec224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:cb:56:8d:7d brd ff:ff:ff:ff:ff:ff\\n--\\n29: veth4f67909@if28: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether c2:8b:74:ce:4b:f2 brd ff:ff:ff:ff:ff:ff link-netnsid 2\\n--\\n31: veth3d72cc1@if30: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 56:6f:f8:d3:95:47 brd ff:ff:ff:ff:ff:ff link-netnsid 1\\n--\\n33: veth888843b@if32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 72:81:21:75:96:2a brd ff:ff:ff:ff:ff:ff link-netnsid 3\\n--\\n35: veth0c4fb2f@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 1e:1a:b4:b7:47:13 brd ff:ff:ff:ff:ff:ff link-netnsid 4\\n", "Current Clocksource": "tsc", "RAPL Energy Filtering": "0\\n", "Installed Python Packages": "aiohappyeyeballs==2.4.0\\naiohttp==3.10.3\\naiosignal==1.3.1\\nalembic==1.13.2\\nannotated-types==0.7.0\\nanybadge==1.14.0\\nanyio==4.4.0\\nattrs==24.2.0\\ncertifi==2024.8.30\\ncharset-normalizer==3.3.2\\nclick==8.1.7\\ncolorlog==6.8.2\\ndeepdiff==7.0.1\\ndnspython==2.6.1\\ndocker==7.1.0\\nemail_validator==2.2.0\\nfastapi==0.112.0\\nfastapi-cli==0.0.5\\nfrozenlist==1.4.1\\ngreenlet==3.1.0\\ngunicorn==23.0.0\\nh11==0.14.0\\nhiredis==3.0.0\\nhttpcore==1.0.5\\nhttptools==0.6.1\\nhttpx==0.27.2\\nidna==3.8\\nJinja2==3.1.4\\njoblib==1.4.2\\nMako==1.3.5\\nmarkdown-it-py==3.0.0\\nMarkupSafe==2.1.5\\nmdurl==0.1.2\\nmultidict==6.1.0\\nnumpy==2.0.1\\nnvidia-nccl-cu12==2.22.3\\noptuna==3.6.1\\nordered-set==4.1.0\\norjson==3.10.7\\npackaging==24.1\\npandas==2.2.2\\nplotext==5.2.8\\npsutil==6.0.0\\npsycopg==3.2.1\\npsycopg-binary==3.2.1\\npsycopg-pool==3.2.2\\npyarrow==17.0.0\\npydantic==2.9.1\\npydantic_core==2.23.3\\nPygments==2.18.0\\npyserial==3.5\\npython-dateutil==2.9.0.post0\\npython-dotenv==1.0.1\\npython-multipart==0.0.9\\npytz==2024.2\\nPyYAML==6.0.2\\nredis==5.0.8\\nrequests==2.32.3\\nrich==13.8.1\\nschema==0.7.7\\nscikit-learn==1.5.1\\nscipy==1.14.0\\nshellingham==1.5.4\\nsix==1.16.0\\nsniffio==1.3.1\\nSQLAlchemy==2.0.34\\nstarlette==0.37.2\\nthreadpoolctl==3.5.0\\ntqdm==4.66.5\\ntyper==0.12.5\\ntyping_extensions==4.12.2\\ntzdata==2024.1\\nurllib3==2.2.2\\nuvicorn==0.30.6\\nuvicorn-worker==0.2.0\\nuvloop==0.20.0\\nwatchfiles==0.24.0\\nwebsockets==13.0.1\\nxgboost==2.1.0\\nyarl==1.11.1\\n", "Installed System Packages": "Desired=Unknown/Install/Remove/Purge/Hold\\n| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend\\n|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\\n||/ Name Version Architecture Description\\n+++-=============================================-==========================================-============-===================================================================================\\nii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information\\nii acl 2.3.2-1build1 amd64 access control list - utilities\\nii adduser 3.137ubuntu1 all add and remove users and groups\\nii adwaita-icon-theme 46.0-1 all default icon theme of GNOME\\nii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files\\nii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files\\nii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files\\nii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA\\nii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs\\nii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn\'t go by time\\nii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version\\nii apparmor 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 user-space parser utility for AppArmor\\nii apport 2.28.1-0ubuntu3.1 all automatically generate crash reports for debugging\\nii apport-core-dump-handler 2.28.1-0ubuntu3.1 all Kernel core dump handler for Apport\\nii apport-gtk 2.28.1-0ubuntu3.1 all GTK+ frontend for the apport crash report system\\nii apport-symptoms 0.25 all symptom scripts for apport\\nii appstream 1.0.2-1build6 amd64 Software component metadata management\\nii apt 2.7.14build2 amd64 commandline package manager\\nii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads\\nii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads\\nii apt-utils 2.7.14build2 amd64 package management related utility programs\\nii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service\\nii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients\\nii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker\\nii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell\\nii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)\\nii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)\\nii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon\\nii baobab 46.0-1build1 amd64 GNOME disk usage analyzer\\nii base-files 13ubuntu10.1 amd64 Debian base system miscellaneous files\\nii base-passwd 3.6.3build1 amd64 Debian base system master password and group files\\nii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell\\nii bash-completion 1:2.11-8 all programmable completion for the bash shell\\nii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language\\nii bind9-dnsutils 1:9.18.28-0ubuntu0.24.04.1 amd64 Clients provided with BIND 9\\nii bind9-host 1:9.18.28-0ubuntu0.24.04.1 amd64 DNS Lookup Utility\\nii bind9-libs:amd64 1:9.18.28-0ubuntu0.24.04.1 amd64 Shared Libraries used by BIND 9\\nii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities\\nii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities\\nii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target\\nii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons\\nii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS\\nii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon\\nii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices\\nii boot-repair 4ppa2081 all Graphical tool to repair boot problems\\nii boot-sav 4ppa2081 all Librairies for Boot-Info, OS-uninstaller and Boot-repair\\nii boot-sav-extra 4ppa2081 all Extra librairies for OS-uninstaller and Boot-repair\\nii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)\\nii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF\\nii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display\\nii bsdextrautils 2.39.3-9ubuntu6.1 amd64 extra utilities from 4.4BSD-Lite\\nii bsdutils 1:2.39.3-9ubuntu6.1 amd64 basic utilities from 4.4BSD-Lite\\nii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation\\nii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages\\nii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs\\nii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities\\nii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities\\nii ca-certificates 20240203 all Common CA certificates\\nii ca-certificates-java 20240118 all Common CA certificates (JKS keystore)\\nii cloud-guest-utils 0.33-1 all cloud guest utilities\\nii cloud-init 24.2-0ubuntu1~24.04.2 all initialization and customization tool for cloud instances\\nii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon\\nii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files\\nii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions\\nii console-setup 1.226ubuntu1 all console font and keymap setup program\\nii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup\\nii containerd.io 1.7.21-1 amd64 An open and reliable container runtime\\nii coreutils 9.4-3ubuntu6 amd64 GNU core utilities\\nii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files\\nii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)\\nii cpp-11 11.4.0-9ubuntu1 amd64 GNU C preprocessor\\nii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor\\nii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu\\nii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture\\nii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2\\nii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon\\nii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon\'s configuration files\\nii cups 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface\\nii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed\\nii cups-bsd 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - BSD commands\\nii cups-client 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - client programs (SysV)\\nii cups-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - common files\\nii cups-core-drivers 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - driverless printing\\nii cups-daemon 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - daemon\\nii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package\\nii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing\\nii cups-ipp-utils 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities\\nii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges\\nii cups-ppdc 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities\\nii cups-server-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - server common files\\nii curl 8.5.0-2ubuntu10.3 amd64 command line tool for transferring data with URL syntax\\nii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell\\nii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)\\nii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)\\nii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)\\nii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)\\nii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)\\nii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)\\nii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator\\nii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities\\nii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end\\nii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service\\nii debconf 1.5.86ubuntu1 all Debian configuration management system\\nii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf\\nii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian\\nii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files\\nii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)\\nii dictionaries-common 1.29.7 all spelling dictionaries - common utilities\\nii diffutils 1:3.10-1build1 amd64 File comparison utilities\\nii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service\\nii distro-info 1.7build1 amd64 provides information about the distributions\' releases\\nii distro-info-data 0.60ubuntu0.1 all information about the distributions\' releases (data files)\\nii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder\\nii dmsetup 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme\\nii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key\\nii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable\\nii docbook-xml 4.5-12 all standard XML documentation system for software and systems\\nii docker-buildx-plugin 0.16.2-1~ubuntu.22.04~jammy amd64 Docker Buildx cli plugin.\\nii docker-ce 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker: the open-source application container engine\\nii docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine\\nii docker-ce-rootless-extras 5:27.2.1-1~ubuntu.22.04~jammy amd64 Rootless support for Docker.\\nii docker-compose-plugin 2.29.2-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.\\nii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems\\nii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system\\nii dpkg-dev 1.22.6ubuntu6.1 all Debian package development tools\\nii dracut-install 060+5-1ubuntu3.2 amd64 dracut is an event driven initramfs infrastructure (dracut-install)\\nii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities\\nii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends\\nii ed 1.20.1-1 amd64 classic UNIX line editor\\nii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager\\nii eject 2.39.3-9ubuntu6.1 amd64 ejects CDs and operates CD-Changers under Linux\\nii emacsen-common 3.0.5 all Common facilities for all emacsen\\nii enchant-2 2.3.3-2build2 amd64 Wrapper for various spell checker engines (binary programs)\\nii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program\\nii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files\\nii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings\\nii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer\\nii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files\\nii evolution-data-server 3.52.3-0ubuntu1 amd64 evolution database backend server\\nii evolution-data-server-common 3.52.3-0ubuntu1 all architecture independent files for Evolution Data Server\\nii fakeroot 1.33-1 amd64 tool for simulating superuser privileges\\nii fdisk 2.39.3-9ubuntu6.1 amd64 collection of partitioning utilities\\nii file 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers\\nii file-roller 44.3-0ubuntu1 amd64 archive manager for GNOME\\nii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs\\nii firefox 1:1snap1-0ubuntu5 amd64 Transitional package - firefox -> firefox snap\\nii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed\\nii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries\\nii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration\\nii fonts-beng 2:1.3 all Metapackage to install Bengali and Assamese fonts\\nii fonts-beng-extra 3.3.1-2 all TrueType fonts for Bengali language\\nii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters\\nii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters\\nii fonts-deva 2:1.4 all Meta package to install all Devanagari fonts\\nii fonts-deva-extra 3.0-6 all Free fonts for Devanagari script\\nii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)\\nii fonts-freefont-ttf 20211204+svn4273-2 all Freefont Serif, Sans and Mono Truetype fonts\\nii fonts-gargi 2.0-6 all OpenType Devanagari font\\nii fonts-gubbi 1.3-7 all Gubbi free font for Kannada script\\nii fonts-gujr 2:1.5 all Meta package to install all Gujarati fonts\\nii fonts-gujr-extra 1.0.1-2 all Free fonts for Gujarati script\\nii fonts-guru 2:1.3 all Meta package to install all Punjabi fonts\\nii fonts-guru-extra 2.0-5 all Free fonts for Punjabi language\\nii fonts-indic 2:1.4 all Meta package to install all Indian language fonts\\nii fonts-kalapi 1.0-5 all Kalapi Gujarati Unicode font\\nii fonts-knda 2:1.3 all Meta package for Kannada fonts\\nii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier\\nii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow\\nii fonts-lohit-beng-assamese 2.91.5-2 all Lohit TrueType font for Assamese Language\\nii fonts-lohit-beng-bengali 2.91.5-3 all Lohit TrueType font for Bengali Language\\nii fonts-lohit-deva 2.95.4-5 all Lohit TrueType font for Devanagari script\\nii fonts-lohit-gujr 2.92.4-4 all Lohit TrueType font for Gujarati Language\\nii fonts-lohit-guru 2.91.2-3 all Lohit TrueType font for Punjabi Language\\nii fonts-lohit-knda 2.5.4-3 all Lohit TrueType font for Kannada Language\\nii fonts-lohit-mlym 2.92.2-2 all Lohit TrueType font for Malayalam Language\\nii fonts-lohit-orya 2.91.2-2 all Lohit TrueType font for Oriya Language\\nii fonts-lohit-taml 2.91.3-2 all Lohit TrueType font for Tamil Language\\nii fonts-lohit-taml-classical 2.5.4-2 all Lohit Tamil TrueType fonts for Tamil script\\nii fonts-lohit-telu 2.5.5-2build1 all Lohit TrueType font for Telugu Language\\nii fonts-mlym 2:1.3 all Meta package to install all Malayalam fonts\\nii fonts-nakula 1.0-4 all Free Unicode compliant Devanagari font\\nii fonts-navilu 1.2-4 all Handwriting font for Kannada\\nii fonts-noto-cjk 1:20230817+repack1-3 all \\"No Tofu\\" font families with large Unicode coverage (CJK regular and bold)\\nii fonts-noto-color-emoji 2.042-1 all color emoji font from Google\\nii fonts-noto-core 20201225-2 all \\"No Tofu\\" font families with large Unicode coverage (core)\\nii fonts-noto-mono 20201225-2 all \\"No Tofu\\" monospaced font family with large Unicode coverage\\nii fonts-opensymbol 4:102.12+LibO24.2.5-0ubuntu0.24.04.2 all OpenSymbol TrueType font\\nii fonts-orya 2:1.3 all Meta package to install all Odia fonts\\nii fonts-orya-extra 2.0-6 all Free fonts for Odia script\\nii fonts-pagul 1.0-9 all Free TrueType font for the Sourashtra language\\nii fonts-sahadeva 1.0-5 all Free Unicode compliant Devanagari font\\nii fonts-samyak-deva 1.2.2-6 all Samyak TrueType font for Devanagari script\\nii fonts-samyak-gujr 1.2.2-6 all Samyak TrueType font for Gujarati language\\nii fonts-samyak-mlym 1.2.2-6 all Samyak TrueType font for Malayalam language\\nii fonts-samyak-taml 1.2.2-6 all Samyak TrueType font for Tamil language\\nii fonts-sarai 1.0-3 all truetype font for devanagari script\\nii fonts-sil-annapurna 2.000-2 all smart font for languages using Devanagari script\\nii fonts-smc 1:7.5 all Metapackage for various TrueType fonts for Malayalam Language\\nii fonts-smc-anjalioldlipi 7.1.2-2 all AnjaliOldLipi malayalam font\\nii fonts-smc-chilanka 1.540-2 all Chilanka malayalam font\\nii fonts-smc-dyuthi 3.0.2-2 all Dyuthi malayalam font\\nii fonts-smc-gayathri 1.200-1 all Gayathri Malayalam font\\nii fonts-smc-karumbi 1.1.2-2 all Karumbi malayalam font\\nii fonts-smc-keraleeyam 3.0.2-2 all Keraleeyam malayalam font\\nii fonts-smc-manjari 2.200-1 all Manjari malayalam font\\nii fonts-smc-meera 7.0.3-1 all Meera malayalam font\\nii fonts-smc-rachana 7.0.2-1build1 all Rachana malayalam font\\nii fonts-smc-raghumalayalamsans 2.2.1-1 all RaghuMalayalamSans malayalam font\\nii fonts-smc-suruma 3.2.3-1 all Suruma malayalam font\\nii fonts-smc-uroob 2.0.2-1 all Uroob malayalam font\\nii fonts-taml 2:1.4 all Meta package to install all Tamil fonts\\nii fonts-telu 2:1.3 all Meta package to install all Telugu fonts\\nii fonts-telu-extra 2.0-6 all Free fonts for Telugu script\\nii fonts-teluguvijayam 2.1-1 all TrueType fonts for Telugu script (te)\\nii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu\\nii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts\\nii fonts-yrsa-rasa 2.005-1 all Open-source, libre fonts for Latin + Gujarati\\nii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database\\nii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access\\nii freeipmi-common 1.6.13-3 all GNU implementation of the IPMI protocol - common files\\nii freeipmi-tools 1.6.13-3 amd64 GNU implementation of the IPMI protocol - tools\\nii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly\\nii ftp 20230507-2build3 all dummy transitional package for tnftp\\nii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)\\nii fwupd 1.9.24-1~24.04.1 amd64 Firmware update daemon\\nii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary\\nii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler\\nii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler\\nii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture\\nii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture\\nii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand\\nii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)\\nii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler\\nii gcc-11 11.4.0-9ubuntu1 amd64 GNU C compiler\\nii gcc-11-base:amd64 11.4.0-9ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler\\nii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture\\nii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture\\nii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)\\nii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)\\nii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger\\nii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool\\nii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager\\nii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service\\nii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library\\nii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system\\nii ghostscript 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF\\nii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService\\nii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita\\nii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)\\nii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)\\nii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4\\nii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library\\nii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components\\nii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library\\nii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library\\nii gir1.2-gdesktopenums-3.0:amd64 46.1-0ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas\\nii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library - GObject-Introspection\\nii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager\\nii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)\\nii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library\\nii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule\\nii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library\\nii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar\\nii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)\\nii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth\\nii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)\\nii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)\\nii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)\\nii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library\\nii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data\\nii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library\\nii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy\\nii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)\\nii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data\\nii gir1.2-javascriptcoregtk-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-javascriptcoregtk-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-mutter-14:amd64 46.2-1ubuntu0.24.04.1 amd64 GObject introspection data for Mutter\\nii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library\\nii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4\\nii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)\\nii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library\\nii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings\\nii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)\\nii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit\\nii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files\\nii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)\\nii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1\\nii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library\\nii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data\\nii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library\\nii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower\\nii gir1.2-vte-2.91:amd64 0.76.0-1ubuntu0.1 amd64 GObject introspection data for the VTE library\\nii gir1.2-webkit-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-webkit2-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library\\nii git 1:2.43.0-1ubuntu7.1 amd64 fast, scalable, distributed revision control system\\nii git-man 1:2.43.0-1ubuntu7.1 all fast, scalable, distributed revision control system (manual pages)\\nii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)\\nii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd\\nii glade2script 3.2.4~ppa23 all Glade interface engine for scripts\\nii glade2script-python3 3.2.4~ppa23 all Glade interface engine for scripts (Python3 version)\\nii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib\\nii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files\\nii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services\\nii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons\\nii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files\\nii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app\\nii gnome-calculator 1:46.1-1ubuntu1~24.04.1 amd64 GNOME desktop calculator\\nii gnome-characters 46.0-1build1 amd64 character map application\\nii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support\\nii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop\\nii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files\\nii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images\\nii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps\\nii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media\\nii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME\\nii gnome-initial-setup 46.2-1ubuntu0.24.04.1 amd64 Initial GNOME system setup helper\\nii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)\\nii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library\\nii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal\\nii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii gnome-online-accounts 3.50.4-0ubuntu2 amd64 service to manage online accounts for the GNOME desktop\\nii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop\\nii gnome-remote-desktop 46.3-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire\\nii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime\\nii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events\\nii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files\\nii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings\\nii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files\\nii gnome-shell 46.0-0ubuntu6~24.04.4 amd64 graphical shell for the GNOME desktop\\nii gnome-shell-common 46.0-0ubuntu6~24.04.4 all common files for the GNOME graphical shell\\nii gnome-shell-extension-appindicator 58-1 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell\\nii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell\\nii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell\\nii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1.1 all extension which adds a Windows-like snap assist to GNOME Shell\\nii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam\\nii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME\\nii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME\\nii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application\\nii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator\\nii gnome-text-editor 46.3-0ubuntu2 amd64 simple text editor for GNOME\\nii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine\\nii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files\\nii gnome-user-docs 46.0-1ubuntu1 all GNOME Help\\nii gnome-user-docs-de 46.0-1ubuntu1 all GNOME Help (German)\\nii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement\\nii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files\\nii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs\\nii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations\\nii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent\\nii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client\\nii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities\\nii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version\\nii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool\\nii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep\\nii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)\\nii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)\\nii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)\\nii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)\\nii grub-gfxpayload-lists 0.7build2 amd64 GRUB gfxpayload blacklist\\nii grub-pc 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)\\nii grub-pc-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)\\nii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)\\nii gsettings-desktop-schemas 46.1-0ubuntu1 all GSettings desktop-wide schemas\\nii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu\\nii gstreamer1.0-alsa:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugin for ALSA\\nii gstreamer1.0-gl:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for GL\\nii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)\\nii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit\\nii gstreamer1.0-pipewire:amd64 1.0.5-1ubuntu1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server\\nii gstreamer1.0-plugins-base:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins from the \\"base\\" set\\nii gstreamer1.0-plugins-base-apps 1.24.2-1ubuntu0.1 amd64 GStreamer helper programs from the \\"base\\" set\\nii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the \\"good\\" set\\nii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer\\nii gstreamer1.0-x:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for X11 and Pango\\nii gtk-update-icon-cache 3.24.41-4ubuntu1.1 amd64 icon theme caching utility\\nii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine\\nii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1.1 amd64 pixbuf-based theme for GTK 2\\nii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module\\nii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends\\nii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files\\nii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers\\nii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server\\nii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries\\nii gzip 1.12-1ubuntu3 amd64 GNU compression utilities\\nii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance\\nii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader\\nii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer\\nii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes\\nii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name\\nii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)\\nii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files\\nii humanity-icon-theme 0.6.16 all Humanity Icon theme\\nii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell\\nii hwdata 0.379-1 all hardware identification / configuration data\\nii ibus 1.5.29-2 amd64 Intelligent Input Bus - core\\nii ibus-data 1.5.29-2 all Intelligent Input Bus - data files\\nii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support\\nii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support\\nii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support\\nii ibus-table 1.17.4-2 all table engine for IBus\\nii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs\\nii ieee-data 20220827.1 all OUI and IAB listings\\nii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy\\nii im-config 0.57-2 all Input method configuration framework\\nii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client\\nii info 7.1-3build2 amd64 Standalone GNU Info documentation browser\\nii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed\\nii init-system-helpers 1.66ubuntu1 all helper tools for all init systems\\nii initramfs-tools 0.142ubuntu25.2 all generic modular initramfs generator (automation)\\nii initramfs-tools-bin 0.142ubuntu25.2 amd64 binaries used by initramfs-tools\\nii initramfs-tools-core 0.142ubuntu25.2 all generic modular initramfs generator (core tools)\\nii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem\\nii install-info 7.1-3build2 amd64 Manage installed documentation in info format\\nii intel-microcode 3.20240813.0ubuntu0.24.04.2 amd64 Processor microcode firmware for Intel CPUs\\nii ipmitool 1.8.19-7build2 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)\\nii ipp-usb 0.9.24-0ubuntu3.1 amd64 Daemon for IPP over USB printer support\\nii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools\\nii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT\\nii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts\\nii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host\\nii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations\\nii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool\\nii java-common 0.75+exp1 all Base package for Java runtimes\\nii javascript-common 11+nmu1 all Base support for JavaScript library packages\\nii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor\\nii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities\\nii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker\\nii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences\\nii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service\\nii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot\\nii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules\\nii language-pack-de 1:24.04+20240817 all translation updates for language German\\nii language-pack-de-base 1:24.04+20240817 all translations for language German\\nii language-pack-en 1:24.04+20240817 all translation updates for language English\\nii language-pack-en-base 1:24.04+20240817 all translations for language English\\nii language-pack-gnome-de 1:24.04+20240817 all GNOME translation updates for language German\\nii language-pack-gnome-de-base 1:24.04+20240817 all GNOME translations for language German\\nii language-pack-gnome-en 1:24.04+20240817 all GNOME translation updates for language English\\nii language-pack-gnome-en-base 1:24.04+20240817 all GNOME translations for language English\\nii language-selector-common 0.225 all Language selector for Ubuntu\\nii language-selector-gnome 0.225 all Language selector frontend for Ubuntu\\nii laptop-detect 0.16 all system chassis type checker\\nii less 590-2ubuntu2.1 amd64 pager program similar to more\\nii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library\\nii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library\\nii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries\\nii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library\\nii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones\\nii libaio1t64:amd64 0.3.113-6build1 amd64 Linux kernel AIO access library - shared library\\nii libalgorithm-diff-perl 1.201-1 all module to find differences between files\\nii libalgorithm-diff-xs-perl:amd64 0.04-8build3 amd64 module to find differences between files (XS accelerated)\\nii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data\\nii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)\\nii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library\\nii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library\\nii libapparmor1:amd64 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 changehat AppArmor library\\nii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services\\nii libapr1-dev 1.7.2-3.1build2 amd64 Apache Portable Runtime Library - Development Headers\\nii libapr1t64:amd64 1.7.2-3.1build2 amd64 Apache Portable Runtime Library\\nii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library\\nii libarchive13t64:amd64 3.7.2-2ubuntu0.1 amd64 Multi-format archive and compression library (shared library)\\nii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library\\nii libasan6:amd64 11.4.0-9ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers\\nii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications\\nii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library\\nii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components\\nii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library\\nii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library\\nii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge\\nii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library\\nii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit\\nii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)\\nii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions\\nii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions\\nii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library\\nii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library\\nii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files\\nii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing\\nii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework\\nii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library\\nii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files\\nii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library\\nii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi\'s embeddable mDNS/DNS-SD library\\nii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library\\nii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices\\nii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)\\nii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators\\nii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)\\nii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries\\nii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)\\nii libblkid-dev:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library - headers\\nii libblkid1:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library\\nii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev\\nii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev\\nii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev\\nii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev\\nii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev\\nii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev\\nii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev\\nii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev\\nii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices\\nii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack\\nii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library\\nii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization\\nii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading\\nii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)\\nii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)\\nii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library\\nii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)\\nii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library\\nii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions\\nii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations\\nii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes\\nii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime\\nii libc-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Binaries\\nii libc-dev-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Development binaries\\nii libc-devtools 2.39-0ubuntu8.3 amd64 GNU C Library: Development tools\\nii libc6:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Shared libraries\\nii libc6-dbg:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: detached debugging symbols\\nii libc6-dev:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Development Libraries and Header Files\\nii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library\\nii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl\\nii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)\\nii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library\\nii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)\\nii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library\\nii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)\\nii libcamel-1.2-64t64:amd64 3.52.3-0ubuntu1 amd64 Evolution MIME message handling library\\nii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library\\nii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra\\nii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds\\nii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra\\nii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds\\nii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library\\nii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)\\nii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)\\nii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)\\nii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB\\nii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs\\nii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction\\nii libcdio19t64:amd64 2.1.0-4.1ubuntu1.2 amd64 library to read and control CD-ROM\\nii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)\\nii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library\\nii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library\\nii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes\\nii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)\\nii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)\\nii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord\\nii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime\\nii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime\\nii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library\\nii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library\\nii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files\\nii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library\\nii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.1 amd64 disk encryption support - shared library\\nii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)\\nii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)\\nii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library\\nii libcups2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Core library\\nii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files\\nii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library\\nii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Raster image library\\nii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)\\nii libcurl4t64:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)\\nii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library\\nii libdata-dump-perl 1.25-1 all Perl module to help dump data structures\\nii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library\\nii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]\\nii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)\\nii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC\\nii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus\\nii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version\\nii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library\\nii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation\\nii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)\\nii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server\\nii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)\\nii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library\\nii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK\\nii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib\\nii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression\\nii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre\\nii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format\\nii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files\\nii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules\\nii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime\\nii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files\\nii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime\\nii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime\\nii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime\\nii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime\\nii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library\\nii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)\\nii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information\\nii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library\\nii libebackend-1.2-11t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libebook-1.2-21t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution address books\\nii libebook-contacts-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution contacts books\\nii libecal-2.0-3:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution calendars\\nii libedata-book-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution address books\\nii libedata-cal-2.0-2t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution calendars\\nii libedataserver-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedataserverui-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries\\nii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library\\nii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libegl-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library\\nii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support\\nii libei1:amd64 1.2.1-1 amd64 Emulated Input client library\\nii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library\\nii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files\\nii libenchant-2-2:amd64 2.3.3-2build2 amd64 Wrapper library for various spell checker engines (runtime libs)\\nii libencode-locale-perl 1.05-3 all utility to determine the locale encoding\\nii libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files\\nii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library\\nii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way\\nii libespeak-ng1:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: shared library\\nii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)\\nii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices\\nii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library\\nii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets\\nii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)\\nii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files\\nii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library\\nii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library\\nii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit\\nii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries\\nii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library\\nii libexttextcat-data 3.4.7-1build1 all Language detection library - data files\\nii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions\\nii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries\\nii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C\\nii libfdisk1:amd64 2.39.3-9ubuntu6.1 amd64 fdisk partitioning library\\nii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)\\nii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime\\nii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision\\nii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects\\nii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification\\nii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files\\nii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)\\nii libfile-listing-perl 6.16-1 all module to parse directory listings\\nii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types\\nii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library\\nii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library\\nii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files\\nii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime\\nii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library\\nii libfprint-2-2 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, shared libraries\\nii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, drivers shared libraries\\nii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX\\nii libfreeipmi17 1.6.13-3 amd64 GNU IPMI - libraries\\nii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)\\nii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)\\nii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files\\nii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm\\nii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers\\nii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)\\nii libfwupd2:amd64 1.9.24-1~24.04.1 amd64 Firmware update daemon library\\nii libgail-common:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- common modules\\nii libgail18t64:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- shared libraries\\nii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)\\nii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)\\nii libgbm1:amd64 24.0.9-0ubuntu0.1 amd64 generic buffer management API -- runtime\\nii libgcc-11-dev:amd64 11.4.0-9ubuntu1 amd64 GCC support library (development files)\\nii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)\\nii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library\\nii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks\\nii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks\\nii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks\\nii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library\\nii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library\\nii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files\\nii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries\\nii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version) \\nii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version) \\nii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library\\nii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library (thumbnailer)\\nii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 all GDK Pixbuf library - data files\\nii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)\\nii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library\\nii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service\\nii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim\\nii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library\\nii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)\\nii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)\\nii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data\\nii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform\\nii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support\\nii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules\\nii libgl1-mesa-dri:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules\\nii libglapi-mesa:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the GL API -- shared library\\nii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support\\nii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries\\nii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries\\nrc libglib2.0-0:amd64 2.72.4-0ubuntu2.3 amd64 GLib library of C routines\\nii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines\\nii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library\\nii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library\\nii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library\\nii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library\\nii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)\\nii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)\\nii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library\\nii libglx-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library\\nii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support\\nii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library\\nii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME\\nii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files\\nii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library\\nii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library\\nii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version\\nii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files\\nii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files\\nii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files\\nii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library\\nii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.2 amd64 GNU TLS library - main runtime library\\nii libgoa-1.0-0b:amd64 3.50.4-0ubuntu2 amd64 library for GNOME Online Accounts\\nii libgoa-1.0-common 3.50.4-0ubuntu2 all library for GNOME Online Accounts - common files\\nii libgoa-backend-1.0-2:amd64 3.50.4-0ubuntu2 amd64 backend library for GNOME Online Accounts\\nii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library\\nii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library\\nii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)\\nii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME\\nii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library\\nii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages\\nii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library\\nii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library\\nii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)\\nii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types\\nii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library\\nii libgs-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - ICC profiles\\nii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF - Library\\nii libgs10-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - common files\\nii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version\\nii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files\\nii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds\\nii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications\\nii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files\\nii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism\\nii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP\\nii libgstreamer-gl1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer GL libraries\\nii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer libraries from the \\"base\\" set\\nii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the \\"good\\" set\\nii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements\\nrc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library\\nii libgtk-3-0t64:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library\\nii libgtk-3-bin 3.24.41-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk-3-common 3.24.41-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library\\nii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library\\nii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library\\nii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library\\nrc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-bin 2.24.33-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk2.0-common 2.24.33-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library\\nii libgtkmm-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)\\nii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget\\nii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget\\nii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)\\nii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)\\nii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev\\nii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP\\nii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP\\nii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP\\nii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1\\nii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library\\nii libgweather-4-common 4.4.2-1build1 all GWeather common files\\nii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)\\nii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones\\nii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)\\nii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend\\nii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)\\nii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin\\nii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin\\nii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin\\nii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library\\nii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)\\nii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries\\nii libhtml-form-perl 6.11-1 all module that represents an HTML form element\\nii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats\\nii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents\\nii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML\\nii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees\\nii libhttp-cookies-perl 6.11-1 all HTTP cookie jars\\nii libhttp-daemon-perl 6.16-1 all simple http server class\\nii libhttp-date-perl 6.06-1 all module of date conversion routines\\nii libhttp-message-perl 6.45-1ubuntu1 all perl interface to HTTP style messages\\nii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation\\nii libhunspell-1.7-0:amd64 1.7.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)\\nii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library\\nii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library\\nii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)\\nii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)\\nii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library\\nii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode\\nii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications\\nii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library\\nii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)\\nii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access\\nii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library\\nii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library\\nii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices\\nii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser\\nii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks\\nii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library\\nii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection\\nii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets\\nii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)\\nii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library\\nii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library\\nii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics\\nii libipmiconsole2 1.6.13-3 amd64 GNU IPMI - Serial-over-Lan library\\nii libipmidetect0 1.6.13-3 amd64 GNU IPMI - IPMI node detection library\\nii libipsec-mb1 1.5-1build1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library\\nii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library\\nii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints\\nii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems\\nii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images\\nii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library\\nii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library\\nii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data\\nii libjavascriptcoregtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjavascriptcoregtk-6.0-1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries\\nii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries\\nii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library\\nii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library\\nii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group\'s JPEG runtime library (dependency package)\\nii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library\\nii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications\\nii libjs-sphinxdoc 7.2.6-6 all JavaScript support for Sphinx documentation\\nii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript\'s functional programming helper library\\nii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library\\nii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library\\nii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)\\nii libjudydebian1 1.0.5-5.1build1 amd64 C library for creating and accessing dynamic arrays\\nii libk5crypto3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Crypto Library\\nii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)\\nii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs\\nii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library\\nii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)\\nii libkrb5-3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries\\nii libkrb5support0:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Support library\\nii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library\\nii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data\\nii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages\\nii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)\\nii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library\\nii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)\\nii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)\\nii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)\\nii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries\\nii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries\\nii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library\\nii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library\\nii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library\\nii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl\\nii liblouis-data 3.29.0-1build1 all Braille translation library - data\\nii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs\\nii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities\\nii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data\\nii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs\\nii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)\\nii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool\\nii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)\\nii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)\\nii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)\\nii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4\\nii libluajit-5.1-2:amd64 2.1.0+git20231223.c525bcb+dfsg-1 amd64 Just in time compiler for Lua - library version\\nii libluajit-5.1-common 2.1.0+git20231223.c525bcb+dfsg-1 all Just in time compiler for Lua - common files\\nii liblwp-mediatypes-perl 6.04-2 all module to guess media type for a file or a URL\\nii liblwp-protocol-https-perl 6.13-1 all HTTPS driver for LWP::UserAgent\\nii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime\\nii liblzma5:amd64 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression library\\nii liblzo2-2:amd64 2.10-2build4 amd64 data compression library\\nii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using \\"magic\\" numbers (compiled magic file)\\nrc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs\\nii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library\\nii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library\\nii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol\\nii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports\\nii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line\\nii libmd0:amd64 1.1.0-2build1 amd64 message digest functions from BSD systems - shared library\\nii libmediaart-2.0-0:amd64 1.9.6-1build2 amd64 media art extraction and cache management library\\nii libmhash2:amd64 0.9.9.9-9build3 amd64 Library for cryptographic hashing and message authentication\\nii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries\\nii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library\\nii libmount-dev:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library - headers\\nii libmount1:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library\\nii libmozjs-115-0t64:amd64 115.10.0-1 amd64 SpiderMonkey JavaScript library\\nii libmp3lame0:amd64 3.100-6build1 amd64 MP3 encoding library\\nii libmpc3:amd64 1.3.1-1build1 amd64 multiple precision complex floating-point library\\nii libmpfr6:amd64 4.2.1-1build1 amd64 multiple precision floating-point computation\\nii libmpg123-0t64:amd64 1.32.5-1ubuntu1 amd64 MPEG layer 1/2/3 audio decoder (shared library)\\nii libmsgraph-0-1:amd64 0.2.1-0ubuntu3 amd64 library for accessing the Microsoft Graph API\\nii libmtdev1t64:amd64 1.1.6-1.1build1 amd64 Multitouch Protocol Translation Library - shared library\\nii libmtp-common 1.1.21-3.1build1 all Media Transfer Protocol (MTP) common files\\nii libmtp-runtime 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) runtime tools\\nii libmtp9t64:amd64 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) library\\nii libmutter-14-0:amd64 46.2-1ubuntu0.24.04.1 amd64 window manager library from the Mutter window manager\\nii libmysqlclient21:amd64 8.0.39-0ubuntu0.24.04.2 amd64 MySQL database client library\\nii libmythes-1.2-0:amd64 2:1.2.5-1build1 amd64 simple thesaurus library\\nii libnautilus-extension4:amd64 1:46.2-0ubuntu0.2 amd64 libraries for nautilus components - runtime version\\nii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling\\nii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)\\nii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol\\nii libnet-dbus-perl 1.2.0-2build3 amd64 Perl extension for the DBus bindings\\nii libnet-http-perl 6.23-1 all module providing low-level HTTP connection client\\nii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP\\nii libnet-ssleay-perl:amd64 1.94-1build4 amd64 Perl module for Secure Sockets Layer (SSL)\\nii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library\\nii libnetplan1:amd64 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration runtime library\\nii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)\\nii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik\'s Windowing Toolkit - text mode windowing with slang\\nii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library\\nii libnfs14:amd64 5.0.2-1build1 amd64 NFS client library (shared library)\\nii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library\\nii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library\\nii libnghttp2-14:amd64 1.59.0-1ubuntu0.1 amd64 library implementing HTTP/2 protocol (shared library)\\nii libnl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets\\nii libnl-genl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - generic netlink\\nii libnl-route-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - route interface\\nii libnm0:amd64 1.46.0-1ubuntu2 amd64 GObject-based client library for NetworkManager\\nii libnma-common 1.10.6-3build2 all NetworkManager GUI library - translations\\nii libnma-gtk4-0:amd64 1.10.6-3build2 amd64 NetworkManager GUI GTK4 library\\nii libnma0:amd64 1.10.6-3build2 amd64 NetworkManager GUI library\\nii libnotify-bin 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Utilities)\\nii libnotify4:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon\\nii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads\\nii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library\\nii libnss-mdns:amd64 0.15.1-4build1 amd64 NSS module for Multicast DNS name resolution\\nii libnss-systemd:amd64 255.4-1ubuntu8.4 amd64 nss module providing dynamic user and group name resolution\\nii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries\\nii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)\\nii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy\\nii libnvme1t64 1.8-3build1 amd64 NVMe management library (library)\\nii libogg0:amd64 1.3.5-3build1 amd64 Ogg bitstream library\\nii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library\\nii libopengl0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- OpenGL support\\nii libopenipmi0t64 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface - runtime\\nii libopenjp2-7:amd64 2.5.0-2build3 amd64 JPEG 2000 image compression/decompression library\\nii libopus0:amd64 1.4-1build1 amd64 Opus codec runtime library\\nii liborc-0.4-0t64:amd64 1:0.4.38-1ubuntu0.1 amd64 Library of Optimized Inner Loops Runtime Compiler\\nii liborcus-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents\\nii liborcus-parser-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents - parser library\\nii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime\\nii libpackagekit-glib2-18:amd64 1.2.8-2build3 amd64 Library for accessing PackageKit using GLib\\nii libpam-cap:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (PAM module)\\nii libpam-fprintd:amd64 1.94.3-1 amd64 PAM module for fingerprint authentication through fprintd\\nii libpam-gnome-keyring:amd64 46.1-2build1 amd64 PAM module to unlock the GNOME keyring upon login\\nii libpam-modules:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM\\nii libpam-modules-bin 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM - helper binaries\\nii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength\\nii libpam-runtime 1.5.3-5ubuntu5.1 all Runtime support for the PAM library\\nii libpam-sss:amd64 2.9.4-1.1ubuntu6.1 amd64 Pam module for the System Security Services Daemon\\nii libpam-systemd:amd64 255.4-1ubuntu8.4 amd64 system and service manager - PAM module\\nii libpam0g:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules library\\nii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangomm-2.48-1t64:amd64 2.52.0-1build1 amd64 C++ Wrapper for pango (shared libraries)\\nii libpangoxft-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)\\nii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics\\nii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library\\nii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture\\nii libpcaudio0:amd64 1.2-2build3 amd64 C API to different audio devices - shared library\\nii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)\\nii libpciaccess0:amd64 0.17-3build1 amd64 Generic PCI access library for X\\nii libpcre2-16-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files\\nii libpcre2-32-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 32 bit runtime files\\nii libpcre2-8-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files\\nii libpcre2-dev:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - development files\\nii libpcre2-posix3:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files\\nii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)\\nii libpeas-1.0-0:amd64 1.36.0-3build4 amd64 Application plugin library\\nii libpeas-common 1.36.0-3build4 all Application plugin library (common files)\\nii libperl5.38t64:amd64 5.38.2-3.2build2 amd64 shared Perl library\\nii libphonenumber8:amd64 8.12.57+ds-4.2build3 amd64 parsing/formatting/validating phone numbers\\nii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library\\nii libpipewire-0.3-0t64:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server\\nii libpipewire-0.3-common 1.0.5-1ubuntu1 all libraries for the PipeWire multimedia server - common files\\nii libpipewire-0.3-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - modules\\nii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo\\nii libpkcs11-helper1t64:amd64 1.29.0-2.1build2 amd64 library that simplifies the interaction with PKCS#11\\nii libpkgconf3:amd64 1.8.1-2build1 amd64 shared library for pkgconf\\nii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists\\nii libplymouth5:amd64 24.004.60-1ubuntu7 amd64 graphical boot animation and logger - shared libraries\\nii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)\\nii libpolkit-agent-1-0:amd64 124-2ubuntu1 amd64 polkit Authentication Agent API\\nii libpolkit-gobject-1-0:amd64 124-2ubuntu1 amd64 polkit Authorization API\\nii libpoppler-cpp0t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (CPP shared library)\\nii libpoppler-glib8t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (GLib-based shared library)\\nii libpoppler134:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library\\nii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters\\nii libportal-gtk4-1:amd64 0.7.1-5build5 amd64 Flatpak portal library for GTK 4 GUIs\\nii libportal1:amd64 0.7.1-5build5 amd64 Flatpak portal library - non-GUI part\\nii libppd2:amd64 2:2.0.0-0ubuntu4 amd64 OpenPrinting libppd - Shared library\\nii libppd2-common 2:2.0.0-0ubuntu4 all OpenPrinting libppd - Auxiliary files\\nii libpq5:amd64 16.4-0ubuntu0.24.04.2 amd64 PostgreSQL C client library\\nii libproc2-0:amd64 2:4.0.4-4ubuntu3 amd64 library for accessing process information from /proc\\nii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)\\nii libprotobuf32t64:amd64 3.21.12-8.2build1 amd64 protocol buffers C++ library\\nii libproxy1-plugin-gsettings:amd64 0.5.4-4build1 amd64 transitional package for libproxy GSettings plugin\\nii libproxy1-plugin-networkmanager:amd64 0.5.4-4build1 amd64 transitional package for libproxy NetworkManager plugin\\nii libproxy1v5:amd64 0.5.4-4build1 amd64 automatic proxy configuration management library (shared)\\nii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)\\nii libpulse-mainloop-glib0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries (glib support)\\nii libpulse0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries\\nii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)\\nii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation\\nii libpython3-dev:amd64 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii libpython3.12-dev:amd64 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (standard library, version 3.12)\\nii libpython3.12t64:amd64 3.12.3-1ubuntu0.1 amd64 Shared Python runtime library (version 3.12)\\nii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol\\nii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports\\nii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line\\nii libqpdf29t64:amd64 11.9.0-1.1build1 amd64 runtime library for PDF transformation/inspection software\\nii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol\\nii libquadmath0:amd64 14-20240412-0ubuntu1 amd64 GCC Quad-Precision Math Library\\nii libraptor2-0:amd64 2.0.16-3build3 amd64 Raptor 2 RDF syntax library\\nii libraqm0:amd64 0.10.1-1build1 amd64 Library for complex text layout\\nii librasqal3t64:amd64 0.9.33-2.1build1 amd64 Rasqal RDF query library\\nii libraw1394-11:amd64 2.1.2-2build3 amd64 library for direct access to IEEE 1394 bus (aka FireWire)\\nii librdf0t64:amd64 1.0.17-3.1ubuntu3 amd64 Redland Resource Description Framework (RDF) library\\nii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries\\nii libreoffice-common 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- arch-independent files\\nii libreoffice-core 4:24.2.5-0ubuntu0.24.04.2 amd64 office productivity suite -- arch-dependent files\\nii libreoffice-style-colibre 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- colibre symbol style\\nii libreoffice-style-yaru 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- Yaru symbol style\\nii libreoffice-uiconfig-common 4:24.2.5-0ubuntu0.24.04.2 all UI data (\\"config\\") for LibreOffice (\\"common\\" set)\\nii librest-1.0-0:amd64 0.9.1-6build3 amd64 REST service access library\\nii librevenge-0.0-0:amd64 0.0.5-3build1 amd64 Base Library for writing document interface filters\\nii libroc0.3:amd64 0.3.0+dfsg-7ubuntu2 amd64 real-time audio streaming over the network (shared library)\\nii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)\\nii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)\\nii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)\\nii librygel-core-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - core library\\nii librygel-db-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - db library\\nii librygel-renderer-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - renderer library\\nii librygel-server-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - server library\\nii libsamplerate0:amd64 0.2.2-4build1 amd64 Audio sample rate conversion library\\nii libsane-common 1.2.1-7build4 all API library for scanners -- documentation and support files\\nii libsane-hpaio:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP SANE backend for multi-function peripherals\\nii libsane1:amd64 1.2.1-7build4 amd64 API library for scanners\\nii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library\\nii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules\\nii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)\\nii libsbc1:amd64 2.0-1build1 amd64 Sub Band CODEC library - runtime\\nii libsctp-dev:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - development files\\nii libsctp1:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - shared library\\nii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter\\nii libsecret-1-0:amd64 0.21.4-1build3 amd64 Secret store\\nii libsecret-common 0.21.4-1build3 all Secret store (common files)\\nii libselinux1:amd64 3.5-2ubuntu2 amd64 SELinux runtime shared libraries\\nii libselinux1-dev:amd64 3.5-2ubuntu2 amd64 SELinux development headers\\nii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries\\nii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library\\nii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files\\nii libsensors-dev:amd64 1:3.6.0-9build1 amd64 lm-sensors development kit\\nii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors\\nii libsepol-dev:amd64 3.5-2build1 amd64 SELinux binary policy manipulation library and development files\\nii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies\\nii libsframe1:amd64 2.42-4ubuntu2 amd64 Library to handle the SFrame format (runtime library)\\nii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion\\nii libshout3:amd64 2.4.6-1build2 amd64 MP3/Ogg Vorbis broadcast streaming library\\nii libsigc++-3.0-0:amd64 3.6.0-2 amd64 type-safe Signal Framework for C++ - runtime\\nii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version\\nii libslirp0:amd64 4.7.0-1ubuntu3 amd64 General purpose TCP-IP emulator library\\nii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library\\nii libsmartcols1:amd64 2.39.3-9ubuntu6.1 amd64 smart column output alignment library\\nii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 shared library for communication with SMB/CIFS servers\\nii libsnapd-glib-2-1:amd64 1.64-0ubuntu5 amd64 GLib snapd library\\nii libsndfile1:amd64 1.2.2-1ubuntu5 amd64 Library for reading/writing audio files\\nii libsnmp-base 5.9.4+dfsg-1.1ubuntu3 all SNMP configuration script, MIBs and documentation\\nii libsnmp40t64:amd64 5.9.4+dfsg-1.1ubuntu3 amd64 SNMP (Simple Network Management Protocol) library\\nii libsonic0:amd64 0.2.0-13build1 amd64 Simple library to speed up or slow down speech\\nii libsoup-2.4-1:amd64 2.74.3-6ubuntu1 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-0:amd64 3.4.4-5build2 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-common 3.4.4-5build2 all HTTP library implementation in C -- Common files\\nii libsoup2.4-common 2.74.3-6ubuntu1 all HTTP library implementation in C -- Common files\\nii libsource-highlight-common 3.1.9-4.3build1 all architecture-independent files for source highlighting library\\nii libsource-highlight4t64:amd64 3.1.9-4.3build1 amd64 source highlighting library\\nii libspa-0.2-bluetooth:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - bluetooth plugins\\nii libspa-0.2-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server Simple Plugin API - modules\\nii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents\\nii libspeechd2:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Shared libraries\\nii libspeex1:amd64 1.2.1-2ubuntu2 amd64 The Speex codec runtime library\\nii libspeexdsp1:amd64 1.2.1-1ubuntu3 amd64 DSP library derived from speex\\nii libsqlite3-0:amd64 3.45.1-1ubuntu2 amd64 SQLite 3 shared library\\nii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library\\nii libssh-4:amd64 0.10.6-2build2 amd64 tiny C SSH library (OpenSSL flavor)\\nrc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libssl3t64:amd64 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libstartup-notification0:amd64 0.12-6build3 amd64 library for program launch feedback (shared library)\\nii libstdc++-13-dev:amd64 13.2.0-23ubuntu4 amd64 GNU Standard C++ Library v3 (development files)\\nii libstdc++6:amd64 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3\\nii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval\\nii libsynctex2:amd64 2023.20230311.66589-9build3 amd64 TeX Live: SyncTeX parser library\\nii libsysmetrics1:amd64 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics - shared lib\\nii libsystemd-shared:amd64 255.4-1ubuntu8.4 amd64 systemd shared private library\\nii libsystemd0:amd64 255.4-1ubuntu8.4 amd64 systemd utility library\\nii libtag1v5:amd64 1.13.1-1build1 amd64 audio meta-data library\\nii libtag1v5-vanilla:amd64 1.13.1-1build1 amd64 audio meta-data library - vanilla flavour\\nii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator\\nii libtasn1-6:amd64 4.19.0-3build1 amd64 Manage ASN.1 structures (runtime)\\nii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files\\nii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library\\nii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process\\nii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library\\nii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal\\nii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl\\nii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap\\nii libthai-data 0.1.29-2build1 all Data files for Thai language support library\\nii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library\\nii libtheora0:amd64 1.1.1+dfsg.1-16.1build3 amd64 Theora Video Compression Codec\\nii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays\\nii libtiff6:amd64 4.5.1+git230720-4ubuntu2.2 amd64 Tag Image File Format (TIFF) library\\nii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information\\nii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling\\nii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files\\nii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library\\nii libtotem-plparser-common 3.26.6-1build5 all Totem Playlist Parser library - common files\\nii libtotem-plparser18:amd64 3.26.6-1build5 amd64 Totem Playlist Parser library - runtime files\\nii libtraceevent1:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (shared library)\\nii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (plugins)\\nii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)\\nii libtracker-sparql-3.0-0:amd64 3.7.1-1build1 amd64 metadata database, indexer and search tool - library\\nii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch\\nii libtsan0:amd64 11.4.0-9ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtsan2:amd64 14-20240412-0ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-rc0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-libtpms0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-spi-helper0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tctildr0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtwolame0:amd64 0.4.0-2build3 amd64 MPEG Audio Layer 2 encoding library\\nii libu2f-udev 1.1.10-3build3 all Universal 2nd Factor (U2F) — transitional package\\nii libubsan1:amd64 14-20240412-0ubuntu1 amd64 UBSan -- undefined behaviour sanitizer (runtime)\\nii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library\\nii libudev1:amd64 255.4-1ubuntu8.4 amd64 libudev shared library\\nii libudisks2-0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2\\nii libunistring5:amd64 1.1-2build1 amd64 Unicode string library for C\\nii libunity-protocol-private0:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - private library\\nii libunity-scopes-json-def-desktop 7.1.4+19.04.20190319-6build4 all binding to get places into the launcher - desktop def file\\nii libunity9:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - shared library\\nii libuno-cppu3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU public library\\nii libuno-cppuhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU helper library\\nii libuno-purpenvhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- \\"purpose environment\\" helper\\nii libuno-sal3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL public library\\nii libuno-salhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library\\nii libunwind8:amd64 1.6.2-3build1 amd64 library to determine the call-chain of a program - runtime\\nii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library\\nii liburi-perl 5.27-1 all module to manipulate and access URI strings\\nii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library\\nii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library\\nii libuuid1:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library\\nii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library\\nii libv4l-0t64:amd64 1.26.1-4build3 amd64 Collection of video4linux support libraries\\nii libv4lconvert0t64:amd64 1.26.1-4build3 amd64 Video4linux frame format conversion library\\nii libvisual-0.4-0:amd64 0.4.2-2build1 amd64 audio visualization framework\\nii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases\\nii libvorbis0a:amd64 1.3.7-1build3 amd64 decoder library for Vorbis General Audio Compression Codec\\nii libvorbisenc2:amd64 1.3.7-1build3 amd64 encoder library for Vorbis General Audio Compression Codec\\nii libvorbisfile3:amd64 1.3.7-1build3 amd64 high-level API for Vorbis General Audio Compression Codec\\nii libvpx9:amd64 1.14.0-1ubuntu2.1 amd64 VP8 and VP9 video codec (shared library)\\nii libvte-2.91-0:amd64 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime files\\nii libvte-2.91-common 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - common files\\nii libvulkan1:amd64 1.3.275.0-1build1 amd64 Vulkan loader library\\nii libwacom-common 2.10.0-2 all Wacom model feature query library (common files)\\nii libwacom9:amd64 2.10.0-2 amd64 Wacom model feature query library\\nii libwavpack1:amd64 5.6.0-1build1 amd64 audio codec (lossy and lossless) - library\\nii libwayland-client0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - client library\\nii libwayland-cursor0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - cursor library\\nii libwayland-egl1:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - EGL library\\nii libwayland-server0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - server library\\nii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba winbind client library\\nii libwebkit2gtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebkitgtk-6.0-4:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.\\nii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebrtc-audio-processing1:amd64 0.3.1-0ubuntu6 amd64 AudioProcessing module from the WebRTC project.\\nii libwhoopsie-preferences0 23build3 amd64 Ubuntu error tracker submission settings - shared library\\nii libwhoopsie0:amd64 0.2.77build3 amd64 Ubuntu error tracker submission - shared library\\nii libwinpr3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Windows Portable Runtime library\\nii libwireplumber-0.4-0:amd64 0.4.17-1ubuntu4 amd64 Shared libraries for WirePlumber\\nii libwmf-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion library\\nii libwmf-0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin\\nii libwmf0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin - transitional package\\nii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library\\nii libwnck-3-0:amd64 43.0-3build4 amd64 Window Navigator Construction Kit - runtime files\\nii libwnck-3-common 43.0-3build4 all Window Navigator Construction Kit - common files\\nii libwoff1:amd64 1.0.2-2build1 amd64 library for converting fonts to WOFF 2.0\\nii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema\'s TCP wrappers library\\nii libwww-perl 6.76-1 all simple and consistent interface to the world-wide web\\nii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions\\nii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library\\nii libx11-data 2:1.8.7-1build1 all X11 client-side library\\nii libx11-protocol-perl 0.56-9 all Perl module for the X Window System Protocol, version 11\\nii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library\\nii libxatracker2:amd64 24.0.9-0ubuntu0.1 amd64 X acceleration library -- runtime\\nii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library\\nii libxaw7:amd64 2:1.0.14-1build2 amd64 X11 Athena Widget library\\nii libxcb-damage0:amd64 1.15-1ubuntu2 amd64 X C Binding, damage extension\\nii libxcb-dri2-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri2 extension\\nii libxcb-dri3-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri3 extension\\nii libxcb-glx0:amd64 1.15-1ubuntu2 amd64 X C Binding, glx extension\\nii libxcb-icccm4:amd64 0.4.1-1.1build3 amd64 utility libraries for X C Binding -- icccm\\nii libxcb-image0:amd64 0.4.0-2build1 amd64 utility libraries for X C Binding -- image\\nii libxcb-keysyms1:amd64 0.4.0-1build4 amd64 utility libraries for X C Binding -- keysyms\\nii libxcb-present0:amd64 1.15-1ubuntu2 amd64 X C Binding, present extension\\nii libxcb-randr0:amd64 1.15-1ubuntu2 amd64 X C Binding, randr extension\\nii libxcb-render-util0:amd64 0.3.9-1build4 amd64 utility libraries for X C Binding -- render-util\\nii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension\\nii libxcb-res0:amd64 1.15-1ubuntu2 amd64 X C Binding, res extension\\nii libxcb-shape0:amd64 1.15-1ubuntu2 amd64 X C Binding, shape extension\\nii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension\\nii libxcb-sync1:amd64 1.15-1ubuntu2 amd64 X C Binding, sync extension\\nii libxcb-util1:amd64 0.4.0-1build3 amd64 utility libraries for X C Binding -- atom, aux and event\\nii libxcb-xfixes0:amd64 1.15-1ubuntu2 amd64 X C Binding, xfixes extension\\nii libxcb-xkb1:amd64 1.15-1ubuntu2 amd64 X C Binding, XKEYBOARD extension\\nii libxcb-xv0:amd64 1.15-1ubuntu2 amd64 X C Binding, xv extension\\nii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding\\nii libxcomposite1:amd64 1:0.4.5-1build3 amd64 X11 Composite extension library\\nii libxcursor1:amd64 1:1.2.1-1build1 amd64 X cursor management library\\nii libxcvt0:amd64 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator -- shared library\\nii libxdamage1:amd64 1:1.1.6-1build1 amd64 X11 damaged region extension library\\nii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library\\nii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library\\nii libxfixes3:amd64 1:6.0.0-2build1 amd64 X11 miscellaneous \'fixes\' extension library\\nii libxfont2:amd64 1:2.0.6-1build1 amd64 X11 font rasterisation library\\nii libxft2:amd64 2.3.6-1build1 amd64 FreeType-based font drawing library for X\\nii libxi6:amd64 2:1.8.1-1build1 amd64 X11 Input extension library\\nii libxinerama1:amd64 2:1.1.4-3build1 amd64 X11 Xinerama extension library\\nii libxkbcommon-x11-0:amd64 1.6.0-1build1 amd64 library to create keymaps with the XKB X11 protocol\\nii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library\\nii libxkbfile1:amd64 1:1.1.0-1build4 amd64 X11 keyboard file manipulation library\\nii libxkbregistry0:amd64 1.6.0-1build1 amd64 library to query available RMLVO\\nii libxklavier16:amd64 5.4-5build2 amd64 X Keyboard Extension high-level API\\nii libxml-parser-perl 2.47-1build3 amd64 Perl module for parsing XML files\\nii libxml-twig-perl 1:3.52-2 all Perl module for processing huge XML documents in tree mode\\nii libxml-xpathengine-perl 0.14-2 all re-usable XPath engine for DOM-like trees\\nii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3 amd64 GNOME XML library\\nii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library\\nii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library\\nii libxmlsec1t64-nss:amd64 1.2.39-5build2 amd64 Nss engine for the XML security library\\nii libxmu6:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous utility library\\nii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library\\nii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library\\nii libxrandr2:amd64 2:1.5.2-2build1 amd64 X11 RandR extension library\\nii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library\\nii libxres1:amd64 2:1.2.1-1build1 amd64 X11 Resource extension library\\nii libxshmfence1:amd64 1.3-1build5 amd64 X shared memory fences - shared library\\nii libxslt1.1:amd64 1.1.39-0exp1build1 amd64 XSLT 1.0 processing library - runtime library\\nii libxss1:amd64 1:1.2.3-1build3 amd64 X11 Screen Saver extension library\\nii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library\\nii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library\\nii libxtst6:amd64 2:1.2.3-1.1build1 amd64 X11 Testing -- Record extension library\\nii libxv1:amd64 2:1.0.11-1.1build1 amd64 X11 Video extension library\\nii libxvmc1:amd64 2:1.0.12-2build3 amd64 X11 Video extension library\\nii libxxf86dga1:amd64 2:1.1.5-1build1 amd64 X11 Direct Graphics Access extension library\\nii libxxf86vm1:amd64 1:1.1.4-1build4 amd64 X11 XFree86 video mode extension library\\nii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash\\nii libyajl2:amd64 2.1.0-5build1 amd64 Yet Another JSON Library\\nii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library\\nii libyelp0:amd64 42.2-1build2 amd64 Library for the GNOME help browser\\nii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm\\nii linux-base 4.5ubuntu9 all Linux image base package\\nii linux-firmware 20240318.git3b128b60-0ubuntu2.3 amd64 Firmware for Linux kernel drivers\\nii linux-generic 6.8.0-44.44 amd64 Complete Generic Linux kernel and headers\\nii linux-headers-6.8.0-40 6.8.0-40.40 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-6.8.0-44 6.8.0-44.44 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-generic 6.8.0-44.44 amd64 Generic Linux kernel headers\\nrc linux-image-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Signed kernel image generic\\nii linux-image-6.8.0-40-generic 6.8.0-40.40 amd64 Signed kernel image generic\\nii linux-image-6.8.0-44-generic 6.8.0-44.44 amd64 Signed kernel image generic\\nii linux-image-generic 6.8.0-44.44 amd64 Generic Linux kernel image\\nii linux-libc-dev:amd64 6.8.0-44.44 amd64 Linux Kernel Headers for development\\nrc linux-modules-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-sound-base 1.0.25+dfsg-0ubuntu7 all base package for ALSA and OSS sound systems\\nii linux-tools-6.8.0-40 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-44 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-common 6.8.0-44.44 all Linux kernel version specific tools for version 6.8.0\\nii lm-sensors 1:3.6.0-9build1 amd64 utilities to read temperature/voltage/fan sensors\\nii locales 2.39-0ubuntu8.3 all GNU C Library: National Language (locale) data [support]\\nii login 1:4.13+dfsg1-4ubuntu3 amd64 system login tools\\nii logrotate 3.21.0-2build1 amd64 Log rotation utility\\nii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file\\nii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality\\nii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)\\nii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration\\nii lsof 4.95.0-1build3 amd64 utility to list open files\\nii lto-disabled-list 47 all list of packages not to build with LTO\\nii mailcap 3.70+nmu1ubuntu1 all Debian\'s mailcap system, and support programs\\nii make 4.3-4.1build2 amd64 utility for directing compilation\\nii man-db 2.12.0-4build2 amd64 tools for reading manual pages\\nii manpages 6.7-2 all Manual pages about using a GNU/Linux system\\nii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development\\nii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language\\nii media-types 10.1.0 all List of standard media types and their usual file extension\\nii memtest86+ 7.00-1build1 amd64 stand-alone memory tester for x86 and x86-64\\nii mesa-vulkan-drivers:amd64 24.0.9-0ubuntu0.1 amd64 Mesa Vulkan graphics drivers\\nii mobile-broadband-provider-info 20230416-1 all database of mobile broadband service providers\\nii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems\\nii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys\\nii mongodb-database-tools 100.9.4 amd64 mongodb-database-tools package provides tools for working with the MongoDB server: \\nii mongodb-org-database-tools-extra 7.0.9 amd64 Extra MongoDB database tools\\nii mongodb-org-server 7.0.9 amd64 MongoDB database server\\nii mongodb-org-shell 7.0.9 amd64 MongoDB shell client\\nii mongodb-org-tools 7.0.9 amd64 MongoDB tools\\nii mount 2.39.3-9ubuntu6.1 amd64 tools for mounting and manipulating filesystems\\nii mousetweaks 3.32.0-4build2 amd64 mouse accessibility enhancements for the GNOME desktop\\nii mscompress 0.4-10build1 amd64 Microsoft \\"compress.exe/expand.exe\\" compatible (de)compressor\\nii msr-tools 1.3-5build1 amd64 Utilities for modifying MSRs from userspace\\nii mtr-tiny 0.95-1.1build2 amd64 Full screen ncurses traceroute tool\\nii mutter-common 46.2-1ubuntu0.24.04.1 all shared files for the Mutter window manager\\nii mutter-common-bin 46.2-1ubuntu0.24.04.1 amd64 shared programs for the Mutter window manager\\nii mysql-common 5.8+1.1.0build1 all MySQL database common files, e.g. /etc/mysql/my.cnf\\nii nano 7.2-2build1 amd64 small, friendly text editor inspired by Pico\\nii nautilus 1:46.2-0ubuntu0.2 amd64 file manager and graphical shell for GNOME\\nii nautilus-data 1:46.2-0ubuntu0.2 all data files for nautilus\\nii nautilus-extension-gnome-terminal:amd64 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application - Nautilus extension\\nii nautilus-sendto 3.8.6-7build2 amd64 easily send files via email from within Nautilus\\nii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions\\nii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages\\nii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions\\nii net-tools 2.10-0.1ubuntu4 amd64 NET-3 networking toolkit\\nii netbase 6.4 all Basic TCP/IP networking system\\nii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife\\nii netplan-generator 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration systemd-generator\\nii netplan.io 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration for various backends\\nii network-manager 1.46.0-1ubuntu2 amd64 network management framework (daemon and userspace tools)\\nii network-manager-config-connectivity-ubuntu 1.46.0-1ubuntu2 all NetworkManager configuration to enable connectivity checking\\nii network-manager-gnome 1.34.0-1ubuntu3 amd64 network management framework (GNOME frontend)\\nii network-manager-openvpn 1.10.2-4build2 amd64 network management framework (OpenVPN plugin core)\\nii network-manager-openvpn-gnome 1.10.2-4build2 amd64 network management framework (OpenVPN plugin GNOME GUI)\\nii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)\\nii network-manager-pptp-gnome 1.2.12-3build2 amd64 network management framework (PPTP plugin GNOME GUI)\\nii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes\\nii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project\\nii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE\\nii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool\\nii openipmi 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface (for servers)\\nii openjdk-17-jre-headless:amd64 17.0.12+7-1ubuntu2~24.04 amd64 OpenJDK Java runtime, using Hotspot JIT (headless)\\nii openprinting-ppds 20230202-1 all OpenPrinting printer support - PostScript PPD files\\nii openssh-client 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) client, for secure access to remote machines\\nii openssh-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) server, for secure access from remote machines\\nii openssh-sftp-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines\\nii openssl 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - cryptographic utility\\nii openvpn 2.6.9-1ubuntu4.1 amd64 virtual private network daemon\\nii orca 46.1-1ubuntu1 all Scriptable screen reader\\nii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives\\nii p11-kit 0.25.3-4ubuntu2.1 amd64 p11-glue utilities\\nii p11-kit-modules:amd64 0.25.3-4ubuntu2.1 amd64 p11-glue proxy and trust modules\\nii packagekit 1.2.8-2build3 amd64 Provides a package management service\\nii packagekit-tools 1.2.8-2build3 amd64 Provides PackageKit command-line tools\\nii parted 3.6-4build1 amd64 disk partition manipulator\\nii passwd 1:4.13+dfsg1-4ubuntu3 amd64 change and administer password and group data\\nii pastebinit 1.6.2-1 all command-line pastebin client\\nii patch 2.7.6-7build3 amd64 Apply a diff file to an original\\nii pci.ids 0.0~2024.03.31-1 all PCI ID Repository\\nii pciutils 1:3.10.0-2build1 amd64 PCI utilities\\nii pcmciautils 018-14build1 amd64 PCMCIA utilities for Linux 2.6\\nii perl 5.38.2-3.2build2 amd64 Larry Wall\'s Practical Extraction and Report Language\\nii perl-base 5.38.2-3.2build2 amd64 minimal Perl system\\nii perl-modules-5.38 5.38.2-3.2build2 all Core Perl modules\\nii perl-openssl-defaults:amd64 7build3 amd64 version compatibility baseline for Perl OpenSSL packages\\nii pigz 2.8-1 amd64 Parallel Implementation of GZip\\nii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG\\nii pinentry-gnome3 1.2.1-3ubuntu5 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG\\nii pipewire:amd64 1.0.5-1ubuntu1 amd64 audio and video processing engine multimedia server\\nii pipewire-alsa:amd64 1.0.5-1ubuntu1 amd64 PipeWire ALSA plugin, for ALSA applications to output via PipeWire\\nii pipewire-audio 1.0.5-1ubuntu1 all recommended set of PipeWire packages for a standard audio desktop use\\nii pipewire-bin 1.0.5-1ubuntu1 amd64 PipeWire multimedia server - programs\\nrc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire\\nii pipewire-pulse 1.0.5-1ubuntu1 amd64 PipeWire PulseAudio daemon\\nii pkexec 124-2ubuntu1 amd64 run commands as another user with polkit authorization\\nii pkgconf:amd64 1.8.1-2build1 amd64 manage compile and link flags for libraries\\nii pkgconf-bin 1.8.1-2build1 amd64 manage compile and link flags for libraries (binaries)\\nii plymouth 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer\\nii plymouth-label 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - label control\\nii plymouth-theme-spinner 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - spinner theme\\nii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme\\nii policykit-1 124-2ubuntu1 amd64 transitional package for polkitd and pkexec\\nii policykit-desktop-privileges 0.22 all run common desktop actions without password\\nii polkitd 124-2ubuntu1 amd64 framework for managing administrative policies and privileges\\nii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library\\nii poppler-utils 24.02.0-1ubuntu9.1 amd64 PDF utilities (based on Poppler)\\nii power-profiles-daemon 0.21-1 amd64 Makes power profiles handling available over D-Bus.\\nii powermgmt-base 1.37 all common utils for power management\\nii powertop 2.15-3build1 amd64 diagnose issues with power consumption and management\\nii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon\\nii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client\\nii printer-driver-brlaser 6-3build2 amd64 printer driver for (some) Brother laser printers\\nii printer-driver-c2esp 27-11ubuntu7 amd64 printer driver for Kodak ESP AiO color inkjet Series\\nii printer-driver-foo2zjs 20200505dfsg0-2ubuntu6 amd64 printer driver for ZjStream-based printers\\nii printer-driver-foo2zjs-common 20200505dfsg0-2ubuntu6 all printer driver for ZjStream-based printers - common files\\nii printer-driver-hpcups 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)\\nii printer-driver-m2300w 0.51-15build2 amd64 printer driver for Minolta magicolor 2300W/2400W color laser printers\\nii printer-driver-min12xxw 0.0.9-11build3 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW\\nii printer-driver-pnm2ppa 1.13+nondbs-0ubuntu10 amd64 printer driver for HP-GDI printers\\nii printer-driver-postscript-hp 3.23.12+dfsg0-0ubuntu5 amd64 HP Printers PostScript Descriptions\\nii printer-driver-ptouch 1.7-1build2 amd64 printer driver Brother P-touch label printers\\nii printer-driver-pxljr 1.4+repack0-6build2 amd64 printer driver for HP Color LaserJet 35xx/36xx\\nii printer-driver-sag-gdi 0.1-8 all printer driver for Ricoh Aficio SP 1000s/SP 1100s\\nii printer-driver-splix 2.0.0+svn315-7fakesync1ubuntu1 amd64 Driver for Samsung and Xerox SPL2 and SPLc laser printers\\nii procps 2:4.0.4-4ubuntu3 amd64 /proc file system utilities\\nii psmisc 23.7-1build1 amd64 utilities that use the proc file system\\nii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes\\nrc pulseaudio 1:15.99.1+dfsg1-1ubuntu2.2 amd64 PulseAudio sound server\\nii python-apt-common 2.7.7ubuntu3 all Python interface to libapt-pkg (locales)\\nii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files\\nii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii python3-apport 2.28.1-0ubuntu3.1 all Python 3 library for Apport crash report handling\\nii python3-apt 2.7.7ubuntu3 amd64 Python 3 interface to libapt-pkg\\nii python3-aptdaemon 1.1.1+bzr982-0ubuntu44 all Python 3 module for the server and client of aptdaemon\\nii python3-aptdaemon.gtk3widgets 1.1.1+bzr982-0ubuntu44 all Python 3 GTK+ 3 widgets to run an aptdaemon client\\nii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)\\nii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x\\nii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)\\nii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)\\nii python3-brlapi:amd64 6.6-4ubuntu5 amd64 Braille display access via BRLTTY - Python3 bindings\\nii python3-cairo 1.25.1-2build2 amd64 Python3 bindings for the Cairo vector graphics library\\nii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)\\nii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime\\nii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)\\nii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x\\nii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x\\nii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.\\nii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3\\nii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)\\nii python3-cups:amd64 2.0.1-5build6 amd64 Python3 bindings for CUPS\\nii python3-cupshelpers 1.5.18-1ubuntu9 all Python utility modules around the CUPS printing system\\nii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module\\nii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)\\nii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3\\nii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats\\nii python3-defer 1.0.6-2.1ubuntu1 all Small framework for asynchronous programming (Python 3)\\nii python3-dev 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii python3-distro 1.9.0-1 all Linux OS platform information API\\nii python3-distro-info 1.7build1 all information about distributions\' releases (Python 3 module)\\nii python3-distupgrade 1:24.04.23 all manage release upgrades\\nii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x\\nii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries\\nii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3\\nii python3-ibus-1.0 1.5.29-2 all Intelligent Input Bus - introspection overrides for Python (Python 3)\\nii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)\\nii python3-importlib-metadata 4.12.0-1 all library to access the metadata for a Python package - Python 3.x\\nii python3-jinja2 3.1.2-1ubuntu1.1 all small but fast and easy to use stand-alone template engine\\nii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x\\nii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x\\nii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)\\nii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token\\nii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)\\nii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)\\nii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs\\nii python3-louis 3.29.0-1build1 all Python bindings for liblouis\\nii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins\\nii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library\\nii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package\\nii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)\\nii python3-more-itertools 10.2.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)\\nii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)\\nii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x\\nii python3-netplan 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration Python bindings\\nii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3\\nii python3-olefile 0.46-3 all Python module to read/write MS OLE2 files\\nii python3-packaging 24.0-1 all core utilities for python3 packages\\nii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications\\nii python3-pil:amd64 10.2.0-1ubuntu1 amd64 Python Imaging Library (Python3)\\nii python3-pip 24.0+dfsg-1ubuntu1 all Python package installer\\nii python3-pip-whl 24.0+dfsg-1ubuntu1 all Python package installer (pip wheel)\\nii python3-pkg-resources 68.1.2-2ubuntu1 all Package Discovery and Resource Access using pkg_resources\\nii python3-problem-report 2.28.1-0ubuntu3.1 all Python 3 library to handle problem reports\\nii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3\\nii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3\\nii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x\\nii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python\\nii python3-requests 2.31.0+dfsg-1ubuntu1 all elegant and simple HTTP library for Python3, built for human beings\\nii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more\\nii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port\\nii python3-setuptools 68.1.2-2ubuntu1 all Python3 Distutils Enhancements\\nii python3-setuptools-whl 68.1.2-2ubuntu1 all Python Distutils Enhancements (wheel package)\\nii python3-six 1.16.0-4 all Python 2 and 3 compatibility library\\nii python3-software-properties 0.99.48 all manage the repositories that you install software from\\nii python3-speechd 0.12.0~rc2-2build3 all Python interface to Speech Dispatcher\\nii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd\\nii python3-tz 2024.1-2 all Python3 version of the Olson timezone database\\nii python3-uno 4:24.2.5-0ubuntu0.24.04.2 amd64 Python-UNO bridge\\nii python3-update-manager 1:24.04.6 all Python 3.x module for update-manager\\nii python3-urllib3 2.0.7-1 all HTTP library with thread-safe connection pooling for Python3\\nii python3-venv 3.12.3-0ubuntu2 amd64 venv module for python3 (default python3 version)\\nii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files\\nii python3-wheel 0.42.0-2 all built-package format for Python\\nii python3-xdg 0.28-2 all Python 3 library to access freedesktop.org standards\\nii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)\\nii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3\\nii python3-zipp 1.0.0-6ubuntu0.1 all pathlib-compatible Zipfile object wrapper - Python 3.x\\nrc python3.10-venv 3.10.12-1~22.04.5 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.10)\\nii python3.12 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (version 3.12)\\nii python3.12-dev 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii python3.12-minimal 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii python3.12-venv 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.12)\\nii readline-common 8.2-4build1 all GNU readline and history libraries, common files\\nii rfkill 2.39.3-9ubuntu6.1 amd64 tool for enabling and disabling wireless devices\\nii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions\\nii rsync 3.2.7-1ubuntu1 amd64 fast, versatile, remote (and local) file-copying tool\\nii rsyslog 8.2312.0-3ubuntu9 amd64 reliable system and kernel logging daemon\\nii rtkit 0.13-5build1 amd64 Realtime Policy and Watchdog Daemon\\nii rygel 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services\\nii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba core libraries\\nii sane-airscan 0.99.29-0ubuntu4 amd64 SANE backend for AirScan (eSCL) and WSD document scanner\\nii sane-utils 1.2.1-7build4 amd64 API library for scanners -- utilities\\nii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers\\nii seahorse 43.0-3build2 amd64 GNOME front end for GnuPG\\nii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX\\nii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text\\nii sensible-utils 0.0.22 all Utilities for sensible alternative selection\\nii session-migration 0.3.9build1 amd64 Tool to migrate in user session settings\\nii sgml-base 1.31 all SGML infrastructure and SGML catalog file support\\nii sgml-data 2.0.11+nmu1 all common SGML and XML data\\nii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec\\nii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)\\nii slirp4netns 1.2.1-1build2 amd64 User-mode networking for unprivileged network namespaces\\nii snapd 2.63.1+24.04 amd64 Daemon and tooling that enable snap packages\\nii software-properties-common 0.99.48 all manage the repositories that you install software from (common)\\nii software-properties-gtk 0.99.48 all manage the repositories that you install software from (gtk)\\nii sound-icons 0.1-8 all Sounds for speech enabled applications\\nii sound-theme-freedesktop 0.8-2ubuntu1 all freedesktop.org sound theme\\nii speech-dispatcher 0.12.0~rc2-2build3 amd64 Common interface to speech synthesizers\\nii speech-dispatcher-audio-plugins:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Audio output plugins\\nii speech-dispatcher-espeak-ng 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Espeak-ng output module\\nii spice-vdagent 0.22.1-4build3 amd64 Spice agent for Linux\\nii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems\\nii ssh-import-id 5.11-0ubuntu2 all securely retrieve an SSH public key and install it locally\\nii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL\\nii strace 6.8-0ubuntu2 amd64 System call tracer\\nii stress-ng 0.17.06-1build1 amd64 tool to load and stress a computer\\nii sudo 1.9.15p5-3ubuntu5 amd64 Provide limited super user privileges to specific users\\nii switcheroo-control 2.6-2build2 amd64 D-Bus service to check the availability of dual-GPU\\nii sysbench 1.0.20+ds-6build2 amd64 multi-threaded benchmark tool for database systems\\nii sysbox-ce 0.6.4.linux amd64 Sysbox Community Edition (CE) is a next-generation container runtime,\\nii syslinux-common 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 all collection of bootloaders (common)\\nii sysstat 12.6.1-2 amd64 system performance tools for Linux\\nii system-config-printer-common 1.5.18-1ubuntu9 all backend and the translation files for system-config-printer\\nii system-config-printer-udev 1.5.18-1ubuntu9 amd64 Utilities to detect and configure printers automatically\\nii systemd 255.4-1ubuntu8.4 amd64 system and service manager\\nii systemd-dev 255.4-1ubuntu8.4 all systemd development files\\nii systemd-hwe-hwdb 255.1.3 all udev rules for hardware enablement (HWE)\\nii systemd-oomd 255.4-1ubuntu8.4 amd64 userspace out-of-memory (OOM) killer\\nii systemd-resolved 255.4-1ubuntu8.4 amd64 systemd DNS resolver\\nii systemd-sysv 255.4-1ubuntu8.4 amd64 system and service manager - SysV compatibility symlinks\\nii systemd-timesyncd 255.4-1ubuntu8.4 amd64 minimalistic service to synchronize local time with NTP servers\\nii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities\\nii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility\\nii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell\\nii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell\\nii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer\\nii tecla 46.0-1build1 amd64 keyboard layout viewer for the GNOME desktop\\nii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch\\nii thermald 2.5.6-2build2 amd64 Thermal monitoring and controlling daemon\\nii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage\\nii tinyproxy 1.11.1-3 all Lightweight, non-caching, optionally anonymizing HTTP proxy\\nii tinyproxy-bin 1.11.1-3 amd64 Lightweight, non-caching, optionally anonymizing HTTP proxy (executable only)\\nii tnftp 20230507-2build3 amd64 enhanced ftp client\\nii tpm-udev 0.6ubuntu1 all udev rules for TPM modules\\nii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel\\nii tracker 3.7.1-1build1 amd64 metadata database, indexer and search tool\\nii tracker-extract 3.7.1-1build1 amd64 metadata database, indexer and search tool - metadata extractors\\nii tracker-miner-fs 3.7.1-1build1 amd64 metadata database, indexer and search tool - filesystem indexer\\nii tzdata 2024a-3ubuntu1.1 all time zone and daylight-saving time data\\nii ubuntu-advantage-desktop-daemon 1.11 amd64 Daemon to allow access to ubuntu-advantage via D-Bus\\nii ubuntu-desktop 1.539.1 amd64 Ubuntu desktop system\\nii ubuntu-desktop-minimal 1.539.1 amd64 Ubuntu desktop minimal system\\nii ubuntu-docs 24.04.2 all Ubuntu Desktop Guide\\nii ubuntu-drivers-common 1:0.9.7.6ubuntu3.1 amd64 Detect and install additional Ubuntu driver packages\\nii ubuntu-kernel-accessories 1.539.1 amd64 packages useful to install by default on systems with kernels\\nii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive\\nii ubuntu-minimal 1.539.1 amd64 Minimal core of Ubuntu\\nii ubuntu-mono 24.04-0ubuntu1 all Ubuntu Mono Icon theme\\nii ubuntu-pro-client 33.2~24.04.1 amd64 Management tools for Ubuntu Pro\\nii ubuntu-pro-client-l10n 33.2~24.04.1 amd64 Translations for Ubuntu Pro Client\\nii ubuntu-release-upgrader-core 1:24.04.23 all manage release upgrades\\nii ubuntu-release-upgrader-gtk 1:24.04.23 all manage release upgrades\\nii ubuntu-report 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics\\nii ubuntu-session 46.0-1ubuntu4 all Ubuntu session with GNOME Shell\\nii ubuntu-settings 24.04.4 all default settings for the Ubuntu desktop\\nii ubuntu-standard 1.539.1 amd64 Ubuntu standard system\\nii ubuntu-wallpapers 24.04.2 all Ubuntu Wallpapers\\nii ubuntu-wallpapers-noble 24.04.2 all Ubuntu 24.04 Wallpapers\\nii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files\\nii udev 255.4-1ubuntu8.4 amd64 /dev/ and hotplug management daemon\\nii udisks2 2.10.1-6build1 amd64 D-Bus service to access and manipulate storage devices\\nii ufw 0.36.2-6 all program for managing a Netfilter firewall\\nii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades\\nii unifi 8.1.127-25320-1 all Ubiquiti UniFi server\\nii uno-libs-private 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- private libraries used by public ones\\nii unzip 6.0-28ubuntu4 amd64 De-archiver for .zip files\\nii update-inetd 4.53 all inetd configuration file updater\\nii update-manager 1:24.04.6 all GNOME application that manages apt updates\\nii update-manager-core 1:24.04.6 all manage release upgrades\\nii update-notifier 3.192.68build3 amd64 Daemon which notifies about package updates\\nii update-notifier-common 3.192.68build3 all Files shared between update-notifier and other packages\\nii upower 1.90.3-1 amd64 abstraction for power management\\nii ure 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment\\nii usb-creator-common 0.3.17 all create a startup disk using a CD or disc image (common files)\\nii usb-creator-gtk 0.3.17 all create a startup disk using a CD or disc image (for GNOME)\\nii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling \\"flip flop\\" USB devices\\nii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch\\nii usb.ids 2024.03.18-1 all USB ID Repository\\nii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices\\nii usbutils 1:017-3build1 amd64 Linux USB utilities\\nii util-linux 2.39.3-9ubuntu6.1 amd64 miscellaneous system utilities\\nii uuid-dev:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library - headers and static libraries\\nii uuid-runtime 2.39.3-9ubuntu6.1 amd64 runtime components for the Universally Unique ID library\\nii vim-common 2:9.1.0016-1ubuntu7.2 all Vi IMproved - Common files\\nii vim-tiny 2:9.1.0016-1ubuntu7.2 amd64 Vi IMproved - enhanced vi editor - compact version\\nii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict\\nii wbritish 2020.12.07-2 all British English dictionary words for /usr/share/dict\\nii webp-pixbuf-loader:amd64 0.2.4-2build2 amd64 WebP Image format GdkPixbuf loader\\nii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web\\nii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts\\nii whoopsie 0.2.77build3 amd64 Ubuntu error tracker submission\\nii whoopsie-preferences 23build3 amd64 System preferences for error reporting\\nii wireless-regdb 2022.06.06-0ubuntu2 all wireless regulatory database\\nii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions\\nii wireplumber 0.4.17-1ubuntu4 amd64 modular session / policy manager for PipeWire\\nii wngerman 20161207-12 all New German orthography wordlist\\nii wogerman 1:2-39 all Traditional German wordlist\\nii wpasupplicant 2:2.10-21ubuntu0.1 amd64 client support for WPA and WPA2 (IEEE 802.11i)\\nii wswiss 20161207-12 all Swiss (German) orthography wordlist\\nii x11-apps 7.7+11build3 amd64 X applications\\nii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure\\nii x11-session-utils 7.7+6build2 amd64 X session utilities\\nii x11-utils 7.7+6build2 amd64 X11 utilities\\nii x11-xkb-utils 7.7+8build2 amd64 X11 XKB utilities\\nii x11-xserver-utils 7.7+10build2 amd64 X server utilities\\nii xauth 1:1.1.2-1build1 amd64 X authentication utility\\nii xbitmaps 1.1.1-2.2 all Base X bitmaps\\nii xbrlapi 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display - xbrlapi\\nii xcursor-themes 1.0.6-0ubuntu1 all Base X cursor themes\\nii xcvt 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator\\nii xdg-dbus-proxy 0.1.5-1build2 amd64 filtering D-Bus proxy\\nii xdg-desktop-portal 1.18.4-1ubuntu2 amd64 desktop integration portal for Flatpak and Snap\\nii xdg-desktop-portal-gnome 46.2-0ubuntu1 amd64 GNOME portal backend for xdg-desktop-portal\\nii xdg-desktop-portal-gtk 1.15.1-1build2 amd64 GTK+/GNOME portal backend for xdg-desktop-portal\\nii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories\\nii xdg-user-dirs-gtk 0.11-1build2 amd64 tool to manage well known user directories (Gtk extension)\\nii xdg-utils 1.1.3-4.1ubuntu3 all desktop integration utilities from freedesktop.org\\nii xfonts-base 1:1.0.5+nmu1 all standard fonts for X\\nii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts\\nii xfonts-scalable 1:1.0.3-1.3 all scalable fonts for X\\nii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs\\nii xinit 1.4.1-0ubuntu5 amd64 X server initialisation tool\\nii xinput 1.6.4-1build1 amd64 Runtime configuration and test of XInput devices\\nii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data\\nii xml-core 0.19 all XML infrastructure and XML catalog file support\\nii xorg 1:7.7+23ubuntu3 amd64 X.Org X Window System\\nii xorg-docs-core 1:1.7.1-1.2 all Core documentation for the X.org X Window System\\nii xorriso 1:1.5.6-1.1ubuntu3 amd64 command line ISO-9660 and Rock Ridge manipulation tool\\nii xserver-common 2:21.1.12-1ubuntu1 all common files used by various X servers\\nii xserver-xephyr 2:21.1.12-1ubuntu1 amd64 nested X server\\nii xserver-xorg 1:7.7+23ubuntu3 amd64 X.Org X server\\nii xserver-xorg-core 2:21.1.12-1ubuntu1 amd64 Xorg X server - core server\\nii xserver-xorg-input-all 1:7.7+23ubuntu3 amd64 X.Org X server -- input driver metapackage\\nii xserver-xorg-input-libinput 1.4.0-1build1 amd64 X.Org X server -- libinput input driver\\nii xserver-xorg-input-wacom 1:1.2.0-1ubuntu2 amd64 X.Org X server -- Wacom input driver\\nii xserver-xorg-legacy 2:21.1.12-1ubuntu1 amd64 setuid root Xorg server wrapper\\nii xserver-xorg-video-all 1:7.7+23ubuntu3 amd64 X.Org X server -- output driver metapackage\\nii xserver-xorg-video-amdgpu 23.0.0-1build1 amd64 X.Org X server -- AMDGPU display driver\\nii xserver-xorg-video-ati 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI display driver wrapper\\nii xserver-xorg-video-fbdev 1:0.5.0-2build2 amd64 X.Org X server -- fbdev display driver\\nii xserver-xorg-video-intel 2:2.99.917+git20210115-1build1 amd64 X.Org X server -- Intel i8xx, i9xx display driver\\nii xserver-xorg-video-nouveau 1:1.0.17-2build1 amd64 X.Org X server -- Nouveau display driver\\nii xserver-xorg-video-qxl 0.1.6-1build1 amd64 X.Org X server -- QXL display driver\\nii xserver-xorg-video-radeon 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI Radeon display driver\\nii xserver-xorg-video-vesa 1:2.6.0-1 amd64 X.Org X server -- VESA display driver\\nii xserver-xorg-video-vmware 1:13.4.0-1build1 amd64 X.Org X server -- VMware display driver\\nii xwayland 2:23.2.6-1 amd64 X server for running X clients under Wayland\\nii xxd 2:9.1.0016-1ubuntu7.2 amd64 tool to make (or reverse) a hex dump\\nii xz-utils 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression utilities\\nii yaru-theme-gnome-shell 24.04.2-0ubuntu1 all Yaru GNOME Shell desktop theme from the Ubuntu Community\\nii yaru-theme-gtk 24.04.2-0ubuntu1 all Yaru GTK theme from the Ubuntu Community\\nii yaru-theme-icon 24.04.2-0ubuntu1 all Yaru icon theme from the Ubuntu Community\\nii yaru-theme-sound 24.04.2-0ubuntu1 all Yaru sound theme from the Ubuntu Community\\nii yelp 42.2-1build2 amd64 Help browser for GNOME\\nii yelp-xsl 42.1-2 all XSL stylesheets for the yelp help browser\\nii zenity 4.0.1-1build3 amd64 Display graphical dialog boxes from shell scripts\\nii zenity-common 4.0.1-1build3 all Display graphical dialog boxes from shell scripts (common files)\\nii zip 3.0-13build1 amd64 Archiver for .zip files\\nii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime\\nii zlib1g-dev:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - development\\nii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool\\n", "Turbo Boost (Legacy non intel_pstate)": "File not found"}',E'{"uri": "/home/arne/Sites/green-coding/example-applications/", "uri_type": "folder", "name": "Stress Test #3", "filename": "stress/usage_scenario.yml", "branch": null, "debug_mode": false, "allow_unsafe": false, "skip_system_checks": false, "skip_unsafe": true, "verbose_provider_boot": false, "full_docker_prune": false, "dev_no_sleeps": false, "dev_no_build": true, "dev_no_metrics": false, "dev_flow_timetravel": false, "dev_no_optimizations": false, "docker_prune": false, "job_id": null}',1,E'64134395e83e6e57cf6247a2b0ec11b562d1fa95',E'{"sci": {"I": 436, "EL": 4, "RS": 1, "TE": 181000}, "measurement": {"boot": {"wait_time_dependencies": 60}, "idle-duration": 5, "pre-test-sleep": 5, "total-duration": 3600, "post-test-sleep": 5, "metric-providers": {"linux": {"network.io.cgroup.container.provider.NetworkIoCgroupContainerProvider": {"resolution": 99}, "cpu.energy.rapl.msr.component.provider.CpuEnergyRaplMsrComponentProvider": {"resolution": 99}, "cpu.utilization.procfs.system.provider.CpuUtilizationProcfsSystemProvider": {"resolution": 99}, "memory.total.cgroup.container.provider.MemoryTotalCgroupContainerProvider": {"resolution": 99}, "psu.energy.dc.rapl.msr.machine.provider.PsuEnergyDcRaplMsrMachineProvider": {"resolution": 99}, "cpu.utilization.cgroup.container.provider.CpuUtilizationCgroupContainerProvider": {"resolution": 99}}, "macos": {"powermetrics.provider.PowermetricsProvider": {"resolution": 99}, "cpu.utilization.mach.system.provider.CpuUtilizationMachSystemProvider": {"resolution": 99}}, "common": {"network.connections.proxy.container.provider.NetworkConnectionsProxyContainerProvider": null}}, "baseline-duration": 5, "flow-process-duration": 1800, "phase-transition-time": 1, "system_check_threshold": 3}}',1726159489184011,1726159513834871,E'[{"start": 1726159490184483, "name": "[BASELINE]", "end": 1726159495185130}, {"start": 1726159496186027, "name": "[INSTALLATION]", "end": 1726159496205034}, {"start": 1726159497205282, "name": "[BOOT]", "end": 1726159497515014}, {"start": 1726159500524633, "name": "[IDLE]", "end": 1726159505525178}, {"start": 1726159506526154, "name": "[RUNTIME]", "end": 1726159511833958}, {"start": 1726159506526984, "name": "Stress", "end": 1726159511833918}, {"start": 1726159512834290, "name": "[REMOVE]", "end": 1726159513834846}]',NULL,NULL,FALSE,E'2024-09-13 16:44:37.917402+00',E'2024-09-12 16:45:18.848381+00'), -(E'3e6554a4-10bc-46d6-93a1-e61bfd1d9808',NULL,E'Stress Test #4',E'/home/arne/Sites/green-coding/example-applications/',E'main',E'58c7a5002c684f41f8d7a355f3ede641d8e45ddc',E'2024-07-10 13:48:46+00',E'manual',NULL,E'{"name": "Stress Container One Core 5 Seconds", "author": "Arne Tarara <arne@green-coding.berlin>", "description": "A simple 5 seconds stress on the system with one core. Expected display result is a rectangle shaped load.", "flow": [{"name": "Stress", "container": "gcb-alpine-stress", "commands": [{"type": "console", "command": "stress-ng -c 1 -t 5 -q", "note": "Starting Stress"}]}], "version": "2", "services": {"gcb-alpine-stress": {"container_name": "gcb-alpine-stress", "image": "gcb_alpine_stress", "build": "."}}}',E'stress/usage_scenario.yml',E'{"SGX": "This CPU does not support Intel SGX", "Uptime": " 18:58:26 up 22 min, 3 users, load average: 0.20, 0.35, 0.39", "Cpu Info": "11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz", "Platform": "Linux", "Processes": "USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\\nroot 1 0.3 0.0 23440 14188 ? Ss 18:36 0:04 /sbin/init splash\\nroot 2 0.0 0.0 0 0 ? S 18:36 0:00 [kthreadd]\\nroot 3 0.0 0.0 0 0 ? S 18:36 0:00 [pool_workqueue_release]\\nroot 4 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_g]\\nroot 5 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_p]\\nroot 6 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-slub_]\\nroot 7 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-netns]\\nroot 8 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:0-kacpi_notify]\\nroot 9 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:0H-events_highpri]\\nroot 10 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:1-pm]\\nroot 12 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mm_pe]\\nroot 13 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_kthread]\\nroot 14 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_rude_kthread]\\nroot 15 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_trace_kthread]\\nroot 16 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/0]\\nroot 17 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_preempt]\\nroot 18 0.0 0.0 0 0 ? S 18:36 0:00 [migration/0]\\nroot 19 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/0]\\nroot 20 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/0]\\nroot 21 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/1]\\nroot 22 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/1]\\nroot 23 0.0 0.0 0 0 ? S 18:36 0:00 [migration/1]\\nroot 24 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/1]\\nroot 26 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:0H-events_highpri]\\nroot 27 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/2]\\nroot 28 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/2]\\nroot 29 0.0 0.0 0 0 ? S 18:36 0:00 [migration/2]\\nroot 30 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/2]\\nroot 32 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:0H-events_highpri]\\nroot 33 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/3]\\nroot 34 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/3]\\nroot 35 0.0 0.0 0 0 ? S 18:36 0:00 [migration/3]\\nroot 36 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/3]\\nroot 38 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:0H-events_highpri]\\nroot 39 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/4]\\nroot 40 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/4]\\nroot 41 0.0 0.0 0 0 ? S 18:36 0:00 [migration/4]\\nroot 42 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/4]\\nroot 43 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:0-events]\\nroot 44 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:0H-events_highpri]\\nroot 45 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/5]\\nroot 46 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/5]\\nroot 47 0.0 0.0 0 0 ? S 18:36 0:00 [migration/5]\\nroot 48 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/5]\\nroot 50 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:0H-events_highpri]\\nroot 51 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/6]\\nroot 52 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/6]\\nroot 53 0.0 0.0 0 0 ? S 18:36 0:00 [migration/6]\\nroot 54 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/6]\\nroot 56 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:0H-kblockd]\\nroot 57 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/7]\\nroot 58 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/7]\\nroot 59 0.0 0.0 0 0 ? S 18:36 0:00 [migration/7]\\nroot 60 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/7]\\nroot 62 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:0H-kblockd]\\nroot 63 0.0 0.0 0 0 ? S 18:36 0:00 [kdevtmpfs]\\nroot 64 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-inet_]\\nroot 65 0.0 0.0 0 0 ? S 18:36 0:00 [kauditd]\\nroot 67 0.0 0.0 0 0 ? S 18:36 0:00 [khungtaskd]\\nroot 68 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:2-flush-259:0]\\nroot 69 0.0 0.0 0 0 ? S 18:36 0:00 [oom_reaper]\\nroot 70 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-write]\\nroot 71 0.0 0.0 0 0 ? S 18:36 0:00 [kcompactd0]\\nroot 72 0.0 0.0 0 0 ? SN 18:36 0:00 [ksmd]\\nroot 74 0.0 0.0 0 0 ? SN 18:36 0:00 [khugepaged]\\nroot 75 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kinte]\\nroot 76 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kbloc]\\nroot 77 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-blkcg]\\nroot 79 0.0 0.0 0 0 ? S 18:36 0:00 [irq/9-acpi]\\nroot 81 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:1-mm_percpu_wq]\\nroot 82 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tpm_d]\\nroot 83 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ata_s]\\nroot 84 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md]\\nroot 85 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md_bi]\\nroot 86 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-edac-]\\nroot 87 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-devfr]\\nroot 88 0.0 0.0 0 0 ? S 18:36 0:00 [watchdogd]\\nroot 90 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:1H-kblockd]\\nroot 91 0.0 0.0 0 0 ? S 18:36 0:00 [kswapd0]\\nroot 92 0.0 0.0 0 0 ? S 18:36 0:00 [ecryptfs-kthread]\\nroot 93 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kthro]\\nroot 94 0.0 0.0 0 0 ? S 18:36 0:00 [irq/127-pciehp]\\nroot 95 0.0 0.0 0 0 ? S 18:36 0:00 [irq/128-pciehp]\\nroot 96 0.0 0.0 0 0 ? S 18:36 0:00 [irq/129-pciehp]\\nroot 97 0.0 0.0 0 0 ? S 18:36 0:00 [irq/130-pciehp]\\nroot 100 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-acpi_]\\nroot 101 0.0 0.0 0 0 ? S 18:36 0:00 [hwrng]\\nroot 103 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mld]\\nroot 104 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:1H]\\nroot 105 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipv6_]\\nroot 112 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kstrp]\\nroot 114 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:0-hci0]\\nroot 128 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-charg]\\nroot 129 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:3-events]\\nroot 153 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:1H-kblockd]\\nroot 157 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:1H-kblockd]\\nroot 185 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:1H-kblockd]\\nroot 186 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:1H]\\nroot 194 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:1H-kblockd]\\nroot 195 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:1H-kblockd]\\nroot 196 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:2-pm]\\nroot 218 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 219 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 220 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 221 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 223 0.1 0.0 0 0 ? I 18:36 0:01 [kworker/2:3-events]\\nroot 225 0.0 0.0 0 0 ? S 18:36 0:00 [irq/173-FRMW0001:00]\\nroot 226 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:2-rcu_gp]\\nroot 227 0.0 0.0 0 0 ? S 18:36 0:00 [irq/174-PIXA3854:00]\\nroot 264 0.0 0.0 0 0 ? S 18:36 0:00 [jbd2/nvme0n1p5-8]\\nroot 265 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ext4-]\\nroot 315 0.0 0.0 67096 17564 ? S<s 18:36 0:00 /usr/lib/systemd/systemd-journald\\nroot 351 0.0 0.0 30832 8576 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-udevd\\nroot 395 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 423 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:5-ext4-rsv-conversion]\\nroot 451 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:8-writeback]\\nroot 514 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cfg80]\\nroot 520 0.0 0.0 0 0 ? S 18:36 0:00 [irq/191-mei_me]\\nroot 531 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-crypt]\\nroot 534 0.1 0.0 0 0 ? R 18:36 0:01 [irq/192-iwlwifi:default_queue]\\nroot 535 0.0 0.0 0 0 ? S 18:36 0:00 [irq/193-iwlwifi:queue_1]\\nroot 536 0.0 0.0 0 0 ? S 18:36 0:00 [irq/194-iwlwifi:queue_2]\\nroot 538 0.2 0.0 0 0 ? S 18:36 0:03 [irq/195-iwlwifi:queue_3]\\nroot 539 0.0 0.0 0 0 ? S 18:36 0:00 [irq/196-iwlwifi:queue_4]\\nroot 540 0.0 0.0 0 0 ? S 18:36 0:00 [irq/197-iwlwifi:queue_5]\\nroot 541 0.0 0.0 0 0 ? S 18:36 0:00 [irq/198-iwlwifi:queue_6]\\nroot 542 0.0 0.0 0 0 ? S 18:36 0:00 [irq/199-iwlwifi:queue_7]\\nroot 543 0.0 0.0 0 0 ? S 18:36 0:00 [irq/200-iwlwifi:queue_8]\\nroot 544 0.0 0.0 0 0 ? S 18:36 0:00 [irq/201-iwlwifi:exception]\\nroot 576 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ttm]\\nroot 583 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cros_]\\nroot 586 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc0]\\nroot 587 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc1]\\nroot 588 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc2]\\nroot 589 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc3]\\nroot 640 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:3-events]\\nsystemd+ 660 0.1 0.0 17728 7680 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-oomd\\nsystemd+ 665 0.0 0.0 21584 12800 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-resolved\\nsystemd+ 671 0.0 0.0 91044 7680 ? Ssl 18:36 0:00 /usr/lib/systemd/systemd-timesyncd\\nroot 754 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:3-pm]\\nroot 790 0.0 0.0 314260 8124 ? Ssl 18:36 0:00 /usr/libexec/accounts-daemon\\navahi 793 0.0 0.0 8780 3840 ? Ss 18:36 0:00 avahi-daemon: running [framebook.local]\\nroot 794 0.0 0.0 13684 6528 ? Ss 18:36 0:00 /usr/libexec/bluetooth/bluetoothd\\nroot 795 0.0 0.0 9804 2816 ? Ss 18:36 0:00 /usr/sbin/cron -f -P\\nmessage+ 796 0.2 0.0 11992 6528 ? Ss 18:36 0:03 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngnome-r+ 800 0.0 0.0 439064 16176 ? Ssl 18:36 0:00 /usr/libexec/gnome-remote-desktop-daemon --system\\nroot 804 0.0 0.0 314320 7808 ? Ssl 18:36 0:00 /usr/libexec/iio-sensor-proxy\\npolkitd 812 0.0 0.0 384348 10120 ? Ssl 18:36 0:00 /usr/lib/polkit-1/polkitd --no-debug\\nroot 815 0.0 0.0 314180 7856 ? Ssl 18:36 0:00 /usr/libexec/power-profiles-daemon\\nroot 831 0.1 0.1 2287584 32836 ? Ssl 18:36 0:01 /usr/lib/snapd/snapd\\nroot 836 0.0 0.0 310432 6912 ? Ssl 18:36 0:00 /usr/libexec/switcheroo-control\\nroot 838 0.7 0.0 725084 12996 ? Ssl 18:36 0:10 /usr/bin/sysbox-mgr\\nroot 842 0.1 0.0 18136 9220 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-logind\\nroot 844 0.1 0.0 425420 10368 ? Ssl 18:36 0:01 /usr/sbin/thermald --systemd --dbus-enable --adaptive\\nroot 845 0.0 0.0 469148 13116 ? Ssl 18:36 0:00 /usr/libexec/udisks2/udisksd\\navahi 893 0.0 0.0 8420 1284 ? S 18:36 0:00 avahi-daemon: chroot helper\\nroot 898 0.1 0.0 338968 21172 ? Ssl 18:36 0:02 /usr/sbin/NetworkManager --no-daemon\\nroot 901 0.0 0.0 18400 11264 ? Ss 18:36 0:00 /usr/sbin/wpa_supplicant -u -s -O DIR=/run/wpa_supplicant GROUP=netdev\\nroot 913 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipmi-]\\nsyslog 919 0.0 0.0 222508 6016 ? Ssl 18:36 0:00 /usr/sbin/rsyslogd -n -iNONE\\nroot 971 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:3-inet_frag_wq]\\nroot 1073 0.0 0.0 392104 12664 ? Ssl 18:36 0:00 /usr/sbin/ModemManager\\nroot 1085 0.0 0.0 314184 8224 ? Ssl 18:36 0:00 /usr/libexec/boltd\\nroot 1086 0.0 0.0 317632 9472 ? Ssl 18:36 0:00 /usr/libexec/upowerd\\nroot 1113 0.0 0.0 1166524 11008 ? Ssl 18:36 0:00 /usr/bin/sysbox-fs\\nroot 1121 0.0 0.0 2800 1664 ? Ss 18:36 0:00 /bin/sh -c /usr/bin/sysbox-runc --version && /usr/bin/sysbox-mgr --version && /usr/bin/sysbox-fs --version && /bin/sleep infinity\\nroot 1149 0.0 0.0 9076 2176 ? S 18:36 0:00 /bin/sleep infinity\\nroot 1430 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 1439 0.0 0.0 38488 11392 ? Ss 18:36 0:00 /usr/sbin/cupsd -l\\nroot 1447 0.2 0.1 2249812 64272 ? Ssl 18:36 0:02 /usr/bin/containerd\\nroot 1469 0.0 0.0 315384 9472 ? Ssl 18:36 0:00 /usr/sbin/gdm3\\nroot 1492 0.0 0.0 242664 9856 ? Sl 18:36 0:00 gdm-session-worker [pam/gdm-launch-environment]\\ngdm 1499 0.1 0.0 20988 11904 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\ngdm 1500 0.0 0.0 21400 3600 ? S 18:36 0:00 (sd-pam)\\ngdm 1512 0.0 0.0 114056 12032 ? S<sl 18:36 0:00 /usr/bin/pipewire\\ngdm 1513 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\ngdm 1515 0.0 0.0 407672 18944 ? S<sl 18:36 0:00 /usr/bin/wireplumber\\ngdm 1516 0.0 0.0 110484 11008 ? S<sl 18:36 0:00 /usr/bin/pipewire-pulse\\ngdm 1517 0.0 0.0 236396 6272 tty1 Ssl+ 18:36 0:00 /usr/libexec/gdm-wayland-session dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\ngdm 1525 0.0 0.0 9420 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngdm 1533 0.0 0.0 6500 2432 tty1 S+ 18:36 0:00 dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\nrtkit 1535 0.0 0.0 22940 3456 ? SNsl 18:36 0:00 /usr/libexec/rtkit-daemon\\ngdm 1537 0.0 0.0 9856 5120 tty1 S+ 18:36 0:00 dbus-daemon --nofork --print-address 4 --session\\ngdm 1546 0.0 0.0 521532 18048 tty1 Sl+ 18:36 0:00 /usr/libexec/gnome-session-binary --autostart /usr/share/gdm/greeter/autostart\\ngdm 1548 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\ngdm 1557 0.0 0.0 310008 6400 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 1564 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/128/doc\\ngdm 1590 1.2 0.6 4424672 205408 tty1 Sl+ 18:36 0:16 /usr/bin/gnome-shell\\nroot 1621 0.0 0.0 0 0 ? S< 18:36 0:00 [krfcommd]\\ncups-br+ 1656 0.0 0.0 268504 19840 ? Ssl 18:36 0:00 /usr/sbin/cups-browsed\\nroot 1657 0.3 0.2 3317612 92696 ? Ssl 18:36 0:04 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock\\nkernoops 1659 0.0 0.0 12744 2184 ? Ss 18:36 0:00 /usr/sbin/kerneloops --test\\nkernoops 1662 0.0 0.0 12744 2188 ? Ss 18:36 0:00 /usr/sbin/kerneloops\\nroot 1702 0.0 0.0 12020 8064 ? Ss 18:36 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups\\nroot 2398 0.0 0.0 1238168 13512 ? Sl 18:36 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928 -address /run/containerd/containerd.sock\\nroot 2511 0.0 0.0 1136 512 ? Ss 18:36 0:00 /sbin/docker-init -- buildkitd --allow-insecure-entitlement=network.host\\nroot 2717 0.0 0.1 1271012 34128 ? Sl 18:36 0:00 buildkitd --allow-insecure-entitlement=network.host\\nroot 2863 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tls-s]\\nroot 2998 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:4-kacpi_notify]\\nroot 2999 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:5-kacpi_notify]\\nroot 3000 0.0 0.0 0 0 ? D 18:36 0:00 [kworker/0:6+usb_hub_wq]\\ngdm 3022 0.0 0.0 383120 7680 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi-bus-launcher\\ngdm 3028 0.0 0.0 9420 4992 tty1 S+ 18:36 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/128/at-spi/bus\\ngdm 3030 0.0 0.2 529220 73856 tty1 Sl+ 18:36 0:00 /usr/bin/Xwayland :1024 -rootless -noreset -accessx -core -auth /run/user/128/.mutter-Xwaylandauth.4R00T2 -listenfd 4 -listenfd 5 -displayfd 6 -initfd 7 -byteswappedclients\\ngdm 3034 0.0 0.0 236068 7296 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session\\ncolord 3035 0.0 0.0 320904 14776 ? Ssl 18:36 0:00 /usr/libexec/colord\\ngdm 3069 0.0 0.0 310008 6400 tty1 Sl+ 18:36 0:00 /usr/libexec/xdg-permission-store\\ngdm 3078 0.0 0.0 2663384 26852 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.Shell.Notifications\\ngdm 3080 0.0 0.0 544408 13440 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sharing\\ngdm 3091 0.0 0.0 487204 19200 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-wacom\\ngdm 3095 0.0 0.0 414336 19904 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-color\\ngdm 3100 0.0 0.0 412624 19204 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-keyboard\\ngdm 3109 0.0 0.0 324188 11520 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-print-notifications\\ngdm 3114 0.0 0.0 458120 7040 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-rfkill\\ngdm 3119 0.0 0.0 386768 8192 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-smartcard\\ngdm 3129 0.0 0.0 432620 12416 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-datetime\\ngdm 3146 0.0 0.0 595396 24488 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-media-keys\\ngdm 3149 0.0 0.0 310116 6528 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-screensaver-proxy\\ngdm 3155 0.0 0.0 394584 9984 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sound\\ngdm 3163 0.0 0.0 384468 6912 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-a11y-settings\\ngdm 3169 0.0 0.0 459824 8320 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-housekeeping\\ngdm 3172 0.0 0.0 524880 23336 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-power\\ngdm 3290 0.0 0.0 416764 15232 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-printer\\ngdm 3333 0.0 0.0 2794456 27380 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.ScreenSaver\\ngdm 3345 0.0 0.2 992124 77664 tty1 Sl+ 18:36 0:00 /usr/libexec/mutter-x11-frames\\ngdm 3346 0.0 0.0 389372 12224 tty1 Sl 18:36 0:00 ibus-daemon --panel disable -r --xim\\ngdm 3360 0.0 0.0 311020 7296 tty1 Sl 18:36 0:00 /usr/libexec/ibus-dconf\\ngdm 3362 0.0 0.2 610420 66612 tty1 Sl 18:36 0:00 /usr/libexec/ibus-x11 --kill-daemon\\ngdm 3364 0.0 0.0 310984 7424 tty1 Sl+ 18:36 0:00 /usr/libexec/ibus-portal\\ngdm 3378 0.0 0.0 237196 7424 tty1 Sl 18:36 0:00 /usr/libexec/ibus-engine-simple\\nroot 3437 0.0 0.0 15116 8048 ? Ss 18:36 0:00 sshd: arne [priv]\\narne 3449 0.0 0.0 21024 12288 ? Ss 18:36 0:00 /usr/lib/systemd/systemd --user\\narne 3453 0.0 0.0 21396 3596 ? S 18:36 0:00 (sd-pam)\\narne 3464 0.0 0.0 109524 8576 ? Ssl 18:36 0:00 /usr/bin/pipewire\\narne 3465 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\narne 3468 0.0 0.0 39000 11776 ? Ss 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3472 0.0 0.0 405708 16000 ? Ssl 18:36 0:00 /usr/bin/wireplumber\\narne 3475 0.0 0.0 109904 10496 ? Ssl 18:36 0:00 /usr/bin/pipewire-pulse\\narne 3501 0.0 0.0 9444 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\narne 3542 0.0 0.0 15276 7108 ? S 18:36 0:00 sshd: arne@pts/0\\narne 3544 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\narne 3549 0.0 0.0 309864 6272 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 3556 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc\\narne 3594 0.0 0.0 353012 21644 ? Sl 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3599 0.0 0.0 11980 5632 pts/0 Ss 18:36 0:00 -bash\\nroot 3669 0.0 0.0 15116 8176 ? Ss 18:37 0:00 sshd: arne [priv]\\narne 3711 0.3 0.0 15276 7108 ? S 18:37 0:03 sshd: arne@pts/1\\narne 3712 0.0 0.0 11980 5632 pts/1 Ss 18:37 0:00 -bash\\nroot 3760 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:9-events]\\nroot 3801 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:10-kacpi_notify]\\nroot 3835 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:12-kacpi_notify]\\nroot 3878 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:13-kacpi_notify]\\nroot 3879 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:14-pm]\\ngdm 4742 0.0 0.0 317072 9856 ? Ssl 18:40 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/128/keyring\\nroot 4875 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/0:16-pm]\\nroot 4983 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/6:0-events]\\nroot 5028 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/7:0-events]\\narne 5100 0.0 0.0 2068800 26240 pts/0 Sl+ 18:42 0:00 docker compose up\\narne 5122 0.0 0.1 2169824 44872 pts/0 Sl+ 18:42 0:00 /usr/libexec/docker/cli-plugins/docker-compose compose up\\nroot 5207 0.0 0.0 1745288 4352 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5214 0.0 0.0 1745032 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5235 0.0 0.0 1238168 13636 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45 -address /run/containerd/containerd.sock\\nroot 5262 0.0 0.0 1237912 13296 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2 -address /run/containerd/containerd.sock\\n999 5282 2.7 0.0 37240 8576 ? Ssl 18:42 0:25 redis-server *:6379\\n999 5289 0.0 0.0 219720 29824 ? Ss 18:42 0:00 postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key -c work_mem=16MB -p 9573\\nroot 5393 0.0 0.0 2040984 4864 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5405 0.0 0.0 1597568 4096 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5419 0.0 0.0 1237912 13440 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7 -address /run/containerd/containerd.sock\\nroot 5450 0.0 0.0 1238168 13556 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf -address /run/containerd/containerd.sock\\nroot 5471 0.0 0.0 1136 512 ? Ss 18:42 0:00 /sbin/docker-init -- /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5479 0.0 0.0 12120 7984 ? Ss 18:42 0:00 nginx: master process nginx -g daemon off;\\nroot 5535 0.0 0.0 4344 3200 ? S 18:42 0:00 /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5536 0.0 0.0 37560 31352 ? S 18:42 0:00 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5560 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5561 0.0 0.0 12328 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5562 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5563 0.0 0.0 12344 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5564 0.0 0.0 12124 4528 ? S 18:42 0:00 nginx: worker process\\nwww-data 5565 0.0 0.0 12328 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5566 0.0 0.0 12344 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5567 0.0 0.0 12124 4528 ? S 18:42 0:00 nginx: worker process\\nwww-data 5570 0.8 0.4 1173056 145288 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5571 0.7 0.4 1173060 145536 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5572 0.7 0.4 877032 139256 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5573 0.7 0.4 1172940 145604 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5574 0.7 0.4 1173312 146496 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5575 0.7 0.4 877048 139480 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5576 0.7 0.4 1173300 146304 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5577 0.7 0.4 1180304 151040 ? Sl 18:42 0:06 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\n999 5620 0.0 0.0 219864 13208 ? Ss 18:42 0:00 postgres: checkpointer \\n999 5621 0.0 0.0 219864 6936 ? Ss 18:42 0:00 postgres: background writer \\n999 5623 0.0 0.0 219720 10008 ? Ss 18:42 0:00 postgres: walwriter \\n999 5624 0.0 0.0 221312 8984 ? Ss 18:42 0:00 postgres: autovacuum launcher \\n999 5625 0.0 0.0 221288 8088 ? Ss 18:42 0:00 postgres: logical replication launcher \\nroot 5970 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:5-events]\\n999 6349 0.0 0.0 222676 19864 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54084) idle\\n999 6357 0.0 0.0 222520 18328 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54116) idle\\n999 6358 0.0 0.0 222816 19324 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54120) idle\\n999 6359 0.0 0.0 222520 18072 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54118) idle\\n999 6361 0.0 0.0 222852 19224 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54156) idle\\n999 6954 0.0 0.0 222820 18712 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.4(37058) idle\\nroot 7549 0.1 0.1 574948 42980 ? Ssl 18:46 0:01 /usr/libexec/fwupd/fwupd\\nroot 7565 0.0 0.0 0 0 ? I< 18:46 0:00 [kworker/u17:1-hci0]\\nroot 7599 0.0 0.0 0 0 ? I 18:47 0:00 [kworker/0:7-pm]\\nroot 7614 0.0 0.0 0 0 ? I 18:50 0:00 [kworker/2:0-events]\\nroot 7615 0.0 0.0 0 0 ? I 18:50 0:00 [kworker/2:2-events]\\nroot 7621 0.0 0.0 0 0 ? I 18:51 0:00 [kworker/5:1-cgroup_destroy]\\nroot 7622 0.0 0.0 0 0 ? I 18:51 0:00 [kworker/3:0-events]\\nroot 7629 0.0 0.0 0 0 ? I 18:52 0:00 [kworker/3:1-events]\\nroot 7632 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/0:2-events]\\nroot 7633 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/6:1-events]\\nroot 7634 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/4:2-mm_percpu_wq]\\nroot 7636 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/7:1-pm]\\nroot 7638 0.0 0.0 0 0 ? I 18:54 0:00 [kworker/6:2-events]\\nroot 7648 0.0 0.0 0 0 ? I 18:56 0:00 [kworker/1:0-events]\\nroot 7649 0.0 0.0 0 0 ? I 18:56 0:00 [kworker/1:1-events]\\nroot 7894 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:1-events]\\nroot 7895 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:4-events]\\nroot 7896 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:5-i915-unordered]\\nroot 7897 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:6-events]\\nroot 7898 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:7]\\nroot 7899 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/7:3]\\nroot 8019 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/u16:0-events_unbound]\\nroot 8151 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/u16:1]\\ngdm 8166 0.0 0.0 0 0 tty1 Z+ 18:58 0:00 [dbus-daemon] <defunct>\\nroot 8172 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/5:0-cgroup_destroy]\\narne 8200 67.0 0.3 928148 130000 pts/1 Sl+ 18:58 0:01 python3 runner.py --uri /home/arne/Sites/green-coding/example-applications/ --filename stress/usage_scenario.yml --name Stress Test #4-Real --dev-no-build --skip-unsafe\\n999 8206 0.0 0.0 222120 19736 ? Ss 18:58 0:00 postgres: postgres green-coding 172.25.0.1(35374) idle\\n999 8207 0.0 0.0 222048 19352 ? Ss 18:58 0:00 postgres: postgres green-coding 172.25.0.1(35376) idle\\nroot 8338 20.3 0.0 17276 7552 ? Ss 18:58 0:00 /usr/lib/systemd/systemd-hostnamed\\narne 8426 0.0 0.0 2800 1664 pts/1 S+ 18:58 0:00 /bin/sh -c /usr/bin/ps -aux\\narne 8427 0.0 0.0 15504 5376 pts/1 R+ 18:58 0:00 /usr/bin/ps -aux\\n", "Disk Usage": 322987950080, "Docker Info": "Client: Docker Engine - Community\\n Version: 27.2.1\\n Context: default\\n Debug Mode: false\\n Plugins:\\n buildx: Docker Buildx (Docker Inc.)\\n Version: v0.16.2\\n Path: /usr/libexec/docker/cli-plugins/docker-buildx\\n compose: Docker Compose (Docker Inc.)\\n Version: v2.29.2\\n Path: /usr/libexec/docker/cli-plugins/docker-compose\\n\\nServer:\\n Containers: 5\\n Running: 5\\n Paused: 0\\n Stopped: 0\\n Images: 13\\n Server Version: 27.2.1\\n Storage Driver: overlayfs\\n driver-type: io.containerd.snapshotter.v1\\n Logging Driver: json-file\\n Cgroup Driver: systemd\\n Cgroup Version: 2\\n Plugins:\\n Volume: local\\n Network: bridge host ipvlan macvlan null overlay\\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\\n Swarm: inactive\\n Runtimes: io.containerd.runc.v2 runc sysbox-runc\\n Default Runtime: runc\\n Init Binary: docker-init\\n containerd version: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc version: v1.1.13-0-g58aa920\\n init version: de40ad0\\n Security Options:\\n apparmor\\n seccomp\\n Profile: builtin\\n cgroupns\\n Kernel Version: 6.8.0-44-generic\\n Operating System: Ubuntu 24.04.1 LTS\\n OSType: linux\\n Architecture: x86_64\\n CPUs: 8\\n Total Memory: 31.13GiB\\n Name: framebook\\n ID: 492c90f2-99f1-437f-a14b-9f1e5d514ca9\\n Docker Root Dir: /var/lib/docker\\n Debug Mode: false\\n Username: greencoding\\n Experimental: false\\n Insecure Registries:\\n 127.0.0.0/8\\n Live Restore Enabled: false\\n Default Address Pools:\\n Base: 172.25.0.0/16, Size: 24\\n\\n", "Free Memory": 31179706368, "Turbo Boost": "0", "Architecture": "x86-64", "Memory Total": "32646584 kB", "Power Limits": {"/sys/devices/virtual/powercap/intel-rapl/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/name": "package-0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/name": "psys\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj": "2967143710\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/energy_uj": "5776774701\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_name": "peak_power\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/name": "core\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/name": "uncore\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/energy_uj": "794260967\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/energy_uj": "17870376\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_max_power_uw": "28000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_power_limit_uw": "200000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_time_window_us": "31981568\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_power_limit_uw": "64000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_time_window_us": "2440\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_power_limit_uw": "121000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_time_window_us": "27983872\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_suspended_time": "0\\n"}, "IO Scheduling": "File not found", "Linux Version": "Linux 6.8.0-44-generic", "CPU Scheduling": {"/sys/kernel/debug/sched/debug": "Sched Debug Version: v0.11, 6.8.0-44-generic #44-Ubuntu\\nktime : 1324640.946080\\nsched_clk : 1324710.020730\\ncpu_clk : 1324665.579629\\njiffies : 4295991777\\nsched_clock_stable() : 1\\n\\nsysctl_sched\\n .sysctl_sched_base_slice : 3.000000\\n .sysctl_sched_features : 6237751\\n .sysctl_sched_tunable_scaling : 1 (logarithmic)\\n\\ncpu#0, 2400.000 MHz\\n .nr_running : 1\\n .nr_switches : 236885\\n .nr_uninterruptible : -42\\n .next_balance : 4295.991815\\n .curr->pid : 8437\\n .clock : 1324665.634800\\n .clock_task : 1324665.634800\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[0]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 8548.096951\\n .avg_vruntime : 8548.096951\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 1048576\\n .load_avg : 1024\\n .runnable_avg : 704\\n .util_avg : 704\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1024\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324665.634800\\n .se->vruntime : 19577.745258\\n .se->sum_exec_runtime : 9159.811656\\n .se->load.weight : 417798\\n .se->avg.load_avg : 408\\n .se->avg.util_avg : 704\\n .se->avg.runnable_avg : 704\\n\\ncfs_rq[0]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19577.745258\\n .avg_vruntime : 19577.745258\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 417798\\n .load_avg : 408\\n .runnable_avg : 704\\n .util_avg : 704\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 408\\n .tg_load_avg : 833\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324665.634800\\n .se->vruntime : 27181.894144\\n .se->sum_exec_runtime : 9461.979215\\n .se->load.weight : 513588\\n .se->avg.load_avg : 501\\n .se->avg.util_avg : 704\\n .se->avg.runnable_avg : 704\\n\\ncfs_rq[0]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6860.280275\\n .avg_vruntime : 6860.280275\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324358.218520\\n .se->vruntime : 79353.470584\\n .se->sum_exec_runtime : 7479.580271\\n .se->load.weight : 524288\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 837.074252\\n .avg_vruntime : 837.074252\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324378.549827\\n .se->vruntime : 79359.674444\\n .se->sum_exec_runtime : 857.287528\\n .se->load.weight : 28980\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 725.937420\\n .avg_vruntime : 725.937420\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.888639\\n .se->vruntime : 79360.183694\\n .se->sum_exec_runtime : 744.478268\\n .se->load.weight : 160398\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4265.391839\\n .avg_vruntime : 4265.391839\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324261.285225\\n .se->vruntime : 79348.164300\\n .se->sum_exec_runtime : 4266.444615\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 85.178429\\n .avg_vruntime : 85.178429\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.946581\\n .se->vruntime : 79348.760903\\n .se->sum_exec_runtime : 87.638310\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 35.067451\\n .avg_vruntime : 35.067451\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.729852\\n .se->vruntime : 79360.245214\\n .se->sum_exec_runtime : 36.973999\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 79360.245214\\n .avg_vruntime : 79360.245214\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.729852\\n .se->vruntime : 128641.994415\\n .se->sum_exec_runtime : 26744.637694\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 27181.894144\\n .avg_vruntime : 27181.894144\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 513588\\n .load_avg : 501\\n .runnable_avg : 704\\n .util_avg : 704\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 501\\n .tg_load_avg : 875\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324665.634800\\n .se->vruntime : 128696.368082\\n .se->sum_exec_runtime : 13042.352752\\n .se->load.weight : 600384\\n .se->avg.load_avg : 586\\n .se->avg.util_avg : 704\\n .se->avg.runnable_avg : 704\\n\\ncfs_rq[0]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 128696.368082\\n .avg_vruntime : 128696.368082\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 600384\\n .load_avg : 607\\n .runnable_avg : 725\\n .util_avg : 705\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[0]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[0]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n Spool_workqueue_ 3 50.484081 E 53.473963 3.000000 0.010118 3 120 0.000000 0.010118 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_g 4 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_p 5 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-slub_ 6 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-netns 7 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n I kworker/0:0 8 126689.188964 E 126692.143687 3.000000 292.840274 714 120 0.000000 292.840274 0.000000 0.000000 0 0 /\\n I kworker/0:0H 9 61.484472 E 61.518998 3.000000 0.013159 4 100 0.000000 0.013159 0.000000 0.000000 0 0 /\\n I kworker/0:1 10 126776.026294 E 126778.949185 3.000000 728.421111 2809 120 0.000000 728.421111 0.000000 0.000000 0 0 /\\n Ikworker/R-mm_pe 12 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_kthre 13 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_rude_ 14 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_trace 15 429.940627 E 432.911629 3.000000 0.267245 7 120 0.000000 0.267245 0.000000 0.000000 0 0 /\\n S ksoftirqd/0 16 128627.601521 E 128630.600646 3.000000 95.798372 4777 120 0.000000 95.798372 0.000000 0.000000 0 0 /\\n S migration/0 18 0.626525 E 0.123004 0.750000 14.584364 398 0 0.000000 14.584364 0.000000 0.000000 0 0 /\\n S idle_inject/0 19 0.467865 E 0.280188 0.750000 0.005407 3 49 0.000000 0.005407 0.000000 0.000000 0 0 /\\n S cpuhp/0 20 8335.382094 E 8338.316225 3.000000 1.150907 26 120 0.000000 1.150907 0.000000 0.000000 0 0 /\\n Ikworker/R-charg 128 50.473963 E 50.508549 3.000000 0.093293 2 100 0.000000 0.093293 0.000000 0.000000 0 0 /\\n I kworker/0:1H 157 128242.164463 E 128242.199004 3.000000 11.112570 606 100 0.000000 11.112570 0.000000 0.000000 0 0 /\\n S systemd-udevd 351 614.774279 E 617.560668 3.000000 1220.470847 2557 120 0.000000 1220.470847 0.000000 0.000000 0 0 /system.slice/systemd-udevd.service\\n Sirq/193-iwlwifi 535 3646.117837 E 3649.116436 3.000000 4.518420 29 49 0.000000 4.518420 0.000000 0.000000 0 0 /\\n Ikworker/R-cros_ 583 4098.545142 E 4098.579743 3.000000 0.004733 2 100 0.000000 0.004733 0.000000 0.000000 0 0 /\\n S card1-crtc0 586 4105.692415 E 4108.689897 3.000000 0.071775 4 49 0.000000 0.071775 0.000000 0.000000 0 0 /\\n S card1-crtc1 587 4105.694050 E 4108.692415 3.000000 0.002284 2 49 0.000000 0.002284 0.000000 0.000000 0 0 /\\n S card1-crtc2 588 4105.695887 E 4108.694050 3.000000 0.002459 2 49 0.000000 0.002459 0.000000 0.000000 0 0 /\\n S card1-crtc3 589 4105.697510 E 4108.695887 3.000000 0.002237 2 49 0.000000 0.002237 0.000000 0.000000 0 0 /\\n S sd-resolve 762 2.805469 E 4.473698 3.000000 3.300131 16 120 0.000000 3.300131 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n I kworker/0:3 754 126846.374958 E 126849.361353 3.000000 568.432287 1742 120 0.000000 568.432287 0.000000 0.000000 0 0 /\\n Saccounts-daemon 790 14.253092 E 16.355003 3.000000 133.580546 272 120 0.000000 133.580546 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 936 13.969662 E 16.117388 3.000000 134.487699 479 120 0.000000 134.487699 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S polkitd 812 85.178429 E 88.130783 3.000000 682.212791 1299 120 0.000000 682.212791 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S gmain 1041 0.924491 E 2.068097 3.000000 0.059449 2 120 0.000000 0.059449 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S cleanup 1103 7.256534 E 10.181598 3.000000 0.315513 4 120 0.000000 0.315513 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S avahi-daemon 893 0.811987 E 2.186352 3.000000 0.137179 4 120 0.000000 0.137179 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S gdbus 939 360.197026 E 363.094220 3.000000 585.440633 3745 120 0.000000 585.440633 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S rs:main Q:Reg 956 35.067451 E 38.062045 3.000000 138.908267 2857 120 0.000000 138.908267 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S boltd 1085 19.981677 E 22.867914 3.000000 219.282747 1270 120 0.000000 219.282747 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1098 5.410405 E 7.152417 3.000000 21.180934 75 120 0.000000 21.180934 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1473 725.937420 E 728.934254 3.000000 285.410739 6367 120 0.000000 285.410739 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1475 0.003081 E 2.997094 3.000000 0.496009 16 120 0.000000 0.496009 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gmain 1483 3.022894 E 5.996257 3.000000 0.026637 1 120 0.000000 0.026637 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pw-data-loop 1534 8.779134 E 11.773129 3.000000 0.034056 3 79 0.000000 0.034056 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1569 1880.003146 E 1881.958162 3.000000 41.683534 431 120 0.000000 41.683534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1554 9.640752 E 12.603939 3.000000 0.065887 2 120 0.000000 0.065887 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1556 10.631341 E 13.583311 3.000000 0.917172 22 120 0.000000 0.917172 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fusermount3 1564 9.813596 E 12.812048 3.000000 0.930269 5 120 0.000000 0.930269 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1601 2760.680386 E 2763.417879 3.000000 833.240447 2479 120 0.000000 833.240447 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1603 2761.147784 E 2764.087912 3.000000 18.669259 179 120 0.000000 18.669259 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1609 2761.585320 E 2764.398357 3.000000 19.709195 165 120 0.000000 19.709195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 2416 374.234438 E 377.219668 3.000000 35.780266 1608 120 0.000000 35.780266 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2524 832.307398 E 834.408909 3.000000 426.475701 8370 120 0.000000 426.475701 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1662 0.502217 E 3.431756 3.000000 2.754300 28 120 0.000000 2.754300 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S docker-init 2511 58.555347 E 61.430356 3.000000 120.648548 1367 120 0.000000 120.648548 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2764 56.187277 E 57.546079 3.000000 43.581546 203 120 0.000000 43.581546 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/0:4 2998 126703.903997 E 126706.783131 3.000000 273.077760 1177 120 0.000000 273.077760 0.000000 0.000000 0 0 /\\n I kworker/0:5 2999 126687.487144 E 126690.445286 3.000000 139.338476 487 120 0.000000 139.338476 0.000000 0.000000 0 0 /\\n D kworker/0:6 3000 128627.009489 E 128630.008737 3.000000 457.842204 1706 120 0.000000 457.842204 0.000000 0.000000 0 0 /\\n S Xwayland 3030 823.312878 E 826.243091 3.000000 73.675981 404 120 0.000000 73.675981 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:sh0 3265 798.437067 E 801.432850 3.000000 0.043697 5 120 0.000000 0.043697 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3082 846.693163 E 849.149172 3.000000 0.987458 8 120 0.000000 0.987458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3105 850.647701 E 853.480247 3.000000 0.288156 7 120 0.000000 0.288156 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3117 753.415062 E 755.693222 3.000000 0.802525 2 120 0.000000 0.802525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3122 46.671710 E 49.646140 3.000000 0.025570 1 120 0.000000 0.025570 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3133 795.342480 E 798.312721 3.000000 2.282013 41 120 0.000000 2.282013 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3128 789.541948 E 792.521534 3.000000 0.623284 13 120 0.000000 0.623284 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-print-notif 3109 794.936793 E 797.917349 3.000000 26.108835 70 120 0.000000 26.108835 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3157 53.427679 E 56.401651 3.000000 0.026028 1 120 0.000000 0.026028 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-a11y-settin 3163 794.888778 E 797.870455 3.000000 6.166578 47 120 0.000000 6.166578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3176 794.880654 E 797.815559 3.000000 5.039055 51 120 0.000000 5.039055 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3340 1927.697033 E 1927.760897 3.000000 47.743714 9 120 0.000000 47.743714 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3349 808.794366 E 811.794366 3.000000 10.264307 5 120 0.000000 10.264307 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x11:sh0 3377 816.300810 E 819.286174 3.000000 0.014636 1 120 0.000000 0.014636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter:traceq0 3381 817.363254 E 1021.171202 3.000000 0.084925 1 139 0.000000 0.084925 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3386 818.412051 E 821.351989 3.000000 0.093107 2 120 0.000000 0.093107 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3387 817.414689 E 820.396299 3.000000 0.018390 1 120 0.000000 0.018390 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3389 818.351989 E 821.340314 3.000000 0.199289 7 120 0.000000 0.199289 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3366 811.073812 E 814.040000 3.000000 0.033812 1 120 0.000000 0.033812 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3393 819.206920 E 822.175436 3.000000 0.075475 3 120 0.000000 0.075475 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3465 4.873835 E 7.857378 3.000000 12.993458 14 120 0.000000 12.993458 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3507 5.151991 E 8.096082 3.000000 0.172631 6 120 0.000000 0.172631 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3506 5.696636 E 8.662738 3.000000 0.223461 7 120 0.000000 0.223461 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-permission- 3549 8.115189 E 11.087827 3.000000 4.193195 7 120 0.000000 4.193195 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/0:9 3760 126739.555664 E 126742.477575 3.000000 3.249723 81 120 0.000000 3.249723 0.000000 0.000000 0 0 /\\n I kworker/0:10 3801 126689.323468 E 126692.293616 3.000000 1.711604 56 120 0.000000 1.711604 0.000000 0.000000 0 0 /\\n I kworker/0:12 3835 120781.236961 E 120784.182319 3.000000 300.026588 925 120 0.000000 300.026588 0.000000 0.000000 0 0 /\\n I kworker/0:13 3878 126689.374967 E 126692.350831 3.000000 230.628759 1502 120 0.000000 230.628759 0.000000 0.000000 0 0 /\\n I kworker/0:14 3879 126771.030945 E 126773.968650 3.000000 405.732664 2011 120 0.000000 405.732664 0.000000 0.000000 0 0 /\\n I kworker/0:16 4875 126789.192627 E 126789.298899 3.000000 252.303933 1088 120 0.000000 252.303933 0.000000 0.000000 0 0 /\\n S docker 5103 178.964001 E 181.920101 3.000000 3.264490 27 120 0.000000 3.264490 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5108 142.053576 E 144.677977 3.000000 0.445408 2 120 0.000000 0.445408 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5125 145.841713 E 148.838155 3.000000 2.587746 33 120 0.000000 2.587746 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5129 179.154887 E 182.087159 3.000000 45.344158 410 120 0.000000 45.344158 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5138 147.883780 E 150.508821 3.000000 3.072613 60 120 0.000000 3.072613 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5207 380.169185 E 383.159727 3.000000 1.776241 5 120 0.000000 1.776241 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5209 380.159727 E 383.144516 3.000000 0.125477 4 120 0.000000 0.125477 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5265 317.900081 E 320.886003 3.000000 0.088538 5 120 0.000000 0.088538 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5268 692.688624 E 695.640354 3.000000 19.142977 85 120 0.000000 19.142977 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5269 692.640354 E 694.398098 3.000000 63.999147 159 120 0.000000 63.999147 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_close_file 5371 0.996541 E 1.988580 3.000000 0.014879 1 120 0.000000 0.014879 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S bio_lazy_free 5373 0.971337 E 2.003459 3.000000 0.025204 2 120 0.000000 0.025204 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5402 391.629910 E 394.593552 3.000000 0.036358 1 120 0.000000 0.036358 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5404 440.410950 E 443.311576 3.000000 0.200935 4 120 0.000000 0.200935 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5426 321.885108 E 324.879367 3.000000 0.005741 1 120 0.000000 0.005741 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5459 331.501159 E 334.467439 3.000000 1.138122 31 120 0.000000 1.138122 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bash 5535 0.374091 E 2.004330 3.000000 1.369761 2 120 0.000000 1.369761 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5536 6852.231549 E 6854.544928 3.000000 707.815377 1012 120 0.000000 707.815377 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5560 1.881197 E 4.297811 3.000000 87.562664 10 120 0.000000 87.562664 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5567 3.450638 E 6.377025 3.000000 1.003093 12 120 0.000000 1.003093 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5598 1096.827304 E 1099.827304 3.000000 67.403138 16 120 0.000000 67.403138 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5664 1810.667125 E 1813.659738 3.000000 48.028793 19 120 0.000000 48.028793 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6353 2962.498940 E 2965.273620 3.000000 9.925404 79 120 0.000000 9.925404 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6354 2962.532768 E 2965.492613 3.000000 10.767032 25 120 0.000000 10.767032 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6356 5639.747296 E 5641.131905 3.000000 1.752954 5 120 0.000000 1.752954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5613 1154.546552 E 1157.489793 3.000000 50.490838 17 120 0.000000 50.490838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5688 1886.290395 E 1889.290395 3.000000 33.583605 11 120 0.000000 33.583605 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5689 1886.727601 E 1889.716108 3.000000 34.006642 14 120 0.000000 34.006642 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5691 1887.153050 E 1890.141066 3.000000 34.415056 12 120 0.000000 34.415056 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5605 1128.699724 E 1130.733412 3.000000 59.322321 20 120 0.000000 59.322321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5674 1837.950616 E 1840.941193 3.000000 34.976674 14 120 0.000000 34.976674 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5676 1842.845926 E 1842.887818 3.000000 39.859633 14 120 0.000000 39.859633 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5645 1691.475316 E 1694.467524 3.000000 28.433086 12 120 0.000000 28.433086 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5646 1692.040496 E 1695.034677 3.000000 28.990755 9 120 0.000000 28.990755 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5639 1491.853459 E 1492.774908 3.000000 56.154692 21 120 0.000000 56.154692 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5706 1914.066082 E 1916.114488 3.000000 31.948839 9 120 0.000000 31.948839 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5708 1917.130715 E 1920.121651 3.000000 35.002311 12 120 0.000000 35.002311 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5626 1181.663383 E 1181.681283 3.000000 50.832084 14 120 0.000000 50.832084 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5655 1726.481090 E 1729.473436 3.000000 36.998391 11 120 0.000000 36.998391 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5717 1958.888518 E 1961.882843 3.000000 34.652408 11 120 0.000000 34.652408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6347 2960.545968 E 2963.333661 3.000000 9.357649 17 120 0.000000 9.357649 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6348 5638.050283 E 5638.597957 3.000000 2.607295 5 120 0.000000 2.607295 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5724 1963.859694 E 1966.846384 3.000000 63.747694 20 120 0.000000 63.747694 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S pool-spawner 7553 0.748291 E 2.091709 3.000000 0.160000 1 120 0.000000 0.160000 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n S gdbus 7555 32.101060 E 34.926556 3.000000 42.383895 2391 120 0.000000 42.383895 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/0:7 7599 126859.671227 E 126862.671227 3.000000 80.774835 201 120 0.000000 80.774835 0.000000 0.000000 0 0 /\\n I kworker/0:2 7632 128656.789396 E 128659.779088 3.000000 40.726931 73 120 0.000000 40.726931 0.000000 0.000000 0 0 /\\n S python3 8203 8114.633566 E 8117.588711 3.000000 10.322239 126 120 0.000000 10.322239 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8293 8245.173424 E 8246.089296 3.000000 110.841164 6 120 0.000000 110.841164 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 8207 416.515444 E 419.452992 3.000000 4.975414 17 120 0.000000 4.975414 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n>R python3 8437 8549.097082 E 8551.096951 3.000000 24.592538 1 120 0.000000 24.592538 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#1, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 225312\\n .nr_uninterruptible : 44\\n .next_balance : 4295.991779\\n .curr->pid : 0\\n .clock : 1324665.746366\\n .clock_task : 1324665.746366\\n .avg_idle : 769738\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[1]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6749.864742\\n .avg_vruntime : 6749.864742\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324614.340454\\n .se->vruntime : 17448.114936\\n .se->sum_exec_runtime : 6758.801041\\n .se->load.weight : 560789\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 17448.114936\\n .avg_vruntime : 17448.114936\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 833\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324614.340454\\n .se->vruntime : 31429.051695\\n .se->sum_exec_runtime : 6996.085048\\n .se->load.weight : 581590\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5542.008717\\n .avg_vruntime : 5542.008717\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324618.701711\\n .se->vruntime : 82134.096320\\n .se->sum_exec_runtime : 6080.952558\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 849.919835\\n .avg_vruntime : 849.919835\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.720827\\n .se->vruntime : 82132.834369\\n .se->sum_exec_runtime : 859.418038\\n .se->load.weight : 172767\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 654.604587\\n .avg_vruntime : 654.604587\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.330133\\n .se->vruntime : 82132.671910\\n .se->sum_exec_runtime : 672.722492\\n .se->load.weight : 320276\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1584.375115\\n .avg_vruntime : 1584.375115\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324635.295875\\n .se->vruntime : 82134.147276\\n .se->sum_exec_runtime : 1586.828649\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 72.409135\\n .avg_vruntime : 72.409135\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.913492\\n .se->vruntime : 82121.805049\\n .se->sum_exec_runtime : 73.711852\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/accounts-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 54.786619\\n .avg_vruntime : 54.786619\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.735277\\n .se->vruntime : 82134.187944\\n .se->sum_exec_runtime : 56.744759\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4596.640169\\n .avg_vruntime : 4596.640169\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324663.284628\\n .se->vruntime : 82134.500962\\n .se->sum_exec_runtime : 4597.688745\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 82134.500962\\n .avg_vruntime : 82134.500962\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324663.284628\\n .se->vruntime : 127016.086651\\n .se->sum_exec_runtime : 30214.918630\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 2\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[1]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 31429.051695\\n .avg_vruntime : 31429.051695\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 875\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324614.340454\\n .se->vruntime : 127019.412401\\n .se->sum_exec_runtime : 13224.071841\\n .se->load.weight : 453897\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 127016.086651\\n .avg_vruntime : 127016.086651\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 29\\n .runnable_avg : 15\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[1]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[1]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/1 21 7932.094818 E 7935.015583 3.000000 0.356355 26 120 0.000000 0.356355 0.000000 0.000000 0 0 /\\n S idle_inject/1 22 -1.046696 E 0.298424 0.750000 0.006020 3 49 0.000000 0.006020 0.000000 0.000000 0 0 /\\n S migration/1 23 0.056269 E 0.693236 0.750000 179.527644 384 0 0.000000 179.527644 0.000000 0.000000 0 0 /\\n S ksoftirqd/1 24 127015.554104 E 127018.550007 3.000000 32.117328 808 120 0.000000 32.117328 0.000000 0.000000 0 0 /\\n I kworker/1:0H 26 21.947051 E 21.981566 3.000000 0.017963 4 100 0.000000 0.017963 0.000000 0.000000 0 0 /\\n Ikworker/R-write 70 -1.034874 E -1.000265 3.000000 0.000849 2 100 0.000000 0.000849 0.000000 0.000000 0 0 /\\n S ksmd 72 -1.034874 E 8.135275 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/9-acpi 79 0.888458 E 2.110113 3.000000 65.916327 202 49 0.000000 65.916327 0.000000 0.000000 0 0 /\\n I kworker/u17:0 114 127015.701593 E 127015.735911 3.000000 367.272954 7397 100 0.000000 367.272954 0.000000 0.000000 0 0 /\\n I kworker/1:1H 185 124788.774911 E 124788.809503 3.000000 8.528426 494 100 0.000000 8.528426 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 221 392.789305 E 392.823904 3.000000 0.005027 2 100 0.000000 0.005027 0.000000 0.000000 0 0 /\\n Ikworker/R-crypt 531 2507.555715 E 2507.590316 3.000000 0.005940 2 100 0.000000 0.005940 0.000000 0.000000 0 0 /\\n Sirq/194-iwlwifi 536 3740.895044 E 3743.891071 3.000000 27.620509 158 49 0.000000 27.620509 0.000000 0.000000 0 0 /\\n S gmain 930 54.786619 E 57.782363 3.000000 130.960955 1296 120 0.000000 130.960955 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gmain 910 0.472046 E 3.459363 3.000000 0.047699 2 120 0.000000 0.047699 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S gdbus 1047 72.409135 E 75.261401 3.000000 218.224790 983 120 0.000000 218.224790 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S gmain 923 3.433860 E 6.421449 3.000000 0.067212 2 120 0.000000 0.067212 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S gdbus 924 7.269924 E 9.126327 3.000000 20.415944 94 120 0.000000 20.415944 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 925 255.291839 E 258.236447 3.000000 225.127089 598 120 0.000000 225.127089 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 3003 253.936887 E 256.669075 3.000000 106.640751 139 120 0.000000 106.640751 0.000000 0.000000 0 0 /system.slice/snapd.service\\n Sswitcheroo-cont 836 7.518062 E 10.434047 3.000000 44.143872 152 120 0.000000 44.143872 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 851 1584.375115 E 1587.358689 3.000000 3857.802786 52748 120 0.000000 3857.802786 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 856 2.227776 E 5.225721 3.000000 94.523149 368 120 0.000000 94.523149 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 1119 504.380725 E 506.777333 3.000000 1358.892676 690 120 0.000000 1358.892676 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S rsyslogd 919 38.221763 E 41.093768 3.000000 30.598632 92 120 0.000000 30.598632 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S in:imklog 955 39.351695 E 42.276820 3.000000 16.451910 169 120 0.000000 16.451910 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n I kworker/1:3 971 125193.340510 E 125196.332546 3.000000 129.783581 1600 120 0.000000 129.783581 0.000000 0.000000 0 0 /\\n S pool-spawner 1106 14.206991 E 17.144135 3.000000 0.125154 3 120 0.000000 0.125154 0.000000 0.000000 0 0 /system.slice/upower.service\\n S gmain 1107 14.144135 E 17.122581 3.000000 0.021554 1 120 0.000000 0.021554 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1114 0.963909 E 3.921923 3.000000 3.656283 102 120 0.000000 3.656283 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1118 0.488564 E 2.489338 3.000000 0.204262 22 120 0.000000 0.204262 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S cupsd 1439 6.107646 E 8.696552 3.000000 24.305730 98 120 0.000000 24.305730 0.000000 0.000000 0 0 /system.slice/cups.service\\n S containerd 1459 652.099478 E 655.088230 3.000000 215.981761 7406 120 0.000000 215.981761 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1477 654.604587 E 657.602095 3.000000 322.483773 5885 120 0.000000 322.483773 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdm3 1469 28.866371 E 31.777617 3.000000 29.629979 80 120 0.000000 29.629979 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pipewire 1512 16.254098 E 16.510392 3.000000 32.093335 224 109 0.000000 32.093335 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1527 11.267137 E 14.210616 3.000000 0.188517 6 120 0.000000 0.188517 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1541 11.066776 E 14.063472 3.000000 0.112549 13 79 0.000000 0.112549 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1551 11.210616 E 14.180555 3.000000 0.056827 2 120 0.000000 0.056827 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1553 14.775624 E 17.722860 3.000000 0.661282 10 120 0.000000 0.661282 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1526 0.567104 E 2.363017 3.000000 0.680927 15 120 0.000000 0.680927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgnome-session-b 1546 4026.427161 E 4028.816499 3.000000 72.220451 386 120 0.000000 72.220451 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1555 11.411258 E 14.381068 3.000000 0.030190 1 120 0.000000 0.030190 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1559 11.464077 E 14.455527 3.000000 0.052819 2 120 0.000000 0.052819 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dconf worker 1602 241.182424 E 244.164119 3.000000 1.813576 72 120 0.000000 1.813576 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1606 5149.248826 E 5152.191723 3.000000 18.999233 166 120 0.000000 18.999233 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S KMS thread 1618 4040.643096 E 4043.470042 3.000000 312.191032 825 79 0.000000 312.191032 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-s:disk$0 3004 8.656514 E 213.116341 3.000000 0.090177 1 139 0.000000 0.090177 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3014 167.316606 E 170.276345 3.000000 71.365629 133 120 0.000000 71.365629 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1670 304.900140 E 305.802357 3.000000 107.084760 2032 120 0.000000 107.084760 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1672 144.769731 E 147.755909 3.000000 0.723957 32 120 0.000000 0.723957 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2406 845.572690 E 848.566357 3.000000 306.956631 6048 120 0.000000 306.956631 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2525 849.919835 E 852.914882 3.000000 164.873503 4200 120 0.000000 164.873503 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2526 305.308381 E 307.900140 3.000000 3.053644 65 120 0.000000 3.053644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2527 290.625017 E 293.618099 3.000000 99.602375 2905 120 0.000000 99.602375 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2422 609.578690 E 611.524400 3.000000 86.348213 234 120 0.000000 86.348213 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 3726 609.747329 E 612.578690 3.000000 70.170828 140 120 0.000000 70.170828 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2814 21.318230 E 23.345470 3.000000 21.556769 24 120 0.000000 21.556769 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3024 60.304780 E 63.271147 3.000000 0.033633 1 120 0.000000 0.033633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:gdrv0 3269 566.947492 E 569.942158 3.000000 0.048510 3 120 0.000000 0.048510 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3038 563.666293 E 566.641667 3.000000 4.306399 54 120 0.000000 4.306399 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3081 645.782212 E 648.340009 3.000000 0.896962 8 120 0.000000 0.896962 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3085 646.371136 E 648.782212 3.000000 1.123443 8 120 0.000000 1.123443 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-wacom 3091 644.537177 E 647.284944 3.000000 366.045403 439 120 0.000000 366.045403 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3118 160.094256 E 163.069340 3.000000 0.024916 1 120 0.000000 0.024916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-color 3095 5089.154930 E 5091.950816 3.000000 137.053567 72 120 0.000000 137.053567 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-keyboard 3100 648.247208 E 651.166836 3.000000 121.441087 43 120 0.000000 121.441087 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3123 160.645856 E 163.586872 3.000000 0.058984 1 120 0.000000 0.058984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-smartcard 3119 563.386800 E 566.368384 3.000000 7.380501 47 120 0.000000 7.380501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3141 163.322124 E 166.295023 3.000000 0.027101 1 120 0.000000 0.027101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3152 563.387981 E 566.317884 3.000000 5.186420 57 120 0.000000 5.186420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-datetime 3129 563.405186 E 566.383009 3.000000 11.094354 49 120 0.000000 11.094354 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3201 553.536426 E 556.465699 3.000000 0.162455 3 120 0.000000 0.162455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3219 184.113084 E 187.101602 3.000000 0.087152 2 120 0.000000 0.087152 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3292 378.083610 E 380.401752 3.000000 0.681858 1 120 0.000000 0.681858 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3342 4042.206196 E 4044.992366 3.000000 1.492101 12 120 0.000000 1.492101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3345 634.080030 E 637.037078 3.000000 79.580450 171 120 0.000000 79.580450 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-:disk$0 3376 606.974571 E 811.460271 3.000000 0.041875 2 139 0.000000 0.041875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x:gdrv0 3383 611.246200 E 614.198837 3.000000 0.047363 1 120 0.000000 0.047363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-portal 3364 5132.065958 E 5135.051107 3.000000 3.631144 27 120 0.000000 3.631144 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3382 611.727160 E 614.717547 3.000000 0.569298 17 120 0.000000 0.569298 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S sshd 3437 7.898835 E 10.142566 3.000000 77.928271 33 120 0.000000 77.928271 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S pipewire-pulse 3475 5.257457 E 8.249472 3.000000 16.156993 25 120 0.000000 16.156993 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sgnome-keyring-d 4742 60.402025 E 63.218079 3.000000 7.402169 26 120 0.000000 7.402169 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5111 76.881186 E 79.675463 3.000000 2.727325 5 120 0.000000 2.727325 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5128 94.298837 E 97.251569 3.000000 23.445852 267 120 0.000000 23.445852 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S redis-server 5282 4596.640169 E 4599.327151 3.000000 25991.945570 9350 120 0.000000 25991.945570 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5395 807.794302 E 810.740031 3.000000 4.487222 188 120 0.000000 4.487222 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5427 624.965436 E 627.173595 3.000000 63.284495 166 120 0.000000 63.284495 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5528 290.121910 E 293.092020 3.000000 0.588842 12 120 0.000000 0.588842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5561 0.497753 E 2.458558 3.000000 8.561149 19 120 0.000000 8.561149 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5600 849.366916 E 852.353840 3.000000 39.919317 22 120 0.000000 39.919317 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5665 1661.043325 E 1661.083812 3.000000 55.912313 17 120 0.000000 55.912313 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5616 882.220441 E 885.175429 3.000000 29.865267 12 120 0.000000 29.865267 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5618 881.421942 E 884.354331 3.000000 29.053625 11 120 0.000000 29.053625 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5687 1785.074279 E 1788.064636 3.000000 41.826708 13 120 0.000000 41.826708 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5697 1797.414029 E 1798.448640 3.000000 30.959422 9 120 0.000000 30.959422 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5700 1798.495212 E 1801.486113 3.000000 32.018896 11 120 0.000000 32.018896 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5633 1752.220599 E 1755.211488 3.000000 57.584088 17 120 0.000000 57.584088 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6334 3165.588717 E 3168.411649 3.000000 10.885334 28 120 0.000000 10.885334 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5715 1835.502622 E 1838.493962 3.000000 42.959724 13 120 0.000000 42.959724 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5577 5542.008717 E 5544.896288 3.000000 6432.030962 10271 120 0.000000 6432.030962 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n I kworker/1:5 5970 127015.716539 E 127018.701593 3.000000 134.399560 2387 120 0.000000 134.399560 0.000000 0.000000 0 0 /\\n S postgres 6358 197.555296 E 200.474989 3.000000 18.432057 24 120 0.000000 18.432057 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S fwupd 7549 111.721430 E 112.376821 3.000000 1230.682800 1595 120 0.000000 1230.682800 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/1:0 7648 120357.505373 E 120360.493702 3.000000 0.096133 4 120 0.000000 0.096133 0.000000 0.000000 0 0 /\\n I kworker/1:1 7649 120357.513029 E 120360.510348 3.000000 0.048300 4 120 0.000000 0.048300 0.000000 0.000000 0 0 /\\n S python3 8292 6682.328387 E 6684.258674 3.000000 110.258989 13 120 0.000000 110.258989 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#2, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 268629\\n .nr_uninterruptible : -235\\n .next_balance : 4295.991777\\n .curr->pid : 0\\n .clock : 1324661.656255\\n .clock_task : 1324661.656255\\n .avg_idle : 774847\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[2]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1523.793195\\n .avg_vruntime : 1523.793195\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324609.176744\\n .se->vruntime : 4335.702872\\n .se->sum_exec_runtime : 1537.865458\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12630.786590\\n .avg_vruntime : 12630.786590\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324638.004605\\n .se->vruntime : 19135.076576\\n .se->sum_exec_runtime : 3312.610299\\n .se->load.weight : 317781\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6156.271845\\n .avg_vruntime : 6156.271845\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324576.386016\\n .se->vruntime : 88242.856445\\n .se->sum_exec_runtime : 6638.734438\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 779.039145\\n .avg_vruntime : 779.039145\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.228311\\n .se->vruntime : 88242.950823\\n .se->sum_exec_runtime : 793.960124\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 751.979175\\n .avg_vruntime : 751.979175\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.893395\\n .se->vruntime : 88242.267135\\n .se->sum_exec_runtime : 768.231824\\n .se->load.weight : 99758\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15.556752\\n .avg_vruntime : 15.556752\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.920028\\n .se->vruntime : 88230.953999\\n .se->sum_exec_runtime : 17.362547\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 88242.950823\\n .avg_vruntime : 88242.950823\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.228311\\n .se->vruntime : 128255.626793\\n .se->sum_exec_runtime : 31695.689498\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[2]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4335.702872\\n .avg_vruntime : 4335.702872\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324609.176744\\n .se->vruntime : 19130.963501\\n .se->sum_exec_runtime : 1791.889572\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19135.076576\\n .avg_vruntime : 19135.076576\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324638.004605\\n .se->vruntime : 128255.523355\\n .se->sum_exec_runtime : 5566.956933\\n .se->load.weight : 299453\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 128255.635863\\n .avg_vruntime : 128255.635863\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[2]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 1.477168\\n .rt_runtime : 950.000000\\n\\ndl_rq[2]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/2 27 10232.512266 E 10235.476962 3.000000 0.310145 26 120 0.000000 0.310145 0.000000 0.000000 0 0 /\\n S idle_inject/2 28 -1.048574 E 0.451426 1.500000 0.000962 3 49 0.000000 0.000962 0.000000 0.000000 0 0 /\\n S migration/2 29 0.100700 E 0.850203 0.750000 180.173185 402 0 0.000000 180.173185 0.000000 0.000000 0 0 /\\n S ksoftirqd/2 30 128246.591654 E 128249.578952 3.000000 38.766629 1791 120 0.000000 38.766629 0.000000 0.000000 0 0 /\\n I kworker/2:0H 32 103.304456 E 103.338997 3.000000 0.014834 5 100 0.000000 0.014834 0.000000 0.000000 0 0 /\\n S oom_reaper 69 -1.013776 E 1.986224 3.000000 0.000042 2 120 0.000000 0.000042 0.000000 0.000000 0 0 /\\n I kworker/2:1H 195 126941.031562 E 126941.066101 3.000000 7.875566 384 100 0.000000 7.875566 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 218 470.398502 E 470.433104 3.000000 0.005099 2 100 0.000000 0.005099 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 219 470.401038 E 470.435644 3.000000 0.002850 2 100 0.000000 0.002850 0.000000 0.000000 0 0 /\\n I kworker/2:3 223 126812.260207 E 126815.176754 3.000000 1522.428695 16094 120 0.000000 1522.428695 0.000000 0.000000 0 0 /\\n S irq/191-mei_me 520 2425.538335 E 2428.535129 3.000000 2.494755 62 49 0.000000 2.494755 0.000000 0.000000 0 0 /\\n Sirq/195-iwlwifi 538 3925.397830 E 3928.395543 3.000000 3516.223243 18050 49 0.000000 3516.223243 0.000000 0.000000 0 0 /\\n S systemd-oomd 660 385.419204 E 388.352283 3.000000 1385.278469 1341 120 0.000000 1385.278469 0.000000 0.000000 0 0 /system.slice/systemd-oomd.service\\n S snapd 854 181.532524 E 181.847161 3.000000 74.669991 322 120 0.000000 74.669991 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S thermald 844 15.556752 E 18.504721 3.000000 40.371439 476 120 0.000000 40.371439 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S pool-spawner 876 20.742468 E 23.348156 3.000000 0.617271 5 120 0.000000 0.617271 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S NetworkManager 898 139.671529 E 142.606976 3.000000 1463.375880 2263 120 0.000000 1463.375880 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n Ikworker/R-ipmi- 913 6961.772658 E 6961.807253 3.000000 0.015936 2 100 0.000000 0.015936 0.000000 0.000000 0 0 /\\n S pool-spawner 1100 6.890317 E 9.858408 3.000000 0.106301 5 120 0.000000 0.106301 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1116 2.347087 E 5.294553 3.000000 0.174658 34 120 0.000000 0.174658 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sh 1121 12.505172 E 15.381318 3.000000 5.274342 15 120 0.000000 5.274342 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1458 751.367774 E 754.361488 3.000000 358.991175 5527 120 0.000000 358.991175 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1460 356.789566 E 359.222037 3.000000 226.995066 5509 120 0.000000 226.995066 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1461 0.881565 E 2.097726 3.000000 0.020709 1 120 0.000000 0.020709 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1474 751.979175 E 754.974204 3.000000 131.743207 5880 120 0.000000 131.743207 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sgdm-session-wor 1492 0.021664 E 2.378098 3.000000 7.685172 93 120 0.000000 7.685172 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 1500 0.906613 E 1.951424 3.000000 0.141963 1 120 0.000000 0.141963 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pw-data-loop 1536 3.469723 E 6.464575 3.000000 0.024781 3 79 0.000000 0.024781 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sgdm-wayland-ses 1517 0.890985 E 3.860521 3.000000 4.316422 18 120 0.000000 4.316422 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1565 410.548304 E 413.512933 3.000000 0.246882 6 120 0.000000 0.246882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 1590 1523.793195 E 1526.719013 3.000000 14632.772974 14667 120 0.000000 14632.772974 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1608 1522.411810 E 1525.298219 3.000000 19.846417 197 120 0.000000 19.846417 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shel:sh0 3005 31.707816 E 34.581346 3.000000 0.126470 1 120 0.000000 0.126470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3012 33.382173 E 238.030347 3.000000 0.007470 1 139 0.000000 0.007470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3013 33.387365 E 36.382173 3.000000 0.005192 1 120 0.000000 0.005192 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3276 121.709419 E 124.678683 3.000000 0.030736 1 120 0.000000 0.030736 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1666 779.039145 E 782.032579 3.000000 94.914208 2486 120 0.000000 94.914208 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1699 777.986370 E 780.968381 3.000000 285.780312 8382 120 0.000000 285.780312 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2528 772.452256 E 774.538682 3.000000 175.553896 5611 120 0.000000 175.553896 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2721 10.646865 E 13.502689 3.000000 11.493527 319 120 0.000000 11.493527 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2722 1.991100 E 4.985710 3.000000 0.640714 24 120 0.000000 0.640714 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Ikworker/R-tls-s 2863 22769.817423 E 22769.852008 3.000000 0.015449 2 100 0.000000 0.015449 0.000000 0.000000 0 0 /\\n S dconf worker 3025 46.149564 E 49.142692 3.000000 0.447278 11 120 0.000000 0.447278 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S colord 3035 21.580781 E 24.092855 3.000000 92.765102 187 120 0.000000 92.765102 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gmain 3041 0.737224 E 2.242460 3.000000 0.155686 2 120 0.000000 0.155686 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gjs 3078 487.170160 E 488.823207 3.000000 59.101805 83 120 0.000000 59.101805 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3107 1521.896308 E 1524.603955 3.000000 403.232411 1163 120 0.000000 403.232411 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3130 407.533407 E 410.525336 3.000000 0.766318 14 120 0.000000 0.766318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3187 98.848084 E 101.823175 3.000000 0.095370 2 120 0.000000 0.095370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-media-keys 3146 953.008761 E 955.920109 3.000000 135.098877 137 120 0.000000 135.098877 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3202 99.517382 E 102.480455 3.000000 0.036927 1 120 0.000000 0.036927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3344 968.712808 E 971.613739 3.000000 1.076193 11 120 0.000000 1.076193 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3354 424.550236 E 427.529183 3.000000 0.083867 3 120 0.000000 0.083867 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3369 435.646524 E 438.628102 3.000000 0.253340 7 120 0.000000 0.253340 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3372 1521.603955 E 1524.526218 3.000000 1.475187 20 120 0.000000 1.475187 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3379 436.877871 E 439.851438 3.000000 0.116796 2 120 0.000000 0.116796 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S systemd 3449 62.910189 E 65.662464 3.000000 864.349949 570 120 0.000000 864.349949 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n Ssnapd-desktop-i 3468 39.501067 E 42.224366 3.000000 18.969394 43 120 0.000000 18.969394 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S docker 5101 228.355537 E 231.311406 3.000000 12.741297 224 120 0.000000 12.741297 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5107 171.690383 E 174.331107 3.000000 0.500947 6 120 0.000000 0.500947 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5124 193.061150 E 195.671496 3.000000 8.594148 49 120 0.000000 8.594148 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5211 726.144252 E 729.124510 3.000000 28.844753 724 120 0.000000 28.844753 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5263 730.954232 E 733.857223 3.000000 8.509141 626 120 0.000000 8.509141 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6328 612.990249 E 615.969993 3.000000 1.643493 33 120 0.000000 1.643493 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 6331 612.124173 E 615.017979 3.000000 1.515141 12 120 0.000000 1.515141 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5408 390.450618 E 393.442277 3.000000 0.052751 3 120 0.000000 0.052751 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5420 731.447433 E 734.397856 3.000000 10.948255 643 120 0.000000 10.948255 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 8195 731.397856 E 734.166122 3.000000 0.382943 2 120 0.000000 0.382943 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6179 698.463026 E 701.068142 3.000000 60.576483 108 120 0.000000 60.576483 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5565 27.505903 E 30.461672 3.000000 0.909916 7 120 0.000000 0.909916 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5599 1243.917125 E 1246.899112 3.000000 28.626410 23 120 0.000000 28.626410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5602 1243.759704 E 1246.752160 3.000000 26.340665 20 120 0.000000 26.340665 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5603 1244.273695 E 1246.859634 3.000000 28.925019 24 120 0.000000 28.925019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5667 2030.812810 E 2033.802093 3.000000 56.273299 24 120 0.000000 56.273299 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5571 6156.213878 E 6159.120920 3.000000 6958.107229 10422 120 0.000000 6958.107229 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5615 1308.530001 E 1309.304684 3.000000 24.830628 15 120 0.000000 24.830628 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5573 6156.271845 E 6159.213878 3.000000 6798.270832 9913 120 0.000000 6798.270832 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5643 1834.821469 E 1835.836851 3.000000 61.193099 20 120 0.000000 61.193099 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6952 5678.893157 E 5679.334814 3.000000 2.606224 4 120 0.000000 2.606224 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5634 1604.905533 E 1607.825141 3.000000 53.244457 20 120 0.000000 53.244457 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5704 2161.079209 E 2164.073284 3.000000 28.505268 11 120 0.000000 28.505268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5705 2161.257548 E 2162.782519 3.000000 28.668075 12 120 0.000000 28.668075 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5710 2162.173294 E 2164.602104 3.000000 29.547294 16 120 0.000000 29.547294 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6333 3512.110147 E 3514.864100 3.000000 10.868019 29 120 0.000000 10.868019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5575 6156.120920 E 6159.039849 3.000000 6669.060312 10133 120 0.000000 6669.060312 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5630 1334.192609 E 1335.792534 3.000000 36.310197 11 120 0.000000 36.310197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5680 2127.508196 E 2130.499659 3.000000 35.630276 19 120 0.000000 35.630276 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5685 2131.985144 E 2134.985144 3.000000 40.053783 21 120 0.000000 40.053783 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5656 1932.156392 E 1935.156392 3.000000 101.676739 50 120 0.000000 101.676739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n I kworker/2:0 7614 126793.503089 E 126796.454297 3.000000 73.794455 496 120 0.000000 73.794455 0.000000 0.000000 0 0 /\\n I kworker/2:2 7615 128255.635863 E 128258.634068 3.000000 85.390924 671 120 0.000000 85.390924 0.000000 0.000000 0 0 /\\n I kworker/2:1 7894 125955.038632 E 125957.931027 3.000000 2.375222 15 120 0.000000 2.375222 0.000000 0.000000 0 0 /\\n I kworker/2:4 7895 125955.637846 E 125958.489624 3.000000 6.693093 25 120 0.000000 6.693093 0.000000 0.000000 0 0 /\\n I kworker/2:5 7896 126717.631718 E 126720.624702 3.000000 6.396287 23 120 0.000000 6.396287 0.000000 0.000000 0 0 /\\n I kworker/2:6 7897 125909.302306 E 125912.295314 3.000000 0.070675 4 120 0.000000 0.070675 0.000000 0.000000 0 0 /\\n I kworker/2:7 7898 125909.300451 E 125912.299094 3.000000 0.027822 2 120 0.000000 0.027822 0.000000 0.000000 0 0 /\\n S python3 8290 2825.950267 E 2826.915361 3.000000 110.683658 16 120 0.000000 110.683658 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 8206 627.467897 E 630.428347 3.000000 4.929061 21 120 0.000000 4.929061 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n\\ncpu#3, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 237141\\n .nr_uninterruptible : 23\\n .next_balance : 4295.991775\\n .curr->pid : 0\\n .clock : 1324661.668235\\n .clock_task : 1324661.668235\\n .avg_idle : 351025\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3484.285470\\n .avg_vruntime : 3484.285470\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 683\\n .runnable_avg : 344\\n .util_avg : 344\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 683\\n .tg_load_avg : 2517\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.374829\\n .se->vruntime : 13924.039713\\n .se->sum_exec_runtime : 3491.604826\\n .se->load.weight : 316207\\n .se->avg.load_avg : 205\\n .se->avg.util_avg : 343\\n .se->avg.runnable_avg : 343\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-4.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 344.840285\\n .avg_vruntime : 344.840285\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324554.221837\\n .se->vruntime : 13918.259304\\n .se->sum_exec_runtime : 346.244841\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13924.039713\\n .avg_vruntime : 13924.039713\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 205\\n .runnable_avg : 343\\n .util_avg : 343\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 205\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.374829\\n .se->vruntime : 20222.028713\\n .se->sum_exec_runtime : 4156.439193\\n .se->load.weight : 261084\\n .se->avg.load_avg : 169\\n .se->avg.util_avg : 343\\n .se->avg.runnable_avg : 343\\n\\ncfs_rq[3]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 917.791045\\n .avg_vruntime : 917.791045\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324378.255234\\n .se->vruntime : 80969.407608\\n .se->sum_exec_runtime : 944.759726\\n .se->load.weight : 113728\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1382.284503\\n .avg_vruntime : 1382.284503\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324625.364050\\n .se->vruntime : 80970.080353\\n .se->sum_exec_runtime : 1383.543698\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 855.336111\\n .avg_vruntime : 855.336111\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.286277\\n .se->vruntime : 80970.167422\\n .se->sum_exec_runtime : 874.056465\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/dbus.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 987.962127\\n .avg_vruntime : 987.962127\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 54\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.813537\\n .se->vruntime : 80961.005356\\n .se->sum_exec_runtime : 989.135600\\n .se->load.weight : 190650\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4753.652294\\n .avg_vruntime : 4753.652294\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324617.447710\\n .se->vruntime : 80970.058206\\n .se->sum_exec_runtime : 5118.903415\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 56.151528\\n .avg_vruntime : 56.151528\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.724338\\n .se->vruntime : 80970.121776\\n .se->sum_exec_runtime : 57.756466\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 80970.167422\\n .avg_vruntime : 80970.167422\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.286277\\n .se->vruntime : 109976.919639\\n .se->sum_exec_runtime : 23970.840475\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 20222.028713\\n .avg_vruntime : 20222.028713\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 169\\n .runnable_avg : 343\\n .util_avg : 343\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 169\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.374829\\n .se->vruntime : 109976.873993\\n .se->sum_exec_runtime : 5903.619615\\n .se->load.weight : 201618\\n .se->avg.load_avg : 130\\n .se->avg.util_avg : 343\\n .se->avg.runnable_avg : 343\\n\\ncfs_rq[3]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 109976.919639\\n .avg_vruntime : 109976.919639\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 131\\n .runnable_avg : 344\\n .util_avg : 344\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[3]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.503004\\n .rt_runtime : 950.000000\\n\\ndl_rq[3]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/3 33 7886.138537 E 7889.102720 3.000000 0.348500 26 120 0.000000 0.348500 0.000000 0.000000 0 0 /\\n S idle_inject/3 34 -1.048518 E 0.451482 1.500000 0.001036 3 49 0.000000 0.001036 0.000000 0.000000 0 0 /\\n S migration/3 35 0.198781 E 0.948241 0.750000 180.636679 403 0 0.000000 180.636679 0.000000 0.000000 0 0 /\\n S ksoftirqd/3 36 109947.538278 E 109950.529626 3.000000 27.327519 1060 120 0.000000 27.327519 0.000000 0.000000 0 0 /\\n I kworker/3:0H 38 6.472894 E 6.507461 3.000000 0.011946 4 100 0.000000 0.011946 0.000000 0.000000 0 0 /\\n Ikworker/R-inet_ 64 -1.038883 E -1.004274 3.000000 0.009635 2 100 0.000000 0.009635 0.000000 0.000000 0 0 /\\n S kauditd 65 46475.465473 E 46478.440242 3.000000 2.812791 141 120 0.000000 2.812791 0.000000 0.000000 0 0 /\\n S kcompactd0 71 109910.234502 E 109913.205564 3.000000 130.582552 2629 120 0.000000 130.582552 0.000000 0.000000 0 0 /\\n S khugepaged 74 108546.250145 E 108744.707625 3.000000 17.563265 335 139 0.000000 17.563265 0.000000 0.000000 0 0 /\\n Ikworker/R-kinte 75 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-kbloc 76 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-blkcg 77 0.992084 E 0.957475 3.000000 0.000070 2 100 0.000000 0.000070 0.000000 0.000000 0 0 /\\n Ikworker/R-tpm_d 82 0.481367 E 0.446758 3.000000 0.000111 2 100 0.000000 0.000111 0.000000 0.000000 0 0 /\\n I kworker/R-md 84 0.480619 E 0.446010 3.000000 0.000748 2 100 0.000000 0.000748 0.000000 0.000000 0 0 /\\n Ikworker/R-edac- 86 0.479971 E 0.445362 3.000000 0.000648 2 100 0.000000 0.000648 0.000000 0.000000 0 0 /\\n S watchdogd 88 0.469682 E 2.529619 3.000000 0.000699 2 49 0.000000 0.000699 0.000000 0.000000 0 0 /\\n Ikworker/R-kthro 93 0.358457 E 0.323888 3.000000 0.021180 2 100 0.000000 0.021180 0.000000 0.000000 0 0 /\\n S irq/127-pciehp 94 0.342701 E 2.655906 3.000000 0.020513 2 49 0.000000 0.020513 0.000000 0.000000 0 0 /\\n I kworker/3:1H 153 108461.429427 E 108461.463962 3.000000 29.313974 1844 100 0.000000 29.313974 0.000000 0.000000 0 0 /\\n I kworker/3:2 226 108484.612476 E 108487.611547 3.000000 151.366207 1672 120 0.000000 151.366207 0.000000 0.000000 0 0 /\\n I kworker/u16:5 423 108473.585823 E 108476.581489 3.000000 450.000056 7167 120 0.000000 450.000056 0.000000 0.000000 0 0 /\\n I kworker/u16:8 451 109910.258489 E 109913.234502 3.000000 332.978246 3001 120 0.000000 332.978246 0.000000 0.000000 0 0 /\\n Sirq/192-iwlwifi 534 4059.665296 E 4062.645526 3.000000 1799.215615 15221 49 0.000000 1799.215615 0.000000 0.000000 0 0 /\\n Sirq/196-iwlwifi 539 3926.018591 E 3929.015940 3.000000 22.069661 115 49 0.000000 22.069661 0.000000 0.000000 0 0 /\\n I kworker/R-ttm 576 4266.892470 E 4266.927070 3.000000 0.005129 2 100 0.000000 0.005129 0.000000 0.000000 0 0 /\\n S gdbus 938 6.914745 E 9.332271 3.000000 25.658172 104 120 0.000000 25.658172 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S bluetoothd 794 9.926551 E 12.856955 3.000000 95.697157 403 120 0.000000 95.697157 0.000000 0.000000 0 0 /system.slice/bluetooth.service\\n S cron 795 11.121490 E 13.781281 3.000000 11.000872 33 120 0.000000 11.000872 0.000000 0.000000 0 0 /system.slice/cron.service\\n S dbus-daemon 796 987.962127 E 990.714299 3.000000 3909.305126 7635 120 0.000000 3909.305126 0.000000 0.000000 0 0 /system.slice/dbus.service\\n Sgnome-remote-de 800 6.461804 E 9.080981 3.000000 30.145068 265 120 0.000000 30.145068 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 922 3.894639 E 6.842135 3.000000 0.090432 2 120 0.000000 0.090432 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 831 206.525041 E 209.519124 3.000000 30.118582 233 120 0.000000 30.118582 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 852 310.199492 E 310.516321 3.000000 174.131223 492 120 0.000000 174.131223 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 853 2.078318 E 5.068150 3.000000 0.396308 18 120 0.000000 0.396308 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 859 -1.009569 E 1.951424 3.000000 0.039007 1 120 0.000000 0.039007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 838 1382.284503 E 1385.262356 3.000000 1775.852166 22290 120 0.000000 1775.852166 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 855 1213.691576 E 1216.570170 3.000000 262.513976 3397 120 0.000000 262.513976 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S wpa_supplicant 901 0.268710 E 2.669961 3.000000 382.615839 646 120 0.000000 382.615839 0.000000 0.000000 0 0 /system.slice/wpa_supplicant.service\\n S in:imuxsock 954 56.151528 E 59.145735 3.000000 107.949550 2887 120 0.000000 107.949550 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S sysbox-fs 1117 -1.009201 E 1.951424 3.000000 0.039375 1 120 0.000000 0.039375 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S pool-spawner 1482 0.012894 E 2.894979 3.000000 0.583316 4 120 0.000000 0.583316 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gdbus 1496 0.233532 E 2.720526 3.000000 1.188965 22 120 0.000000 1.188965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S systemd 1499 69.949753 E 72.719757 3.000000 1603.200178 704 120 0.000000 1603.200178 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S wireplumber 1515 9.144716 E 9.344452 3.000000 112.045348 651 109 0.000000 112.045348 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1528 7.387174 E 10.325290 3.000000 0.194691 7 120 0.000000 0.194691 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1538 7.325290 E 10.316534 3.000000 0.041734 2 120 0.000000 0.041734 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1518 2.669021 E 5.657668 3.000000 0.061989 3 120 0.000000 0.061989 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1568 8.156596 E 11.144147 3.000000 0.100728 3 120 0.000000 0.100728 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1561 8.265857 E 11.247889 3.000000 0.366731 9 120 0.000000 0.366731 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1598 939.350119 E 942.271140 3.000000 1.174062 16 120 0.000000 1.174062 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1610 940.229523 E 943.029924 3.000000 25.277575 172 120 0.000000 25.277575 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3008 5.879336 E 210.308511 3.000000 0.040484 1 139 0.000000 0.040484 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3009 5.885425 E 8.879336 3.000000 0.006089 1 120 0.000000 0.006089 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1681 0.987359 E 2.007769 3.000000 0.061217 2 120 0.000000 0.061217 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1664 855.336111 E 858.333616 3.000000 715.237650 41506 120 0.000000 715.237650 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2442 200.802238 E 203.083797 3.000000 2.686930 84 120 0.000000 2.686930 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2723 7.813904 E 10.463575 3.000000 10.333825 88 120 0.000000 10.333825 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2727 0.657300 E 2.325290 3.000000 0.078513 3 120 0.000000 0.078513 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S Xwaylan:disk$0 3264 278.898908 E 483.348085 3.000000 0.083880 3 139 0.000000 0.083880 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sat-spi2-registr 3034 320.892867 E 323.863419 3.000000 9.827853 77 120 0.000000 9.827853 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3084 396.608166 E 398.928697 3.000000 1.378050 9 120 0.000000 1.378050 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3104 50.860674 E 53.826398 3.000000 0.155648 6 120 0.000000 0.155648 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3161 51.477948 E 54.430767 3.000000 0.086363 2 120 0.000000 0.086363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3165 265.319650 E 268.242694 3.000000 4.804589 50 120 0.000000 4.804589 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sound 3155 264.524415 E 267.507911 3.000000 10.096889 65 120 0.000000 10.096889 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3200 264.748433 E 267.666962 3.000000 4.545875 44 120 0.000000 4.545875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3173 52.876485 E 55.844305 3.000000 0.094693 4 120 0.000000 0.094693 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3195 53.525055 E 56.511106 3.000000 0.140273 3 120 0.000000 0.140273 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3212 262.457088 E 265.449831 3.000000 0.389984 12 120 0.000000 0.389984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-printer 3290 687.615620 E 690.465261 3.000000 187.874291 30 120 0.000000 187.874291 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3339 700.168791 E 703.029139 3.000000 0.936467 13 120 0.000000 0.936467 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3351 699.316593 E 701.734734 3.000000 3.194350 33 120 0.000000 3.194350 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3355 311.731393 E 314.671777 3.000000 0.146965 3 120 0.000000 0.146965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3356 408.298560 E 411.135610 3.000000 9.785534 67 120 0.000000 9.785534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-dconf 3360 312.231880 E 315.209559 3.000000 3.710779 6 120 0.000000 3.710779 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3365 311.671777 E 314.666437 3.000000 0.056426 2 120 0.000000 0.056426 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3368 312.703029 E 315.657097 3.000000 0.439195 10 120 0.000000 0.439195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3509 -1.026522 E 1.969433 3.000000 0.022054 3 120 0.000000 0.022054 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3511 3.665450 E 6.655609 3.000000 0.052600 3 120 0.000000 0.052600 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3551 9.844973 E 12.792466 3.000000 0.052507 1 120 0.000000 0.052507 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3599 197.020590 E 197.487604 3.000000 67.673866 80 120 0.000000 67.673866 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S sshd 3669 24.119215 E 26.352417 3.000000 60.985253 32 120 0.000000 60.985253 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S pool-spawner 4748 11.609030 E 14.551046 3.000000 0.057984 1 120 0.000000 0.057984 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5100 224.686053 E 227.677039 3.000000 61.547451 14 120 0.000000 61.547451 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5110 343.548846 E 346.521771 3.000000 29.588517 40 120 0.000000 29.588517 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5123 344.840285 E 347.812386 3.000000 52.998664 1378 120 0.000000 52.998664 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5127 268.080230 E 270.854937 3.000000 0.225293 1 120 0.000000 0.225293 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5208 850.513236 E 853.511607 3.000000 32.292108 2347 120 0.000000 32.292108 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5238 860.343619 E 862.504098 3.000000 65.029340 180 120 0.000000 65.029340 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6176 581.772309 E 584.524663 3.000000 23.702247 70 120 0.000000 23.702247 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5262 307.365255 E 310.358223 3.000000 2.509248 7 120 0.000000 2.509248 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5270 864.107153 E 867.068195 3.000000 60.720338 153 120 0.000000 60.720338 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5393 441.075088 E 444.057442 3.000000 1.906891 4 120 0.000000 1.906891 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5397 441.007142 E 443.951633 3.000000 0.134457 6 120 0.000000 0.134457 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6178 865.053197 E 867.837169 3.000000 23.671044 63 120 0.000000 23.671044 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5455 329.155687 E 332.140177 3.000000 0.106899 6 120 0.000000 0.106899 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 5471 4753.652294 E 4756.638658 3.000000 91.452842 969 120 0.000000 91.452842 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5566 0.867397 E 3.800664 3.000000 6.451868 10 120 0.000000 6.451868 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5666 1455.901773 E 1455.931322 3.000000 52.537643 16 120 0.000000 52.537643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5692 1542.872428 E 1545.867503 3.000000 39.486389 14 120 0.000000 39.486389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6337 3770.130574 E 3772.832043 3.000000 1.045980 6 120 0.000000 1.045980 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6339 2749.264215 E 2752.131956 3.000000 10.760643 17 120 0.000000 10.760643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6342 2748.954739 E 2751.740522 3.000000 9.140090 22 120 0.000000 9.140090 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5607 675.005069 E 677.994134 3.000000 108.505409 56 120 0.000000 108.505409 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5675 1497.517568 E 1500.507764 3.000000 53.995739 18 120 0.000000 53.995739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5642 1261.164512 E 1264.157881 3.000000 21.195408 8 120 0.000000 21.195408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5701 1573.282016 E 1576.275123 3.000000 54.439900 15 120 0.000000 54.439900 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6335 3769.832043 E 3772.073778 3.000000 3.802600 4 120 0.000000 3.802600 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5631 796.046325 E 798.991768 3.000000 40.045155 23 120 0.000000 40.045155 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5681 1527.879182 E 1529.909057 3.000000 33.967325 14 120 0.000000 33.967325 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5684 1530.679057 E 1533.672041 3.000000 36.744957 12 120 0.000000 36.744957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5711 1596.022219 E 1599.010783 3.000000 26.922198 10 120 0.000000 26.922198 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5712 1598.317683 E 1601.311774 3.000000 27.952471 10 120 0.000000 27.952471 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5713 1598.100775 E 1601.093750 3.000000 28.977268 10 120 0.000000 28.977268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5716 1603.713181 E 1606.705277 3.000000 27.988249 8 120 0.000000 27.988249 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6340 3770.272623 E 3773.130574 3.000000 0.935232 6 120 0.000000 0.935232 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5648 1264.334911 E 1267.326576 3.000000 21.039304 8 120 0.000000 21.039304 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5649 1267.119289 E 1270.110336 3.000000 23.813972 11 120 0.000000 23.813972 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5652 1267.460598 E 1270.456344 3.000000 24.138886 11 120 0.000000 24.138886 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5718 1603.710384 E 1606.705277 3.000000 34.052954 13 120 0.000000 34.052954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5621 1135.587476 E 1138.556525 3.000000 78.962899 785 120 0.000000 78.962899 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S gmain 7550 533.069796 E 535.759562 3.000000 33.341424 218 120 0.000000 33.341424 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/3:0 7622 109961.620097 E 109964.594176 3.000000 96.502890 889 120 0.000000 96.502890 0.000000 0.000000 0 0 /\\n I kworker/3:1 7629 104518.107058 E 104521.101731 3.000000 0.105449 6 120 0.000000 0.105449 0.000000 0.000000 0 0 /\\n Z dbus-daemon 8166 939.817450 E 942.449606 3.000000 0.891691 2 120 0.000000 0.891691 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S python3 8291 3388.952180 E 3391.902430 3.000000 110.832888 13 120 0.000000 110.832888 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 8436 3484.285470 E 3487.253215 3.000000 0.286378 2 120 0.000000 0.286378 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#4, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 202104\\n .nr_uninterruptible : 183\\n .next_balance : 4295.991778\\n .curr->pid : 0\\n .clock : 1324661.680897\\n .clock_task : 1324661.680897\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[4]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2476.416696\\n .avg_vruntime : 2476.416696\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 3\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 3\\n .tg_load_avg : 2517\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324651.551051\\n .se->vruntime : 12176.180432\\n .se->sum_exec_runtime : 2482.590090\\n .se->load.weight : 701\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[4]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12176.180432\\n .avg_vruntime : 12176.180432\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324651.551051\\n .se->vruntime : 19862.805246\\n .se->sum_exec_runtime : 2800.179939\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[4]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4607.391202\\n .avg_vruntime : 4607.391202\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324275.311324\\n .se->vruntime : 82618.225494\\n .se->sum_exec_runtime : 4978.610206\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1232.281149\\n .avg_vruntime : 1232.281149\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324625.342522\\n .se->vruntime : 82628.989560\\n .se->sum_exec_runtime : 1234.233584\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 736.018741\\n .avg_vruntime : 736.018741\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.840273\\n .se->vruntime : 82628.966121\\n .se->sum_exec_runtime : 772.107661\\n .se->load.weight : 139662\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 761.528078\\n .avg_vruntime : 761.528078\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324380.012228\\n .se->vruntime : 82628.971930\\n .se->sum_exec_runtime : 768.250318\\n .se->load.weight : 24923\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/dbus.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 347.230698\\n .avg_vruntime : 347.230698\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 54\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324280.860720\\n .se->vruntime : 82619.969142\\n .se->sum_exec_runtime : 348.567076\\n .se->load.weight : 149796\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5.832136\\n .avg_vruntime : 5.832136\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324288.435858\\n .se->vruntime : 82620.067771\\n .se->sum_exec_runtime : 6.943289\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 82628.989560\\n .avg_vruntime : 82628.989560\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324625.342522\\n .se->vruntime : 116160.547706\\n .se->sum_exec_runtime : 25133.486839\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19862.805246\\n .avg_vruntime : 19862.805246\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324651.551051\\n .se->vruntime : 116161.156046\\n .se->sum_exec_runtime : 6634.051609\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[4]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 116161.156046\\n .avg_vruntime : 116161.156046\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[4]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[4]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/4 39 8611.189859 E 8614.138975 3.000000 0.358588 26 120 0.000000 0.358588 0.000000 0.000000 0 0 /\\n S idle_inject/4 40 -1.048576 E 1.201424 2.250000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S migration/4 41 1.176891 E 3.426891 2.250000 178.194082 398 0 0.000000 178.194082 0.000000 0.000000 0 0 /\\n S ksoftirqd/4 42 116157.086503 E 116160.081264 3.000000 21.907149 920 120 0.000000 21.907149 0.000000 0.000000 0 0 /\\n I kworker/4:0 43 116157.461386 E 116160.456867 3.000000 290.466597 2281 120 0.000000 290.466597 0.000000 0.000000 0 0 /\\n I kworker/4:0H 44 132.163682 E 132.198197 3.000000 0.019668 4 100 0.000000 0.019668 0.000000 0.000000 0 0 /\\n S khungtaskd 67 112404.057085 E 112406.897110 3.000000 2.685956 12 120 0.000000 2.685956 0.000000 0.000000 0 0 /\\n I kworker/4:1 81 111404.735898 E 111407.726928 3.000000 312.565543 2708 120 0.000000 312.565543 0.000000 0.000000 0 0 /\\n Ikworker/R-ata_s 83 5.270300 E 5.304909 3.000000 0.000746 2 100 0.000000 0.000746 0.000000 0.000000 0 0 /\\n Ikworker/R-md_bi 85 5.270300 E 5.304909 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-devfr 87 5.273628 E 5.308237 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/128-pciehp 95 0.339759 E 2.659354 3.000000 0.006738 3 49 0.000000 0.006738 0.000000 0.000000 0 0 /\\n S hwrng 101 116095.215977 E 116097.865307 3.000000 56.896152 233 120 0.000000 56.896152 0.000000 0.000000 0 0 /\\n I kworker/4:1H 194 114649.388879 E 114649.423117 3.000000 11.744018 979 100 0.000000 11.744018 0.000000 0.000000 0 0 /\\n Ikworker/R-cfg80 514 3339.240577 E 3339.275140 3.000000 0.012808 2 100 0.000000 0.012808 0.000000 0.000000 0 0 /\\n Sirq/197-iwlwifi 540 3926.376252 E 3929.374115 3.000000 18.146709 69 49 0.000000 18.146709 0.000000 0.000000 0 0 /\\n Sirq/201-iwlwifi 544 3926.622118 E 3929.620867 3.000000 0.136252 5 49 0.000000 0.136252 0.000000 0.000000 0 0 /\\n Ssystemd-timesyn 671 9.652012 E 12.416718 3.000000 73.477447 98 120 0.000000 73.477447 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n S pool-spawner 929 0.427240 E 3.421670 3.000000 0.182155 7 120 0.000000 0.182155 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 918 4.224344 E 6.070337 3.000000 17.705503 95 120 0.000000 17.705503 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 1042 1.501824 E 4.479627 3.000000 0.055072 2 120 0.000000 0.055072 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 1046 138.898184 E 141.878430 3.000000 221.887533 899 120 0.000000 221.887533 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 950 1232.281149 E 1235.263519 3.000000 1581.725542 20683 120 0.000000 1581.725542 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gmain 935 905.812680 E 908.721991 3.000000 57.780095 332 120 0.000000 57.780095 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S gmain 1094 3.946236 E 6.930995 3.000000 0.050521 2 120 0.000000 0.050521 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gmain 1093 3.276503 E 6.269558 3.000000 0.066470 2 120 0.000000 0.066470 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1490 736.018741 E 738.940772 3.000000 250.285967 5761 120 0.000000 250.285967 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1505 733.052743 E 736.047257 3.000000 265.717918 6333 120 0.000000 265.717918 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1532 0.548481 E 3.506291 3.000000 0.195304 7 120 0.000000 0.195304 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1547 0.212741 E 3.208152 3.000000 0.019168 3 79 0.000000 0.019168 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1519 -1.009572 E 1.951424 3.000000 0.039004 1 120 0.000000 0.039004 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1535 10.910098 E 14.575757 3.000000 65.949337 133 121 0.000000 65.949337 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S fuse mainloop 1563 0.636104 E 3.602310 3.000000 0.327847 4 120 0.000000 0.327847 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1599 2235.639515 E 2238.605289 3.000000 59.044608 352 120 0.000000 59.044608 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1607 2235.605289 E 2238.078102 3.000000 114.618935 162 120 0.000000 114.618935 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Spool-gnome-shel 8165 2234.058274 E 2237.008680 3.000000 0.139526 2 120 0.000000 0.139526 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1682 -1.007916 E 1.951424 3.000000 0.040660 1 120 0.000000 0.040660 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S gdbus 1683 11.569066 E 14.320602 3.000000 54.632888 346 120 0.000000 54.632888 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1700 295.680439 E 298.486174 3.000000 10.233894 150 120 0.000000 10.233894 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2443 284.936640 E 287.916427 3.000000 35.663598 1701 120 0.000000 35.663598 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2402 44.216112 E 47.201754 3.000000 0.083347 6 120 0.000000 0.083347 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2404 550.819950 E 553.768684 3.000000 60.418806 136 120 0.000000 60.418806 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2420 44.291955 E 47.265037 3.000000 1.429798 32 120 0.000000 1.429798 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 3027 494.594461 E 497.580076 3.000000 1.096695 37 120 0.000000 1.096695 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dbus-daemon 3028 871.982914 E 874.971379 3.000000 8.820633 75 120 0.000000 8.820633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3040 23.893471 E 26.854493 3.000000 0.075685 2 120 0.000000 0.075685 0.000000 0.000000 0 0 /system.slice/colord.service\\n S pool-spawner 3070 84.801335 E 87.763845 3.000000 0.076250 2 120 0.000000 0.076250 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3071 84.763845 E 87.725839 3.000000 0.038006 1 120 0.000000 0.038006 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3086 585.187130 E 587.886236 3.000000 0.803427 9 120 0.000000 0.803427 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3113 121.997580 E 124.912918 3.000000 1.251295 53 120 0.000000 1.251295 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3120 104.510615 E 107.420360 3.000000 0.090255 1 120 0.000000 0.090255 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3132 104.942110 E 107.902899 3.000000 0.039211 1 120 0.000000 0.039211 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3147 432.291787 E 435.215403 3.000000 15.128436 45 120 0.000000 15.128436 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-housekeepin 3169 2230.524398 E 2231.213833 3.000000 310.971397 163 120 0.000000 310.971397 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3199 432.208898 E 435.123843 3.000000 4.825108 55 120 0.000000 4.825108 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-power 3172 934.048735 E 936.983961 3.000000 531.922828 648 120 0.000000 531.922828 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gjs 3333 961.492427 E 962.754198 3.000000 64.931215 51 120 0.000000 64.931215 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3388 494.502646 E 497.479395 3.000000 0.383639 13 120 0.000000 0.383639 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x1:disk$0 3384 493.429311 E 698.009560 3.000000 0.064318 1 139 0.000000 0.064318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3391 494.823326 E 497.820442 3.000000 0.047210 2 120 0.000000 0.047210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 3453 0.638992 E 1.951424 3.000000 0.409584 1 120 0.000000 0.409584 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S module-rt 3508 16.982589 E 19.952500 3.000000 0.177132 8 120 0.000000 0.177132 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3512 16.731938 E 19.727789 3.000000 0.017591 3 120 0.000000 0.017591 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3519 17.278259 E 20.249377 3.000000 0.054962 2 120 0.000000 0.054962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S dbus-daemon 3501 17.501364 E 20.425841 3.000000 9.308695 60 120 0.000000 9.308695 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3547 17.425841 E 20.278259 3.000000 0.147582 1 120 0.000000 0.147582 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3596 0.171413 E 2.703804 3.000000 0.124783 1 120 0.000000 0.124783 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S sshd 3711 2476.416696 E 2479.311189 3.000000 3979.598312 11595 120 0.000000 3979.598312 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S gdbus 4750 0.089371 E 2.823358 3.000000 0.503147 15 120 0.000000 0.503147 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S timer 4751 0.479745 E 2.495817 3.000000 0.024438 1 120 0.000000 0.024438 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5109 240.592164 E 243.549316 3.000000 11.170384 13 120 0.000000 11.170384 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5122 196.344791 E 199.329849 3.000000 63.034858 39 120 0.000000 63.034858 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5215 671.515673 E 674.461604 3.000000 2.120452 50 120 0.000000 2.120452 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5242 260.021354 E 262.990538 3.000000 1.439470 33 120 0.000000 1.439470 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5244 705.594625 E 708.477749 3.000000 70.776582 153 120 0.000000 70.776582 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5267 249.428702 E 252.410406 3.000000 0.050853 2 120 0.000000 0.050853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7611 637.230743 E 640.230743 3.000000 25.728522 29 120 0.000000 25.728522 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sjemalloc_bg_thd 5374 138.590327 E 141.506388 3.000000 0.462401 8 120 0.000000 0.462401 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Sjemalloc_bg_thd 5375 0.560167 E 2.423287 3.000000 0.016546 1 120 0.000000 0.016546 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5406 671.698154 E 674.640976 3.000000 2.190423 47 120 0.000000 2.190423 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5407 291.517519 E 294.508545 3.000000 0.110756 6 120 0.000000 0.110756 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5423 706.328736 E 709.305783 3.000000 69.255734 167 120 0.000000 69.255734 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5428 264.775703 E 267.763855 3.000000 0.397285 12 120 0.000000 0.397285 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5458 707.212523 E 710.118289 3.000000 51.202233 120 120 0.000000 51.202233 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5479 5.910874 E 8.239062 3.000000 24.294118 29 120 0.000000 24.294118 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5564 5.960558 E 8.911409 3.000000 0.756076 9 120 0.000000 0.756076 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 6352 3779.306625 E 3782.026102 3.000000 0.963905 5 120 0.000000 0.963905 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5693 2182.334914 E 2185.327152 3.000000 38.955454 14 120 0.000000 38.955454 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5670 2131.268004 E 2134.260351 3.000000 36.996673 11 120 0.000000 36.996673 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5671 2135.196688 E 2138.196688 3.000000 40.909890 14 120 0.000000 40.909890 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5640 1921.565079 E 1924.559625 3.000000 28.984572 12 120 0.000000 28.984572 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5644 1921.963150 E 1922.987767 3.000000 52.350338 20 120 0.000000 52.350338 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5696 2197.393849 E 2200.390282 3.000000 31.127998 15 120 0.000000 31.127998 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5699 2197.192376 E 2200.184357 3.000000 30.902525 11 120 0.000000 30.902525 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6949 3855.962894 E 3858.538841 3.000000 1.387175 6 120 0.000000 1.387175 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5632 1326.785621 E 1326.892101 3.000000 100.083757 4 120 0.000000 100.083757 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5658 1985.657062 E 1988.647654 3.000000 37.909073 12 120 0.000000 37.909073 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5660 1989.692299 E 1989.732082 3.000000 55.543120 15 120 0.000000 55.543120 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5719 2242.781412 E 2242.811558 3.000000 49.489219 18 120 0.000000 49.489219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6341 3778.491564 E 3778.505314 3.000000 3.051447 4 120 0.000000 3.051447 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6357 182.978177 E 185.921894 3.000000 6.343402 17 120 0.000000 6.343402 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/4:2 7634 114024.754785 E 114027.696823 3.000000 0.283289 13 120 0.000000 0.283289 0.000000 0.000000 0 0 /\\n S python3 8204 2319.993085 E 2322.935524 3.000000 9.153384 85 120 0.000000 9.153384 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8289 2441.236992 E 2443.209233 3.000000 110.816405 16 120 0.000000 110.816405 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#5, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 242002\\n .nr_uninterruptible : -11\\n .next_balance : 4295.991782\\n .curr->pid : 0\\n .clock : 1324666.719251\\n .clock_task : 1324666.719251\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[5]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4513.430956\\n .avg_vruntime : 4513.430956\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 617\\n .runnable_avg : 191\\n .util_avg : 191\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 617\\n .tg_load_avg : 2517\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.048411\\n .se->vruntime : 14813.973963\\n .se->sum_exec_runtime : 4519.139236\\n .se->load.weight : 318675\\n .se->avg.load_avg : 185\\n .se->avg.util_avg : 190\\n .se->avg.runnable_avg : 190\\n\\ncfs_rq[5]:/user.slice/user-1000.slice/session-4.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 108.707549\\n .avg_vruntime : 108.707549\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324548.112261\\n .se->vruntime : 14784.810266\\n .se->sum_exec_runtime : 109.888484\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 14813.973963\\n .avg_vruntime : 14813.973963\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 186\\n .runnable_avg : 190\\n .util_avg : 190\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 186\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.048411\\n .se->vruntime : 22344.824559\\n .se->sum_exec_runtime : 4861.538050\\n .se->load.weight : 314267\\n .se->avg.load_avg : 182\\n .se->avg.util_avg : 190\\n .se->avg.runnable_avg : 190\\n\\ncfs_rq[5]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 732.852116\\n .avg_vruntime : 732.852116\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324377.620039\\n .se->vruntime : 77707.114003\\n .se->sum_exec_runtime : 752.839222\\n .se->load.weight : 122625\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 816.229705\\n .avg_vruntime : 816.229705\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.223937\\n .se->vruntime : 77708.103013\\n .se->sum_exec_runtime : 839.891160\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10904.400077\\n .avg_vruntime : 10904.400077\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324569.046098\\n .se->vruntime : 77708.077750\\n .se->sum_exec_runtime : 11482.389253\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/systemd-hostnamed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 86.720596\\n .avg_vruntime : 86.720596\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324290.324714\\n .se->vruntime : 77700.682895\\n .se->sum_exec_runtime : 87.769172\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 87.953522\\n .avg_vruntime : 87.953522\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324478.697362\\n .se->vruntime : 77707.977012\\n .se->sum_exec_runtime : 111.207415\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/cups-browsed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 33.116905\\n .avg_vruntime : 33.116905\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.822410\\n .se->vruntime : 77700.755677\\n .se->sum_exec_runtime : 35.094089\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 77708.103013\\n .avg_vruntime : 77708.103013\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.223937\\n .se->vruntime : 114187.794595\\n .se->sum_exec_runtime : 27310.194121\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 22344.824559\\n .avg_vruntime : 22344.824559\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 183\\n .runnable_avg : 190\\n .util_avg : 190\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 183\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.048411\\n .se->vruntime : 114187.769332\\n .se->sum_exec_runtime : 7352.559578\\n .se->load.weight : 396476\\n .se->avg.load_avg : 231\\n .se->avg.util_avg : 190\\n .se->avg.runnable_avg : 190\\n\\ncfs_rq[5]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 471.857095\\n .avg_vruntime : 471.857095\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324611.805031\\n .se->vruntime : 114142.684520\\n .se->sum_exec_runtime : 475.908327\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[5]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 114187.794595\\n .avg_vruntime : 114187.794595\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 236\\n .runnable_avg : 195\\n .util_avg : 192\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[5]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[5]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S systemd 1 471.857095 E 474.838853 3.000000 4262.674042 4693 120 0.000000 4262.674042 0.000000 0.000000 0 0 /init.scope\\n S cpuhp/5 45 6999.749005 E 7002.677723 3.000000 0.271587 26 120 0.000000 0.271587 0.000000 0.000000 0 0 /\\n S idle_inject/5 46 -1.043636 E 1.204967 2.250000 0.004272 3 49 0.000000 0.004272 0.000000 0.000000 0 0 /\\n S migration/5 47 3.168235 E 5.417506 2.250000 179.909598 404 0 0.000000 179.909598 0.000000 0.000000 0 0 /\\n S ksoftirqd/5 48 114128.701078 E 114131.691402 3.000000 35.586303 1476 120 0.000000 35.586303 0.000000 0.000000 0 0 /\\n I kworker/5:0H 50 785.846494 E 785.880922 3.000000 0.029057 4 100 0.000000 0.029057 0.000000 0.000000 0 0 /\\n I kworker/u16:2 68 111764.622473 E 111767.225983 3.000000 228.725635 4171 120 0.000000 228.725635 0.000000 0.000000 0 0 /\\n I kworker/5:1H 90 112188.317655 E 112188.352130 3.000000 8.942135 451 100 0.000000 8.942135 0.000000 0.000000 0 0 /\\n S irq/129-pciehp 96 0.336759 E 2.662268 3.000000 0.006014 3 49 0.000000 0.006014 0.000000 0.000000 0 0 /\\n Ikworker/R-acpi_ 100 803.615043 E 803.649645 3.000000 0.003136 2 100 0.000000 0.003136 0.000000 0.000000 0 0 /\\n I kworker/R-mld 103 822.822143 E 822.856734 3.000000 0.020268 2 100 0.000000 0.020268 0.000000 0.000000 0 0 /\\n Ikworker/R-ipv6_ 105 822.824530 E 822.859136 3.000000 0.002654 2 100 0.000000 0.002654 0.000000 0.000000 0 0 /\\n Ikworker/R-kstrp 112 825.212532 E 825.247134 3.000000 0.002925 2 100 0.000000 0.002925 0.000000 0.000000 0 0 /\\n I kworker/5:3 129 114174.440195 E 114177.413374 3.000000 200.213696 2282 120 0.000000 200.213696 0.000000 0.000000 0 0 /\\n Sirq/173-FRMW000 225 1210.147450 E 1213.127987 3.000000 0.350809 4 49 0.000000 0.350809 0.000000 0.000000 0 0 /\\n Sirq/174-PIXA385 227 1218.791465 E 1221.760797 3.000000 0.479717 4 49 0.000000 0.479717 0.000000 0.000000 0 0 /\\n Sjbd2/nvme0n1p5- 264 112188.339118 E 112191.317655 3.000000 112.288874 1889 120 0.000000 112.288874 0.000000 0.000000 0 0 /\\n S psimon 395 1769.940955 E 1772.934339 3.000000 0.031393 2 98 0.000000 0.031393 0.000000 0.000000 0 0 /\\n Sirq/198-iwlwifi 541 3741.717084 E 3744.716044 3.000000 10.871960 54 49 0.000000 10.871960 0.000000 0.000000 0 0 /\\n Ssystemd-resolve 665 99.458935 E 101.917007 3.000000 866.812376 1163 120 0.000000 866.812376 0.000000 0.000000 0 0 /system.slice/systemd-resolved.service\\n S pool-spawner 917 0.598568 E 2.374275 3.000000 0.139307 3 120 0.000000 0.139307 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S snapd 2921 150.000733 E 153.000733 3.000000 139.295594 243 120 0.000000 139.295594 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2922 171.864821 E 174.787822 3.000000 132.003097 164 120 0.000000 132.003097 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gmain 953 0.274092 E 3.243919 3.000000 0.030173 1 120 0.000000 0.030173 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 858 3.421352 E 6.394871 3.000000 1.493133 34 120 0.000000 1.493133 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 951 1526.105386 E 1529.072090 3.000000 2641.593505 32640 120 0.000000 2641.593505 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S pool-spawner 877 0.968110 E 1.951424 3.000000 0.080466 1 120 0.000000 0.080466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gdbus 888 35.909079 E 38.365218 3.000000 26.761403 424 120 0.000000 26.761403 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 1096 5.835716 E 8.797854 3.000000 0.070490 2 120 0.000000 0.070490 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1108 27.269180 E 29.745638 3.000000 31.155174 154 120 0.000000 31.155174 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1113 1.961790 E 4.958126 3.000000 10.058361 153 120 0.000000 10.058361 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1115 1.948170 E 4.912969 3.000000 0.190242 20 120 0.000000 0.190242 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1447 2.681121 E 5.678513 3.000000 22.987360 343 120 0.000000 22.987360 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 1485 3.989182 E 6.948338 3.000000 16.521431 131 120 0.000000 16.521431 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gmain 1494 2.779321 E 5.771975 3.000000 0.065744 3 120 0.000000 0.065744 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire-pulse 1516 26.233418 E 26.485480 3.000000 19.482467 71 109 0.000000 19.482467 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1537 1740.275778 E 1743.263615 3.000000 138.194824 776 120 0.000000 138.194824 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 1557 26.114410 E 28.921546 3.000000 4.480217 9 120 0.000000 4.480217 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1605 1740.971958 E 1743.630714 3.000000 21.058195 178 120 0.000000 21.058195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S cups-browsed 1656 33.116905 E 36.044123 3.000000 244.338534 1045 120 0.000000 244.338534 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1657 171.907138 E 174.896341 3.000000 206.971759 2083 120 0.000000 206.971759 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1669 344.620239 E 347.584650 3.000000 69.767271 2073 120 0.000000 69.767271 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1674 813.130781 E 815.142229 3.000000 224.299049 3503 120 0.000000 224.299049 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2394 356.668054 E 359.629743 3.000000 47.946204 1790 120 0.000000 47.946204 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2691 816.229705 E 819.204442 3.000000 489.241031 9090 120 0.000000 489.241031 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2401 684.796403 E 687.573262 3.000000 30.759329 141 120 0.000000 30.759329 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2817 0.969895 E 2.006035 3.000000 0.078681 2 120 0.000000 0.078681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S pool-spawner 3023 33.403610 E 36.375096 3.000000 0.062687 2 120 0.000000 0.062687 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3036 49.145973 E 52.105602 3.000000 0.040371 1 120 0.000000 0.040371 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 3069 409.720330 E 411.795486 3.000000 3.645960 9 120 0.000000 3.645960 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3087 923.987178 E 926.920563 3.000000 0.691954 9 120 0.000000 0.691954 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3102 260.315442 E 263.308450 3.000000 0.043178 2 120 0.000000 0.043178 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3125 271.161595 E 274.095199 3.000000 0.721540 8 120 0.000000 0.721540 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3134 695.253497 E 698.160802 3.000000 18.015111 51 120 0.000000 18.015111 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3142 271.415232 E 274.408854 3.000000 0.052239 2 120 0.000000 0.052239 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3144 283.234823 E 286.195976 3.000000 0.156948 5 120 0.000000 0.156948 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3160 274.593574 E 277.561112 3.000000 0.032462 1 120 0.000000 0.032462 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3205 694.073828 E 697.059396 3.000000 0.539966 11 120 0.000000 0.539966 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3190 291.047172 E 294.041558 3.000000 0.069455 3 120 0.000000 0.069455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3191 291.082083 E 294.047172 3.000000 0.064373 2 120 0.000000 0.064373 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3171 277.903854 E 280.871361 3.000000 0.032493 1 120 0.000000 0.032493 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3208 289.768671 E 292.723596 3.000000 0.045075 1 120 0.000000 0.045075 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3341 1268.500237 E 1271.417686 3.000000 1.040132 11 120 0.000000 1.040132 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3347 710.823685 E 713.793865 3.000000 0.043738 2 120 0.000000 0.043738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3348 710.793865 E 713.767416 3.000000 0.026449 1 120 0.000000 0.026449 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-daemon 3346 949.332769 E 952.288245 3.000000 42.959636 73 120 0.000000 42.959636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11 3362 923.587585 E 926.310829 3.000000 45.522706 130 120 0.000000 45.522706 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3371 726.850047 E 729.799574 3.000000 0.076524 2 120 0.000000 0.076524 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sibus-engine-sim 3378 728.885393 E 731.863437 3.000000 4.625539 14 120 0.000000 4.625539 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3513 1.729229 E 4.725188 3.000000 0.034825 5 120 0.000000 0.034825 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S wireplumber 3472 11.462644 E 13.755284 3.000000 40.504423 63 120 0.000000 40.504423 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S sshd 3542 90.302397 E 93.214918 3.000000 200.217407 782 120 0.000000 200.217407 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S fuse mainloop 3555 8.358478 E 11.299358 3.000000 0.319715 3 120 0.000000 0.319715 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3550 7.088145 E 10.059456 3.000000 0.088092 2 120 0.000000 0.088092 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3553 7.326957 E 10.315957 3.000000 0.238812 7 120 0.000000 0.238812 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fusermount3 3556 8.289925 E 10.425022 3.000000 0.864903 1 120 0.000000 0.864903 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Ssnapd-desktop-i 3594 12.810910 E 15.645251 3.000000 16.524009 26 120 0.000000 16.524009 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gmain 3597 12.645251 E 15.600431 3.000000 0.044820 1 120 0.000000 0.044820 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S docker 5102 107.870447 E 110.830169 3.000000 5.213757 31 120 0.000000 5.213757 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5104 76.789473 E 79.661122 3.000000 0.935648 8 120 0.000000 0.935648 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5105 76.471056 E 79.122576 3.000000 0.348480 1 120 0.000000 0.348480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5126 108.707549 E 111.636618 3.000000 23.829877 155 120 0.000000 23.829877 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5131 107.781254 E 110.291644 3.000000 18.514315 43 120 0.000000 18.514315 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5212 345.929760 E 348.904077 3.000000 0.025683 1 120 0.000000 0.025683 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5221 346.057686 E 349.014905 3.000000 0.042781 1 120 0.000000 0.042781 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5236 695.378723 E 698.289479 3.000000 5.757493 260 120 0.000000 5.757493 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5237 695.466483 E 698.378723 3.000000 4.039035 52 120 0.000000 4.039035 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5239 318.088842 E 321.070226 3.000000 0.081546 6 120 0.000000 0.081546 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5241 695.289479 E 697.896337 3.000000 63.641726 154 120 0.000000 63.641726 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S postgres 5289 111.770126 E 114.233419 3.000000 136.981404 226 120 0.000000 136.981404 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S docker-proxy 5396 393.299699 E 396.076725 3.000000 0.339736 7 120 0.000000 0.339736 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5401 606.630397 E 609.595944 3.000000 1.026440 24 120 0.000000 1.026440 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5405 356.859342 E 359.855343 3.000000 1.795184 14 120 0.000000 1.795184 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5409 356.858058 E 359.853277 3.000000 0.086967 4 120 0.000000 0.086967 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5410 356.739028 E 359.714574 3.000000 0.024454 1 120 0.000000 0.024454 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5419 323.414770 E 326.408620 3.000000 2.963462 8 120 0.000000 2.963462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5421 323.427369 E 326.411167 3.000000 0.463860 15 120 0.000000 0.463860 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5429 696.339011 E 699.287069 3.000000 55.753035 166 120 0.000000 55.753035 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5454 327.251540 E 330.239598 3.000000 0.078194 9 120 0.000000 0.078194 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7654 697.131944 E 700.121030 3.000000 3.880674 18 120 0.000000 3.880674 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5563 4.567941 E 7.480591 3.000000 6.436335 18 120 0.000000 6.436335 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5614 1204.439296 E 1207.439296 3.000000 25.601066 7 120 0.000000 25.601066 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5617 1206.891768 E 1209.822325 3.000000 28.034014 9 120 0.000000 28.034014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5619 1208.780352 E 1210.861964 3.000000 29.914255 9 120 0.000000 29.914255 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5608 1185.932477 E 1188.922565 3.000000 37.946501 14 120 0.000000 37.946501 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5672 1995.255322 E 1995.274003 3.000000 73.850813 20 120 0.000000 73.850813 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5641 1768.202285 E 1771.193258 3.000000 54.929183 14 120 0.000000 54.929183 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5695 2071.651562 E 2071.688139 3.000000 32.936801 11 120 0.000000 32.936801 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6951 3276.159243 E 3279.007946 3.000000 6.751696 107 120 0.000000 6.751696 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5574 10904.400077 E 10907.309531 3.000000 6677.392599 10412 120 0.000000 6677.392599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5637 1539.174198 E 1540.010364 3.000000 38.326835 12 120 0.000000 38.326835 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5638 1538.793722 E 1540.152260 3.000000 37.736919 12 120 0.000000 37.736919 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5709 2084.464804 E 2087.450225 3.000000 29.991031 9 120 0.000000 29.991031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5654 2046.336174 E 2049.326048 3.000000 38.012486 12 120 0.000000 38.012486 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5657 1803.954929 E 1805.989704 3.000000 38.959841 12 120 0.000000 38.959841 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5659 1807.015254 E 1809.026693 3.000000 42.007189 11 120 0.000000 42.007189 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5714 2109.823685 E 2109.851682 3.000000 36.490008 12 120 0.000000 36.490008 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6345 3187.769027 E 3190.605767 3.000000 11.445595 34 120 0.000000 11.445595 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5625 110.383771 E 113.309640 3.000000 1.380581 6 120 0.000000 1.380581 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6359 47.603920 E 50.553935 3.000000 6.378483 16 120 0.000000 6.378483 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6361 28.804050 E 31.622006 3.000000 6.682534 15 120 0.000000 6.682534 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/u17:1 7565 108539.619300 E 108539.653039 3.000000 566.174467 8892 100 0.000000 566.174467 0.000000 0.000000 0 0 /\\n I kworker/5:1 7621 111810.377989 E 111813.372620 3.000000 0.181298 6 120 0.000000 0.181298 0.000000 0.000000 0 0 /\\n I kworker/u16:1 8151 111764.425047 E 111767.420549 3.000000 0.010610 2 120 0.000000 0.010610 0.000000 0.000000 0 0 /\\n I kworker/5:0 8172 111958.892118 E 111961.852183 3.000000 0.086481 5 120 0.000000 0.086481 0.000000 0.000000 0 0 /\\n Sjemalloc_bg_thd 8296 4231.226042 E 4234.178197 3.000000 0.047845 1 120 0.000000 0.047845 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Ssystemd-hostnam 8338 86.720596 E 87.848405 3.000000 127.029245 35 120 0.000000 127.029245 0.000000 0.000000 0 0 /system.slice/systemd-hostnamed.service\\n S sudo 8435 4513.430956 E 4516.425074 3.000000 3.653734 2 120 0.000000 3.653734 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#6, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 219949\\n .nr_uninterruptible : 112\\n .next_balance : 4295.991779\\n .curr->pid : 0\\n .clock : 1324665.763020\\n .clock_task : 1324665.763020\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[6]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3174.400199\\n .avg_vruntime : 3174.400199\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 190\\n .runnable_avg : 191\\n .util_avg : 191\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 190\\n .tg_load_avg : 2517\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324638.299982\\n .se->vruntime : 13051.403933\\n .se->sum_exec_runtime : 3179.447154\\n .se->load.weight : 98090\\n .se->avg.load_avg : 17\\n .se->avg.util_avg : 191\\n .se->avg.runnable_avg : 191\\n\\ncfs_rq[6]:/user.slice/user-1000.slice/session-4.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 126.474331\\n .avg_vruntime : 126.474331\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324548.184268\\n .se->vruntime : 13036.683620\\n .se->sum_exec_runtime : 128.655587\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13051.403933\\n .avg_vruntime : 13051.403933\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 18\\n .runnable_avg : 191\\n .util_avg : 191\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 18\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324638.299982\\n .se->vruntime : 20597.147253\\n .se->sum_exec_runtime : 3407.983521\\n .se->load.weight : 40960\\n .se->avg.load_avg : 7\\n .se->avg.util_avg : 191\\n .se->avg.runnable_avg : 191\\n\\ncfs_rq[6]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 20597.147253\\n .avg_vruntime : 20597.147253\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 7\\n .runnable_avg : 191\\n .util_avg : 191\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 7\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324638.299982\\n .se->vruntime : 118060.654794\\n .se->sum_exec_runtime : 5981.807939\\n .se->load.weight : 15650\\n .se->avg.load_avg : 2\\n .se->avg.util_avg : 191\\n .se->avg.runnable_avg : 191\\n\\ncfs_rq[6]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 623.721490\\n .avg_vruntime : 623.721490\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.930574\\n .se->vruntime : 85110.553362\\n .se->sum_exec_runtime : 646.748788\\n .se->load.weight : 146312\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 638.843378\\n .avg_vruntime : 638.843378\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.412678\\n .se->vruntime : 85110.524497\\n .se->sum_exec_runtime : 650.246800\\n .se->load.weight : 73202\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 78.858044\\n .avg_vruntime : 78.858044\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.843939\\n .se->vruntime : 85100.993473\\n .se->sum_exec_runtime : 79.968393\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1314.956593\\n .avg_vruntime : 1314.956593\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324624.225057\\n .se->vruntime : 85111.002818\\n .se->sum_exec_runtime : 1317.689636\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9345.370698\\n .avg_vruntime : 9345.370698\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324575.753633\\n .se->vruntime : 85110.973232\\n .se->sum_exec_runtime : 9900.314300\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/fwupd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 116.351585\\n .avg_vruntime : 116.351585\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324431.476074\\n .se->vruntime : 85110.636879\\n .se->sum_exec_runtime : 117.400161\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/rtkit-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 14.898873\\n .avg_vruntime : 14.898873\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324569.102274\\n .se->vruntime : 85110.801272\\n .se->sum_exec_runtime : 13.114845\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 77.053928\\n .avg_vruntime : 77.053928\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.738691\\n .se->vruntime : 85111.351550\\n .se->sum_exec_runtime : 97.555730\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 85111.351550\\n .avg_vruntime : 85111.351550\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.738691\\n .se->vruntime : 118061.006982\\n .se->sum_exec_runtime : 30358.120935\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 118061.132049\\n .avg_vruntime : 118061.132049\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 14\\n .runnable_avg : 191\\n .util_avg : 181\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[6]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.016400\\n .rt_runtime : 950.000000\\n\\ndl_rq[6]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n I rcu_preempt 17 118061.132049 E 118064.110284 3.000000 754.063653 21389 120 0.000000 754.063653 0.000000 0.000000 0 0 /\\n S cpuhp/6 51 8615.222785 E 8618.158454 3.000000 0.252486 26 120 0.000000 0.252486 0.000000 0.000000 0 0 /\\n S idle_inject/6 52 -1.048596 E 1.201404 2.250000 0.001435 3 49 0.000000 0.001435 0.000000 0.000000 0 0 /\\n S migration/6 53 3.285100 E 5.534388 2.250000 180.348788 402 0 0.000000 180.348788 0.000000 0.000000 0 0 /\\n S ksoftirqd/6 54 118007.465929 E 118010.441380 3.000000 28.100872 795 120 0.000000 28.100872 0.000000 0.000000 0 0 /\\n I kworker/6:0H 56 115610.911527 E 115610.946119 3.000000 8.061906 471 100 0.000000 8.061906 0.000000 0.000000 0 0 /\\n S irq/130-pciehp 97 0.333820 E 2.665268 3.000000 0.005759 3 49 0.000000 0.005759 0.000000 0.000000 0 0 /\\n I kworker/6:1H 104 0.901750 E 0.936338 3.000000 0.024295 2 100 0.000000 0.024295 0.000000 0.000000 0 0 /\\n Ikworker/R-ext4- 265 715.149068 E 715.183650 3.000000 0.016782 2 100 0.000000 0.016782 0.000000 0.000000 0 0 /\\n Ssystemd-journal 315 77.053928 E 79.385613 3.000000 799.213986 2108 119 0.000000 799.213986 0.000000 0.000000 0 0 /system.slice/systemd-journald.service\\n Sirq/199-iwlwifi 542 3741.720024 E 3744.718960 3.000000 4.839599 51 49 0.000000 4.839599 0.000000 0.000000 0 0 /\\n I kworker/6:3 640 110519.636780 E 110522.617336 3.000000 138.671157 2206 120 0.000000 138.671157 0.000000 0.000000 0 0 /\\n S avahi-daemon 793 78.858044 E 81.781536 3.000000 693.919657 2488 120 0.000000 693.919657 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n Siio-sensor-prox 804 51.794222 E 54.650306 3.000000 342.582748 667 120 0.000000 342.582748 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S pool-spawner 931 3.995045 E 6.943176 3.000000 0.051869 1 120 0.000000 0.051869 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S snapd 926 441.259747 E 444.220981 3.000000 119.509082 475 120 0.000000 119.509082 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1045 246.848037 E 249.653279 3.000000 94.409312 356 120 0.000000 94.409312 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2920 444.052352 E 447.021694 3.000000 87.866976 248 120 0.000000 87.866976 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 958 9.238449 E 12.208952 3.000000 0.475075 10 120 0.000000 0.475075 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 949 3.796978 E 6.673936 3.000000 0.123042 1 120 0.000000 0.123042 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 1112 5.262021 E 8.244316 3.000000 0.017705 1 120 0.000000 0.017705 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S udisksd 845 69.372631 E 69.715149 3.000000 157.873459 561 120 0.000000 157.873459 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gmain 875 70.250837 E 73.168329 3.000000 48.554062 338 120 0.000000 48.554062 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S probing-thread 1075 6.567609 E 9.544668 3.000000 0.022941 1 120 0.000000 0.022941 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 937 1.153308 E 4.086953 3.000000 0.098542 2 120 0.000000 0.098542 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S upowerd 1086 110.824183 E 111.692238 3.000000 286.714120 222 120 0.000000 286.714120 0.000000 0.000000 0 0 /system.slice/upower.service\\n S psimon 1430 9260.147662 E 9263.146878 3.000000 0.006730 2 98 0.000000 0.006730 0.000000 0.000000 0 0 /\\n S containerd 1457 623.721490 E 626.719367 3.000000 326.269032 20655 120 0.000000 326.269032 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1476 621.639074 E 624.634020 3.000000 308.120715 7294 120 0.000000 308.120715 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 5141 575.776045 E 577.990513 3.000000 74.333662 3166 120 0.000000 74.333662 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1530 2.618657 E 5.543553 3.000000 0.223127 6 120 0.000000 0.223127 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sdbus-run-sessio 1533 0.258773 E 2.587285 3.000000 1.487986 5 120 0.000000 1.487986 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1549 14.898873 E 17.866387 3.000000 15.457377 196 120 0.000000 15.457377 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S rtkit-daemon 1550 -1.032441 E 2.697765 3.000000 10.838371 179 0 0.000000 10.838371 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S gmain 1566 17.297077 E 20.277928 3.000000 0.097746 7 120 0.000000 0.097746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1570 17.355420 E 20.297077 3.000000 0.588370 21 120 0.000000 0.588370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3029 275.589042 E 276.659165 3.000000 15.079471 7 120 0.000000 15.079471 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S krfcommd 1621 10074.755342 E 10075.075292 3.000000 0.065550 2 110 0.000000 0.065550 0.000000 0.000000 0 0 /\\n S dockerd 1667 360.733205 E 363.572264 3.000000 44.912651 1440 120 0.000000 44.912651 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1668 10.959996 E 13.909631 3.000000 0.136753 4 120 0.000000 0.136753 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1671 376.622448 E 379.612498 3.000000 35.314543 1107 120 0.000000 35.314543 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1659 1.116025 E 4.050994 3.000000 3.821425 28 120 0.000000 3.821425 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S sshd 1702 74.518561 E 77.246586 3.000000 11.486317 11 120 0.000000 11.486317 0.000000 0.000000 0 0 /system.slice/ssh.service\\n Scontainerd-shim 2398 30.228595 E 33.220919 3.000000 3.863503 51 120 0.000000 3.863503 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2400 554.337210 E 557.242747 3.000000 10.751978 407 120 0.000000 10.751978 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2417 28.278836 E 31.246599 3.000000 0.032237 1 120 0.000000 0.032237 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2418 30.220839 E 33.148343 3.000000 0.624572 15 120 0.000000 0.624572 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2419 554.242747 E 557.182381 3.000000 74.970025 201 120 0.000000 74.970025 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2717 7.476168 E 10.461486 3.000000 28.234681 817 120 0.000000 28.234681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2724 8.330328 E 11.312981 3.000000 0.730104 41 120 0.000000 0.730104 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2729 0.009183 E 2.987065 3.000000 0.474507 16 120 0.000000 0.474507 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2763 71.490749 E 74.323031 3.000000 33.909180 130 120 0.000000 33.909180 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3037 69.004645 E 71.977650 3.000000 0.026995 1 120 0.000000 0.026995 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3083 288.025683 E 289.715393 3.000000 1.607031 8 120 0.000000 1.607031 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3088 286.715393 E 289.284690 3.000000 1.401843 9 120 0.000000 1.401843 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3124 87.455847 E 90.416578 3.000000 0.039269 1 120 0.000000 0.039269 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3131 302.640897 E 305.308430 3.000000 2.994609 50 120 0.000000 2.994609 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-rfkill 3114 1990.336722 E 1993.261817 3.000000 24.043231 284 120 0.000000 24.043231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3148 1990.294096 E 1993.065809 3.000000 49.947497 302 120 0.000000 49.947497 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3158 93.881548 E 96.817284 3.000000 0.064264 1 120 0.000000 0.064264 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3182 109.126031 E 111.562635 3.000000 0.591888 2 120 0.000000 0.591888 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3184 108.724420 E 111.678855 3.000000 0.093578 2 120 0.000000 0.093578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3216 109.368449 E 112.350997 3.000000 0.217820 14 120 0.000000 0.217820 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3213 602.863968 E 605.510516 3.000000 272.558231 744 120 0.000000 272.558231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3293 586.573053 E 589.290637 3.000000 24.862703 32 120 0.000000 24.862703 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3337 606.691952 E 609.593211 3.000000 1.370128 13 120 0.000000 1.370128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3338 606.814834 E 609.691952 3.000000 1.139504 13 120 0.000000 1.139504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S module-rt 3510 4.969118 E 7.891565 3.000000 0.240480 6 120 0.000000 0.240480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3523 5.394138 E 8.306091 3.000000 0.426467 6 120 0.000000 0.426467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3546 5.427172 E 8.394138 3.000000 0.089890 2 120 0.000000 0.089890 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3548 5.547188 E 8.427172 3.000000 0.773129 24 120 0.000000 0.773129 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3712 2983.668073 E 2985.997525 3.000000 274.816112 590 120 0.000000 274.816112 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S gmain 4749 16.047752 E 18.987863 3.000000 0.059889 1 120 0.000000 0.059889 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/6:0 4983 118061.050670 E 118064.027623 3.000000 176.590400 2256 120 0.000000 176.590400 0.000000 0.000000 0 0 /\\n S docker 5106 125.613300 E 128.582270 3.000000 43.211643 37 120 0.000000 43.211643 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5139 126.474331 E 129.460073 3.000000 51.415960 367 120 0.000000 51.415960 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5213 636.548267 E 639.530332 3.000000 1.596531 70 120 0.000000 1.596531 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5240 265.802650 E 268.788465 3.000000 0.020995 2 120 0.000000 0.020995 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5243 266.286329 E 269.275178 3.000000 0.261505 4 120 0.000000 0.261505 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5264 273.123925 E 276.097681 3.000000 1.821770 25 120 0.000000 1.821770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5266 267.028584 E 270.019464 3.000000 0.210716 13 120 0.000000 0.210716 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5339 579.933398 E 582.803466 3.000000 67.279197 286 120 0.000000 67.279197 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6329 517.535375 E 520.502377 3.000000 7.293136 45 120 0.000000 7.293136 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 6330 482.410504 E 485.226121 3.000000 2.054356 6 120 0.000000 2.054356 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5422 580.803314 E 583.761670 3.000000 63.972142 135 120 0.000000 63.972142 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5450 279.103396 E 282.098400 3.000000 2.396339 8 120 0.000000 2.396339 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5453 580.761670 E 583.723032 3.000000 34.844881 121 120 0.000000 34.844881 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5460 580.723032 E 583.505193 3.000000 61.315981 182 120 0.000000 61.315981 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5604 954.763097 E 957.751202 3.000000 28.240943 116 120 0.000000 28.240943 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5663 1792.640288 E 1795.640288 3.000000 38.952545 12 120 0.000000 38.952545 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5668 1789.732642 E 1791.724291 3.000000 35.988177 10 120 0.000000 35.988177 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5606 969.507874 E 972.497742 3.000000 25.491566 11 120 0.000000 25.491566 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5609 971.056429 E 974.046014 3.000000 27.020193 26 120 0.000000 27.020193 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5610 971.458654 E 974.453476 3.000000 27.417031 12 120 0.000000 27.417031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5707 1930.771185 E 1933.761817 3.000000 30.988047 9 120 0.000000 30.988047 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6332 7107.306165 E 7109.972962 3.000000 1.236847 6 120 0.000000 1.236847 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5628 1001.868572 E 1004.809337 3.000000 27.930046 12 120 0.000000 27.930046 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5629 1002.170072 E 1005.109190 3.000000 33.107018 10 120 0.000000 33.107018 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5679 1895.668218 E 1898.660660 3.000000 32.971433 10 120 0.000000 32.971433 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5683 1896.759957 E 1898.798855 3.000000 34.012241 10 120 0.000000 34.012241 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5576 9345.370698 E 9348.262087 3.000000 6409.269122 9844 120 0.000000 6409.269122 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5720 1943.308345 E 1946.308345 3.000000 26.777888 7 120 0.000000 26.777888 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5723 1942.666364 E 1944.688960 3.000000 26.120826 8 120 0.000000 26.120826 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6338 3080.378005 E 3083.193564 3.000000 9.671179 24 120 0.000000 9.671179 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5620 234.680396 E 237.623322 3.000000 109.511939 523 120 0.000000 109.511939 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6954 97.530568 E 100.452191 3.000000 6.320513 15 120 0.000000 6.320513 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n SGUsbEventThread 7552 116.351585 E 119.324586 3.000000 42.907707 410 120 0.000000 42.907707 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/6:1 7633 116163.429720 E 116166.402601 3.000000 56.989598 404 120 0.000000 56.989598 0.000000 0.000000 0 0 /\\n I kworker/6:2 7638 110519.642322 E 110522.639838 3.000000 0.105822 4 120 0.000000 0.105822 0.000000 0.000000 0 0 /\\n S python3 8200 3174.400199 E 3177.380250 3.000000 436.402123 538 120 0.000000 436.402123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8202 2983.839844 E 2986.828296 3.000000 0.093152 3 120 0.000000 0.093152 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8205 2983.828296 E 2986.817894 3.000000 0.078619 5 120 0.000000 0.078619 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8294 3111.907958 E 3114.800953 3.000000 110.873270 6 120 0.000000 110.873270 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#7, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 206358\\n .nr_uninterruptible : -73\\n .next_balance : 4295.991778\\n .curr->pid : 0\\n .clock : 1324661.684881\\n .clock_task : 1324661.684881\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[7]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5284.777159\\n .avg_vruntime : 5284.777159\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2517\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324381.572648\\n .se->vruntime : 15026.854191\\n .se->sum_exec_runtime : 5291.335971\\n .se->load.weight : 84747\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15026.854191\\n .avg_vruntime : 15026.854191\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324381.572648\\n .se->vruntime : 24666.700600\\n .se->sum_exec_runtime : 5462.036964\\n .se->load.weight : 83595\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6856.816351\\n .avg_vruntime : 6856.816351\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324658.919221\\n .se->vruntime : 80711.455717\\n .se->sum_exec_runtime : 7497.919267\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 761.656662\\n .avg_vruntime : 761.656662\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324490.844927\\n .se->vruntime : 80710.988718\\n .se->sum_exec_runtime : 780.672329\\n .se->load.weight : 104857\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 754.102890\\n .avg_vruntime : 754.102890\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324372.303740\\n .se->vruntime : 80707.913739\\n .se->sum_exec_runtime : 765.681337\\n .se->load.weight : 90687\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 364.932314\\n .avg_vruntime : 364.932314\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.884600\\n .se->vruntime : 80696.640102\\n .se->sum_exec_runtime : 366.050027\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/systemd-logind.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 208.980820\\n .avg_vruntime : 208.980820\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.430299\\n .se->vruntime : 80711.360220\\n .se->sum_exec_runtime : 210.055684\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 80711.455717\\n .avg_vruntime : 80711.455717\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324658.919221\\n .se->vruntime : 126834.324524\\n .se->sum_exec_runtime : 30203.211945\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 24666.700600\\n .avg_vruntime : 24666.700600\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324381.572648\\n .se->vruntime : 126833.600904\\n .se->sum_exec_runtime : 10024.489206\\n .se->load.weight : 81636\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 126834.324524\\n .avg_vruntime : 126834.324524\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[7]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[7]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S kthreadd 2 125182.756019 E 125185.738945 3.000000 8.793832 235 120 0.000000 8.793832 0.000000 0.000000 0 0 /\\n S cpuhp/7 57 8699.309454 E 8702.275668 3.000000 0.282413 26 120 0.000000 0.282413 0.000000 0.000000 0 0 /\\n S idle_inject/7 58 -1.048578 E 1.201422 2.250000 0.001352 3 49 0.000000 0.001352 0.000000 0.000000 0 0 /\\n S migration/7 59 3.384442 E 5.633801 2.250000 180.563786 396 0 0.000000 180.563786 0.000000 0.000000 0 0 /\\n S ksoftirqd/7 60 126824.477970 E 126827.473460 3.000000 19.683308 530 120 0.000000 19.683308 0.000000 0.000000 0 0 /\\n I kworker/7:0H 62 125232.866247 E 125232.899417 3.000000 10.910973 378 100 0.000000 10.910973 0.000000 0.000000 0 0 /\\n S kdevtmpfs 63 9325.916585 E 9328.878568 3.000000 8.686237 285 120 0.000000 8.686237 0.000000 0.000000 0 0 /\\n S kswapd0 91 0.799409 E 2.181565 3.000000 0.034879 3 120 0.000000 0.034879 0.000000 0.000000 0 0 /\\n Secryptfs-kthrea 92 -1.016388 E 1.982554 3.000000 0.003235 2 120 0.000000 0.003235 0.000000 0.000000 0 0 /\\n I kworker/7:1H 186 54.192213 E 54.226778 3.000000 0.130453 2 100 0.000000 0.130453 0.000000 0.000000 0 0 /\\n I kworker/7:2 196 124230.621364 E 124233.229508 3.000000 226.700269 1019 120 0.000000 226.700269 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 220 260.331222 E 260.365822 3.000000 0.004276 2 100 0.000000 0.004276 0.000000 0.000000 0 0 /\\n Sirq/200-iwlwifi 543 3741.722959 E 3744.721790 3.000000 198.479866 1031 49 0.000000 198.479866 0.000000 0.000000 0 0 /\\n S gmain 932 5.984093 E 8.944402 3.000000 0.039691 1 120 0.000000 0.039691 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n Spower-profiles- 815 6.306037 E 8.958709 3.000000 42.592465 217 120 0.000000 42.592465 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 849 306.681853 E 309.672843 3.000000 347.607409 16995 120 0.000000 347.607409 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2924 306.627817 E 309.481564 3.000000 179.155143 169 120 0.000000 179.155143 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S pool-spawner 952 0.552605 E 2.408198 3.000000 0.084044 2 120 0.000000 0.084044 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S systemd-logind 842 208.980820 E 211.888526 3.000000 1446.920295 6003 120 0.000000 1446.920295 0.000000 0.000000 0 0 /system.slice/systemd-logind.service\\n S gmain 874 8.807278 E 11.798542 3.000000 0.044986 2 120 0.000000 0.044986 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gdbus 906 364.932314 E 367.803722 3.000000 86.335300 376 120 0.000000 86.335300 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S ModemManager 1073 40.415939 E 43.226164 3.000000 83.160441 399 120 0.000000 83.160441 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gdbus 1104 39.518224 E 42.502553 3.000000 25.922954 100 120 0.000000 25.922954 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1120 -1.040991 E 1.951424 3.000000 0.113711 2 120 0.000000 0.113711 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sleep 1149 39.073787 E 39.604681 3.000000 7.280071 3 120 0.000000 7.280071 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S pool-spawner 1493 0.604404 E 2.386227 3.000000 0.063206 3 120 0.000000 0.063206 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 1513 11.763534 E 14.743230 3.000000 12.527238 32 120 0.000000 12.527238 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1525 22.920219 E 25.873281 3.000000 11.380453 155 120 0.000000 11.380453 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sxdg-document-po 1548 22.929418 E 25.920219 3.000000 6.358220 29 120 0.000000 6.358220 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fuse mainloop 1567 19.595470 E 22.587394 3.000000 0.137316 5 120 0.000000 0.137316 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1558 18.304433 E 21.267038 3.000000 0.111080 2 120 0.000000 0.111080 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1604 3789.243322 E 3791.150441 3.000000 25.220669 171 120 0.000000 25.220669 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1665 387.715999 E 390.699088 3.000000 82.085644 1953 120 0.000000 82.085644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1673 0.023012 E 2.973127 3.000000 0.586838 20 120 0.000000 0.586838 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1703 404.236973 E 407.207709 3.000000 45.206785 1218 120 0.000000 45.206785 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2677 718.478020 E 721.302116 3.000000 92.515374 3187 120 0.000000 92.515374 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2718 761.656662 E 764.627825 3.000000 328.727313 6677 120 0.000000 328.727313 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 7623 691.826320 E 694.096695 3.000000 28.115356 61 120 0.000000 28.115356 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2818 28.618281 E 31.575140 3.000000 15.566931 58 120 0.000000 15.566931 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Sat-spi-bus-laun 3022 424.559544 E 427.521167 3.000000 3.389602 32 120 0.000000 3.389602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayla:traceq0 3268 365.997005 E 570.481954 3.000000 0.077355 4 139 0.000000 0.077355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3043 57.661466 E 60.641092 3.000000 4.306383 153 120 0.000000 4.306383 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gdbus 3073 207.807359 E 210.334322 3.000000 2.467237 14 120 0.000000 2.467237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3110 30.677526 E 33.625817 3.000000 0.075552 2 120 0.000000 0.075552 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3111 30.630162 E 33.591988 3.000000 0.038174 1 120 0.000000 0.038174 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sharing 3080 3787.946030 E 3790.839335 3.000000 229.914838 1476 120 0.000000 229.914838 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3135 50.522322 E 53.477690 3.000000 0.080793 3 120 0.000000 0.080793 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3143 51.324937 E 54.279106 3.000000 0.083157 2 120 0.000000 0.083157 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3189 52.566712 E 55.538836 3.000000 0.112926 2 120 0.000000 0.112926 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3211 1467.846211 E 1470.663093 3.000000 19.246036 145 120 0.000000 19.246036 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-screensaver 3149 357.671192 E 360.642427 3.000000 5.256014 42 120 0.000000 5.256014 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3164 357.647615 E 360.580773 3.000000 4.749683 47 120 0.000000 4.749683 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3207 353.954110 E 356.900350 3.000000 0.139738 3 120 0.000000 0.139738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3291 223.408768 E 226.036502 3.000000 1.806394 7 120 0.000000 1.806394 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3343 3092.494350 E 3095.348483 3.000000 1.291563 13 120 0.000000 1.291563 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11:sh0 3385 419.506573 E 422.481074 3.000000 0.025499 1 120 0.000000 0.025499 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3392 424.607454 E 427.559544 3.000000 0.047910 1 120 0.000000 0.047910 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3370 394.943027 E 397.936848 3.000000 0.039410 2 120 0.000000 0.039410 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3380 419.140487 E 422.107152 3.000000 0.033335 1 120 0.000000 0.033335 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3464 22.074172 E 25.016557 3.000000 16.001058 53 120 0.000000 16.001058 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3517 12.573708 E 15.568099 3.000000 0.023024 3 120 0.000000 0.023024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-document-po 3544 22.100524 E 25.096416 3.000000 5.893123 20 120 0.000000 5.893123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3557 22.144924 E 25.141339 3.000000 0.142775 5 120 0.000000 0.142775 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3558 22.141339 E 25.132316 3.000000 0.068673 3 120 0.000000 0.068673 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3598 3.360579 E 6.033303 3.000000 11.821224 56 120 0.000000 11.821224 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/7:0 5028 126834.047891 E 126837.038871 3.000000 248.977012 1610 120 0.000000 248.977012 0.000000 0.000000 0 0 /\\n S docker-compose 5130 32.710798 E 35.321772 3.000000 4.743828 75 120 0.000000 4.743828 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5140 74.659401 E 77.423545 3.000000 30.888390 201 120 0.000000 30.888390 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5210 725.079408 E 728.058561 3.000000 56.358725 1095 120 0.000000 56.358725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5731 724.907868 E 727.900010 3.000000 0.466392 18 120 0.000000 0.466392 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5214 396.628965 E 399.619883 3.000000 1.632861 6 120 0.000000 1.632861 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5216 396.205006 E 399.151410 3.000000 0.149899 4 120 0.000000 0.149899 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5217 396.329416 E 399.319519 3.000000 0.046450 2 120 0.000000 0.046450 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5218 396.450772 E 399.445603 3.000000 0.020033 2 120 0.000000 0.020033 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5219 396.731794 E 399.686069 3.000000 0.045725 1 120 0.000000 0.045725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5222 396.826857 E 399.811763 3.000000 0.015094 1 120 0.000000 0.015094 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5235 270.215607 E 273.195321 3.000000 2.769908 8 120 0.000000 2.769908 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7610 706.354540 E 708.794211 3.000000 36.455905 61 120 0.000000 36.455905 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6177 711.258205 E 713.248273 3.000000 34.127673 64 120 0.000000 34.127673 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_aof 5372 6.171250 E 9.150339 3.000000 0.020911 1 120 0.000000 0.020911 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5403 610.053819 E 613.047265 3.000000 3.226369 18 120 0.000000 3.226369 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5452 712.060199 E 715.016528 3.000000 7.705601 462 120 0.000000 7.705601 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5457 284.338260 E 287.332839 3.000000 0.005421 1 120 0.000000 0.005421 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5539 712.016528 E 714.804061 3.000000 50.990681 145 120 0.000000 50.990681 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5562 2.778332 E 4.759018 3.000000 2.874720 9 120 0.000000 2.874720 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5570 6856.720947 E 6859.632012 3.000000 7033.650957 10833 120 0.000000 7033.650957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5601 910.364125 E 913.358635 3.000000 41.347394 21 120 0.000000 41.347394 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5662 1681.165612 E 1681.188384 3.000000 52.890599 17 120 0.000000 52.890599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5690 1759.655576 E 1761.689682 3.000000 32.986562 10 120 0.000000 32.986562 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6346 5129.599606 E 5130.300726 3.000000 2.373161 4 120 0.000000 2.373161 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5572 6856.816351 E 6859.720947 3.000000 6839.241484 9776 120 0.000000 6839.241484 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5611 927.013891 E 930.004534 3.000000 30.958221 12 120 0.000000 30.958221 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5673 1716.676043 E 1719.667802 3.000000 47.953219 14 120 0.000000 47.953219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5698 1774.551283 E 1776.580995 3.000000 33.736341 12 120 0.000000 33.736341 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6950 3585.432725 E 3588.280345 3.000000 9.846769 66 120 0.000000 9.846769 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5635 1287.816586 E 1288.577374 3.000000 38.206043 11 120 0.000000 38.206043 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5636 1287.895610 E 1290.746600 3.000000 38.107591 11 120 0.000000 38.107591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5627 989.132258 E 992.064464 3.000000 56.892128 21 120 0.000000 56.892128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5682 1750.007994 E 1752.998981 3.000000 35.980149 10 120 0.000000 35.980149 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6344 3198.674402 E 3201.541368 3.000000 11.659960 15 120 0.000000 11.659960 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5647 1753.844207 E 1756.837808 3.000000 23.001512 8 120 0.000000 23.001512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5650 1495.354451 E 1498.348112 3.000000 23.003437 7 120 0.000000 23.003437 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5651 1498.355809 E 1501.345904 3.000000 25.997880 8 120 0.000000 25.997880 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5653 1499.385527 E 1502.375556 3.000000 27.015431 8 120 0.000000 27.015431 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5721 1803.013378 E 1806.006859 3.000000 29.898894 9 120 0.000000 29.898894 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5722 1807.064009 E 1810.054337 3.000000 33.945514 12 120 0.000000 33.945514 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6336 5129.831449 E 5132.599606 3.000000 1.078567 6 120 0.000000 1.078567 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5623 259.725213 E 262.583276 3.000000 93.133282 1036 120 0.000000 93.133282 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 5624 255.010000 E 257.769863 3.000000 18.803296 141 120 0.000000 18.803296 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6349 127.340558 E 130.292789 3.000000 13.498190 22 120 0.000000 13.498190 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S libusb_event 7551 0.942863 E 1.951424 3.000000 0.105713 1 120 0.000000 0.105713 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/7:1 7636 124224.968731 E 124227.939001 3.000000 24.625998 181 120 0.000000 24.625998 0.000000 0.000000 0 0 /\\n I kworker/7:3 7899 124217.212175 E 124220.208838 3.000000 0.076763 2 120 0.000000 0.076763 0.000000 0.000000 0 0 /\\n I kworker/u16:0 8019 126746.457835 E 126749.451465 3.000000 3.242100 85 120 0.000000 3.242100 0.000000 0.000000 0 0 /\\n S python3 8295 5208.370720 E 5209.242078 3.000000 109.802917 11 120 0.000000 109.802917 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\n"}, "Docker Version": "Client: Docker Engine - Community\\n Version: 27.2.1\\n API version: 1.47\\n Go version: go1.22.7\\n Git commit: 9e34c9b\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Context: default\\n\\nServer: Docker Engine - Community\\n Engine:\\n Version: 27.2.1\\n API version: 1.47 (minimum version 1.24)\\n Go version: go1.22.7\\n Git commit: 8b539b8\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Experimental: false\\n containerd:\\n Version: 1.7.21\\n GitCommit: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc:\\n Version: 1.1.13\\n GitCommit: v1.1.13-0-g58aa920\\n docker-init:\\n Version: 0.19.0\\n GitCommit: de40ad0\\n", "Hardware Model": "Laptop", "Virtualization": "Unknown", "CPU Utilization": 0.0, "Hardware Vendor": "Framework", "Hyper Threading": "1", "Hardware Details": "framebook\\n description: Notebook\\n product: Laptop (FRANBMCP0A)\\n vendor: Framework\\n version: AA\\n serial: FRANBMCPAA1484005R\\n width: 64 bits\\n capabilities: smbios-3.3.0 dmi-3.3.0 smp vsyscall32\\n configuration: administrator_password=disabled boot=normal chassis=notebook family=FRANBMCP power-on_password=disabled sku=FRANBMCP0A uuid=1cd24d0f-5c53-ec11-810d-283616200463\\n *-core\\n description: Motherboard\\n product: FRANBMCP0A\\n vendor: Framework\\n physical id: 0\\n version: AA\\n serial: FRANBMCPAA1484005R\\n slot: *\\n *-firmware\\n description: BIOS\\n vendor: INSYDE Corp.\\n physical id: 0\\n version: 03.19\\n date: 05/29/2023\\n size: 128KiB\\n capacity: 12MiB\\n capabilities: pci upgrade shadowing cdboot bootselect int9keyboard int10video acpi usb biosbootspecification uefi\\n *-cpu\\n description: CPU\\n product: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\\n vendor: Intel Corp.\\n physical id: 4\\n bus info: cpu@0\\n version: 6.140.1\\n serial: To Be Filled By O.E.M.\\n slot: U3E1\\n size: 400MHz\\n capacity: 4200MHz\\n width: 64 bits\\n clock: 100MHz\\n capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect md_clear ibt flush_l1d arch_capabilities cpufreq\\n configuration: cores=4 enabledcores=4 microcode=184 threads=8\\n *-cache:0\\n description: L1 cache\\n physical id: 6\\n slot: L1 Cache\\n size: 128KiB\\n capacity: 128KiB\\n capabilities: synchronous internal write-back instruction\\n configuration: level=1\\n *-cache:1\\n description: L2 cache\\n physical id: 7\\n slot: L2 Cache\\n size: 5MiB\\n capacity: 5MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=2\\n *-cache:2\\n description: L3 cache\\n physical id: 8\\n slot: L3 Cache\\n size: 8MiB\\n capacity: 8MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=3\\n *-cache\\n description: L1 cache\\n physical id: 5\\n slot: L1 Cache\\n size: 192KiB\\n capacity: 192KiB\\n capabilities: synchronous internal write-back data\\n configuration: level=1\\n *-memory\\n description: System Memory\\n physical id: 14\\n slot: System board or motherboard\\n size: 32GiB\\n *-bank:0\\n description: [empty]\\n physical id: 0\\n slot: Controller0-ChannelA-DIMM0\\n *-bank:1\\n description: SODIMM DDR4 Synchronous 3200 MHz (0.3 ns)\\n product: CT32G4SFD832A.M16FF\\n vendor: Crucial Technology\\n physical id: 1\\n serial: E63FE743\\n slot: Controller1-ChannelA-DIMM0\\n size: 32GiB\\n width: 64 bits\\n clock: 3200MHz (0.3ns)\\n *-pci\\n description: Host bridge\\n product: 11th Gen Core Processor Host Bridge/DRAM Registers\\n vendor: Intel Corporation\\n physical id: 100\\n bus info: pci@0000:00:00.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n *-display\\n description: VGA compatible controller\\n product: TigerLake-LP GT2 [Iris Xe Graphics]\\n vendor: Intel Corporation\\n physical id: 2\\n bus info: pci@0000:00:02.0\\n logical name: /dev/fb0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb\\n configuration: depth=32 driver=i915 latency=0 mode=2256x1504 resolution=2256,1504 visual=truecolor xres=2256 yres=1504\\n resources: iomemory:600-5ff iomemory:400-3ff irq:204 memory:605c000000-605cffffff memory:4000000000-400fffffff ioport:3000(size=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff\\n *-generic:0\\n description: Signal processing controller\\n product: TigerLake-LP Dynamic Tuning Processor Participant\\n vendor: Intel Corporation\\n physical id: 4\\n bus info: pci@0000:00:04.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: driver=proc_thermal latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d180000-605d19ffff\\n *-pci:0\\n description: PCI bridge\\n product: 11th Gen Core Processor PCIe Controller\\n vendor: Intel Corporation\\n physical id: 6\\n bus info: pci@0000:00:06.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:126 memory:7a300000-7a3fffff\\n *-nvme\\n description: NVMe device\\n product: WDS100T1X0E-00AFY0\\n vendor: Sandisk Corp\\n physical id: 0\\n bus info: pci@0000:01:00.0\\n logical name: /dev/nvme0\\n version: 614900WD\\n serial: 22047A801405\\n width: 64 bits\\n clock: 33MHz\\n capabilities: nvme pm msi msix pciexpress nvm_express bus_master cap_list\\n configuration: driver=nvme latency=0 nqn=nqn.2018-01.com.wdc:nguid:E8238FA6BF53-0001-001B448B45A2BCF6 state=live\\n resources: irq:16 memory:7a300000-7a303fff\\n *-namespace:0\\n description: NVMe disk\\n physical id: 0\\n logical name: hwmon2\\n *-namespace:1\\n description: NVMe disk\\n physical id: 2\\n logical name: /dev/ng0n1\\n *-namespace:2\\n description: NVMe disk\\n physical id: 1\\n bus info: nvme@0:1\\n logical name: /dev/nvme0n1\\n size: 931GiB (1TB)\\n capabilities: gpt-1.00 partitioned partitioned:gpt\\n configuration: guid=45dd4e4e-5082-4f7b-926f-7bfbac3490ba logicalsectorsize=512 sectorsize=512 wwid=eui.e8238fa6bf530001001b448b45a2bcf6\\n *-volume:0 UNCLAIMED\\n description: Windows FAT volume\\n vendor: MSDOS5.0\\n physical id: 1\\n bus info: nvme@0:1,1\\n version: FAT32\\n serial: 74bd-e763\\n size: 95MiB\\n capacity: 99MiB\\n capabilities: boot fat initialized\\n configuration: FATs=2 filesystem=fat name=EFI system partition\\n *-volume:1\\n description: reserved partition\\n vendor: Windows\\n physical id: 2\\n bus info: nvme@0:1,2\\n logical name: /dev/nvme0n1p2\\n serial: 0ea6d81a-270e-4676-b42f-41e3e89d8733\\n capacity: 15MiB\\n capabilities: nofs\\n configuration: name=Microsoft reserved partition\\n *-volume:2\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 3\\n bus info: nvme@0:1,3\\n logical name: /dev/nvme0n1p3\\n version: 3.1\\n serial: c851c6e2-393b-f34f-a874-3f47e3b4d22a\\n size: 465GiB\\n capacity: 465GiB\\n capabilities: ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:22:01 filesystem=ntfs name=Basic data partition state=clean\\n *-volume:3\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 4\\n bus info: nvme@0:1,4\\n logical name: /dev/nvme0n1p4\\n version: 3.1\\n serial: 4c29-9ee3\\n size: 523MiB\\n capacity: 523MiB\\n capabilities: boot precious ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:25:01 filesystem=ntfs state=clean\\n *-volume:4\\n description: EXT4 volume\\n vendor: Linux\\n physical id: 5\\n bus info: nvme@0:1,5\\n logical name: /dev/nvme0n1p5\\n logical name: /\\n logical name: /var/snap/firefox/common/host-hunspell\\n version: 1.0\\n serial: c6c4e62b-4240-443a-8feb-6001a7f1b7b5\\n size: 465GiB\\n capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized\\n configuration: created=2024-03-22 19:59:07 filesystem=ext4 lastmountpoint=/ modified=2024-09-12 18:36:24 mount.fstype=ext4 mount.options=ro,noexec,noatime,errors=remount-ro mounted=2024-09-12 18:36:25 state=mounted\\n *-pci:1\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0\\n vendor: Intel Corporation\\n physical id: 7\\n bus info: pci@0000:00:07.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:127 ioport:4000(size=4096) memory:7c000000-881fffff ioport:6000000000(size=469762048)\\n *-pci:2\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1\\n vendor: Intel Corporation\\n physical id: 7.1\\n bus info: pci@0000:00:07.1\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:128 ioport:5000(size=4096) memory:6e000000-7a1fffff ioport:6020000000(size=469762048)\\n *-pci:3\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2\\n vendor: Intel Corporation\\n physical id: 7.2\\n bus info: pci@0000:00:07.2\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:129 ioport:6000(size=4096) memory:60000000-6c1fffff ioport:6040000000(size=469762048)\\n *-pci:4\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3\\n vendor: Intel Corporation\\n physical id: 7.3\\n bus info: pci@0000:00:07.3\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:130 ioport:7000(size=4096) memory:52000000-5e1fffff ioport:6060000000(size=469762048)\\n *-generic:1 UNCLAIMED\\n description: System peripheral\\n product: GNA Scoring Accelerator module\\n vendor: Intel Corporation\\n physical id: 8\\n bus info: pci@0000:00:08.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff memory:605d1d8000-605d1d8fff\\n *-generic:2\\n description: Signal processing controller\\n product: Tigerlake Telemetry Aggregator Driver\\n vendor: Intel Corporation\\n physical id: a\\n bus info: pci@0000:00:0a.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress pm cap_list\\n configuration: driver=intel_vsec latency=0\\n resources: iomemory:600-5ff irq:0 memory:605d1c0000-605d1c7fff\\n *-usb:0\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 USB Controller\\n vendor: Intel Corporation\\n physical id: d\\n bus info: pci@0000:00:0d.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: iomemory:600-5ff irq:148 memory:605d1b0000-605d1bffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@1\\n logical name: usb1\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=1 speed=480Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@2\\n logical name: usb2\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-usb:1\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #0\\n vendor: Intel Corporation\\n physical id: d.2\\n bus info: pci@0000:00:0d.2\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d140000-605d17ffff memory:605d1d7000-605d1d7fff\\n *-usb:2\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #1\\n vendor: Intel Corporation\\n physical id: d.3\\n bus info: pci@0000:00:0d.3\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d100000-605d13ffff memory:605d1d6000-605d1d6fff\\n *-communication:0\\n description: Serial controller\\n product: Tiger Lake-LP Integrated Sensor Hub\\n vendor: Intel Corporation\\n physical id: 12\\n bus info: pci@0000:00:12.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm 8250 bus_master cap_list\\n configuration: driver=intel_ish_ipc latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1a0000-605d1affff\\n *-usb:3\\n description: USB controller\\n product: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller\\n vendor: Intel Corporation\\n physical id: 14\\n bus info: pci@0000:00:14.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: irq:156 memory:7a400000-7a40ffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@3\\n logical name: usb3\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=12 speed=480Mbit/s\\n *-usb:0\\n description: Human interface device\\n product: HDMI Expansion Card\\n vendor: Framework\\n physical id: 1\\n bus info: usb@3:1\\n version: 0.00\\n serial: 11AD1D0001DB3E1540120B00\\n capabilities: usb-2.01\\n configuration: driver=usbhid maxpower=100mA speed=12Mbit/s\\n *-usb:1\\n description: Video\\n product: Laptop Camera\\n vendor: Generic\\n physical id: 7\\n bus info: usb@3:7\\n version: 0.21\\n serial: 200901010001\\n capabilities: usb-2.01\\n configuration: driver=uvcvideo maxpower=300mA speed=480Mbit/s\\n *-usb:2 UNCLAIMED\\n description: Generic USB device\\n product: Goodix USB2.0 MISC\\n vendor: Goodix Technology Co., Ltd.\\n physical id: 9\\n bus info: usb@3:9\\n version: 1.00\\n serial: UID7D62CCAE_XXXX_MOC_B0\\n capabilities: usb-2.00\\n configuration: maxpower=100mA speed=12Mbit/s\\n *-usb:3\\n description: Bluetooth wireless interface\\n product: AX210 Bluetooth\\n vendor: Intel Corp.\\n physical id: a\\n bus info: usb@3:a\\n version: 0.00\\n capabilities: bluetooth usb-2.01\\n configuration: driver=btusb maxpower=100mA speed=12Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@4\\n logical name: usb4\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-memory UNCLAIMED\\n description: RAM memory\\n product: Tiger Lake-LP Shared SRAM\\n vendor: Intel Corporation\\n physical id: 14.2\\n bus info: pci@0000:00:14.2\\n version: 20\\n width: 64 bits\\n clock: 33MHz (30.3ns)\\n capabilities: pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff memory:605d1cc000-605d1cffff memory:605d1d5000-605d1d5fff\\n *-serial:0\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #0\\n vendor: Intel Corporation\\n physical id: 15\\n bus info: pci@0000:00:15.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:27 memory:4017000000-4017000fff\\n *-serial:1\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #1\\n vendor: Intel Corporation\\n physical id: 15.1\\n bus info: pci@0000:00:15.1\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:40 memory:4017001000-4017001fff\\n *-serial:2\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #3\\n vendor: Intel Corporation\\n physical id: 15.3\\n bus info: pci@0000:00:15.3\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:30 memory:4017002000-4017002fff\\n *-communication:1\\n description: Communication controller\\n product: Tiger Lake-LP Management Engine Interface\\n vendor: Intel Corporation\\n physical id: 16\\n bus info: pci@0000:00:16.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=mei_me latency=0\\n resources: iomemory:600-5ff irq:191 memory:605d1d1000-605d1d1fff\\n *-pci:5\\n description: PCI bridge\\n product: Tiger Lake-LP PCI Express Root Port #10\\n vendor: Intel Corporation\\n physical id: 1d\\n bus info: pci@0000:00:1d.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:131 memory:7a200000-7a2fffff\\n *-network\\n description: Wireless interface\\n product: Wi-Fi 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak]\\n vendor: Intel Corporation\\n physical id: 0\\n bus info: pci@0000:aa:00.0\\n logical name: wlp170s0\\n version: 1a\\n serial: 00:93:37:96:a0:14\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\\n configuration: broadcast=yes driver=iwlwifi driverversion=6.8.0-44-generic firmware=86.fb5c9aeb.0 ty-a0-gf-a0-86.uc ip=192.168.179.3 latency=0 link=yes multicast=yes wireless=IEEE 802.11\\n resources: irq:17 memory:7a200000-7a203fff\\n *-isa\\n description: ISA bridge\\n product: Tiger Lake-LP LPC Controller\\n vendor: Intel Corporation\\n physical id: 1f\\n bus info: pci@0000:00:1f.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: isa bus_master\\n configuration: latency=0\\n *-pnp00:00\\n product: PnP device PNP0303\\n physical id: 0\\n capabilities: pnp\\n configuration: driver=i8042 kbd\\n *-pnp00:01\\n product: PnP device PNP0f03\\n physical id: 1\\n capabilities: pnp\\n configuration: driver=i8042 aux\\n *-pnp00:02\\n product: PnP device PNP0c02\\n physical id: 2\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:03\\n product: PnP device PNP0c02\\n physical id: 3\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:04\\n product: PnP device PNP0c02\\n physical id: 4\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:05\\n product: PnP device PNP0c02\\n physical id: 5\\n capabilities: pnp\\n configuration: driver=system\\n *-multimedia\\n description: Audio device\\n product: Tiger Lake-LP Smart Sound Technology Audio Controller\\n vendor: Intel Corporation\\n physical id: 1f.3\\n bus info: pci@0000:00:1f.3\\n logical name: card0\\n logical name: /dev/snd/controlC0\\n logical name: /dev/snd/hwC0D0\\n logical name: /dev/snd/hwC0D2\\n logical name: /dev/snd/pcmC0D0c\\n logical name: /dev/snd/pcmC0D0p\\n logical name: /dev/snd/pcmC0D3p\\n logical name: /dev/snd/pcmC0D7p\\n logical name: /dev/snd/pcmC0D8p\\n logical name: /dev/snd/pcmC0D9p\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=snd_hda_intel latency=32\\n resources: iomemory:600-5ff iomemory:600-5ff irq:205 memory:605d1c8000-605d1cbfff memory:605d000000-605d0fffff\\n *-input:0\\n product: HDA Intel PCH Mic\\n physical id: 0\\n logical name: input12\\n logical name: /dev/input/event9\\n *-input:1\\n product: HDA Intel PCH Headphone\\n physical id: 1\\n logical name: input13\\n logical name: /dev/input/event10\\n *-input:2\\n product: HDA Intel PCH HDMI/DP,pcm=3\\n physical id: 2\\n logical name: input14\\n logical name: /dev/input/event11\\n *-input:3\\n product: HDA Intel PCH HDMI/DP,pcm=7\\n physical id: 3\\n logical name: input15\\n logical name: /dev/input/event12\\n *-input:4\\n product: HDA Intel PCH HDMI/DP,pcm=8\\n physical id: 4\\n logical name: input16\\n logical name: /dev/input/event13\\n *-input:5\\n product: HDA Intel PCH HDMI/DP,pcm=9\\n physical id: 5\\n logical name: input17\\n logical name: /dev/input/event14\\n *-serial:3\\n description: SMBus\\n product: Tiger Lake-LP SMBus Controller\\n vendor: Intel Corporation\\n physical id: 1f.4\\n bus info: pci@0000:00:1f.4\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n configuration: driver=i801_smbus latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1d0000-605d1d00ff ioport:efa0(size=32)\\n *-serial:4\\n description: Serial bus controller\\n product: Tiger Lake-LP SPI Controller\\n vendor: Intel Corporation\\n physical id: 1f.5\\n bus info: pci@0000:00:1f.5\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: bus_master\\n configuration: driver=intel-spi latency=0\\n resources: irq:0 memory:50400000-50400fff\\n *-battery\\n description: Lithium Ion Battery\\n product: FRANBBAT\\n vendor: FRANBBATA112610BG3\\n physical id: 1\\n version: 2021/7/5\\n serial: 0194\\n slot: Front\\n configuration: voltage=0.0V\\n *-power UNCLAIMED\\n description: OEM Define 1\\n product: OEM Define 5\\n vendor: OEM Define 2\\n physical id: 2\\n version: OEM Define 6\\n serial: OEM Define 3\\n capacity: 75mWh\\n *-input:0\\n product: Lid Switch\\n physical id: 3\\n logical name: input0\\n logical name: /dev/input/event0\\n capabilities: platform\\n *-input:1\\n product: Power Button\\n physical id: 4\\n logical name: input1\\n logical name: /dev/input/event1\\n capabilities: platform\\n *-input:2\\n product: PIXA3854:00 093A:0274 Touchpad\\n physical id: 5\\n logical name: input10\\n logical name: /dev/input/event6\\n logical name: /dev/input/mouse1\\n capabilities: i2c\\n *-input:3\\n product: Video Bus\\n physical id: 6\\n logical name: input11\\n logical name: /dev/input/event8\\n capabilities: platform\\n *-input:4\\n product: AT Translated Set 2 keyboard\\n physical id: 7\\n logical name: input2\\n logical name: /dev/input/event2\\n logical name: input2::capslock\\n logical name: input2::numlock\\n logical name: input2::scrolllock\\n capabilities: i8042\\n *-input:5\\n product: ImExPS/2 Generic Explorer Mouse\\n physical id: 8\\n logical name: input4\\n logical name: /dev/input/event7\\n logical name: /dev/input/mouse2\\n capabilities: i8042\\n *-input:6\\n product: FRMW0001:00 32AC:0006 Wireless Radio Control\\n physical id: 9\\n logical name: input5\\n logical name: /dev/input/event3\\n capabilities: i2c\\n *-input:7\\n product: FRMW0001:00 32AC:0006 Consumer Control\\n physical id: a\\n logical name: input6\\n logical name: /dev/input/event4\\n capabilities: i2c\\n *-input:8\\n product: PIXA3854:00 093A:0274 Mouse\\n physical id: b\\n logical name: input9\\n logical name: /dev/input/event5\\n logical name: /dev/input/mouse0\\n capabilities: i2c\\n", "Operating System": "Ubuntu 24.04.1 LTS", "Scaling Governor": "powersave", "CPU Complete Dump": {"/sys/devices/system/cpu/online": "0-7\\n", "/sys/devices/system/cpu/uevent": "", "/sys/devices/system/cpu/offline": "\\n", "/sys/devices/system/cpu/present": "0-7\\n", "/sys/devices/system/cpu/isolated": "\\n", "/sys/devices/system/cpu/modalias": "cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n", "/sys/devices/system/cpu/possible": "0-7\\n", "/sys/devices/system/cpu/nohz_full": " (null)\\n", "/sys/devices/system/cpu/kernel_max": "8191\\n", "/sys/devices/system/cpu/smt/active": "1\\n", "/sys/devices/system/cpu/cpu0/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu1/online": "1\\n", "/sys/devices/system/cpu/cpu1/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu2/online": "1\\n", "/sys/devices/system/cpu/cpu2/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu3/online": "1\\n", "/sys/devices/system/cpu/cpu3/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu4/online": "1\\n", "/sys/devices/system/cpu/cpu4/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu5/online": "1\\n", "/sys/devices/system/cpu/cpu5/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu6/online": "1\\n", "/sys/devices/system/cpu/cpu6/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu7/online": "1\\n", "/sys/devices/system/cpu/cpu7/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/power/async": "disabled\\n", "/sys/devices/system/cpu/smt/control": "on\\n", "/sys/devices/system/cpu/power/control": "auto\\n", "/sys/devices/system/cpu/hotplug/states": " 0: offline\\n 1: threads:prepare\\n 2: perf:prepare\\n 3: perf/x86:prepare\\n 8: x86/mce:dead\\n 9: virtio/net:dead\\n 11: slub:dead\\n 13: mm/writeback:dead\\n 14: mm/vmstat:dead\\n 15: softirq:dead\\n 20: irq_poll:dead\\n 21: block/softirq:dead\\n 22: block/bio:dead\\n 23: acpi/cpu-drv:dead\\n 25: block/mq:dead\\n 26: fs/buffer:dead\\n 27: printk:dead\\n 28: mm/memctrl:dead\\n 29: lib/percpu_cnt:dead\\n 30: lib/radix:dead\\n 31: mm/page_alloc:pcp\\n 32: net/dev:dead\\n 34: iommu/iova:dead\\n 36: padata:dead\\n 38: random:prepare\\n 39: workqueue:prepare\\n 41: hrtimers:prepare\\n 43: x86/x2apic:prepare\\n 44: smpcfd:prepare\\n 45: relay:prepare\\n 47: RCU/tree:prepare\\n 55: base/topology:prepare\\n 58: trace/RB:prepare\\n 59: mm/zsmalloc:prepare\\n 63: timers:prepare\\n 65: fork:vm_stack_cache\\n 66: crash/cpuhp\\n 86: cpu:kick_ap\\n 87: cpu:bringup\\n 88: idle:dead\\n 89: ap:offline\\n 90: x86/cachectrl:starting\\n 91: sched:starting\\n 92: RCU/tree:dying\\n104: perf/x86:starting\\n106: perf/x86/cstate:starting\\n137: smpcfd:dying\\n138: hrtimers:dying\\n141: ap:online\\n142: cpu:teardown\\n145: kvm/cpu:online\\n146: sched:waitempty\\n147: smpboot/threads:online\\n148: irq/affinity:online\\n149: block/mq:online\\n151: x86/intel/epb:online\\n152: perf:online\\n153: perf/x86:online\\n154: perf/x86/intel/uncore:online\\n157: perf/x86/rapl:online\\n158: perf/x86/cstate:online\\n184: lockup_detector:online\\n185: workqueue:online\\n186: random:online\\n187: RCU/tree:online\\n188: base/cacheinfo:online\\n189: x86/splitlock\\n190: mm/writeback:online\\n191: mm/vmstat:online\\n192: padata:online\\n193: mm/compaction:online\\n194: io-wq/online\\n195: lib/percpu_cnt:online\\n196: idle/intel:online\\n197: acpi/cpu-drv:online\\n198: virtio/net:online\\n199: x86/therm:online\\n200: cpufreq:online\\n201: leds/trigger:starting\\n202: x86/mce:online\\n203: x86/microcode:online\\n204: x86/resctrl/cat:online:\\n205: printk:online\\n206: trace/hwlat:online\\n207: trace/osnoise:online\\n208: swap_slots_cache\\n209: x86/msr:online\\n210: powercap/rapl:online\\n211: perf/x86/intel/i915:online\\n212: powercap/rapl:online\\n213: hwmon/coretemp:online\\n214: thermal/x86_pkg:online\\n215: platform/x86/uncore-freq:online\\n232: sched:active\\n233: online\\n", "/sys/devices/system/cpu/cpu0/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu1/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu2/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu3/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu4/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu5/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu6/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu7/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu0/cache/uevent": "", "/sys/devices/system/cpu/cpu0/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu1/cache/uevent": "", "/sys/devices/system/cpu/cpu1/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu2/cache/uevent": "", "/sys/devices/system/cpu/cpu2/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu3/cache/uevent": "", "/sys/devices/system/cpu/cpu3/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu4/cache/uevent": "", "/sys/devices/system/cpu/cpu4/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu5/cache/uevent": "", "/sys/devices/system/cpu/cpu5/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu6/cache/uevent": "", "/sys/devices/system/cpu/cpu6/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu7/cache/uevent": "", "/sys/devices/system/cpu/cpu7/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu0/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu0/power/control": "auto\\n", "/sys/devices/system/cpu/cpu1/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu1/power/control": "auto\\n", "/sys/devices/system/cpu/cpu2/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu2/power/control": "auto\\n", "/sys/devices/system/cpu/cpu3/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu3/power/control": "auto\\n", "/sys/devices/system/cpu/cpu4/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu4/power/control": "auto\\n", "/sys/devices/system/cpu/cpu5/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu5/power/control": "auto\\n", "/sys/devices/system/cpu/cpu6/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu6/power/control": "auto\\n", "/sys/devices/system/cpu/cpu7/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu7/power/control": "auto\\n", "/sys/devices/system/cpu/cpu0/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu1/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu2/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu3/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu4/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu5/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu6/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu7/hotplug/target": "233\\n", "/sys/devices/system/cpu/intel_pstate/status": "active\\n", "/sys/devices/system/cpu/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/vulnerabilities/mds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu0/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu2/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu3/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu4/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu6/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu7/topology/die_id": "0\\n", "/sys/devices/system/cpu/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/vulnerabilities/l1tf": "Not affected\\n", "/sys/devices/system/cpu/cpu0/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu2/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu3/topology/core_id": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu6/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu7/topology/core_id": "3\\n", "/sys/devices/system/cpu/intel_pstate/no_turbo": "0\\n", "/sys/devices/system/cpu/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/vulnerabilities/srbds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu0/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu0/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu0/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu0/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu0/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu0/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu1/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu1/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu1/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu1/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu1/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu1/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu2/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu2/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu2/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu2/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu2/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu2/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu3/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu3/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu3/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu3/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu3/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu3/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu4/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu4/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu4/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu4/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu4/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu4/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu5/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu5/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu5/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu5/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu5/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu5/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu6/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu6/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu6/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu6/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu6/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu6/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu7/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu7/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu7/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu7/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu7/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu7/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpuidle/current_driver": "intel_idle\\n", "/sys/devices/system/cpu/intel_pstate/turbo_pct": "47\\n", "/sys/devices/system/cpu/cpu0/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu0/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu1/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu1/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu2/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu3/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu3/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu4/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu4/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu5/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu5/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu6/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu7/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu7/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu0/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu0/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/time": "168098\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/time": "28756532\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/time": "38208188\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/time": "1195953283\\n", "/sys/devices/system/cpu/cpu0/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu1/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/time": "165961\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/time": "18822515\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/time": "17782446\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/time": "1232891355\\n", "/sys/devices/system/cpu/cpu1/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu2/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/time": "157527\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/time": "20825282\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/time": "24641472\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/time": "1222461031\\n", "/sys/devices/system/cpu/cpu2/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu3/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu3/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/time": "164760\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/time": "15833808\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/time": "13959092\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/time": "1253731843\\n", "/sys/devices/system/cpu/cpu3/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpu4/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu4/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/time": "135377\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/time": "14765732\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/time": "11166128\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/time": "1259140139\\n", "/sys/devices/system/cpu/cpu4/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu5/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/time": "161979\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/time": "16802697\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/time": "14181614\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/time": "1249481198\\n", "/sys/devices/system/cpu/cpu5/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu6/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/time": "147828\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/time": "14261917\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/time": "12338154\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/time": "1253004148\\n", "/sys/devices/system/cpu/cpu6/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu7/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu7/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/time": "157793\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/time": "15088222\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/time": "12334386\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/time": "1247720772\\n", "/sys/devices/system/cpu/cpu7/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpuidle/current_governor": "menu\\n", "/sys/devices/system/cpu/intel_pstate/num_pstates": "39\\n", "/sys/devices/system/cpu/vulnerabilities/meltdown": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/retbleed": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/below": "2625\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/usage": "2770\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/above": "1603\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/below": "18902\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/usage": "88049\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/above": "2224\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/below": "29\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/usage": "41338\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/above": "58038\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/usage": "129836\\n", "/sys/devices/system/cpu/cpu0/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/below": "2956\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/usage": "3099\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/above": "1643\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/below": "9909\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/usage": "76472\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/above": "1603\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/below": "31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/usage": "19249\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/above": "20895\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/usage": "68769\\n", "/sys/devices/system/cpu/cpu1/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/below": "2595\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/usage": "2761\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/above": "2092\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/below": "9954\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/usage": "82689\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/above": "2575\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/below": "15\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/usage": "26476\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/above": "14517\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/usage": "79189\\n", "/sys/devices/system/cpu/cpu2/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/below": "2962\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/usage": "3267\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/above": "2263\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/below": "7994\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/usage": "69495\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/above": "1785\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/below": "46\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/usage": "14973\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/above": "11455\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/usage": "53964\\n", "/sys/devices/system/cpu/cpu3/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/below": "2909\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/usage": "3181\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/above": "1454\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/below": "7351\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/usage": "66294\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/above": "1136\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/below": "19\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/usage": "12024\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/above": "7100\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/usage": "40221\\n", "/sys/devices/system/cpu/cpu4/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/below": "2803\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/usage": "2920\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/above": "1685\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/below": "8017\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/usage": "71626\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/above": "1499\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/below": "37\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/usage": "15218\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/above": "8847\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/usage": "56990\\n", "/sys/devices/system/cpu/cpu5/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/below": "2566\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/usage": "2676\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/above": "2036\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/below": "7131\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/usage": "65770\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/above": "1268\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/below": "16\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/usage": "13274\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/above": "6397\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/usage": "50441\\n", "/sys/devices/system/cpu/cpu6/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/below": "2846\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/usage": "3195\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/above": "2346\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/below": "7842\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/usage": "66650\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/above": "1403\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/below": "23\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/usage": "13289\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/above": "7585\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/usage": "43773\\n", "/sys/devices/system/cpu/cpu7/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/intel_pstate/max_perf_pct": "100\\n", "/sys/devices/system/cpu/intel_pstate/min_perf_pct": "9\\n", "/sys/devices/system/cpu/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu0/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu1/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu2/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu3/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu4/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu5/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu6/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu7/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v1": "Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v2": "Mitigation: Enhanced / Automatic IBRS; IBPB: conditional; RSB filling; PBRSB-eIBRS: SW sequence; BHI: SW loop, KVM: SW loop\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu0/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu1/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu2/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu3/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu4/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu5/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu6/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu7/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpuidle/available_governors": "ladder menu teo \\n", "/sys/devices/system/cpu/cpuidle/current_governor_ro": "menu\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/feedback_ctrs": "ref:191334462192 del:96847106021\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/feedback_ctrs": "ref:132093933192 del:71695999906\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/feedback_ctrs": "ref:136485444624 del:70125841107\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/feedback_ctrs": "ref:97826060088 del:48940442686\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/feedback_ctrs": "ref:93436112928 del:54434610505\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/feedback_ctrs": "ref:107018547624 del:52504835826\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/feedback_ctrs": "ref:106892620152 del:51039740499\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/feedback_ctrs": "ref:117275706120 del:55202835827\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpufreq/policy0/related_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/related_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/related_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/related_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/related_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/related_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/related_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/related_cpus": "7\\n", "/sys/devices/system/cpu/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpufreq/policy0/affected_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/affected_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/affected_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/affected_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/affected_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/affected_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/affected_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/affected_cpus": "7\\n", "/sys/devices/system/cpu/vulnerabilities/itlb_multihit": "Not affected\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu0/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu1/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu2/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu3/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu4/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu5/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu6/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu7/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy1/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy2/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy3/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy4/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy5/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy6/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy7/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/vulnerabilities/mmio_stale_data": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/tsx_async_abort": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq": "593424\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_cur_freq": "587709\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_cur_freq": "526664\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_cur_freq": "752604\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_cur_freq": "3683697\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_cur_freq": "1371179\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_cur_freq": "1999913\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu0/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/vulnerabilities/spec_store_bypass": "Mitigation: Speculative Store Bypass disabled via prctl\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu1/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu2/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu3/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu4/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu5/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu6/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu7/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/vulnerabilities/gather_data_sampling": "Mitigation: Microcode\\n", "/sys/devices/system/cpu/vulnerabilities/spec_rstack_overflow": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/vulnerabilities/reg_file_data_sampling": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us": "277013879\\n", "/sys/devices/system/cpu/cpu0/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us": "15846041\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/min_freq_khz": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_min_freq_khz": "400000\\n"}, "Docker Containers": "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES", "Network Interfaces": "2: wlp170s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1456 qdisc noqueue state UP group default qlen 1000\\n link/ether 00:93:37:96:a0:14 brd ff:ff:ff:ff:ff:ff\\n--\\n4: br-5358121b016d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:31:4c:7c:39 brd ff:ff:ff:ff:ff:ff\\n--\\n5: br-6e0ae77042d6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:29:4c:03:1e brd ff:ff:ff:ff:ff:ff\\n--\\n6: br-7688b5ca7e2d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:e5:22:19:30 brd ff:ff:ff:ff:ff:ff\\n--\\n7: br-9ba2a39b0b1e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:f5:74:c1:66 brd ff:ff:ff:ff:ff:ff\\n--\\n8: br-ce560083466a: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:a4:f4:58:34 brd ff:ff:ff:ff:ff:ff\\n--\\n9: br-17d7b4ff19e9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:40:0a:a9:6e brd ff:ff:ff:ff:ff:ff\\n--\\n10: br-b8fe670a4cd7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:15:10:5f:b5 brd ff:ff:ff:ff:ff:ff\\n--\\n11: br-c26dcd3569f9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:53:0c:b7:f6 brd ff:ff:ff:ff:ff:ff\\n--\\n13: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:2f:19:92:44 brd ff:ff:ff:ff:ff:ff\\n--\\n15: veth4b2531f@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default \\n link/ether 16:4d:d1:07:e9:34 brd ff:ff:ff:ff:ff:ff link-netnsid 0\\n--\\n27: br-cd08359ec224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:cb:56:8d:7d brd ff:ff:ff:ff:ff:ff\\n--\\n29: veth4f67909@if28: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether c2:8b:74:ce:4b:f2 brd ff:ff:ff:ff:ff:ff link-netnsid 2\\n--\\n31: veth3d72cc1@if30: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 56:6f:f8:d3:95:47 brd ff:ff:ff:ff:ff:ff link-netnsid 1\\n--\\n33: veth888843b@if32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 72:81:21:75:96:2a brd ff:ff:ff:ff:ff:ff link-netnsid 3\\n--\\n35: veth0c4fb2f@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 1e:1a:b4:b7:47:13 brd ff:ff:ff:ff:ff:ff link-netnsid 4\\n", "Current Clocksource": "tsc", "RAPL Energy Filtering": "0\\n", "Installed Python Packages": "aiohappyeyeballs==2.4.0\\naiohttp==3.10.3\\naiosignal==1.3.1\\nalembic==1.13.2\\nannotated-types==0.7.0\\nanybadge==1.14.0\\nanyio==4.4.0\\nattrs==24.2.0\\ncertifi==2024.8.30\\ncharset-normalizer==3.3.2\\nclick==8.1.7\\ncolorlog==6.8.2\\ndeepdiff==7.0.1\\ndnspython==2.6.1\\ndocker==7.1.0\\nemail_validator==2.2.0\\nfastapi==0.112.0\\nfastapi-cli==0.0.5\\nfrozenlist==1.4.1\\ngreenlet==3.1.0\\ngunicorn==23.0.0\\nh11==0.14.0\\nhiredis==3.0.0\\nhttpcore==1.0.5\\nhttptools==0.6.1\\nhttpx==0.27.2\\nidna==3.8\\nJinja2==3.1.4\\njoblib==1.4.2\\nMako==1.3.5\\nmarkdown-it-py==3.0.0\\nMarkupSafe==2.1.5\\nmdurl==0.1.2\\nmultidict==6.1.0\\nnumpy==2.0.1\\nnvidia-nccl-cu12==2.22.3\\noptuna==3.6.1\\nordered-set==4.1.0\\norjson==3.10.7\\npackaging==24.1\\npandas==2.2.2\\nplotext==5.2.8\\npsutil==6.0.0\\npsycopg==3.2.1\\npsycopg-binary==3.2.1\\npsycopg-pool==3.2.2\\npyarrow==17.0.0\\npydantic==2.9.1\\npydantic_core==2.23.3\\nPygments==2.18.0\\npyserial==3.5\\npython-dateutil==2.9.0.post0\\npython-dotenv==1.0.1\\npython-multipart==0.0.9\\npytz==2024.2\\nPyYAML==6.0.2\\nredis==5.0.8\\nrequests==2.32.3\\nrich==13.8.1\\nschema==0.7.7\\nscikit-learn==1.5.1\\nscipy==1.14.0\\nshellingham==1.5.4\\nsix==1.16.0\\nsniffio==1.3.1\\nSQLAlchemy==2.0.34\\nstarlette==0.37.2\\nthreadpoolctl==3.5.0\\ntqdm==4.66.5\\ntyper==0.12.5\\ntyping_extensions==4.12.2\\ntzdata==2024.1\\nurllib3==2.2.2\\nuvicorn==0.30.6\\nuvicorn-worker==0.2.0\\nuvloop==0.20.0\\nwatchfiles==0.24.0\\nwebsockets==13.0.1\\nxgboost==2.1.0\\nyarl==1.11.1\\n", "Installed System Packages": "Desired=Unknown/Install/Remove/Purge/Hold\\n| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend\\n|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\\n||/ Name Version Architecture Description\\n+++-=============================================-==========================================-============-===================================================================================\\nii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information\\nii acl 2.3.2-1build1 amd64 access control list - utilities\\nii adduser 3.137ubuntu1 all add and remove users and groups\\nii adwaita-icon-theme 46.0-1 all default icon theme of GNOME\\nii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files\\nii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files\\nii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files\\nii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA\\nii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs\\nii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn\'t go by time\\nii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version\\nii apparmor 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 user-space parser utility for AppArmor\\nii apport 2.28.1-0ubuntu3.1 all automatically generate crash reports for debugging\\nii apport-core-dump-handler 2.28.1-0ubuntu3.1 all Kernel core dump handler for Apport\\nii apport-gtk 2.28.1-0ubuntu3.1 all GTK+ frontend for the apport crash report system\\nii apport-symptoms 0.25 all symptom scripts for apport\\nii appstream 1.0.2-1build6 amd64 Software component metadata management\\nii apt 2.7.14build2 amd64 commandline package manager\\nii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads\\nii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads\\nii apt-utils 2.7.14build2 amd64 package management related utility programs\\nii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service\\nii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients\\nii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker\\nii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell\\nii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)\\nii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)\\nii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon\\nii baobab 46.0-1build1 amd64 GNOME disk usage analyzer\\nii base-files 13ubuntu10.1 amd64 Debian base system miscellaneous files\\nii base-passwd 3.6.3build1 amd64 Debian base system master password and group files\\nii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell\\nii bash-completion 1:2.11-8 all programmable completion for the bash shell\\nii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language\\nii bind9-dnsutils 1:9.18.28-0ubuntu0.24.04.1 amd64 Clients provided with BIND 9\\nii bind9-host 1:9.18.28-0ubuntu0.24.04.1 amd64 DNS Lookup Utility\\nii bind9-libs:amd64 1:9.18.28-0ubuntu0.24.04.1 amd64 Shared Libraries used by BIND 9\\nii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities\\nii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities\\nii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target\\nii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons\\nii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS\\nii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon\\nii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices\\nii boot-repair 4ppa2081 all Graphical tool to repair boot problems\\nii boot-sav 4ppa2081 all Librairies for Boot-Info, OS-uninstaller and Boot-repair\\nii boot-sav-extra 4ppa2081 all Extra librairies for OS-uninstaller and Boot-repair\\nii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)\\nii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF\\nii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display\\nii bsdextrautils 2.39.3-9ubuntu6.1 amd64 extra utilities from 4.4BSD-Lite\\nii bsdutils 1:2.39.3-9ubuntu6.1 amd64 basic utilities from 4.4BSD-Lite\\nii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation\\nii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages\\nii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs\\nii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities\\nii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities\\nii ca-certificates 20240203 all Common CA certificates\\nii ca-certificates-java 20240118 all Common CA certificates (JKS keystore)\\nii cloud-guest-utils 0.33-1 all cloud guest utilities\\nii cloud-init 24.2-0ubuntu1~24.04.2 all initialization and customization tool for cloud instances\\nii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon\\nii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files\\nii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions\\nii console-setup 1.226ubuntu1 all console font and keymap setup program\\nii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup\\nii containerd.io 1.7.21-1 amd64 An open and reliable container runtime\\nii coreutils 9.4-3ubuntu6 amd64 GNU core utilities\\nii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files\\nii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)\\nii cpp-11 11.4.0-9ubuntu1 amd64 GNU C preprocessor\\nii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor\\nii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu\\nii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture\\nii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2\\nii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon\\nii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon\'s configuration files\\nii cups 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface\\nii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed\\nii cups-bsd 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - BSD commands\\nii cups-client 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - client programs (SysV)\\nii cups-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - common files\\nii cups-core-drivers 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - driverless printing\\nii cups-daemon 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - daemon\\nii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package\\nii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing\\nii cups-ipp-utils 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities\\nii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges\\nii cups-ppdc 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities\\nii cups-server-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - server common files\\nii curl 8.5.0-2ubuntu10.3 amd64 command line tool for transferring data with URL syntax\\nii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell\\nii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)\\nii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)\\nii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)\\nii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)\\nii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)\\nii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)\\nii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator\\nii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities\\nii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end\\nii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service\\nii debconf 1.5.86ubuntu1 all Debian configuration management system\\nii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf\\nii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian\\nii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files\\nii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)\\nii dictionaries-common 1.29.7 all spelling dictionaries - common utilities\\nii diffutils 1:3.10-1build1 amd64 File comparison utilities\\nii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service\\nii distro-info 1.7build1 amd64 provides information about the distributions\' releases\\nii distro-info-data 0.60ubuntu0.1 all information about the distributions\' releases (data files)\\nii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder\\nii dmsetup 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme\\nii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key\\nii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable\\nii docbook-xml 4.5-12 all standard XML documentation system for software and systems\\nii docker-buildx-plugin 0.16.2-1~ubuntu.22.04~jammy amd64 Docker Buildx cli plugin.\\nii docker-ce 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker: the open-source application container engine\\nii docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine\\nii docker-ce-rootless-extras 5:27.2.1-1~ubuntu.22.04~jammy amd64 Rootless support for Docker.\\nii docker-compose-plugin 2.29.2-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.\\nii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems\\nii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system\\nii dpkg-dev 1.22.6ubuntu6.1 all Debian package development tools\\nii dracut-install 060+5-1ubuntu3.2 amd64 dracut is an event driven initramfs infrastructure (dracut-install)\\nii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities\\nii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends\\nii ed 1.20.1-1 amd64 classic UNIX line editor\\nii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager\\nii eject 2.39.3-9ubuntu6.1 amd64 ejects CDs and operates CD-Changers under Linux\\nii emacsen-common 3.0.5 all Common facilities for all emacsen\\nii enchant-2 2.3.3-2build2 amd64 Wrapper for various spell checker engines (binary programs)\\nii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program\\nii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files\\nii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings\\nii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer\\nii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files\\nii evolution-data-server 3.52.3-0ubuntu1 amd64 evolution database backend server\\nii evolution-data-server-common 3.52.3-0ubuntu1 all architecture independent files for Evolution Data Server\\nii fakeroot 1.33-1 amd64 tool for simulating superuser privileges\\nii fdisk 2.39.3-9ubuntu6.1 amd64 collection of partitioning utilities\\nii file 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers\\nii file-roller 44.3-0ubuntu1 amd64 archive manager for GNOME\\nii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs\\nii firefox 1:1snap1-0ubuntu5 amd64 Transitional package - firefox -> firefox snap\\nii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed\\nii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries\\nii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration\\nii fonts-beng 2:1.3 all Metapackage to install Bengali and Assamese fonts\\nii fonts-beng-extra 3.3.1-2 all TrueType fonts for Bengali language\\nii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters\\nii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters\\nii fonts-deva 2:1.4 all Meta package to install all Devanagari fonts\\nii fonts-deva-extra 3.0-6 all Free fonts for Devanagari script\\nii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)\\nii fonts-freefont-ttf 20211204+svn4273-2 all Freefont Serif, Sans and Mono Truetype fonts\\nii fonts-gargi 2.0-6 all OpenType Devanagari font\\nii fonts-gubbi 1.3-7 all Gubbi free font for Kannada script\\nii fonts-gujr 2:1.5 all Meta package to install all Gujarati fonts\\nii fonts-gujr-extra 1.0.1-2 all Free fonts for Gujarati script\\nii fonts-guru 2:1.3 all Meta package to install all Punjabi fonts\\nii fonts-guru-extra 2.0-5 all Free fonts for Punjabi language\\nii fonts-indic 2:1.4 all Meta package to install all Indian language fonts\\nii fonts-kalapi 1.0-5 all Kalapi Gujarati Unicode font\\nii fonts-knda 2:1.3 all Meta package for Kannada fonts\\nii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier\\nii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow\\nii fonts-lohit-beng-assamese 2.91.5-2 all Lohit TrueType font for Assamese Language\\nii fonts-lohit-beng-bengali 2.91.5-3 all Lohit TrueType font for Bengali Language\\nii fonts-lohit-deva 2.95.4-5 all Lohit TrueType font for Devanagari script\\nii fonts-lohit-gujr 2.92.4-4 all Lohit TrueType font for Gujarati Language\\nii fonts-lohit-guru 2.91.2-3 all Lohit TrueType font for Punjabi Language\\nii fonts-lohit-knda 2.5.4-3 all Lohit TrueType font for Kannada Language\\nii fonts-lohit-mlym 2.92.2-2 all Lohit TrueType font for Malayalam Language\\nii fonts-lohit-orya 2.91.2-2 all Lohit TrueType font for Oriya Language\\nii fonts-lohit-taml 2.91.3-2 all Lohit TrueType font for Tamil Language\\nii fonts-lohit-taml-classical 2.5.4-2 all Lohit Tamil TrueType fonts for Tamil script\\nii fonts-lohit-telu 2.5.5-2build1 all Lohit TrueType font for Telugu Language\\nii fonts-mlym 2:1.3 all Meta package to install all Malayalam fonts\\nii fonts-nakula 1.0-4 all Free Unicode compliant Devanagari font\\nii fonts-navilu 1.2-4 all Handwriting font for Kannada\\nii fonts-noto-cjk 1:20230817+repack1-3 all \\"No Tofu\\" font families with large Unicode coverage (CJK regular and bold)\\nii fonts-noto-color-emoji 2.042-1 all color emoji font from Google\\nii fonts-noto-core 20201225-2 all \\"No Tofu\\" font families with large Unicode coverage (core)\\nii fonts-noto-mono 20201225-2 all \\"No Tofu\\" monospaced font family with large Unicode coverage\\nii fonts-opensymbol 4:102.12+LibO24.2.5-0ubuntu0.24.04.2 all OpenSymbol TrueType font\\nii fonts-orya 2:1.3 all Meta package to install all Odia fonts\\nii fonts-orya-extra 2.0-6 all Free fonts for Odia script\\nii fonts-pagul 1.0-9 all Free TrueType font for the Sourashtra language\\nii fonts-sahadeva 1.0-5 all Free Unicode compliant Devanagari font\\nii fonts-samyak-deva 1.2.2-6 all Samyak TrueType font for Devanagari script\\nii fonts-samyak-gujr 1.2.2-6 all Samyak TrueType font for Gujarati language\\nii fonts-samyak-mlym 1.2.2-6 all Samyak TrueType font for Malayalam language\\nii fonts-samyak-taml 1.2.2-6 all Samyak TrueType font for Tamil language\\nii fonts-sarai 1.0-3 all truetype font for devanagari script\\nii fonts-sil-annapurna 2.000-2 all smart font for languages using Devanagari script\\nii fonts-smc 1:7.5 all Metapackage for various TrueType fonts for Malayalam Language\\nii fonts-smc-anjalioldlipi 7.1.2-2 all AnjaliOldLipi malayalam font\\nii fonts-smc-chilanka 1.540-2 all Chilanka malayalam font\\nii fonts-smc-dyuthi 3.0.2-2 all Dyuthi malayalam font\\nii fonts-smc-gayathri 1.200-1 all Gayathri Malayalam font\\nii fonts-smc-karumbi 1.1.2-2 all Karumbi malayalam font\\nii fonts-smc-keraleeyam 3.0.2-2 all Keraleeyam malayalam font\\nii fonts-smc-manjari 2.200-1 all Manjari malayalam font\\nii fonts-smc-meera 7.0.3-1 all Meera malayalam font\\nii fonts-smc-rachana 7.0.2-1build1 all Rachana malayalam font\\nii fonts-smc-raghumalayalamsans 2.2.1-1 all RaghuMalayalamSans malayalam font\\nii fonts-smc-suruma 3.2.3-1 all Suruma malayalam font\\nii fonts-smc-uroob 2.0.2-1 all Uroob malayalam font\\nii fonts-taml 2:1.4 all Meta package to install all Tamil fonts\\nii fonts-telu 2:1.3 all Meta package to install all Telugu fonts\\nii fonts-telu-extra 2.0-6 all Free fonts for Telugu script\\nii fonts-teluguvijayam 2.1-1 all TrueType fonts for Telugu script (te)\\nii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu\\nii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts\\nii fonts-yrsa-rasa 2.005-1 all Open-source, libre fonts for Latin + Gujarati\\nii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database\\nii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access\\nii freeipmi-common 1.6.13-3 all GNU implementation of the IPMI protocol - common files\\nii freeipmi-tools 1.6.13-3 amd64 GNU implementation of the IPMI protocol - tools\\nii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly\\nii ftp 20230507-2build3 all dummy transitional package for tnftp\\nii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)\\nii fwupd 1.9.24-1~24.04.1 amd64 Firmware update daemon\\nii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary\\nii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler\\nii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler\\nii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture\\nii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture\\nii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand\\nii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)\\nii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler\\nii gcc-11 11.4.0-9ubuntu1 amd64 GNU C compiler\\nii gcc-11-base:amd64 11.4.0-9ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler\\nii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture\\nii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture\\nii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)\\nii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)\\nii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger\\nii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool\\nii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager\\nii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service\\nii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library\\nii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system\\nii ghostscript 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF\\nii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService\\nii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita\\nii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)\\nii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)\\nii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4\\nii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library\\nii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components\\nii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library\\nii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library\\nii gir1.2-gdesktopenums-3.0:amd64 46.1-0ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas\\nii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library - GObject-Introspection\\nii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager\\nii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)\\nii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library\\nii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule\\nii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library\\nii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar\\nii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)\\nii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth\\nii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)\\nii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)\\nii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)\\nii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library\\nii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data\\nii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library\\nii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy\\nii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)\\nii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data\\nii gir1.2-javascriptcoregtk-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-javascriptcoregtk-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-mutter-14:amd64 46.2-1ubuntu0.24.04.1 amd64 GObject introspection data for Mutter\\nii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library\\nii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4\\nii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)\\nii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library\\nii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings\\nii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)\\nii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit\\nii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files\\nii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)\\nii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1\\nii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library\\nii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data\\nii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library\\nii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower\\nii gir1.2-vte-2.91:amd64 0.76.0-1ubuntu0.1 amd64 GObject introspection data for the VTE library\\nii gir1.2-webkit-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-webkit2-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library\\nii git 1:2.43.0-1ubuntu7.1 amd64 fast, scalable, distributed revision control system\\nii git-man 1:2.43.0-1ubuntu7.1 all fast, scalable, distributed revision control system (manual pages)\\nii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)\\nii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd\\nii glade2script 3.2.4~ppa23 all Glade interface engine for scripts\\nii glade2script-python3 3.2.4~ppa23 all Glade interface engine for scripts (Python3 version)\\nii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib\\nii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files\\nii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services\\nii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons\\nii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files\\nii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app\\nii gnome-calculator 1:46.1-1ubuntu1~24.04.1 amd64 GNOME desktop calculator\\nii gnome-characters 46.0-1build1 amd64 character map application\\nii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support\\nii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop\\nii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files\\nii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images\\nii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps\\nii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media\\nii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME\\nii gnome-initial-setup 46.2-1ubuntu0.24.04.1 amd64 Initial GNOME system setup helper\\nii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)\\nii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library\\nii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal\\nii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii gnome-online-accounts 3.50.4-0ubuntu2 amd64 service to manage online accounts for the GNOME desktop\\nii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop\\nii gnome-remote-desktop 46.3-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire\\nii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime\\nii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events\\nii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files\\nii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings\\nii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files\\nii gnome-shell 46.0-0ubuntu6~24.04.4 amd64 graphical shell for the GNOME desktop\\nii gnome-shell-common 46.0-0ubuntu6~24.04.4 all common files for the GNOME graphical shell\\nii gnome-shell-extension-appindicator 58-1 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell\\nii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell\\nii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell\\nii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1.1 all extension which adds a Windows-like snap assist to GNOME Shell\\nii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam\\nii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME\\nii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME\\nii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application\\nii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator\\nii gnome-text-editor 46.3-0ubuntu2 amd64 simple text editor for GNOME\\nii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine\\nii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files\\nii gnome-user-docs 46.0-1ubuntu1 all GNOME Help\\nii gnome-user-docs-de 46.0-1ubuntu1 all GNOME Help (German)\\nii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement\\nii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files\\nii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs\\nii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations\\nii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent\\nii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client\\nii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities\\nii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version\\nii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool\\nii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep\\nii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)\\nii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)\\nii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)\\nii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)\\nii grub-gfxpayload-lists 0.7build2 amd64 GRUB gfxpayload blacklist\\nii grub-pc 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)\\nii grub-pc-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)\\nii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)\\nii gsettings-desktop-schemas 46.1-0ubuntu1 all GSettings desktop-wide schemas\\nii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu\\nii gstreamer1.0-alsa:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugin for ALSA\\nii gstreamer1.0-gl:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for GL\\nii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)\\nii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit\\nii gstreamer1.0-pipewire:amd64 1.0.5-1ubuntu1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server\\nii gstreamer1.0-plugins-base:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins from the \\"base\\" set\\nii gstreamer1.0-plugins-base-apps 1.24.2-1ubuntu0.1 amd64 GStreamer helper programs from the \\"base\\" set\\nii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the \\"good\\" set\\nii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer\\nii gstreamer1.0-x:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for X11 and Pango\\nii gtk-update-icon-cache 3.24.41-4ubuntu1.1 amd64 icon theme caching utility\\nii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine\\nii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1.1 amd64 pixbuf-based theme for GTK 2\\nii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module\\nii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends\\nii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files\\nii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers\\nii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server\\nii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries\\nii gzip 1.12-1ubuntu3 amd64 GNU compression utilities\\nii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance\\nii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader\\nii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer\\nii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes\\nii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name\\nii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)\\nii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files\\nii humanity-icon-theme 0.6.16 all Humanity Icon theme\\nii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell\\nii hwdata 0.379-1 all hardware identification / configuration data\\nii ibus 1.5.29-2 amd64 Intelligent Input Bus - core\\nii ibus-data 1.5.29-2 all Intelligent Input Bus - data files\\nii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support\\nii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support\\nii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support\\nii ibus-table 1.17.4-2 all table engine for IBus\\nii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs\\nii ieee-data 20220827.1 all OUI and IAB listings\\nii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy\\nii im-config 0.57-2 all Input method configuration framework\\nii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client\\nii info 7.1-3build2 amd64 Standalone GNU Info documentation browser\\nii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed\\nii init-system-helpers 1.66ubuntu1 all helper tools for all init systems\\nii initramfs-tools 0.142ubuntu25.2 all generic modular initramfs generator (automation)\\nii initramfs-tools-bin 0.142ubuntu25.2 amd64 binaries used by initramfs-tools\\nii initramfs-tools-core 0.142ubuntu25.2 all generic modular initramfs generator (core tools)\\nii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem\\nii install-info 7.1-3build2 amd64 Manage installed documentation in info format\\nii intel-microcode 3.20240813.0ubuntu0.24.04.2 amd64 Processor microcode firmware for Intel CPUs\\nii ipmitool 1.8.19-7build2 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)\\nii ipp-usb 0.9.24-0ubuntu3.1 amd64 Daemon for IPP over USB printer support\\nii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools\\nii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT\\nii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts\\nii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host\\nii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations\\nii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool\\nii java-common 0.75+exp1 all Base package for Java runtimes\\nii javascript-common 11+nmu1 all Base support for JavaScript library packages\\nii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor\\nii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities\\nii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker\\nii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences\\nii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service\\nii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot\\nii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules\\nii language-pack-de 1:24.04+20240817 all translation updates for language German\\nii language-pack-de-base 1:24.04+20240817 all translations for language German\\nii language-pack-en 1:24.04+20240817 all translation updates for language English\\nii language-pack-en-base 1:24.04+20240817 all translations for language English\\nii language-pack-gnome-de 1:24.04+20240817 all GNOME translation updates for language German\\nii language-pack-gnome-de-base 1:24.04+20240817 all GNOME translations for language German\\nii language-pack-gnome-en 1:24.04+20240817 all GNOME translation updates for language English\\nii language-pack-gnome-en-base 1:24.04+20240817 all GNOME translations for language English\\nii language-selector-common 0.225 all Language selector for Ubuntu\\nii language-selector-gnome 0.225 all Language selector frontend for Ubuntu\\nii laptop-detect 0.16 all system chassis type checker\\nii less 590-2ubuntu2.1 amd64 pager program similar to more\\nii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library\\nii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library\\nii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries\\nii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library\\nii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones\\nii libaio1t64:amd64 0.3.113-6build1 amd64 Linux kernel AIO access library - shared library\\nii libalgorithm-diff-perl 1.201-1 all module to find differences between files\\nii libalgorithm-diff-xs-perl:amd64 0.04-8build3 amd64 module to find differences between files (XS accelerated)\\nii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data\\nii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)\\nii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library\\nii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library\\nii libapparmor1:amd64 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 changehat AppArmor library\\nii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services\\nii libapr1-dev 1.7.2-3.1build2 amd64 Apache Portable Runtime Library - Development Headers\\nii libapr1t64:amd64 1.7.2-3.1build2 amd64 Apache Portable Runtime Library\\nii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library\\nii libarchive13t64:amd64 3.7.2-2ubuntu0.1 amd64 Multi-format archive and compression library (shared library)\\nii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library\\nii libasan6:amd64 11.4.0-9ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers\\nii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications\\nii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library\\nii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components\\nii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library\\nii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library\\nii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge\\nii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library\\nii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit\\nii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)\\nii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions\\nii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions\\nii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library\\nii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library\\nii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files\\nii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing\\nii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework\\nii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library\\nii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files\\nii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library\\nii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi\'s embeddable mDNS/DNS-SD library\\nii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library\\nii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices\\nii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)\\nii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators\\nii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)\\nii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries\\nii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)\\nii libblkid-dev:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library - headers\\nii libblkid1:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library\\nii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev\\nii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev\\nii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev\\nii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev\\nii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev\\nii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev\\nii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev\\nii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev\\nii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices\\nii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack\\nii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library\\nii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization\\nii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading\\nii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)\\nii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)\\nii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library\\nii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)\\nii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library\\nii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions\\nii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations\\nii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes\\nii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime\\nii libc-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Binaries\\nii libc-dev-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Development binaries\\nii libc-devtools 2.39-0ubuntu8.3 amd64 GNU C Library: Development tools\\nii libc6:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Shared libraries\\nii libc6-dbg:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: detached debugging symbols\\nii libc6-dev:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Development Libraries and Header Files\\nii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library\\nii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl\\nii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)\\nii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library\\nii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)\\nii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library\\nii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)\\nii libcamel-1.2-64t64:amd64 3.52.3-0ubuntu1 amd64 Evolution MIME message handling library\\nii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library\\nii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra\\nii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds\\nii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra\\nii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds\\nii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library\\nii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)\\nii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)\\nii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)\\nii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB\\nii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs\\nii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction\\nii libcdio19t64:amd64 2.1.0-4.1ubuntu1.2 amd64 library to read and control CD-ROM\\nii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)\\nii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library\\nii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library\\nii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes\\nii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)\\nii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)\\nii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord\\nii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime\\nii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime\\nii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library\\nii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library\\nii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files\\nii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library\\nii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.1 amd64 disk encryption support - shared library\\nii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)\\nii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)\\nii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library\\nii libcups2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Core library\\nii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files\\nii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library\\nii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Raster image library\\nii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)\\nii libcurl4t64:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)\\nii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library\\nii libdata-dump-perl 1.25-1 all Perl module to help dump data structures\\nii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library\\nii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]\\nii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)\\nii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC\\nii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus\\nii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version\\nii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library\\nii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation\\nii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)\\nii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server\\nii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)\\nii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library\\nii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK\\nii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib\\nii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression\\nii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre\\nii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format\\nii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files\\nii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules\\nii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime\\nii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files\\nii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime\\nii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime\\nii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime\\nii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime\\nii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library\\nii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)\\nii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information\\nii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library\\nii libebackend-1.2-11t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libebook-1.2-21t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution address books\\nii libebook-contacts-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution contacts books\\nii libecal-2.0-3:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution calendars\\nii libedata-book-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution address books\\nii libedata-cal-2.0-2t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution calendars\\nii libedataserver-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedataserverui-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries\\nii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library\\nii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libegl-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library\\nii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support\\nii libei1:amd64 1.2.1-1 amd64 Emulated Input client library\\nii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library\\nii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files\\nii libenchant-2-2:amd64 2.3.3-2build2 amd64 Wrapper library for various spell checker engines (runtime libs)\\nii libencode-locale-perl 1.05-3 all utility to determine the locale encoding\\nii libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files\\nii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library\\nii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way\\nii libespeak-ng1:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: shared library\\nii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)\\nii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices\\nii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library\\nii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets\\nii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)\\nii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files\\nii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library\\nii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library\\nii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit\\nii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries\\nii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library\\nii libexttextcat-data 3.4.7-1build1 all Language detection library - data files\\nii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions\\nii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries\\nii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C\\nii libfdisk1:amd64 2.39.3-9ubuntu6.1 amd64 fdisk partitioning library\\nii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)\\nii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime\\nii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision\\nii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects\\nii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification\\nii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files\\nii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)\\nii libfile-listing-perl 6.16-1 all module to parse directory listings\\nii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types\\nii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library\\nii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library\\nii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files\\nii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime\\nii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library\\nii libfprint-2-2 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, shared libraries\\nii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, drivers shared libraries\\nii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX\\nii libfreeipmi17 1.6.13-3 amd64 GNU IPMI - libraries\\nii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)\\nii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)\\nii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files\\nii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm\\nii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers\\nii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)\\nii libfwupd2:amd64 1.9.24-1~24.04.1 amd64 Firmware update daemon library\\nii libgail-common:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- common modules\\nii libgail18t64:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- shared libraries\\nii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)\\nii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)\\nii libgbm1:amd64 24.0.9-0ubuntu0.1 amd64 generic buffer management API -- runtime\\nii libgcc-11-dev:amd64 11.4.0-9ubuntu1 amd64 GCC support library (development files)\\nii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)\\nii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library\\nii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks\\nii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks\\nii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks\\nii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library\\nii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library\\nii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files\\nii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries\\nii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version) \\nii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version) \\nii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library\\nii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library (thumbnailer)\\nii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 all GDK Pixbuf library - data files\\nii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)\\nii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library\\nii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service\\nii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim\\nii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library\\nii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)\\nii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)\\nii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data\\nii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform\\nii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support\\nii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules\\nii libgl1-mesa-dri:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules\\nii libglapi-mesa:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the GL API -- shared library\\nii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support\\nii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries\\nii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries\\nrc libglib2.0-0:amd64 2.72.4-0ubuntu2.3 amd64 GLib library of C routines\\nii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines\\nii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library\\nii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library\\nii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library\\nii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library\\nii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)\\nii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)\\nii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library\\nii libglx-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library\\nii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support\\nii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library\\nii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME\\nii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files\\nii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library\\nii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library\\nii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version\\nii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files\\nii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files\\nii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files\\nii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library\\nii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.2 amd64 GNU TLS library - main runtime library\\nii libgoa-1.0-0b:amd64 3.50.4-0ubuntu2 amd64 library for GNOME Online Accounts\\nii libgoa-1.0-common 3.50.4-0ubuntu2 all library for GNOME Online Accounts - common files\\nii libgoa-backend-1.0-2:amd64 3.50.4-0ubuntu2 amd64 backend library for GNOME Online Accounts\\nii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library\\nii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library\\nii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)\\nii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME\\nii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library\\nii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages\\nii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library\\nii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library\\nii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)\\nii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types\\nii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library\\nii libgs-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - ICC profiles\\nii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF - Library\\nii libgs10-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - common files\\nii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version\\nii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files\\nii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds\\nii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications\\nii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files\\nii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism\\nii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP\\nii libgstreamer-gl1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer GL libraries\\nii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer libraries from the \\"base\\" set\\nii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the \\"good\\" set\\nii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements\\nrc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library\\nii libgtk-3-0t64:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library\\nii libgtk-3-bin 3.24.41-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk-3-common 3.24.41-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library\\nii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library\\nii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library\\nii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library\\nrc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-bin 2.24.33-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk2.0-common 2.24.33-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library\\nii libgtkmm-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)\\nii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget\\nii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget\\nii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)\\nii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)\\nii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev\\nii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP\\nii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP\\nii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP\\nii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1\\nii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library\\nii libgweather-4-common 4.4.2-1build1 all GWeather common files\\nii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)\\nii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones\\nii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)\\nii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend\\nii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)\\nii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin\\nii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin\\nii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin\\nii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library\\nii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)\\nii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries\\nii libhtml-form-perl 6.11-1 all module that represents an HTML form element\\nii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats\\nii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents\\nii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML\\nii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees\\nii libhttp-cookies-perl 6.11-1 all HTTP cookie jars\\nii libhttp-daemon-perl 6.16-1 all simple http server class\\nii libhttp-date-perl 6.06-1 all module of date conversion routines\\nii libhttp-message-perl 6.45-1ubuntu1 all perl interface to HTTP style messages\\nii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation\\nii libhunspell-1.7-0:amd64 1.7.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)\\nii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library\\nii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library\\nii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)\\nii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)\\nii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library\\nii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode\\nii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications\\nii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library\\nii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)\\nii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access\\nii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library\\nii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library\\nii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices\\nii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser\\nii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks\\nii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library\\nii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection\\nii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets\\nii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)\\nii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library\\nii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library\\nii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics\\nii libipmiconsole2 1.6.13-3 amd64 GNU IPMI - Serial-over-Lan library\\nii libipmidetect0 1.6.13-3 amd64 GNU IPMI - IPMI node detection library\\nii libipsec-mb1 1.5-1build1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library\\nii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library\\nii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints\\nii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems\\nii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images\\nii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library\\nii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library\\nii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data\\nii libjavascriptcoregtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjavascriptcoregtk-6.0-1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries\\nii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries\\nii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library\\nii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library\\nii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group\'s JPEG runtime library (dependency package)\\nii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library\\nii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications\\nii libjs-sphinxdoc 7.2.6-6 all JavaScript support for Sphinx documentation\\nii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript\'s functional programming helper library\\nii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library\\nii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library\\nii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)\\nii libjudydebian1 1.0.5-5.1build1 amd64 C library for creating and accessing dynamic arrays\\nii libk5crypto3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Crypto Library\\nii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)\\nii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs\\nii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library\\nii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)\\nii libkrb5-3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries\\nii libkrb5support0:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Support library\\nii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library\\nii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data\\nii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages\\nii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)\\nii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library\\nii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)\\nii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)\\nii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)\\nii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries\\nii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries\\nii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library\\nii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library\\nii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library\\nii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl\\nii liblouis-data 3.29.0-1build1 all Braille translation library - data\\nii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs\\nii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities\\nii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data\\nii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs\\nii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)\\nii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool\\nii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)\\nii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)\\nii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)\\nii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4\\nii libluajit-5.1-2:amd64 2.1.0+git20231223.c525bcb+dfsg-1 amd64 Just in time compiler for Lua - library version\\nii libluajit-5.1-common 2.1.0+git20231223.c525bcb+dfsg-1 all Just in time compiler for Lua - common files\\nii liblwp-mediatypes-perl 6.04-2 all module to guess media type for a file or a URL\\nii liblwp-protocol-https-perl 6.13-1 all HTTPS driver for LWP::UserAgent\\nii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime\\nii liblzma5:amd64 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression library\\nii liblzo2-2:amd64 2.10-2build4 amd64 data compression library\\nii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using \\"magic\\" numbers (compiled magic file)\\nrc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs\\nii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library\\nii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library\\nii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol\\nii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports\\nii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line\\nii libmd0:amd64 1.1.0-2build1 amd64 message digest functions from BSD systems - shared library\\nii libmediaart-2.0-0:amd64 1.9.6-1build2 amd64 media art extraction and cache management library\\nii libmhash2:amd64 0.9.9.9-9build3 amd64 Library for cryptographic hashing and message authentication\\nii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries\\nii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library\\nii libmount-dev:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library - headers\\nii libmount1:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library\\nii libmozjs-115-0t64:amd64 115.10.0-1 amd64 SpiderMonkey JavaScript library\\nii libmp3lame0:amd64 3.100-6build1 amd64 MP3 encoding library\\nii libmpc3:amd64 1.3.1-1build1 amd64 multiple precision complex floating-point library\\nii libmpfr6:amd64 4.2.1-1build1 amd64 multiple precision floating-point computation\\nii libmpg123-0t64:amd64 1.32.5-1ubuntu1 amd64 MPEG layer 1/2/3 audio decoder (shared library)\\nii libmsgraph-0-1:amd64 0.2.1-0ubuntu3 amd64 library for accessing the Microsoft Graph API\\nii libmtdev1t64:amd64 1.1.6-1.1build1 amd64 Multitouch Protocol Translation Library - shared library\\nii libmtp-common 1.1.21-3.1build1 all Media Transfer Protocol (MTP) common files\\nii libmtp-runtime 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) runtime tools\\nii libmtp9t64:amd64 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) library\\nii libmutter-14-0:amd64 46.2-1ubuntu0.24.04.1 amd64 window manager library from the Mutter window manager\\nii libmysqlclient21:amd64 8.0.39-0ubuntu0.24.04.2 amd64 MySQL database client library\\nii libmythes-1.2-0:amd64 2:1.2.5-1build1 amd64 simple thesaurus library\\nii libnautilus-extension4:amd64 1:46.2-0ubuntu0.2 amd64 libraries for nautilus components - runtime version\\nii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling\\nii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)\\nii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol\\nii libnet-dbus-perl 1.2.0-2build3 amd64 Perl extension for the DBus bindings\\nii libnet-http-perl 6.23-1 all module providing low-level HTTP connection client\\nii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP\\nii libnet-ssleay-perl:amd64 1.94-1build4 amd64 Perl module for Secure Sockets Layer (SSL)\\nii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library\\nii libnetplan1:amd64 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration runtime library\\nii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)\\nii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik\'s Windowing Toolkit - text mode windowing with slang\\nii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library\\nii libnfs14:amd64 5.0.2-1build1 amd64 NFS client library (shared library)\\nii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library\\nii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library\\nii libnghttp2-14:amd64 1.59.0-1ubuntu0.1 amd64 library implementing HTTP/2 protocol (shared library)\\nii libnl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets\\nii libnl-genl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - generic netlink\\nii libnl-route-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - route interface\\nii libnm0:amd64 1.46.0-1ubuntu2 amd64 GObject-based client library for NetworkManager\\nii libnma-common 1.10.6-3build2 all NetworkManager GUI library - translations\\nii libnma-gtk4-0:amd64 1.10.6-3build2 amd64 NetworkManager GUI GTK4 library\\nii libnma0:amd64 1.10.6-3build2 amd64 NetworkManager GUI library\\nii libnotify-bin 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Utilities)\\nii libnotify4:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon\\nii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads\\nii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library\\nii libnss-mdns:amd64 0.15.1-4build1 amd64 NSS module for Multicast DNS name resolution\\nii libnss-systemd:amd64 255.4-1ubuntu8.4 amd64 nss module providing dynamic user and group name resolution\\nii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries\\nii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)\\nii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy\\nii libnvme1t64 1.8-3build1 amd64 NVMe management library (library)\\nii libogg0:amd64 1.3.5-3build1 amd64 Ogg bitstream library\\nii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library\\nii libopengl0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- OpenGL support\\nii libopenipmi0t64 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface - runtime\\nii libopenjp2-7:amd64 2.5.0-2build3 amd64 JPEG 2000 image compression/decompression library\\nii libopus0:amd64 1.4-1build1 amd64 Opus codec runtime library\\nii liborc-0.4-0t64:amd64 1:0.4.38-1ubuntu0.1 amd64 Library of Optimized Inner Loops Runtime Compiler\\nii liborcus-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents\\nii liborcus-parser-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents - parser library\\nii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime\\nii libpackagekit-glib2-18:amd64 1.2.8-2build3 amd64 Library for accessing PackageKit using GLib\\nii libpam-cap:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (PAM module)\\nii libpam-fprintd:amd64 1.94.3-1 amd64 PAM module for fingerprint authentication through fprintd\\nii libpam-gnome-keyring:amd64 46.1-2build1 amd64 PAM module to unlock the GNOME keyring upon login\\nii libpam-modules:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM\\nii libpam-modules-bin 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM - helper binaries\\nii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength\\nii libpam-runtime 1.5.3-5ubuntu5.1 all Runtime support for the PAM library\\nii libpam-sss:amd64 2.9.4-1.1ubuntu6.1 amd64 Pam module for the System Security Services Daemon\\nii libpam-systemd:amd64 255.4-1ubuntu8.4 amd64 system and service manager - PAM module\\nii libpam0g:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules library\\nii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangomm-2.48-1t64:amd64 2.52.0-1build1 amd64 C++ Wrapper for pango (shared libraries)\\nii libpangoxft-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)\\nii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics\\nii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library\\nii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture\\nii libpcaudio0:amd64 1.2-2build3 amd64 C API to different audio devices - shared library\\nii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)\\nii libpciaccess0:amd64 0.17-3build1 amd64 Generic PCI access library for X\\nii libpcre2-16-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files\\nii libpcre2-32-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 32 bit runtime files\\nii libpcre2-8-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files\\nii libpcre2-dev:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - development files\\nii libpcre2-posix3:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files\\nii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)\\nii libpeas-1.0-0:amd64 1.36.0-3build4 amd64 Application plugin library\\nii libpeas-common 1.36.0-3build4 all Application plugin library (common files)\\nii libperl5.38t64:amd64 5.38.2-3.2build2 amd64 shared Perl library\\nii libphonenumber8:amd64 8.12.57+ds-4.2build3 amd64 parsing/formatting/validating phone numbers\\nii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library\\nii libpipewire-0.3-0t64:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server\\nii libpipewire-0.3-common 1.0.5-1ubuntu1 all libraries for the PipeWire multimedia server - common files\\nii libpipewire-0.3-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - modules\\nii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo\\nii libpkcs11-helper1t64:amd64 1.29.0-2.1build2 amd64 library that simplifies the interaction with PKCS#11\\nii libpkgconf3:amd64 1.8.1-2build1 amd64 shared library for pkgconf\\nii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists\\nii libplymouth5:amd64 24.004.60-1ubuntu7 amd64 graphical boot animation and logger - shared libraries\\nii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)\\nii libpolkit-agent-1-0:amd64 124-2ubuntu1 amd64 polkit Authentication Agent API\\nii libpolkit-gobject-1-0:amd64 124-2ubuntu1 amd64 polkit Authorization API\\nii libpoppler-cpp0t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (CPP shared library)\\nii libpoppler-glib8t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (GLib-based shared library)\\nii libpoppler134:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library\\nii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters\\nii libportal-gtk4-1:amd64 0.7.1-5build5 amd64 Flatpak portal library for GTK 4 GUIs\\nii libportal1:amd64 0.7.1-5build5 amd64 Flatpak portal library - non-GUI part\\nii libppd2:amd64 2:2.0.0-0ubuntu4 amd64 OpenPrinting libppd - Shared library\\nii libppd2-common 2:2.0.0-0ubuntu4 all OpenPrinting libppd - Auxiliary files\\nii libpq5:amd64 16.4-0ubuntu0.24.04.2 amd64 PostgreSQL C client library\\nii libproc2-0:amd64 2:4.0.4-4ubuntu3 amd64 library for accessing process information from /proc\\nii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)\\nii libprotobuf32t64:amd64 3.21.12-8.2build1 amd64 protocol buffers C++ library\\nii libproxy1-plugin-gsettings:amd64 0.5.4-4build1 amd64 transitional package for libproxy GSettings plugin\\nii libproxy1-plugin-networkmanager:amd64 0.5.4-4build1 amd64 transitional package for libproxy NetworkManager plugin\\nii libproxy1v5:amd64 0.5.4-4build1 amd64 automatic proxy configuration management library (shared)\\nii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)\\nii libpulse-mainloop-glib0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries (glib support)\\nii libpulse0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries\\nii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)\\nii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation\\nii libpython3-dev:amd64 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii libpython3.12-dev:amd64 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (standard library, version 3.12)\\nii libpython3.12t64:amd64 3.12.3-1ubuntu0.1 amd64 Shared Python runtime library (version 3.12)\\nii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol\\nii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports\\nii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line\\nii libqpdf29t64:amd64 11.9.0-1.1build1 amd64 runtime library for PDF transformation/inspection software\\nii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol\\nii libquadmath0:amd64 14-20240412-0ubuntu1 amd64 GCC Quad-Precision Math Library\\nii libraptor2-0:amd64 2.0.16-3build3 amd64 Raptor 2 RDF syntax library\\nii libraqm0:amd64 0.10.1-1build1 amd64 Library for complex text layout\\nii librasqal3t64:amd64 0.9.33-2.1build1 amd64 Rasqal RDF query library\\nii libraw1394-11:amd64 2.1.2-2build3 amd64 library for direct access to IEEE 1394 bus (aka FireWire)\\nii librdf0t64:amd64 1.0.17-3.1ubuntu3 amd64 Redland Resource Description Framework (RDF) library\\nii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries\\nii libreoffice-common 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- arch-independent files\\nii libreoffice-core 4:24.2.5-0ubuntu0.24.04.2 amd64 office productivity suite -- arch-dependent files\\nii libreoffice-style-colibre 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- colibre symbol style\\nii libreoffice-style-yaru 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- Yaru symbol style\\nii libreoffice-uiconfig-common 4:24.2.5-0ubuntu0.24.04.2 all UI data (\\"config\\") for LibreOffice (\\"common\\" set)\\nii librest-1.0-0:amd64 0.9.1-6build3 amd64 REST service access library\\nii librevenge-0.0-0:amd64 0.0.5-3build1 amd64 Base Library for writing document interface filters\\nii libroc0.3:amd64 0.3.0+dfsg-7ubuntu2 amd64 real-time audio streaming over the network (shared library)\\nii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)\\nii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)\\nii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)\\nii librygel-core-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - core library\\nii librygel-db-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - db library\\nii librygel-renderer-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - renderer library\\nii librygel-server-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - server library\\nii libsamplerate0:amd64 0.2.2-4build1 amd64 Audio sample rate conversion library\\nii libsane-common 1.2.1-7build4 all API library for scanners -- documentation and support files\\nii libsane-hpaio:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP SANE backend for multi-function peripherals\\nii libsane1:amd64 1.2.1-7build4 amd64 API library for scanners\\nii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library\\nii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules\\nii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)\\nii libsbc1:amd64 2.0-1build1 amd64 Sub Band CODEC library - runtime\\nii libsctp-dev:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - development files\\nii libsctp1:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - shared library\\nii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter\\nii libsecret-1-0:amd64 0.21.4-1build3 amd64 Secret store\\nii libsecret-common 0.21.4-1build3 all Secret store (common files)\\nii libselinux1:amd64 3.5-2ubuntu2 amd64 SELinux runtime shared libraries\\nii libselinux1-dev:amd64 3.5-2ubuntu2 amd64 SELinux development headers\\nii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries\\nii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library\\nii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files\\nii libsensors-dev:amd64 1:3.6.0-9build1 amd64 lm-sensors development kit\\nii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors\\nii libsepol-dev:amd64 3.5-2build1 amd64 SELinux binary policy manipulation library and development files\\nii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies\\nii libsframe1:amd64 2.42-4ubuntu2 amd64 Library to handle the SFrame format (runtime library)\\nii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion\\nii libshout3:amd64 2.4.6-1build2 amd64 MP3/Ogg Vorbis broadcast streaming library\\nii libsigc++-3.0-0:amd64 3.6.0-2 amd64 type-safe Signal Framework for C++ - runtime\\nii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version\\nii libslirp0:amd64 4.7.0-1ubuntu3 amd64 General purpose TCP-IP emulator library\\nii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library\\nii libsmartcols1:amd64 2.39.3-9ubuntu6.1 amd64 smart column output alignment library\\nii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 shared library for communication with SMB/CIFS servers\\nii libsnapd-glib-2-1:amd64 1.64-0ubuntu5 amd64 GLib snapd library\\nii libsndfile1:amd64 1.2.2-1ubuntu5 amd64 Library for reading/writing audio files\\nii libsnmp-base 5.9.4+dfsg-1.1ubuntu3 all SNMP configuration script, MIBs and documentation\\nii libsnmp40t64:amd64 5.9.4+dfsg-1.1ubuntu3 amd64 SNMP (Simple Network Management Protocol) library\\nii libsonic0:amd64 0.2.0-13build1 amd64 Simple library to speed up or slow down speech\\nii libsoup-2.4-1:amd64 2.74.3-6ubuntu1 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-0:amd64 3.4.4-5build2 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-common 3.4.4-5build2 all HTTP library implementation in C -- Common files\\nii libsoup2.4-common 2.74.3-6ubuntu1 all HTTP library implementation in C -- Common files\\nii libsource-highlight-common 3.1.9-4.3build1 all architecture-independent files for source highlighting library\\nii libsource-highlight4t64:amd64 3.1.9-4.3build1 amd64 source highlighting library\\nii libspa-0.2-bluetooth:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - bluetooth plugins\\nii libspa-0.2-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server Simple Plugin API - modules\\nii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents\\nii libspeechd2:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Shared libraries\\nii libspeex1:amd64 1.2.1-2ubuntu2 amd64 The Speex codec runtime library\\nii libspeexdsp1:amd64 1.2.1-1ubuntu3 amd64 DSP library derived from speex\\nii libsqlite3-0:amd64 3.45.1-1ubuntu2 amd64 SQLite 3 shared library\\nii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library\\nii libssh-4:amd64 0.10.6-2build2 amd64 tiny C SSH library (OpenSSL flavor)\\nrc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libssl3t64:amd64 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libstartup-notification0:amd64 0.12-6build3 amd64 library for program launch feedback (shared library)\\nii libstdc++-13-dev:amd64 13.2.0-23ubuntu4 amd64 GNU Standard C++ Library v3 (development files)\\nii libstdc++6:amd64 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3\\nii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval\\nii libsynctex2:amd64 2023.20230311.66589-9build3 amd64 TeX Live: SyncTeX parser library\\nii libsysmetrics1:amd64 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics - shared lib\\nii libsystemd-shared:amd64 255.4-1ubuntu8.4 amd64 systemd shared private library\\nii libsystemd0:amd64 255.4-1ubuntu8.4 amd64 systemd utility library\\nii libtag1v5:amd64 1.13.1-1build1 amd64 audio meta-data library\\nii libtag1v5-vanilla:amd64 1.13.1-1build1 amd64 audio meta-data library - vanilla flavour\\nii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator\\nii libtasn1-6:amd64 4.19.0-3build1 amd64 Manage ASN.1 structures (runtime)\\nii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files\\nii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library\\nii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process\\nii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library\\nii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal\\nii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl\\nii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap\\nii libthai-data 0.1.29-2build1 all Data files for Thai language support library\\nii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library\\nii libtheora0:amd64 1.1.1+dfsg.1-16.1build3 amd64 Theora Video Compression Codec\\nii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays\\nii libtiff6:amd64 4.5.1+git230720-4ubuntu2.2 amd64 Tag Image File Format (TIFF) library\\nii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information\\nii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling\\nii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files\\nii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library\\nii libtotem-plparser-common 3.26.6-1build5 all Totem Playlist Parser library - common files\\nii libtotem-plparser18:amd64 3.26.6-1build5 amd64 Totem Playlist Parser library - runtime files\\nii libtraceevent1:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (shared library)\\nii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (plugins)\\nii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)\\nii libtracker-sparql-3.0-0:amd64 3.7.1-1build1 amd64 metadata database, indexer and search tool - library\\nii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch\\nii libtsan0:amd64 11.4.0-9ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtsan2:amd64 14-20240412-0ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-rc0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-libtpms0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-spi-helper0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tctildr0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtwolame0:amd64 0.4.0-2build3 amd64 MPEG Audio Layer 2 encoding library\\nii libu2f-udev 1.1.10-3build3 all Universal 2nd Factor (U2F) — transitional package\\nii libubsan1:amd64 14-20240412-0ubuntu1 amd64 UBSan -- undefined behaviour sanitizer (runtime)\\nii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library\\nii libudev1:amd64 255.4-1ubuntu8.4 amd64 libudev shared library\\nii libudisks2-0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2\\nii libunistring5:amd64 1.1-2build1 amd64 Unicode string library for C\\nii libunity-protocol-private0:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - private library\\nii libunity-scopes-json-def-desktop 7.1.4+19.04.20190319-6build4 all binding to get places into the launcher - desktop def file\\nii libunity9:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - shared library\\nii libuno-cppu3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU public library\\nii libuno-cppuhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU helper library\\nii libuno-purpenvhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- \\"purpose environment\\" helper\\nii libuno-sal3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL public library\\nii libuno-salhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library\\nii libunwind8:amd64 1.6.2-3build1 amd64 library to determine the call-chain of a program - runtime\\nii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library\\nii liburi-perl 5.27-1 all module to manipulate and access URI strings\\nii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library\\nii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library\\nii libuuid1:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library\\nii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library\\nii libv4l-0t64:amd64 1.26.1-4build3 amd64 Collection of video4linux support libraries\\nii libv4lconvert0t64:amd64 1.26.1-4build3 amd64 Video4linux frame format conversion library\\nii libvisual-0.4-0:amd64 0.4.2-2build1 amd64 audio visualization framework\\nii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases\\nii libvorbis0a:amd64 1.3.7-1build3 amd64 decoder library for Vorbis General Audio Compression Codec\\nii libvorbisenc2:amd64 1.3.7-1build3 amd64 encoder library for Vorbis General Audio Compression Codec\\nii libvorbisfile3:amd64 1.3.7-1build3 amd64 high-level API for Vorbis General Audio Compression Codec\\nii libvpx9:amd64 1.14.0-1ubuntu2.1 amd64 VP8 and VP9 video codec (shared library)\\nii libvte-2.91-0:amd64 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime files\\nii libvte-2.91-common 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - common files\\nii libvulkan1:amd64 1.3.275.0-1build1 amd64 Vulkan loader library\\nii libwacom-common 2.10.0-2 all Wacom model feature query library (common files)\\nii libwacom9:amd64 2.10.0-2 amd64 Wacom model feature query library\\nii libwavpack1:amd64 5.6.0-1build1 amd64 audio codec (lossy and lossless) - library\\nii libwayland-client0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - client library\\nii libwayland-cursor0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - cursor library\\nii libwayland-egl1:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - EGL library\\nii libwayland-server0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - server library\\nii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba winbind client library\\nii libwebkit2gtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebkitgtk-6.0-4:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.\\nii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebrtc-audio-processing1:amd64 0.3.1-0ubuntu6 amd64 AudioProcessing module from the WebRTC project.\\nii libwhoopsie-preferences0 23build3 amd64 Ubuntu error tracker submission settings - shared library\\nii libwhoopsie0:amd64 0.2.77build3 amd64 Ubuntu error tracker submission - shared library\\nii libwinpr3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Windows Portable Runtime library\\nii libwireplumber-0.4-0:amd64 0.4.17-1ubuntu4 amd64 Shared libraries for WirePlumber\\nii libwmf-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion library\\nii libwmf-0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin\\nii libwmf0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin - transitional package\\nii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library\\nii libwnck-3-0:amd64 43.0-3build4 amd64 Window Navigator Construction Kit - runtime files\\nii libwnck-3-common 43.0-3build4 all Window Navigator Construction Kit - common files\\nii libwoff1:amd64 1.0.2-2build1 amd64 library for converting fonts to WOFF 2.0\\nii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema\'s TCP wrappers library\\nii libwww-perl 6.76-1 all simple and consistent interface to the world-wide web\\nii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions\\nii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library\\nii libx11-data 2:1.8.7-1build1 all X11 client-side library\\nii libx11-protocol-perl 0.56-9 all Perl module for the X Window System Protocol, version 11\\nii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library\\nii libxatracker2:amd64 24.0.9-0ubuntu0.1 amd64 X acceleration library -- runtime\\nii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library\\nii libxaw7:amd64 2:1.0.14-1build2 amd64 X11 Athena Widget library\\nii libxcb-damage0:amd64 1.15-1ubuntu2 amd64 X C Binding, damage extension\\nii libxcb-dri2-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri2 extension\\nii libxcb-dri3-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri3 extension\\nii libxcb-glx0:amd64 1.15-1ubuntu2 amd64 X C Binding, glx extension\\nii libxcb-icccm4:amd64 0.4.1-1.1build3 amd64 utility libraries for X C Binding -- icccm\\nii libxcb-image0:amd64 0.4.0-2build1 amd64 utility libraries for X C Binding -- image\\nii libxcb-keysyms1:amd64 0.4.0-1build4 amd64 utility libraries for X C Binding -- keysyms\\nii libxcb-present0:amd64 1.15-1ubuntu2 amd64 X C Binding, present extension\\nii libxcb-randr0:amd64 1.15-1ubuntu2 amd64 X C Binding, randr extension\\nii libxcb-render-util0:amd64 0.3.9-1build4 amd64 utility libraries for X C Binding -- render-util\\nii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension\\nii libxcb-res0:amd64 1.15-1ubuntu2 amd64 X C Binding, res extension\\nii libxcb-shape0:amd64 1.15-1ubuntu2 amd64 X C Binding, shape extension\\nii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension\\nii libxcb-sync1:amd64 1.15-1ubuntu2 amd64 X C Binding, sync extension\\nii libxcb-util1:amd64 0.4.0-1build3 amd64 utility libraries for X C Binding -- atom, aux and event\\nii libxcb-xfixes0:amd64 1.15-1ubuntu2 amd64 X C Binding, xfixes extension\\nii libxcb-xkb1:amd64 1.15-1ubuntu2 amd64 X C Binding, XKEYBOARD extension\\nii libxcb-xv0:amd64 1.15-1ubuntu2 amd64 X C Binding, xv extension\\nii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding\\nii libxcomposite1:amd64 1:0.4.5-1build3 amd64 X11 Composite extension library\\nii libxcursor1:amd64 1:1.2.1-1build1 amd64 X cursor management library\\nii libxcvt0:amd64 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator -- shared library\\nii libxdamage1:amd64 1:1.1.6-1build1 amd64 X11 damaged region extension library\\nii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library\\nii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library\\nii libxfixes3:amd64 1:6.0.0-2build1 amd64 X11 miscellaneous \'fixes\' extension library\\nii libxfont2:amd64 1:2.0.6-1build1 amd64 X11 font rasterisation library\\nii libxft2:amd64 2.3.6-1build1 amd64 FreeType-based font drawing library for X\\nii libxi6:amd64 2:1.8.1-1build1 amd64 X11 Input extension library\\nii libxinerama1:amd64 2:1.1.4-3build1 amd64 X11 Xinerama extension library\\nii libxkbcommon-x11-0:amd64 1.6.0-1build1 amd64 library to create keymaps with the XKB X11 protocol\\nii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library\\nii libxkbfile1:amd64 1:1.1.0-1build4 amd64 X11 keyboard file manipulation library\\nii libxkbregistry0:amd64 1.6.0-1build1 amd64 library to query available RMLVO\\nii libxklavier16:amd64 5.4-5build2 amd64 X Keyboard Extension high-level API\\nii libxml-parser-perl 2.47-1build3 amd64 Perl module for parsing XML files\\nii libxml-twig-perl 1:3.52-2 all Perl module for processing huge XML documents in tree mode\\nii libxml-xpathengine-perl 0.14-2 all re-usable XPath engine for DOM-like trees\\nii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3 amd64 GNOME XML library\\nii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library\\nii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library\\nii libxmlsec1t64-nss:amd64 1.2.39-5build2 amd64 Nss engine for the XML security library\\nii libxmu6:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous utility library\\nii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library\\nii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library\\nii libxrandr2:amd64 2:1.5.2-2build1 amd64 X11 RandR extension library\\nii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library\\nii libxres1:amd64 2:1.2.1-1build1 amd64 X11 Resource extension library\\nii libxshmfence1:amd64 1.3-1build5 amd64 X shared memory fences - shared library\\nii libxslt1.1:amd64 1.1.39-0exp1build1 amd64 XSLT 1.0 processing library - runtime library\\nii libxss1:amd64 1:1.2.3-1build3 amd64 X11 Screen Saver extension library\\nii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library\\nii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library\\nii libxtst6:amd64 2:1.2.3-1.1build1 amd64 X11 Testing -- Record extension library\\nii libxv1:amd64 2:1.0.11-1.1build1 amd64 X11 Video extension library\\nii libxvmc1:amd64 2:1.0.12-2build3 amd64 X11 Video extension library\\nii libxxf86dga1:amd64 2:1.1.5-1build1 amd64 X11 Direct Graphics Access extension library\\nii libxxf86vm1:amd64 1:1.1.4-1build4 amd64 X11 XFree86 video mode extension library\\nii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash\\nii libyajl2:amd64 2.1.0-5build1 amd64 Yet Another JSON Library\\nii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library\\nii libyelp0:amd64 42.2-1build2 amd64 Library for the GNOME help browser\\nii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm\\nii linux-base 4.5ubuntu9 all Linux image base package\\nii linux-firmware 20240318.git3b128b60-0ubuntu2.3 amd64 Firmware for Linux kernel drivers\\nii linux-generic 6.8.0-44.44 amd64 Complete Generic Linux kernel and headers\\nii linux-headers-6.8.0-40 6.8.0-40.40 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-6.8.0-44 6.8.0-44.44 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-generic 6.8.0-44.44 amd64 Generic Linux kernel headers\\nrc linux-image-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Signed kernel image generic\\nii linux-image-6.8.0-40-generic 6.8.0-40.40 amd64 Signed kernel image generic\\nii linux-image-6.8.0-44-generic 6.8.0-44.44 amd64 Signed kernel image generic\\nii linux-image-generic 6.8.0-44.44 amd64 Generic Linux kernel image\\nii linux-libc-dev:amd64 6.8.0-44.44 amd64 Linux Kernel Headers for development\\nrc linux-modules-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-sound-base 1.0.25+dfsg-0ubuntu7 all base package for ALSA and OSS sound systems\\nii linux-tools-6.8.0-40 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-44 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-common 6.8.0-44.44 all Linux kernel version specific tools for version 6.8.0\\nii lm-sensors 1:3.6.0-9build1 amd64 utilities to read temperature/voltage/fan sensors\\nii locales 2.39-0ubuntu8.3 all GNU C Library: National Language (locale) data [support]\\nii login 1:4.13+dfsg1-4ubuntu3 amd64 system login tools\\nii logrotate 3.21.0-2build1 amd64 Log rotation utility\\nii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file\\nii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality\\nii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)\\nii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration\\nii lsof 4.95.0-1build3 amd64 utility to list open files\\nii lto-disabled-list 47 all list of packages not to build with LTO\\nii mailcap 3.70+nmu1ubuntu1 all Debian\'s mailcap system, and support programs\\nii make 4.3-4.1build2 amd64 utility for directing compilation\\nii man-db 2.12.0-4build2 amd64 tools for reading manual pages\\nii manpages 6.7-2 all Manual pages about using a GNU/Linux system\\nii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development\\nii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language\\nii media-types 10.1.0 all List of standard media types and their usual file extension\\nii memtest86+ 7.00-1build1 amd64 stand-alone memory tester for x86 and x86-64\\nii mesa-vulkan-drivers:amd64 24.0.9-0ubuntu0.1 amd64 Mesa Vulkan graphics drivers\\nii mobile-broadband-provider-info 20230416-1 all database of mobile broadband service providers\\nii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems\\nii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys\\nii mongodb-database-tools 100.9.4 amd64 mongodb-database-tools package provides tools for working with the MongoDB server: \\nii mongodb-org-database-tools-extra 7.0.9 amd64 Extra MongoDB database tools\\nii mongodb-org-server 7.0.9 amd64 MongoDB database server\\nii mongodb-org-shell 7.0.9 amd64 MongoDB shell client\\nii mongodb-org-tools 7.0.9 amd64 MongoDB tools\\nii mount 2.39.3-9ubuntu6.1 amd64 tools for mounting and manipulating filesystems\\nii mousetweaks 3.32.0-4build2 amd64 mouse accessibility enhancements for the GNOME desktop\\nii mscompress 0.4-10build1 amd64 Microsoft \\"compress.exe/expand.exe\\" compatible (de)compressor\\nii msr-tools 1.3-5build1 amd64 Utilities for modifying MSRs from userspace\\nii mtr-tiny 0.95-1.1build2 amd64 Full screen ncurses traceroute tool\\nii mutter-common 46.2-1ubuntu0.24.04.1 all shared files for the Mutter window manager\\nii mutter-common-bin 46.2-1ubuntu0.24.04.1 amd64 shared programs for the Mutter window manager\\nii mysql-common 5.8+1.1.0build1 all MySQL database common files, e.g. /etc/mysql/my.cnf\\nii nano 7.2-2build1 amd64 small, friendly text editor inspired by Pico\\nii nautilus 1:46.2-0ubuntu0.2 amd64 file manager and graphical shell for GNOME\\nii nautilus-data 1:46.2-0ubuntu0.2 all data files for nautilus\\nii nautilus-extension-gnome-terminal:amd64 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application - Nautilus extension\\nii nautilus-sendto 3.8.6-7build2 amd64 easily send files via email from within Nautilus\\nii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions\\nii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages\\nii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions\\nii net-tools 2.10-0.1ubuntu4 amd64 NET-3 networking toolkit\\nii netbase 6.4 all Basic TCP/IP networking system\\nii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife\\nii netplan-generator 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration systemd-generator\\nii netplan.io 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration for various backends\\nii network-manager 1.46.0-1ubuntu2 amd64 network management framework (daemon and userspace tools)\\nii network-manager-config-connectivity-ubuntu 1.46.0-1ubuntu2 all NetworkManager configuration to enable connectivity checking\\nii network-manager-gnome 1.34.0-1ubuntu3 amd64 network management framework (GNOME frontend)\\nii network-manager-openvpn 1.10.2-4build2 amd64 network management framework (OpenVPN plugin core)\\nii network-manager-openvpn-gnome 1.10.2-4build2 amd64 network management framework (OpenVPN plugin GNOME GUI)\\nii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)\\nii network-manager-pptp-gnome 1.2.12-3build2 amd64 network management framework (PPTP plugin GNOME GUI)\\nii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes\\nii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project\\nii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE\\nii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool\\nii openipmi 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface (for servers)\\nii openjdk-17-jre-headless:amd64 17.0.12+7-1ubuntu2~24.04 amd64 OpenJDK Java runtime, using Hotspot JIT (headless)\\nii openprinting-ppds 20230202-1 all OpenPrinting printer support - PostScript PPD files\\nii openssh-client 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) client, for secure access to remote machines\\nii openssh-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) server, for secure access from remote machines\\nii openssh-sftp-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines\\nii openssl 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - cryptographic utility\\nii openvpn 2.6.9-1ubuntu4.1 amd64 virtual private network daemon\\nii orca 46.1-1ubuntu1 all Scriptable screen reader\\nii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives\\nii p11-kit 0.25.3-4ubuntu2.1 amd64 p11-glue utilities\\nii p11-kit-modules:amd64 0.25.3-4ubuntu2.1 amd64 p11-glue proxy and trust modules\\nii packagekit 1.2.8-2build3 amd64 Provides a package management service\\nii packagekit-tools 1.2.8-2build3 amd64 Provides PackageKit command-line tools\\nii parted 3.6-4build1 amd64 disk partition manipulator\\nii passwd 1:4.13+dfsg1-4ubuntu3 amd64 change and administer password and group data\\nii pastebinit 1.6.2-1 all command-line pastebin client\\nii patch 2.7.6-7build3 amd64 Apply a diff file to an original\\nii pci.ids 0.0~2024.03.31-1 all PCI ID Repository\\nii pciutils 1:3.10.0-2build1 amd64 PCI utilities\\nii pcmciautils 018-14build1 amd64 PCMCIA utilities for Linux 2.6\\nii perl 5.38.2-3.2build2 amd64 Larry Wall\'s Practical Extraction and Report Language\\nii perl-base 5.38.2-3.2build2 amd64 minimal Perl system\\nii perl-modules-5.38 5.38.2-3.2build2 all Core Perl modules\\nii perl-openssl-defaults:amd64 7build3 amd64 version compatibility baseline for Perl OpenSSL packages\\nii pigz 2.8-1 amd64 Parallel Implementation of GZip\\nii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG\\nii pinentry-gnome3 1.2.1-3ubuntu5 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG\\nii pipewire:amd64 1.0.5-1ubuntu1 amd64 audio and video processing engine multimedia server\\nii pipewire-alsa:amd64 1.0.5-1ubuntu1 amd64 PipeWire ALSA plugin, for ALSA applications to output via PipeWire\\nii pipewire-audio 1.0.5-1ubuntu1 all recommended set of PipeWire packages for a standard audio desktop use\\nii pipewire-bin 1.0.5-1ubuntu1 amd64 PipeWire multimedia server - programs\\nrc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire\\nii pipewire-pulse 1.0.5-1ubuntu1 amd64 PipeWire PulseAudio daemon\\nii pkexec 124-2ubuntu1 amd64 run commands as another user with polkit authorization\\nii pkgconf:amd64 1.8.1-2build1 amd64 manage compile and link flags for libraries\\nii pkgconf-bin 1.8.1-2build1 amd64 manage compile and link flags for libraries (binaries)\\nii plymouth 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer\\nii plymouth-label 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - label control\\nii plymouth-theme-spinner 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - spinner theme\\nii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme\\nii policykit-1 124-2ubuntu1 amd64 transitional package for polkitd and pkexec\\nii policykit-desktop-privileges 0.22 all run common desktop actions without password\\nii polkitd 124-2ubuntu1 amd64 framework for managing administrative policies and privileges\\nii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library\\nii poppler-utils 24.02.0-1ubuntu9.1 amd64 PDF utilities (based on Poppler)\\nii power-profiles-daemon 0.21-1 amd64 Makes power profiles handling available over D-Bus.\\nii powermgmt-base 1.37 all common utils for power management\\nii powertop 2.15-3build1 amd64 diagnose issues with power consumption and management\\nii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon\\nii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client\\nii printer-driver-brlaser 6-3build2 amd64 printer driver for (some) Brother laser printers\\nii printer-driver-c2esp 27-11ubuntu7 amd64 printer driver for Kodak ESP AiO color inkjet Series\\nii printer-driver-foo2zjs 20200505dfsg0-2ubuntu6 amd64 printer driver for ZjStream-based printers\\nii printer-driver-foo2zjs-common 20200505dfsg0-2ubuntu6 all printer driver for ZjStream-based printers - common files\\nii printer-driver-hpcups 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)\\nii printer-driver-m2300w 0.51-15build2 amd64 printer driver for Minolta magicolor 2300W/2400W color laser printers\\nii printer-driver-min12xxw 0.0.9-11build3 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW\\nii printer-driver-pnm2ppa 1.13+nondbs-0ubuntu10 amd64 printer driver for HP-GDI printers\\nii printer-driver-postscript-hp 3.23.12+dfsg0-0ubuntu5 amd64 HP Printers PostScript Descriptions\\nii printer-driver-ptouch 1.7-1build2 amd64 printer driver Brother P-touch label printers\\nii printer-driver-pxljr 1.4+repack0-6build2 amd64 printer driver for HP Color LaserJet 35xx/36xx\\nii printer-driver-sag-gdi 0.1-8 all printer driver for Ricoh Aficio SP 1000s/SP 1100s\\nii printer-driver-splix 2.0.0+svn315-7fakesync1ubuntu1 amd64 Driver for Samsung and Xerox SPL2 and SPLc laser printers\\nii procps 2:4.0.4-4ubuntu3 amd64 /proc file system utilities\\nii psmisc 23.7-1build1 amd64 utilities that use the proc file system\\nii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes\\nrc pulseaudio 1:15.99.1+dfsg1-1ubuntu2.2 amd64 PulseAudio sound server\\nii python-apt-common 2.7.7ubuntu3 all Python interface to libapt-pkg (locales)\\nii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files\\nii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii python3-apport 2.28.1-0ubuntu3.1 all Python 3 library for Apport crash report handling\\nii python3-apt 2.7.7ubuntu3 amd64 Python 3 interface to libapt-pkg\\nii python3-aptdaemon 1.1.1+bzr982-0ubuntu44 all Python 3 module for the server and client of aptdaemon\\nii python3-aptdaemon.gtk3widgets 1.1.1+bzr982-0ubuntu44 all Python 3 GTK+ 3 widgets to run an aptdaemon client\\nii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)\\nii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x\\nii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)\\nii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)\\nii python3-brlapi:amd64 6.6-4ubuntu5 amd64 Braille display access via BRLTTY - Python3 bindings\\nii python3-cairo 1.25.1-2build2 amd64 Python3 bindings for the Cairo vector graphics library\\nii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)\\nii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime\\nii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)\\nii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x\\nii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x\\nii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.\\nii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3\\nii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)\\nii python3-cups:amd64 2.0.1-5build6 amd64 Python3 bindings for CUPS\\nii python3-cupshelpers 1.5.18-1ubuntu9 all Python utility modules around the CUPS printing system\\nii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module\\nii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)\\nii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3\\nii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats\\nii python3-defer 1.0.6-2.1ubuntu1 all Small framework for asynchronous programming (Python 3)\\nii python3-dev 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii python3-distro 1.9.0-1 all Linux OS platform information API\\nii python3-distro-info 1.7build1 all information about distributions\' releases (Python 3 module)\\nii python3-distupgrade 1:24.04.23 all manage release upgrades\\nii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x\\nii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries\\nii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3\\nii python3-ibus-1.0 1.5.29-2 all Intelligent Input Bus - introspection overrides for Python (Python 3)\\nii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)\\nii python3-importlib-metadata 4.12.0-1 all library to access the metadata for a Python package - Python 3.x\\nii python3-jinja2 3.1.2-1ubuntu1.1 all small but fast and easy to use stand-alone template engine\\nii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x\\nii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x\\nii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)\\nii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token\\nii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)\\nii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)\\nii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs\\nii python3-louis 3.29.0-1build1 all Python bindings for liblouis\\nii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins\\nii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library\\nii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package\\nii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)\\nii python3-more-itertools 10.2.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)\\nii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)\\nii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x\\nii python3-netplan 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration Python bindings\\nii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3\\nii python3-olefile 0.46-3 all Python module to read/write MS OLE2 files\\nii python3-packaging 24.0-1 all core utilities for python3 packages\\nii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications\\nii python3-pil:amd64 10.2.0-1ubuntu1 amd64 Python Imaging Library (Python3)\\nii python3-pip 24.0+dfsg-1ubuntu1 all Python package installer\\nii python3-pip-whl 24.0+dfsg-1ubuntu1 all Python package installer (pip wheel)\\nii python3-pkg-resources 68.1.2-2ubuntu1 all Package Discovery and Resource Access using pkg_resources\\nii python3-problem-report 2.28.1-0ubuntu3.1 all Python 3 library to handle problem reports\\nii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3\\nii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3\\nii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x\\nii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python\\nii python3-requests 2.31.0+dfsg-1ubuntu1 all elegant and simple HTTP library for Python3, built for human beings\\nii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more\\nii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port\\nii python3-setuptools 68.1.2-2ubuntu1 all Python3 Distutils Enhancements\\nii python3-setuptools-whl 68.1.2-2ubuntu1 all Python Distutils Enhancements (wheel package)\\nii python3-six 1.16.0-4 all Python 2 and 3 compatibility library\\nii python3-software-properties 0.99.48 all manage the repositories that you install software from\\nii python3-speechd 0.12.0~rc2-2build3 all Python interface to Speech Dispatcher\\nii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd\\nii python3-tz 2024.1-2 all Python3 version of the Olson timezone database\\nii python3-uno 4:24.2.5-0ubuntu0.24.04.2 amd64 Python-UNO bridge\\nii python3-update-manager 1:24.04.6 all Python 3.x module for update-manager\\nii python3-urllib3 2.0.7-1 all HTTP library with thread-safe connection pooling for Python3\\nii python3-venv 3.12.3-0ubuntu2 amd64 venv module for python3 (default python3 version)\\nii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files\\nii python3-wheel 0.42.0-2 all built-package format for Python\\nii python3-xdg 0.28-2 all Python 3 library to access freedesktop.org standards\\nii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)\\nii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3\\nii python3-zipp 1.0.0-6ubuntu0.1 all pathlib-compatible Zipfile object wrapper - Python 3.x\\nrc python3.10-venv 3.10.12-1~22.04.5 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.10)\\nii python3.12 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (version 3.12)\\nii python3.12-dev 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii python3.12-minimal 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii python3.12-venv 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.12)\\nii readline-common 8.2-4build1 all GNU readline and history libraries, common files\\nii rfkill 2.39.3-9ubuntu6.1 amd64 tool for enabling and disabling wireless devices\\nii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions\\nii rsync 3.2.7-1ubuntu1 amd64 fast, versatile, remote (and local) file-copying tool\\nii rsyslog 8.2312.0-3ubuntu9 amd64 reliable system and kernel logging daemon\\nii rtkit 0.13-5build1 amd64 Realtime Policy and Watchdog Daemon\\nii rygel 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services\\nii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba core libraries\\nii sane-airscan 0.99.29-0ubuntu4 amd64 SANE backend for AirScan (eSCL) and WSD document scanner\\nii sane-utils 1.2.1-7build4 amd64 API library for scanners -- utilities\\nii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers\\nii seahorse 43.0-3build2 amd64 GNOME front end for GnuPG\\nii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX\\nii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text\\nii sensible-utils 0.0.22 all Utilities for sensible alternative selection\\nii session-migration 0.3.9build1 amd64 Tool to migrate in user session settings\\nii sgml-base 1.31 all SGML infrastructure and SGML catalog file support\\nii sgml-data 2.0.11+nmu1 all common SGML and XML data\\nii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec\\nii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)\\nii slirp4netns 1.2.1-1build2 amd64 User-mode networking for unprivileged network namespaces\\nii snapd 2.63.1+24.04 amd64 Daemon and tooling that enable snap packages\\nii software-properties-common 0.99.48 all manage the repositories that you install software from (common)\\nii software-properties-gtk 0.99.48 all manage the repositories that you install software from (gtk)\\nii sound-icons 0.1-8 all Sounds for speech enabled applications\\nii sound-theme-freedesktop 0.8-2ubuntu1 all freedesktop.org sound theme\\nii speech-dispatcher 0.12.0~rc2-2build3 amd64 Common interface to speech synthesizers\\nii speech-dispatcher-audio-plugins:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Audio output plugins\\nii speech-dispatcher-espeak-ng 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Espeak-ng output module\\nii spice-vdagent 0.22.1-4build3 amd64 Spice agent for Linux\\nii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems\\nii ssh-import-id 5.11-0ubuntu2 all securely retrieve an SSH public key and install it locally\\nii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL\\nii strace 6.8-0ubuntu2 amd64 System call tracer\\nii stress-ng 0.17.06-1build1 amd64 tool to load and stress a computer\\nii sudo 1.9.15p5-3ubuntu5 amd64 Provide limited super user privileges to specific users\\nii switcheroo-control 2.6-2build2 amd64 D-Bus service to check the availability of dual-GPU\\nii sysbench 1.0.20+ds-6build2 amd64 multi-threaded benchmark tool for database systems\\nii sysbox-ce 0.6.4.linux amd64 Sysbox Community Edition (CE) is a next-generation container runtime,\\nii syslinux-common 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 all collection of bootloaders (common)\\nii sysstat 12.6.1-2 amd64 system performance tools for Linux\\nii system-config-printer-common 1.5.18-1ubuntu9 all backend and the translation files for system-config-printer\\nii system-config-printer-udev 1.5.18-1ubuntu9 amd64 Utilities to detect and configure printers automatically\\nii systemd 255.4-1ubuntu8.4 amd64 system and service manager\\nii systemd-dev 255.4-1ubuntu8.4 all systemd development files\\nii systemd-hwe-hwdb 255.1.3 all udev rules for hardware enablement (HWE)\\nii systemd-oomd 255.4-1ubuntu8.4 amd64 userspace out-of-memory (OOM) killer\\nii systemd-resolved 255.4-1ubuntu8.4 amd64 systemd DNS resolver\\nii systemd-sysv 255.4-1ubuntu8.4 amd64 system and service manager - SysV compatibility symlinks\\nii systemd-timesyncd 255.4-1ubuntu8.4 amd64 minimalistic service to synchronize local time with NTP servers\\nii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities\\nii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility\\nii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell\\nii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell\\nii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer\\nii tecla 46.0-1build1 amd64 keyboard layout viewer for the GNOME desktop\\nii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch\\nii thermald 2.5.6-2build2 amd64 Thermal monitoring and controlling daemon\\nii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage\\nii tinyproxy 1.11.1-3 all Lightweight, non-caching, optionally anonymizing HTTP proxy\\nii tinyproxy-bin 1.11.1-3 amd64 Lightweight, non-caching, optionally anonymizing HTTP proxy (executable only)\\nii tnftp 20230507-2build3 amd64 enhanced ftp client\\nii tpm-udev 0.6ubuntu1 all udev rules for TPM modules\\nii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel\\nii tracker 3.7.1-1build1 amd64 metadata database, indexer and search tool\\nii tracker-extract 3.7.1-1build1 amd64 metadata database, indexer and search tool - metadata extractors\\nii tracker-miner-fs 3.7.1-1build1 amd64 metadata database, indexer and search tool - filesystem indexer\\nii tzdata 2024a-3ubuntu1.1 all time zone and daylight-saving time data\\nii ubuntu-advantage-desktop-daemon 1.11 amd64 Daemon to allow access to ubuntu-advantage via D-Bus\\nii ubuntu-desktop 1.539.1 amd64 Ubuntu desktop system\\nii ubuntu-desktop-minimal 1.539.1 amd64 Ubuntu desktop minimal system\\nii ubuntu-docs 24.04.2 all Ubuntu Desktop Guide\\nii ubuntu-drivers-common 1:0.9.7.6ubuntu3.1 amd64 Detect and install additional Ubuntu driver packages\\nii ubuntu-kernel-accessories 1.539.1 amd64 packages useful to install by default on systems with kernels\\nii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive\\nii ubuntu-minimal 1.539.1 amd64 Minimal core of Ubuntu\\nii ubuntu-mono 24.04-0ubuntu1 all Ubuntu Mono Icon theme\\nii ubuntu-pro-client 33.2~24.04.1 amd64 Management tools for Ubuntu Pro\\nii ubuntu-pro-client-l10n 33.2~24.04.1 amd64 Translations for Ubuntu Pro Client\\nii ubuntu-release-upgrader-core 1:24.04.23 all manage release upgrades\\nii ubuntu-release-upgrader-gtk 1:24.04.23 all manage release upgrades\\nii ubuntu-report 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics\\nii ubuntu-session 46.0-1ubuntu4 all Ubuntu session with GNOME Shell\\nii ubuntu-settings 24.04.4 all default settings for the Ubuntu desktop\\nii ubuntu-standard 1.539.1 amd64 Ubuntu standard system\\nii ubuntu-wallpapers 24.04.2 all Ubuntu Wallpapers\\nii ubuntu-wallpapers-noble 24.04.2 all Ubuntu 24.04 Wallpapers\\nii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files\\nii udev 255.4-1ubuntu8.4 amd64 /dev/ and hotplug management daemon\\nii udisks2 2.10.1-6build1 amd64 D-Bus service to access and manipulate storage devices\\nii ufw 0.36.2-6 all program for managing a Netfilter firewall\\nii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades\\nii unifi 8.1.127-25320-1 all Ubiquiti UniFi server\\nii uno-libs-private 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- private libraries used by public ones\\nii unzip 6.0-28ubuntu4 amd64 De-archiver for .zip files\\nii update-inetd 4.53 all inetd configuration file updater\\nii update-manager 1:24.04.6 all GNOME application that manages apt updates\\nii update-manager-core 1:24.04.6 all manage release upgrades\\nii update-notifier 3.192.68build3 amd64 Daemon which notifies about package updates\\nii update-notifier-common 3.192.68build3 all Files shared between update-notifier and other packages\\nii upower 1.90.3-1 amd64 abstraction for power management\\nii ure 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment\\nii usb-creator-common 0.3.17 all create a startup disk using a CD or disc image (common files)\\nii usb-creator-gtk 0.3.17 all create a startup disk using a CD or disc image (for GNOME)\\nii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling \\"flip flop\\" USB devices\\nii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch\\nii usb.ids 2024.03.18-1 all USB ID Repository\\nii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices\\nii usbutils 1:017-3build1 amd64 Linux USB utilities\\nii util-linux 2.39.3-9ubuntu6.1 amd64 miscellaneous system utilities\\nii uuid-dev:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library - headers and static libraries\\nii uuid-runtime 2.39.3-9ubuntu6.1 amd64 runtime components for the Universally Unique ID library\\nii vim-common 2:9.1.0016-1ubuntu7.2 all Vi IMproved - Common files\\nii vim-tiny 2:9.1.0016-1ubuntu7.2 amd64 Vi IMproved - enhanced vi editor - compact version\\nii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict\\nii wbritish 2020.12.07-2 all British English dictionary words for /usr/share/dict\\nii webp-pixbuf-loader:amd64 0.2.4-2build2 amd64 WebP Image format GdkPixbuf loader\\nii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web\\nii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts\\nii whoopsie 0.2.77build3 amd64 Ubuntu error tracker submission\\nii whoopsie-preferences 23build3 amd64 System preferences for error reporting\\nii wireless-regdb 2022.06.06-0ubuntu2 all wireless regulatory database\\nii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions\\nii wireplumber 0.4.17-1ubuntu4 amd64 modular session / policy manager for PipeWire\\nii wngerman 20161207-12 all New German orthography wordlist\\nii wogerman 1:2-39 all Traditional German wordlist\\nii wpasupplicant 2:2.10-21ubuntu0.1 amd64 client support for WPA and WPA2 (IEEE 802.11i)\\nii wswiss 20161207-12 all Swiss (German) orthography wordlist\\nii x11-apps 7.7+11build3 amd64 X applications\\nii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure\\nii x11-session-utils 7.7+6build2 amd64 X session utilities\\nii x11-utils 7.7+6build2 amd64 X11 utilities\\nii x11-xkb-utils 7.7+8build2 amd64 X11 XKB utilities\\nii x11-xserver-utils 7.7+10build2 amd64 X server utilities\\nii xauth 1:1.1.2-1build1 amd64 X authentication utility\\nii xbitmaps 1.1.1-2.2 all Base X bitmaps\\nii xbrlapi 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display - xbrlapi\\nii xcursor-themes 1.0.6-0ubuntu1 all Base X cursor themes\\nii xcvt 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator\\nii xdg-dbus-proxy 0.1.5-1build2 amd64 filtering D-Bus proxy\\nii xdg-desktop-portal 1.18.4-1ubuntu2 amd64 desktop integration portal for Flatpak and Snap\\nii xdg-desktop-portal-gnome 46.2-0ubuntu1 amd64 GNOME portal backend for xdg-desktop-portal\\nii xdg-desktop-portal-gtk 1.15.1-1build2 amd64 GTK+/GNOME portal backend for xdg-desktop-portal\\nii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories\\nii xdg-user-dirs-gtk 0.11-1build2 amd64 tool to manage well known user directories (Gtk extension)\\nii xdg-utils 1.1.3-4.1ubuntu3 all desktop integration utilities from freedesktop.org\\nii xfonts-base 1:1.0.5+nmu1 all standard fonts for X\\nii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts\\nii xfonts-scalable 1:1.0.3-1.3 all scalable fonts for X\\nii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs\\nii xinit 1.4.1-0ubuntu5 amd64 X server initialisation tool\\nii xinput 1.6.4-1build1 amd64 Runtime configuration and test of XInput devices\\nii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data\\nii xml-core 0.19 all XML infrastructure and XML catalog file support\\nii xorg 1:7.7+23ubuntu3 amd64 X.Org X Window System\\nii xorg-docs-core 1:1.7.1-1.2 all Core documentation for the X.org X Window System\\nii xorriso 1:1.5.6-1.1ubuntu3 amd64 command line ISO-9660 and Rock Ridge manipulation tool\\nii xserver-common 2:21.1.12-1ubuntu1 all common files used by various X servers\\nii xserver-xephyr 2:21.1.12-1ubuntu1 amd64 nested X server\\nii xserver-xorg 1:7.7+23ubuntu3 amd64 X.Org X server\\nii xserver-xorg-core 2:21.1.12-1ubuntu1 amd64 Xorg X server - core server\\nii xserver-xorg-input-all 1:7.7+23ubuntu3 amd64 X.Org X server -- input driver metapackage\\nii xserver-xorg-input-libinput 1.4.0-1build1 amd64 X.Org X server -- libinput input driver\\nii xserver-xorg-input-wacom 1:1.2.0-1ubuntu2 amd64 X.Org X server -- Wacom input driver\\nii xserver-xorg-legacy 2:21.1.12-1ubuntu1 amd64 setuid root Xorg server wrapper\\nii xserver-xorg-video-all 1:7.7+23ubuntu3 amd64 X.Org X server -- output driver metapackage\\nii xserver-xorg-video-amdgpu 23.0.0-1build1 amd64 X.Org X server -- AMDGPU display driver\\nii xserver-xorg-video-ati 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI display driver wrapper\\nii xserver-xorg-video-fbdev 1:0.5.0-2build2 amd64 X.Org X server -- fbdev display driver\\nii xserver-xorg-video-intel 2:2.99.917+git20210115-1build1 amd64 X.Org X server -- Intel i8xx, i9xx display driver\\nii xserver-xorg-video-nouveau 1:1.0.17-2build1 amd64 X.Org X server -- Nouveau display driver\\nii xserver-xorg-video-qxl 0.1.6-1build1 amd64 X.Org X server -- QXL display driver\\nii xserver-xorg-video-radeon 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI Radeon display driver\\nii xserver-xorg-video-vesa 1:2.6.0-1 amd64 X.Org X server -- VESA display driver\\nii xserver-xorg-video-vmware 1:13.4.0-1build1 amd64 X.Org X server -- VMware display driver\\nii xwayland 2:23.2.6-1 amd64 X server for running X clients under Wayland\\nii xxd 2:9.1.0016-1ubuntu7.2 amd64 tool to make (or reverse) a hex dump\\nii xz-utils 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression utilities\\nii yaru-theme-gnome-shell 24.04.2-0ubuntu1 all Yaru GNOME Shell desktop theme from the Ubuntu Community\\nii yaru-theme-gtk 24.04.2-0ubuntu1 all Yaru GTK theme from the Ubuntu Community\\nii yaru-theme-icon 24.04.2-0ubuntu1 all Yaru icon theme from the Ubuntu Community\\nii yaru-theme-sound 24.04.2-0ubuntu1 all Yaru sound theme from the Ubuntu Community\\nii yelp 42.2-1build2 amd64 Help browser for GNOME\\nii yelp-xsl 42.1-2 all XSL stylesheets for the yelp help browser\\nii zenity 4.0.1-1build3 amd64 Display graphical dialog boxes from shell scripts\\nii zenity-common 4.0.1-1build3 all Display graphical dialog boxes from shell scripts (common files)\\nii zip 3.0-13build1 amd64 Archiver for .zip files\\nii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime\\nii zlib1g-dev:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - development\\nii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool\\n", "Turbo Boost (Legacy non intel_pstate)": "File not found"}',E'{"uri": "/home/arne/Sites/green-coding/example-applications/", "uri_type": "folder", "name": "Stress Test #4-Real", "filename": "stress/usage_scenario.yml", "branch": null, "debug_mode": false, "allow_unsafe": false, "skip_system_checks": false, "skip_unsafe": true, "verbose_provider_boot": false, "full_docker_prune": false, "dev_no_sleeps": false, "dev_no_build": true, "dev_no_metrics": false, "dev_flow_timetravel": false, "dev_no_optimizations": false, "docker_prune": false, "job_id": null}',1,E'64134395e83e6e57cf6247a2b0ec11b562d1fa95',E'{"sci": {"I": 436, "EL": 4, "RS": 1, "TE": 181000}, "measurement": {"boot": {"wait_time_dependencies": 60}, "idle-duration": 5, "pre-test-sleep": 5, "total-duration": 3600, "post-test-sleep": 5, "metric-providers": {"linux": {"network.io.cgroup.container.provider.NetworkIoCgroupContainerProvider": {"resolution": 99}, "cpu.energy.rapl.msr.component.provider.CpuEnergyRaplMsrComponentProvider": {"resolution": 99}, "cpu.utilization.procfs.system.provider.CpuUtilizationProcfsSystemProvider": {"resolution": 99}, "memory.total.cgroup.container.provider.MemoryTotalCgroupContainerProvider": {"resolution": 99}, "psu.energy.dc.rapl.msr.machine.provider.PsuEnergyDcRaplMsrMachineProvider": {"resolution": 99}, "cpu.utilization.cgroup.container.provider.CpuUtilizationCgroupContainerProvider": {"resolution": 99}}, "macos": {"powermetrics.provider.PowermetricsProvider": {"resolution": 99}, "cpu.utilization.mach.system.provider.CpuUtilizationMachSystemProvider": {"resolution": 99}}, "common": {"network.connections.proxy.container.provider.NetworkConnectionsProxyContainerProvider": null}}, "baseline-duration": 5, "flow-process-duration": 1800, "phase-transition-time": 1, "system_check_threshold": 3}}',1726160328742271,1726160353581253,E'[{"start": 1726160329743697, "name": "[BASELINE]", "end": 1726160334744785}, {"start": 1726160335745833, "name": "[INSTALLATION]", "end": 1726160335931783}, {"start": 1726160336932437, "name": "[BOOT]", "end": 1726160337503043}, {"start": 1726160340514884, "name": "[IDLE]", "end": 1726160345515280}, {"start": 1726160346515621, "name": "[RUNTIME]", "end": 1726160351580464}, {"start": 1726160346515787, "name": "Stress", "end": 1726160351580424}, {"start": 1726160352580653, "name": "[REMOVE]", "end": 1726160353581175}]',NULL,NULL,FALSE,E'2024-09-12 16:58:25.214591+00',E'2024-09-12 17:01:17.228965+00'), -(E'af76f822-c042-4bf1-a5aa-5566761ef351',NULL,E'Stress Test #5',E'/home/arne/Sites/green-coding/example-applications/',E'main',E'58c7a5002c684f41f8d7a355f3ede641d8e45ddc',E'2024-07-10 13:48:46+00',E'manual',NULL,E'{"name": "Stress Container One Core 5 Seconds", "author": "Arne Tarara <arne@green-coding.berlin>", "description": "A simple 5 seconds stress on the system with one core. Expected display result is a rectangle shaped load.", "flow": [{"name": "Stress", "container": "gcb-alpine-stress", "commands": [{"type": "console", "command": "stress-ng -c 1 -t 5 -q", "note": "Starting Stress"}]}], "version": "2", "services": {"gcb-alpine-stress": {"container_name": "gcb-alpine-stress", "image": "gcb_alpine_stress", "build": "."}}}',E'stress/usage_scenario.yml',E'{"SGX": "This CPU does not support Intel SGX", "Uptime": " 19:01:00 up 24 min, 3 users, load average: 0.17, 0.36, 0.39", "Cpu Info": "11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz", "Platform": "Linux", "Processes": "USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\\nroot 1 0.3 0.0 23440 14188 ? Ss 18:36 0:04 /sbin/init splash\\nroot 2 0.0 0.0 0 0 ? S 18:36 0:00 [kthreadd]\\nroot 3 0.0 0.0 0 0 ? S 18:36 0:00 [pool_workqueue_release]\\nroot 4 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_g]\\nroot 5 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_p]\\nroot 6 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-slub_]\\nroot 7 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-netns]\\nroot 8 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:0-kacpi_notify]\\nroot 9 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:0H-events_highpri]\\nroot 10 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:1-pm]\\nroot 12 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mm_pe]\\nroot 13 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_kthread]\\nroot 14 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_rude_kthread]\\nroot 15 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_trace_kthread]\\nroot 16 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/0]\\nroot 17 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_preempt]\\nroot 18 0.0 0.0 0 0 ? S 18:36 0:00 [migration/0]\\nroot 19 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/0]\\nroot 20 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/0]\\nroot 21 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/1]\\nroot 22 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/1]\\nroot 23 0.0 0.0 0 0 ? S 18:36 0:00 [migration/1]\\nroot 24 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/1]\\nroot 26 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:0H-events_highpri]\\nroot 27 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/2]\\nroot 28 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/2]\\nroot 29 0.0 0.0 0 0 ? S 18:36 0:00 [migration/2]\\nroot 30 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/2]\\nroot 32 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:0H-events_highpri]\\nroot 33 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/3]\\nroot 34 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/3]\\nroot 35 0.0 0.0 0 0 ? S 18:36 0:00 [migration/3]\\nroot 36 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/3]\\nroot 38 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:0H-events_highpri]\\nroot 39 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/4]\\nroot 40 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/4]\\nroot 41 0.0 0.0 0 0 ? S 18:36 0:00 [migration/4]\\nroot 42 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/4]\\nroot 43 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:0-events]\\nroot 44 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:0H-events_highpri]\\nroot 45 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/5]\\nroot 46 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/5]\\nroot 47 0.0 0.0 0 0 ? S 18:36 0:00 [migration/5]\\nroot 48 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/5]\\nroot 50 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:0H-events_highpri]\\nroot 51 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/6]\\nroot 52 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/6]\\nroot 53 0.0 0.0 0 0 ? S 18:36 0:00 [migration/6]\\nroot 54 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/6]\\nroot 56 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:0H-kblockd]\\nroot 57 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/7]\\nroot 58 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/7]\\nroot 59 0.0 0.0 0 0 ? S 18:36 0:00 [migration/7]\\nroot 60 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/7]\\nroot 62 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:0H-kblockd]\\nroot 63 0.0 0.0 0 0 ? S 18:36 0:00 [kdevtmpfs]\\nroot 64 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-inet_]\\nroot 65 0.0 0.0 0 0 ? S 18:36 0:00 [kauditd]\\nroot 67 0.0 0.0 0 0 ? S 18:36 0:00 [khungtaskd]\\nroot 68 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:2-events_power_efficient]\\nroot 69 0.0 0.0 0 0 ? S 18:36 0:00 [oom_reaper]\\nroot 70 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-write]\\nroot 71 0.0 0.0 0 0 ? S 18:36 0:00 [kcompactd0]\\nroot 72 0.0 0.0 0 0 ? SN 18:36 0:00 [ksmd]\\nroot 74 0.0 0.0 0 0 ? SN 18:36 0:00 [khugepaged]\\nroot 75 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kinte]\\nroot 76 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kbloc]\\nroot 77 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-blkcg]\\nroot 79 0.0 0.0 0 0 ? S 18:36 0:00 [irq/9-acpi]\\nroot 82 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tpm_d]\\nroot 83 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ata_s]\\nroot 84 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md]\\nroot 85 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md_bi]\\nroot 86 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-edac-]\\nroot 87 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-devfr]\\nroot 88 0.0 0.0 0 0 ? S 18:36 0:00 [watchdogd]\\nroot 90 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:1H-kblockd]\\nroot 91 0.0 0.0 0 0 ? S 18:36 0:00 [kswapd0]\\nroot 92 0.0 0.0 0 0 ? S 18:36 0:00 [ecryptfs-kthread]\\nroot 93 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kthro]\\nroot 94 0.0 0.0 0 0 ? S 18:36 0:00 [irq/127-pciehp]\\nroot 95 0.0 0.0 0 0 ? S 18:36 0:00 [irq/128-pciehp]\\nroot 96 0.0 0.0 0 0 ? S 18:36 0:00 [irq/129-pciehp]\\nroot 97 0.0 0.0 0 0 ? S 18:36 0:00 [irq/130-pciehp]\\nroot 100 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-acpi_]\\nroot 101 0.0 0.0 0 0 ? S 18:36 0:00 [hwrng]\\nroot 103 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mld]\\nroot 104 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:1H]\\nroot 105 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipv6_]\\nroot 112 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kstrp]\\nroot 114 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:0-rb_allocator]\\nroot 128 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-charg]\\nroot 129 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:3-rcu_gp]\\nroot 153 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:1H-kblockd]\\nroot 157 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:1H-kblockd]\\nroot 185 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:1H-kblockd]\\nroot 186 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:1H]\\nroot 194 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:1H-kblockd]\\nroot 195 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:1H-kblockd]\\nroot 196 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:2-events]\\nroot 218 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 219 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 220 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 221 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 223 0.1 0.0 0 0 ? I 18:36 0:01 [kworker/2:3-events]\\nroot 225 0.0 0.0 0 0 ? S 18:36 0:00 [irq/173-FRMW0001:00]\\nroot 226 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:2-events]\\nroot 227 0.0 0.0 0 0 ? S 18:36 0:00 [irq/174-PIXA3854:00]\\nroot 264 0.0 0.0 0 0 ? S 18:36 0:00 [jbd2/nvme0n1p5-8]\\nroot 265 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ext4-]\\nroot 315 0.0 0.0 67096 17692 ? S<s 18:36 0:00 /usr/lib/systemd/systemd-journald\\nroot 351 0.0 0.0 30832 8576 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-udevd\\nroot 395 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 423 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:5-ext4-rsv-conversion]\\nroot 451 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:8-ext4-rsv-conversion]\\nroot 514 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cfg80]\\nroot 520 0.0 0.0 0 0 ? S 18:36 0:00 [irq/191-mei_me]\\nroot 531 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-crypt]\\nroot 534 0.1 0.0 0 0 ? S 18:36 0:02 [irq/192-iwlwifi:default_queue]\\nroot 535 0.0 0.0 0 0 ? S 18:36 0:00 [irq/193-iwlwifi:queue_1]\\nroot 536 0.0 0.0 0 0 ? S 18:36 0:00 [irq/194-iwlwifi:queue_2]\\nroot 538 0.2 0.0 0 0 ? S 18:36 0:03 [irq/195-iwlwifi:queue_3]\\nroot 539 0.0 0.0 0 0 ? S 18:36 0:00 [irq/196-iwlwifi:queue_4]\\nroot 540 0.0 0.0 0 0 ? S 18:36 0:00 [irq/197-iwlwifi:queue_5]\\nroot 541 0.0 0.0 0 0 ? S 18:36 0:00 [irq/198-iwlwifi:queue_6]\\nroot 542 0.0 0.0 0 0 ? S 18:36 0:00 [irq/199-iwlwifi:queue_7]\\nroot 543 0.0 0.0 0 0 ? S 18:36 0:00 [irq/200-iwlwifi:queue_8]\\nroot 544 0.0 0.0 0 0 ? S 18:36 0:00 [irq/201-iwlwifi:exception]\\nroot 576 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ttm]\\nroot 583 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cros_]\\nroot 586 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc0]\\nroot 587 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc1]\\nroot 588 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc2]\\nroot 589 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc3]\\nsystemd+ 660 0.1 0.0 17728 7680 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-oomd\\nsystemd+ 665 0.0 0.0 21584 12800 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-resolved\\nsystemd+ 671 0.0 0.0 91044 7680 ? Ssl 18:36 0:00 /usr/lib/systemd/systemd-timesyncd\\nroot 754 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:3-pm]\\nroot 790 0.0 0.0 314260 8124 ? Ssl 18:36 0:00 /usr/libexec/accounts-daemon\\navahi 793 0.0 0.0 8780 3840 ? Ss 18:36 0:00 avahi-daemon: running [framebook.local]\\nroot 794 0.0 0.0 13684 6528 ? Ss 18:36 0:00 /usr/libexec/bluetooth/bluetoothd\\nroot 795 0.0 0.0 9804 2816 ? Ss 18:36 0:00 /usr/sbin/cron -f -P\\nmessage+ 796 0.2 0.0 11992 6528 ? Ss 18:36 0:04 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngnome-r+ 800 0.0 0.0 439064 16176 ? Ssl 18:36 0:00 /usr/libexec/gnome-remote-desktop-daemon --system\\nroot 804 0.0 0.0 314320 7808 ? Ssl 18:36 0:00 /usr/libexec/iio-sensor-proxy\\npolkitd 812 0.0 0.0 384348 10120 ? Ssl 18:36 0:00 /usr/lib/polkit-1/polkitd --no-debug\\nroot 815 0.0 0.0 314180 7856 ? Ssl 18:36 0:00 /usr/libexec/power-profiles-daemon\\nroot 831 0.1 0.1 2287584 33476 ? Ssl 18:36 0:01 /usr/lib/snapd/snapd\\nroot 836 0.0 0.0 310432 6912 ? Ssl 18:36 0:00 /usr/libexec/switcheroo-control\\nroot 838 0.7 0.0 725084 12996 ? Ssl 18:36 0:11 /usr/bin/sysbox-mgr\\nroot 842 0.0 0.0 18136 9220 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-logind\\nroot 844 0.1 0.0 425420 10368 ? Ssl 18:36 0:01 /usr/sbin/thermald --systemd --dbus-enable --adaptive\\nroot 845 0.0 0.0 469148 13116 ? Ssl 18:36 0:00 /usr/libexec/udisks2/udisksd\\navahi 893 0.0 0.0 8420 1284 ? S 18:36 0:00 avahi-daemon: chroot helper\\nroot 898 0.1 0.0 338968 21172 ? Ssl 18:36 0:02 /usr/sbin/NetworkManager --no-daemon\\nroot 901 0.0 0.0 18400 11264 ? Ss 18:36 0:00 /usr/sbin/wpa_supplicant -u -s -O DIR=/run/wpa_supplicant GROUP=netdev\\nroot 913 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipmi-]\\nsyslog 919 0.0 0.0 222508 6016 ? Ssl 18:36 0:00 /usr/sbin/rsyslogd -n -iNONE\\nroot 971 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:3-events]\\nroot 1073 0.0 0.0 392104 12664 ? Ssl 18:36 0:00 /usr/sbin/ModemManager\\nroot 1085 0.0 0.0 314184 8224 ? Ssl 18:36 0:00 /usr/libexec/boltd\\nroot 1086 0.0 0.0 317632 9472 ? Ssl 18:36 0:00 /usr/libexec/upowerd\\nroot 1113 0.0 0.0 1166524 11008 ? Ssl 18:36 0:00 /usr/bin/sysbox-fs\\nroot 1121 0.0 0.0 2800 1664 ? Ss 18:36 0:00 /bin/sh -c /usr/bin/sysbox-runc --version && /usr/bin/sysbox-mgr --version && /usr/bin/sysbox-fs --version && /bin/sleep infinity\\nroot 1149 0.0 0.0 9076 2176 ? S 18:36 0:00 /bin/sleep infinity\\nroot 1430 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 1439 0.0 0.0 38488 11392 ? Ss 18:36 0:00 /usr/sbin/cupsd -l\\nroot 1447 0.2 0.1 2249812 62528 ? Ssl 18:36 0:03 /usr/bin/containerd\\nroot 1469 0.0 0.0 315384 9472 ? Ssl 18:36 0:00 /usr/sbin/gdm3\\nroot 1492 0.0 0.0 242664 9856 ? Sl 18:36 0:00 gdm-session-worker [pam/gdm-launch-environment]\\ngdm 1499 0.1 0.0 20988 11904 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\ngdm 1500 0.0 0.0 21400 3600 ? S 18:36 0:00 (sd-pam)\\ngdm 1512 0.0 0.0 114056 12032 ? S<sl 18:36 0:00 /usr/bin/pipewire\\ngdm 1513 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\ngdm 1515 0.0 0.0 407672 18944 ? S<sl 18:36 0:00 /usr/bin/wireplumber\\ngdm 1516 0.0 0.0 110484 11008 ? S<sl 18:36 0:00 /usr/bin/pipewire-pulse\\ngdm 1517 0.0 0.0 236396 6272 tty1 Ssl+ 18:36 0:00 /usr/libexec/gdm-wayland-session dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\ngdm 1525 0.0 0.0 9420 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngdm 1533 0.0 0.0 6500 2432 tty1 S+ 18:36 0:00 dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\nrtkit 1535 0.0 0.0 22940 3456 ? SNsl 18:36 0:00 /usr/libexec/rtkit-daemon\\ngdm 1537 0.0 0.0 9856 5120 tty1 S+ 18:36 0:00 dbus-daemon --nofork --print-address 4 --session\\ngdm 1546 0.0 0.0 521532 18048 tty1 Sl+ 18:36 0:00 /usr/libexec/gnome-session-binary --autostart /usr/share/gdm/greeter/autostart\\ngdm 1548 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\ngdm 1557 0.0 0.0 310008 6400 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 1564 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/128/doc\\ngdm 1590 1.1 0.6 4424672 205408 tty1 Sl+ 18:36 0:17 /usr/bin/gnome-shell\\nroot 1621 0.0 0.0 0 0 ? S< 18:36 0:00 [krfcommd]\\ncups-br+ 1656 0.0 0.0 268504 19840 ? Ssl 18:36 0:00 /usr/sbin/cups-browsed\\nroot 1657 0.3 0.2 3317612 91932 ? Ssl 18:36 0:04 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock\\nkernoops 1659 0.0 0.0 12744 2184 ? Ss 18:36 0:00 /usr/sbin/kerneloops --test\\nkernoops 1662 0.0 0.0 12744 2188 ? Ss 18:36 0:00 /usr/sbin/kerneloops\\nroot 1702 0.0 0.0 12020 8064 ? Ss 18:36 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups\\nroot 2398 0.0 0.0 1238168 13512 ? Sl 18:36 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928 -address /run/containerd/containerd.sock\\nroot 2511 0.0 0.0 1136 512 ? Ss 18:36 0:00 /sbin/docker-init -- buildkitd --allow-insecure-entitlement=network.host\\nroot 2717 0.0 0.1 1271012 34128 ? Sl 18:36 0:00 buildkitd --allow-insecure-entitlement=network.host\\nroot 2863 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tls-s]\\nroot 2998 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:4-kacpi_notify]\\nroot 2999 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:5-kacpi_notify]\\nroot 3000 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:6-pm]\\ngdm 3022 0.0 0.0 383120 7680 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi-bus-launcher\\ngdm 3028 0.0 0.0 9420 4992 tty1 S+ 18:36 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/128/at-spi/bus\\ngdm 3030 0.0 0.2 529220 73856 tty1 Sl+ 18:36 0:00 /usr/bin/Xwayland :1024 -rootless -noreset -accessx -core -auth /run/user/128/.mutter-Xwaylandauth.4R00T2 -listenfd 4 -listenfd 5 -displayfd 6 -initfd 7 -byteswappedclients\\ngdm 3034 0.0 0.0 236068 7296 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session\\ncolord 3035 0.0 0.0 320904 14776 ? Ssl 18:36 0:00 /usr/libexec/colord\\ngdm 3069 0.0 0.0 310008 6400 tty1 Sl+ 18:36 0:00 /usr/libexec/xdg-permission-store\\ngdm 3078 0.0 0.0 2663384 26852 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.Shell.Notifications\\ngdm 3080 0.0 0.0 544408 13440 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sharing\\ngdm 3091 0.0 0.0 487204 19200 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-wacom\\ngdm 3095 0.0 0.0 414336 19904 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-color\\ngdm 3100 0.0 0.0 412624 19204 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-keyboard\\ngdm 3109 0.0 0.0 324188 11520 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-print-notifications\\ngdm 3114 0.0 0.0 458120 7040 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-rfkill\\ngdm 3119 0.0 0.0 386768 8192 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-smartcard\\ngdm 3129 0.0 0.0 432620 12416 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-datetime\\ngdm 3146 0.0 0.0 595396 24488 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-media-keys\\ngdm 3149 0.0 0.0 310116 6528 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-screensaver-proxy\\ngdm 3155 0.0 0.0 394584 9984 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sound\\ngdm 3163 0.0 0.0 384468 6912 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-a11y-settings\\ngdm 3169 0.0 0.0 459824 8320 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-housekeeping\\ngdm 3172 0.0 0.0 524880 23336 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-power\\ngdm 3290 0.0 0.0 416764 15232 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-printer\\ngdm 3333 0.0 0.0 2794456 27380 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.ScreenSaver\\ngdm 3345 0.0 0.2 992124 77664 tty1 Sl+ 18:36 0:00 /usr/libexec/mutter-x11-frames\\ngdm 3346 0.0 0.0 389372 12224 tty1 Sl 18:36 0:00 ibus-daemon --panel disable -r --xim\\ngdm 3360 0.0 0.0 311020 7296 tty1 Sl 18:36 0:00 /usr/libexec/ibus-dconf\\ngdm 3362 0.0 0.2 610420 66612 tty1 Sl 18:36 0:00 /usr/libexec/ibus-x11 --kill-daemon\\ngdm 3364 0.0 0.0 310984 7424 tty1 Sl+ 18:36 0:00 /usr/libexec/ibus-portal\\ngdm 3378 0.0 0.0 237196 7424 tty1 Sl 18:36 0:00 /usr/libexec/ibus-engine-simple\\nroot 3437 0.0 0.0 15116 8048 ? Ss 18:36 0:00 sshd: arne [priv]\\narne 3449 0.0 0.0 21024 12288 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\narne 3453 0.0 0.0 21396 3596 ? S 18:36 0:00 (sd-pam)\\narne 3464 0.0 0.0 109524 8576 ? Ssl 18:36 0:00 /usr/bin/pipewire\\narne 3465 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\narne 3468 0.0 0.0 39000 11776 ? Ss 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3472 0.0 0.0 405708 16000 ? Ssl 18:36 0:00 /usr/bin/wireplumber\\narne 3475 0.0 0.0 109904 10496 ? Ssl 18:36 0:00 /usr/bin/pipewire-pulse\\narne 3501 0.0 0.0 9444 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\narne 3542 0.0 0.0 15276 7108 ? S 18:36 0:00 sshd: arne@pts/0\\narne 3544 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\narne 3549 0.0 0.0 309864 6272 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 3556 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc\\narne 3594 0.0 0.0 353012 21644 ? Sl 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3599 0.0 0.0 11980 5632 pts/0 Ss 18:36 0:00 -bash\\nroot 3669 0.0 0.0 15116 8176 ? Ss 18:37 0:00 sshd: arne [priv]\\narne 3711 0.2 0.0 15276 7108 ? S 18:37 0:04 sshd: arne@pts/1\\narne 3712 0.0 0.0 11980 5632 pts/1 Ss 18:37 0:00 -bash\\nroot 3760 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:9-pm]\\nroot 3801 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:10-events]\\nroot 3878 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:13-kacpi_notify]\\nroot 3879 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:14-inet_frag_wq]\\ngdm 4742 0.0 0.0 317072 9856 ? Ssl 18:40 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/128/keyring\\nroot 4875 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/0:16-pm]\\nroot 4983 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/6:0-i915-unordered]\\nroot 5028 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/7:0-events]\\narne 5100 0.0 0.0 2068800 26240 pts/0 Sl+ 18:42 0:00 docker compose up\\narne 5122 0.0 0.1 2169824 44872 pts/0 Sl+ 18:42 0:00 /usr/libexec/docker/cli-plugins/docker-compose compose up\\nroot 5207 0.0 0.0 1745288 4352 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5214 0.0 0.0 1745032 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5235 0.0 0.0 1238168 13636 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45 -address /run/containerd/containerd.sock\\nroot 5262 0.0 0.0 1237912 13424 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2 -address /run/containerd/containerd.sock\\n999 5282 2.7 0.0 37240 8576 ? Ssl 18:42 0:30 redis-server *:6379\\n999 5289 0.0 0.0 219720 29824 ? Ss 18:42 0:00 postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key -c work_mem=16MB -p 9573\\nroot 5393 0.0 0.0 2040984 4864 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5405 0.0 0.0 1597568 4096 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5419 0.0 0.0 1237912 13296 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7 -address /run/containerd/containerd.sock\\nroot 5450 0.0 0.0 1238168 13548 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf -address /run/containerd/containerd.sock\\nroot 5471 0.0 0.0 1136 512 ? Ss 18:42 0:00 /sbin/docker-init -- /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5479 0.0 0.0 12120 7984 ? Ss 18:42 0:00 nginx: master process nginx -g daemon off;\\nroot 5535 0.0 0.0 4344 3200 ? S 18:42 0:00 /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5536 0.0 0.0 37560 31352 ? S 18:42 0:00 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5560 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5561 0.0 0.0 12328 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5562 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5563 0.0 0.0 12344 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5564 0.0 0.0 12124 4528 ? S 18:42 0:00 nginx: worker process\\nwww-data 5565 0.0 0.0 12328 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5566 0.0 0.0 12344 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5567 0.0 0.0 12124 4528 ? S 18:42 0:00 nginx: worker process\\nwww-data 5570 0.7 0.4 1173056 145288 ? Sl 18:42 0:08 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5571 0.7 0.4 1173060 145536 ? Sl 18:42 0:08 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5572 0.7 0.4 877032 139256 ? Sl 18:42 0:08 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5573 0.7 0.4 1172940 145604 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5574 0.7 0.4 1173312 146496 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5575 0.7 0.4 1173064 145496 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5576 0.7 0.4 1173300 146304 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5577 0.6 0.4 1180304 151296 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\n999 5620 0.0 0.0 219864 13208 ? Ss 18:42 0:00 postgres: checkpointer \\n999 5621 0.0 0.0 219864 7192 ? Ss 18:42 0:00 postgres: background writer \\n999 5623 0.0 0.0 219720 10008 ? Ss 18:42 0:00 postgres: walwriter \\n999 5624 0.0 0.0 221312 8984 ? Ss 18:42 0:00 postgres: autovacuum launcher \\n999 5625 0.0 0.0 221288 8088 ? Ss 18:42 0:00 postgres: logical replication launcher \\nroot 5970 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:5-events]\\n999 6349 0.0 0.0 222620 20504 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54084) idle\\n999 6357 0.0 0.0 222516 18328 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54116) idle\\n999 6358 0.0 0.0 222816 19712 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54120) idle\\n999 6359 0.0 0.0 222520 18072 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54118) idle\\n999 6361 0.0 0.0 222852 19224 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54156) idle\\n999 6954 0.0 0.0 222820 18712 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.4(37058) idle\\nroot 7549 0.1 0.1 574948 42980 ? Ssl 18:46 0:01 /usr/libexec/fwupd/fwupd\\nroot 7565 0.0 0.0 0 0 ? I< 18:46 0:00 [kworker/u17:1-hci0]\\nroot 7599 0.0 0.0 0 0 ? I 18:47 0:00 [kworker/0:7-pm]\\nroot 7614 0.0 0.0 0 0 ? I 18:50 0:00 [kworker/2:0-events]\\nroot 7615 0.0 0.0 0 0 ? I 18:50 0:00 [kworker/2:2-events]\\nroot 7621 0.0 0.0 0 0 ? I 18:51 0:00 [kworker/5:1-events]\\nroot 7622 0.0 0.0 0 0 ? I 18:51 0:00 [kworker/3:0-events]\\nroot 7632 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/0:2-events]\\nroot 7633 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/6:1-i915-unordered]\\nroot 7634 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/4:2-mm_percpu_wq]\\nroot 7636 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/7:1-pm]\\nroot 7648 0.0 0.0 0 0 ? I 18:56 0:00 [kworker/1:0-events]\\nroot 7649 0.0 0.0 0 0 ? I 18:56 0:00 [kworker/1:1-events]\\nroot 7894 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:1-events]\\nroot 7895 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:4-events]\\nroot 7896 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:5-i915-unordered]\\nroot 7897 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:6-events]\\nroot 7898 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:7]\\nroot 7899 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/7:3]\\nroot 8019 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/u16:0-flush-259:0]\\nroot 8151 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/u16:1-events_unbound]\\nroot 8172 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/5:0-events]\\nroot 8452 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/5:2-events]\\nroot 8456 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/0:8-kacpi_notify]\\nroot 8457 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/0:11-pm]\\nroot 8473 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/4:1-mm_percpu_wq]\\nroot 8684 0.0 0.0 0 0 ? I 18:59 0:00 [kworker/4:3]\\nroot 8736 0.0 0.0 0 0 ? I 18:59 0:00 [kworker/u16:3-events_unbound]\\n999 8796 0.0 0.0 222820 19352 ? Ss 18:59 0:00 postgres: postgres green-coding 172.25.0.4(49974) idle\\n999 8797 0.0 0.0 221804 14232 ? Ss 18:59 0:00 postgres: postgres green-coding 172.25.0.4(49984) idle\\nroot 8808 0.0 0.0 0 0 ? I 19:00 0:00 [kworker/3:1-events]\\n999 8809 1.0 0.0 223524 24096 ? Ss 19:00 0:00 postgres: postgres green-coding 192.168.179.2(51787) idle\\nroot 8811 0.0 0.0 0 0 ? I 19:00 0:00 [kworker/6:2-events]\\narne 8813 72.4 0.3 928156 130360 pts/1 Sl+ 19:00 0:01 python3 runner.py --uri /home/arne/Sites/green-coding/example-applications/ --filename stress/usage_scenario.yml --name Stress Test #5 --dev-no-build --skip-unsafe\\n999 8819 0.0 0.0 222052 19864 ? Ss 19:00 0:00 postgres: postgres green-coding 172.25.0.1(41820) idle\\n999 8820 0.0 0.0 222120 20248 ? Ss 19:00 0:00 postgres: postgres green-coding 172.25.0.1(41822) idle\\nroot 8949 40.9 0.0 17276 7808 ? Ss 19:00 0:00 /usr/lib/systemd/systemd-hostnamed\\narne 9036 0.0 0.0 2800 1664 pts/1 S+ 19:01 0:00 /bin/sh -c /usr/bin/ps -aux\\narne 9037 0.0 0.0 15500 5376 pts/1 R+ 19:01 0:00 /usr/bin/ps -aux\\n", "Disk Usage": 322987098112, "Docker Info": "Client: Docker Engine - Community\\n Version: 27.2.1\\n Context: default\\n Debug Mode: false\\n Plugins:\\n buildx: Docker Buildx (Docker Inc.)\\n Version: v0.16.2\\n Path: /usr/libexec/docker/cli-plugins/docker-buildx\\n compose: Docker Compose (Docker Inc.)\\n Version: v2.29.2\\n Path: /usr/libexec/docker/cli-plugins/docker-compose\\n\\nServer:\\n Containers: 5\\n Running: 5\\n Paused: 0\\n Stopped: 0\\n Images: 13\\n Server Version: 27.2.1\\n Storage Driver: overlayfs\\n driver-type: io.containerd.snapshotter.v1\\n Logging Driver: json-file\\n Cgroup Driver: systemd\\n Cgroup Version: 2\\n Plugins:\\n Volume: local\\n Network: bridge host ipvlan macvlan null overlay\\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\\n Swarm: inactive\\n Runtimes: io.containerd.runc.v2 runc sysbox-runc\\n Default Runtime: runc\\n Init Binary: docker-init\\n containerd version: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc version: v1.1.13-0-g58aa920\\n init version: de40ad0\\n Security Options:\\n apparmor\\n seccomp\\n Profile: builtin\\n cgroupns\\n Kernel Version: 6.8.0-44-generic\\n Operating System: Ubuntu 24.04.1 LTS\\n OSType: linux\\n Architecture: x86_64\\n CPUs: 8\\n Total Memory: 31.13GiB\\n Name: framebook\\n ID: 492c90f2-99f1-437f-a14b-9f1e5d514ca9\\n Docker Root Dir: /var/lib/docker\\n Debug Mode: false\\n Username: greencoding\\n Experimental: false\\n Insecure Registries:\\n 127.0.0.0/8\\n Live Restore Enabled: false\\n Default Address Pools:\\n Base: 172.25.0.0/16, Size: 24\\n\\n", "Free Memory": 31158542336, "Turbo Boost": "0", "Architecture": "x86-64", "Memory Total": "32646584 kB", "Power Limits": {"/sys/devices/virtual/powercap/intel-rapl/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/name": "package-0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/name": "psys\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj": "3278277069\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/energy_uj": "6335095293\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_name": "peak_power\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/name": "core\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/name": "uncore\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/energy_uj": "872390039\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/energy_uj": "19374889\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_max_power_uw": "28000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_power_limit_uw": "200000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_time_window_us": "31981568\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_power_limit_uw": "64000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_time_window_us": "2440\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_power_limit_uw": "121000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_time_window_us": "27983872\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_suspended_time": "0\\n"}, "IO Scheduling": "File not found", "Linux Version": "Linux 6.8.0-44-generic", "CPU Scheduling": {"/sys/kernel/debug/sched/debug": "Sched Debug Version: v0.11, 6.8.0-44-generic #44-Ubuntu\\nktime : 1478455.678639\\nsched_clk : 1478524.989134\\ncpu_clk : 1478480.548032\\njiffies : 4296145592\\nsched_clock_stable() : 1\\n\\nsysctl_sched\\n .sysctl_sched_base_slice : 3.000000\\n .sysctl_sched_features : 6237751\\n .sysctl_sched_tunable_scaling : 1 (logarithmic)\\n\\ncpu#0, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 264703\\n .nr_uninterruptible : -46\\n .next_balance : 4296.145596\\n .curr->pid : 0\\n .clock : 1478480.905412\\n .clock_task : 1478480.905412\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[0]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10843.155957\\n .avg_vruntime : 10843.155957\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 605\\n .runnable_avg : 302\\n .util_avg : 302\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 605\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.963248\\n .se->vruntime : 23634.998783\\n .se->sum_exec_runtime : 11584.183597\\n .se->load.weight : 317957\\n .se->avg.load_avg : 183\\n .se->avg.util_avg : 302\\n .se->avg.runnable_avg : 302\\n\\ncfs_rq[0]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 23634.998783\\n .avg_vruntime : 23634.998783\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 183\\n .runnable_avg : 302\\n .util_avg : 302\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 183\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.963248\\n .se->vruntime : 31428.678320\\n .se->sum_exec_runtime : 11922.666710\\n .se->load.weight : 302702\\n .se->avg.load_avg : 174\\n .se->avg.util_avg : 302\\n .se->avg.runnable_avg : 302\\n\\ncfs_rq[0]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 31428.678320\\n .avg_vruntime : 31428.678320\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 174\\n .runnable_avg : 302\\n .util_avg : 302\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 174\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.963248\\n .se->vruntime : 135170.077766\\n .se->sum_exec_runtime : 15678.969195\\n .se->load.weight : 325999\\n .se->avg.load_avg : 187\\n .se->avg.util_avg : 302\\n .se->avg.runnable_avg : 302\\n\\ncfs_rq[0]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 807.277675\\n .avg_vruntime : 807.277675\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.808280\\n .se->vruntime : 80860.438321\\n .se->sum_exec_runtime : 827.664148\\n .se->load.weight : 45500\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7501.670277\\n .avg_vruntime : 7501.670277\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478413.139456\\n .se->vruntime : 80861.133852\\n .se->sum_exec_runtime : 8121.076737\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1141.611449\\n .avg_vruntime : 1141.611449\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478415.574254\\n .se->vruntime : 80861.160418\\n .se->sum_exec_runtime : 1143.753102\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 100.280921\\n .avg_vruntime : 100.280921\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478103.803062\\n .se->vruntime : 80852.009719\\n .se->sum_exec_runtime : 101.484410\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 922.230580\\n .avg_vruntime : 922.230580\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478195.831365\\n .se->vruntime : 80860.678055\\n .se->sum_exec_runtime : 943.710972\\n .se->load.weight : 159078\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[0]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 41.854936\\n .avg_vruntime : 41.854936\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.311003\\n .se->vruntime : 80861.211971\\n .se->sum_exec_runtime : 44.040849\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 80861.211971\\n .avg_vruntime : 80861.211971\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.311003\\n .se->vruntime : 135169.479024\\n .se->sum_exec_runtime : 28094.594783\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1068.813038\\n .avg_vruntime : 1068.813038\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478425.717468\\n .se->vruntime : 135136.119092\\n .se->sum_exec_runtime : 1079.019232\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 135170.117443\\n .avg_vruntime : 135170.117443\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 194\\n .runnable_avg : 309\\n .util_avg : 304\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[0]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[0]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S systemd 1 1068.813038 E 1071.800032 3.000000 4608.388158 4836 120 0.000000 4608.388158 0.000000 0.000000 0 0 /init.scope\\n Spool_workqueue_ 3 50.484081 E 53.473963 3.000000 0.010118 3 120 0.000000 0.010118 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_g 4 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_p 5 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-slub_ 6 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-netns 7 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n I kworker/0:0 8 129857.338713 E 129860.292531 3.000000 292.935295 718 120 0.000000 292.935295 0.000000 0.000000 0 0 /\\n I kworker/0:0H 9 61.484472 E 61.518998 3.000000 0.013159 4 100 0.000000 0.013159 0.000000 0.000000 0 0 /\\n I kworker/0:1 10 129950.722198 E 129952.886313 3.000000 743.754769 2820 120 0.000000 743.754769 0.000000 0.000000 0 0 /\\n Ikworker/R-mm_pe 12 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_kthre 13 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_rude_ 14 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_trace 15 429.940627 E 432.911629 3.000000 0.267245 7 120 0.000000 0.267245 0.000000 0.000000 0 0 /\\n S ksoftirqd/0 16 135170.117443 E 135173.085826 3.000000 102.007308 5148 120 0.000000 102.007308 0.000000 0.000000 0 0 /\\n S migration/0 18 0.626525 E 0.123004 0.750000 16.075937 436 0 0.000000 16.075937 0.000000 0.000000 0 0 /\\n S idle_inject/0 19 0.467865 E 0.280188 0.750000 0.005407 3 49 0.000000 0.005407 0.000000 0.000000 0 0 /\\n S cpuhp/0 20 8335.382094 E 8338.316225 3.000000 1.150907 26 120 0.000000 1.150907 0.000000 0.000000 0 0 /\\n Ikworker/R-charg 128 50.473963 E 50.508549 3.000000 0.093293 2 100 0.000000 0.093293 0.000000 0.000000 0 0 /\\n I kworker/0:1H 157 133771.486337 E 133771.520901 3.000000 12.472380 648 100 0.000000 12.472380 0.000000 0.000000 0 0 /\\n Sjbd2/nvme0n1p5- 264 133771.494014 E 133774.486337 3.000000 127.819668 2027 120 0.000000 127.819668 0.000000 0.000000 0 0 /\\n Sirq/193-iwlwifi 535 3646.117837 E 3649.116436 3.000000 5.041558 33 49 0.000000 5.041558 0.000000 0.000000 0 0 /\\n Ikworker/R-cros_ 583 4098.545142 E 4098.579743 3.000000 0.004733 2 100 0.000000 0.004733 0.000000 0.000000 0 0 /\\n S card1-crtc0 586 4105.692415 E 4108.689897 3.000000 0.071775 4 49 0.000000 0.071775 0.000000 0.000000 0 0 /\\n S card1-crtc1 587 4105.694050 E 4108.692415 3.000000 0.002284 2 49 0.000000 0.002284 0.000000 0.000000 0 0 /\\n S card1-crtc2 588 4105.695887 E 4108.694050 3.000000 0.002459 2 49 0.000000 0.002459 0.000000 0.000000 0 0 /\\n S card1-crtc3 589 4105.697510 E 4108.695887 3.000000 0.002237 2 49 0.000000 0.002237 0.000000 0.000000 0 0 /\\n S sd-resolve 762 2.805469 E 4.473698 3.000000 3.300131 16 120 0.000000 3.300131 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n I kworker/0:3 754 130012.147879 E 130015.147879 3.000000 602.617338 1765 120 0.000000 602.617338 0.000000 0.000000 0 0 /\\n Saccounts-daemon 790 14.253092 E 16.355003 3.000000 133.580546 272 120 0.000000 133.580546 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 936 13.969662 E 16.117388 3.000000 134.487699 479 120 0.000000 134.487699 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S gmain 1041 0.924491 E 2.068097 3.000000 0.059449 2 120 0.000000 0.059449 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S sysbox-mgr 950 1139.727621 E 1142.705260 3.000000 1809.171807 23918 120 0.000000 1809.171807 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 1119 97.714855 E 99.982658 3.000000 1483.498353 767 120 0.000000 1483.498353 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S cleanup 1103 7.256534 E 10.181598 3.000000 0.315513 4 120 0.000000 0.315513 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S avahi-daemon 893 0.811987 E 2.186352 3.000000 0.137179 4 120 0.000000 0.137179 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S in:imuxsock 954 41.854936 E 44.834346 3.000000 116.598299 2960 120 0.000000 116.598299 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S boltd 1085 21.787411 E 24.279745 3.000000 228.474706 1317 120 0.000000 228.474706 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1098 5.410405 E 7.152417 3.000000 21.180934 75 120 0.000000 21.180934 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1475 0.003081 E 2.997094 3.000000 0.496009 16 120 0.000000 0.496009 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gmain 1483 3.022894 E 5.996257 3.000000 0.026637 1 120 0.000000 0.026637 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pw-data-loop 1534 8.779134 E 11.773129 3.000000 0.034056 3 79 0.000000 0.034056 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1569 1880.003146 E 1881.958162 3.000000 41.683534 431 120 0.000000 41.683534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1554 9.640752 E 12.603939 3.000000 0.065887 2 120 0.000000 0.065887 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1556 10.631341 E 13.583311 3.000000 0.917172 22 120 0.000000 0.917172 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fusermount3 1564 9.813596 E 12.812048 3.000000 0.930269 5 120 0.000000 0.930269 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dockerd 1699 920.587039 E 922.512408 3.000000 330.944565 9271 120 0.000000 330.944565 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2416 374.234438 E 377.219668 3.000000 35.780266 1608 120 0.000000 35.780266 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2524 857.791316 E 859.502482 3.000000 427.764535 8371 120 0.000000 427.764535 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2677 922.230580 E 925.180392 3.000000 101.586143 3739 120 0.000000 101.586143 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2691 921.940590 E 924.932011 3.000000 574.059172 10260 120 0.000000 574.059172 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2764 60.390080 E 63.084927 3.000000 43.886699 204 120 0.000000 43.886699 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2814 61.853789 E 63.730514 3.000000 24.017792 31 120 0.000000 24.017792 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/0:4 2998 129857.668791 E 129860.649113 3.000000 273.234576 1182 120 0.000000 273.234576 0.000000 0.000000 0 0 /\\n I kworker/0:5 2999 129857.518473 E 129860.482229 3.000000 139.482754 491 120 0.000000 139.482754 0.000000 0.000000 0 0 /\\n I kworker/0:6 3000 129934.902829 E 129937.776321 3.000000 515.792329 2039 120 0.000000 515.792329 0.000000 0.000000 0 0 /\\n S Xwayland 3030 823.312878 E 826.243091 3.000000 73.675981 404 120 0.000000 73.675981 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:sh0 3265 798.437067 E 801.432850 3.000000 0.043697 5 120 0.000000 0.043697 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3082 846.693163 E 849.149172 3.000000 0.987458 8 120 0.000000 0.987458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3105 850.647701 E 853.480247 3.000000 0.288156 7 120 0.000000 0.288156 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3117 753.415062 E 755.693222 3.000000 0.802525 2 120 0.000000 0.802525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3122 46.671710 E 49.646140 3.000000 0.025570 1 120 0.000000 0.025570 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3133 795.342480 E 798.312721 3.000000 2.282013 41 120 0.000000 2.282013 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3128 789.541948 E 792.521534 3.000000 0.623284 13 120 0.000000 0.623284 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-print-notif 3109 794.936793 E 797.917349 3.000000 26.108835 70 120 0.000000 26.108835 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3157 53.427679 E 56.401651 3.000000 0.026028 1 120 0.000000 0.026028 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-a11y-settin 3163 794.888778 E 797.870455 3.000000 6.166578 47 120 0.000000 6.166578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3176 794.880654 E 797.815559 3.000000 5.039055 51 120 0.000000 5.039055 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3340 1927.697033 E 1927.760897 3.000000 47.743714 9 120 0.000000 47.743714 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3349 808.794366 E 811.794366 3.000000 10.264307 5 120 0.000000 10.264307 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x11:sh0 3377 816.300810 E 819.286174 3.000000 0.014636 1 120 0.000000 0.014636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter:traceq0 3381 817.363254 E 1021.171202 3.000000 0.084925 1 139 0.000000 0.084925 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3386 818.412051 E 821.351989 3.000000 0.093107 2 120 0.000000 0.093107 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3387 817.414689 E 820.396299 3.000000 0.018390 1 120 0.000000 0.018390 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3389 818.351989 E 821.340314 3.000000 0.199289 7 120 0.000000 0.199289 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3366 811.073812 E 814.040000 3.000000 0.033812 1 120 0.000000 0.033812 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3393 819.206920 E 822.175436 3.000000 0.075475 3 120 0.000000 0.075475 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3465 4.873835 E 7.857378 3.000000 12.993458 14 120 0.000000 12.993458 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3507 5.151991 E 8.096082 3.000000 0.172631 6 120 0.000000 0.172631 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3506 5.696636 E 8.662738 3.000000 0.223461 7 120 0.000000 0.223461 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-permission- 3549 8.115189 E 11.087827 3.000000 4.193195 7 120 0.000000 4.193195 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/0:9 3760 129857.901162 E 129860.887138 3.000000 3.405792 86 120 0.000000 3.405792 0.000000 0.000000 0 0 /\\n I kworker/0:10 3801 135170.099058 E 135173.077766 3.000000 52.650196 793 120 0.000000 52.650196 0.000000 0.000000 0 0 /\\n I kworker/0:13 3878 129857.299109 E 129860.254823 3.000000 230.789901 1507 120 0.000000 230.789901 0.000000 0.000000 0 0 /\\n I kworker/0:14 3879 132004.841141 E 132007.830545 3.000000 440.424636 2126 120 0.000000 440.424636 0.000000 0.000000 0 0 /\\n I kworker/0:16 4875 130002.528713 E 130002.543615 3.000000 280.987123 1107 120 0.000000 280.987123 0.000000 0.000000 0 0 /\\n S docker 5103 183.160196 E 185.943219 3.000000 3.601503 29 120 0.000000 3.601503 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5108 142.053576 E 144.677977 3.000000 0.445408 2 120 0.000000 0.445408 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5125 145.841713 E 148.838155 3.000000 2.587746 33 120 0.000000 2.587746 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5129 183.349033 E 186.279893 3.000000 45.719750 414 120 0.000000 45.719750 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5138 147.883780 E 150.508821 3.000000 3.072613 60 120 0.000000 3.072613 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5140 183.617148 E 186.500852 3.000000 51.472640 233 120 0.000000 51.472640 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5207 380.169185 E 383.159727 3.000000 1.776241 5 120 0.000000 1.776241 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5209 380.159727 E 383.144516 3.000000 0.125477 4 120 0.000000 0.125477 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6176 791.619505 E 793.692926 3.000000 29.358597 85 120 0.000000 29.358597 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5265 317.900081 E 320.886003 3.000000 0.088538 5 120 0.000000 0.088538 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5269 795.683822 E 797.862816 3.000000 77.544076 185 120 0.000000 77.544076 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_close_file 5371 0.996541 E 1.988580 3.000000 0.014879 1 120 0.000000 0.014879 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S bio_lazy_free 5373 0.971337 E 2.003459 3.000000 0.025204 2 120 0.000000 0.025204 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5402 391.629910 E 394.593552 3.000000 0.036358 1 120 0.000000 0.036358 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5403 889.003097 E 891.966053 3.000000 3.714626 31 120 0.000000 3.714626 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5404 440.410950 E 443.311576 3.000000 0.200935 4 120 0.000000 0.200935 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5406 907.932831 E 910.867909 3.000000 2.663852 53 120 0.000000 2.663852 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5426 321.885108 E 324.879367 3.000000 0.005741 1 120 0.000000 0.005741 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5459 331.501159 E 334.467439 3.000000 1.138122 31 120 0.000000 1.138122 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bash 5535 0.374091 E 2.004330 3.000000 1.369761 2 120 0.000000 1.369761 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5560 1.881197 E 4.297811 3.000000 87.562664 10 120 0.000000 87.562664 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5562 3.457795 E 6.450638 3.000000 2.881877 10 120 0.000000 2.881877 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5567 3.450638 E 6.377025 3.000000 1.003093 12 120 0.000000 1.003093 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5570 7501.670277 E 7504.557656 3.000000 7640.680448 12375 120 0.000000 7640.680448 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5598 1096.827304 E 1099.827304 3.000000 67.403138 16 120 0.000000 67.403138 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5664 1810.667125 E 1813.659738 3.000000 48.028793 19 120 0.000000 48.028793 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6353 2962.498940 E 2965.273620 3.000000 9.925404 79 120 0.000000 9.925404 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6354 2962.532768 E 2965.492613 3.000000 10.767032 25 120 0.000000 10.767032 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6356 5639.747296 E 5641.131905 3.000000 1.752954 5 120 0.000000 1.752954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5613 1154.546552 E 1157.489793 3.000000 50.490838 17 120 0.000000 50.490838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5688 1886.290395 E 1889.290395 3.000000 33.583605 11 120 0.000000 33.583605 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5689 1886.727601 E 1889.716108 3.000000 34.006642 14 120 0.000000 34.006642 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5691 1887.153050 E 1890.141066 3.000000 34.415056 12 120 0.000000 34.415056 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5605 1128.699724 E 1130.733412 3.000000 59.322321 20 120 0.000000 59.322321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5674 1837.950616 E 1840.941193 3.000000 34.976674 14 120 0.000000 34.976674 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5676 1842.845926 E 1842.887818 3.000000 39.859633 14 120 0.000000 39.859633 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5645 1691.475316 E 1694.467524 3.000000 28.433086 12 120 0.000000 28.433086 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5646 1692.040496 E 1695.034677 3.000000 28.990755 9 120 0.000000 28.990755 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5639 1491.853459 E 1492.774908 3.000000 56.154692 21 120 0.000000 56.154692 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5706 1914.066082 E 1916.114488 3.000000 31.948839 9 120 0.000000 31.948839 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5708 1917.130715 E 1920.121651 3.000000 35.002311 12 120 0.000000 35.002311 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5626 1181.663383 E 1181.681283 3.000000 50.832084 14 120 0.000000 50.832084 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 8793 7108.798990 E 7111.651118 3.000000 8.245227 38 120 0.000000 8.245227 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5655 1726.481090 E 1729.473436 3.000000 36.998391 11 120 0.000000 36.998391 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5717 1958.888518 E 1961.882843 3.000000 34.652408 11 120 0.000000 34.652408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6347 2960.545968 E 2963.333661 3.000000 9.357649 17 120 0.000000 9.357649 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6348 5638.050283 E 5638.597957 3.000000 2.607295 5 120 0.000000 2.607295 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5724 1963.859694 E 1966.846384 3.000000 63.747694 20 120 0.000000 63.747694 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S pool-spawner 7553 0.748291 E 2.091709 3.000000 0.160000 1 120 0.000000 0.160000 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n S gdbus 7555 32.101060 E 34.926556 3.000000 42.383895 2391 120 0.000000 42.383895 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/0:7 7599 129859.627730 E 129861.544276 3.000000 93.124950 215 120 0.000000 93.124950 0.000000 0.000000 0 0 /\\n I kworker/0:2 7632 129937.232262 E 129940.113488 3.000000 82.356096 197 120 0.000000 82.356096 0.000000 0.000000 0 0 /\\n I kworker/0:8 8456 129858.971521 E 129861.949760 3.000000 0.498637 6 120 0.000000 0.498637 0.000000 0.000000 0 0 /\\n I kworker/0:11 8457 129932.612037 E 129935.586714 3.000000 0.399509 8 120 0.000000 0.399509 0.000000 0.000000 0 0 /\\n S python3 8816 10583.743410 E 10586.610451 3.000000 7.962643 287 120 0.000000 7.962643 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8906 10703.941655 E 10706.941655 3.000000 110.866741 8 120 0.000000 110.866741 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 9046 10843.155957 E 10846.147739 3.000000 0.268769 2 120 0.000000 0.268769 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#1, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 246875\\n .nr_uninterruptible : 42\\n .next_balance : 4296.145597\\n .curr->pid : 0\\n .clock : 1478480.892662\\n .clock_task : 1478480.892662\\n .avg_idle : 986001\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[1]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5397.289304\\n .avg_vruntime : 5397.289304\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478407.055542\\n .se->vruntime : 9600.319345\\n .se->sum_exec_runtime : 5420.709871\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7280.402997\\n .avg_vruntime : 7280.402997\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.636552\\n .se->vruntime : 19223.894062\\n .se->sum_exec_runtime : 7290.666657\\n .se->load.weight : 309686\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 337.533826\\n .avg_vruntime : 337.533826\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478415.610949\\n .se->vruntime : 86856.403221\\n .se->sum_exec_runtime : 344.151137\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5537.956694\\n .avg_vruntime : 5537.956694\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478401.412968\\n .se->vruntime : 86856.368352\\n .se->sum_exec_runtime : 5539.005270\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 521.680150\\n .avg_vruntime : 521.680150\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.405620\\n .se->vruntime : 86844.067575\\n .se->sum_exec_runtime : 522.846395\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/cups-browsed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 44.069903\\n .avg_vruntime : 44.069903\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.197380\\n .se->vruntime : 86844.030274\\n .se->sum_exec_runtime : 46.766099\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 990.559120\\n .avg_vruntime : 990.559120\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.164648\\n .se->vruntime : 86855.630505\\n .se->sum_exec_runtime : 1002.873446\\n .se->load.weight : 191883\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 738.506261\\n .avg_vruntime : 738.506261\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.831611\\n .se->vruntime : 86855.426510\\n .se->sum_exec_runtime : 756.775319\\n .se->load.weight : 217160\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 86856.403221\\n .avg_vruntime : 86856.403221\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478415.610949\\n .se->vruntime : 134425.254668\\n .se->sum_exec_runtime : 34683.203704\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19223.894062\\n .avg_vruntime : 19223.894062\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.636552\\n .se->vruntime : 33501.981929\\n .se->sum_exec_runtime : 7529.275325\\n .se->load.weight : 394393\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9600.319345\\n .avg_vruntime : 9600.319345\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478407.055542\\n .se->vruntime : 33498.549206\\n .se->sum_exec_runtime : 5862.170760\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 33501.981929\\n .avg_vruntime : 33501.981929\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.636552\\n .se->vruntime : 134430.026694\\n .se->sum_exec_runtime : 14017.423496\\n .se->load.weight : 492054\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 134430.085041\\n .avg_vruntime : 134430.085041\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 6\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[1]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.935581\\n .rt_runtime : 950.000000\\n\\ndl_rq[1]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n I rcu_preempt 17 134430.085041 E 134433.082085 3.000000 832.603919 23566 120 0.000000 832.603919 0.000000 0.000000 0 0 /\\n S cpuhp/1 21 7932.094818 E 7935.015583 3.000000 0.356355 26 120 0.000000 0.356355 0.000000 0.000000 0 0 /\\n S idle_inject/1 22 -1.046696 E 0.298424 0.750000 0.006020 3 49 0.000000 0.006020 0.000000 0.000000 0 0 /\\n S migration/1 23 0.056269 E 0.693236 0.750000 181.338356 426 0 0.000000 181.338356 0.000000 0.000000 0 0 /\\n S ksoftirqd/1 24 134430.079431 E 134433.072193 3.000000 34.965694 856 120 0.000000 34.965694 0.000000 0.000000 0 0 /\\n I kworker/1:0H 26 21.947051 E 21.981566 3.000000 0.017963 4 100 0.000000 0.017963 0.000000 0.000000 0 0 /\\n S khungtaskd 67 132982.846528 E 132985.702000 3.000000 2.972761 14 120 0.000000 2.972761 0.000000 0.000000 0 0 /\\n Ikworker/R-write 70 -1.034874 E -1.000265 3.000000 0.000849 2 100 0.000000 0.000849 0.000000 0.000000 0 0 /\\n S ksmd 72 -1.034874 E 8.135275 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/9-acpi 79 0.888458 E 2.110113 3.000000 71.294806 219 49 0.000000 71.294806 0.000000 0.000000 0 0 /\\n I kworker/u17:0 114 134424.714949 E 134424.749192 3.000000 503.138900 9714 100 0.000000 503.138900 0.000000 0.000000 0 0 /\\n I kworker/1:1H 185 132745.322435 E 132745.355587 3.000000 10.268778 518 100 0.000000 10.268778 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 221 392.789305 E 392.823904 3.000000 0.005027 2 100 0.000000 0.005027 0.000000 0.000000 0 0 /\\n Ikworker/R-crypt 531 2507.555715 E 2507.590316 3.000000 0.005940 2 100 0.000000 0.005940 0.000000 0.000000 0 0 /\\n Sirq/194-iwlwifi 536 3740.895044 E 3743.891071 3.000000 27.654560 160 49 0.000000 27.654560 0.000000 0.000000 0 0 /\\n S bluetoothd 794 13.959438 E 16.125037 3.000000 96.748260 406 120 0.000000 96.748260 0.000000 0.000000 0 0 /system.slice/bluetooth.service\\n S gmain 910 0.472046 E 3.459363 3.000000 0.047699 2 120 0.000000 0.047699 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S gmain 923 3.433860 E 6.421449 3.000000 0.067212 2 120 0.000000 0.067212 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S gdbus 924 7.269924 E 9.126327 3.000000 20.415944 94 120 0.000000 20.415944 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 925 273.616357 E 276.323911 3.000000 238.298300 611 120 0.000000 238.298300 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2922 269.668191 E 271.964904 3.000000 135.401526 178 120 0.000000 135.401526 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 3003 253.936887 E 256.669075 3.000000 106.640751 139 120 0.000000 106.640751 0.000000 0.000000 0 0 /system.slice/snapd.service\\n Sswitcheroo-cont 836 7.518062 E 10.434047 3.000000 44.143872 152 120 0.000000 44.143872 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 856 2.227776 E 5.225721 3.000000 94.523149 368 120 0.000000 94.523149 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 844 521.680150 E 524.642958 3.000000 44.706228 506 120 0.000000 44.706228 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S NetworkManager 898 467.678363 E 469.727236 3.000000 1640.760296 2393 120 0.000000 1640.760296 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S rsyslogd 919 38.221763 E 41.093768 3.000000 30.598632 92 120 0.000000 30.598632 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n I kworker/1:3 971 132144.455928 E 132147.440087 3.000000 130.118433 1614 120 0.000000 130.118433 0.000000 0.000000 0 0 /\\n S pool-spawner 1106 14.206991 E 17.144135 3.000000 0.125154 3 120 0.000000 0.125154 0.000000 0.000000 0 0 /system.slice/upower.service\\n S gmain 1107 14.144135 E 17.122581 3.000000 0.021554 1 120 0.000000 0.021554 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1114 1.456486 E 4.415054 3.000000 4.148860 108 120 0.000000 4.148860 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1118 0.488564 E 2.489338 3.000000 0.204262 22 120 0.000000 0.204262 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S cupsd 1439 6.107646 E 8.696552 3.000000 24.305730 98 120 0.000000 24.305730 0.000000 0.000000 0 0 /system.slice/cups.service\\n S containerd 1473 738.084644 E 741.080814 3.000000 324.529671 7588 120 0.000000 324.529671 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1476 738.506261 E 741.502384 3.000000 347.250284 8266 120 0.000000 347.250284 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdm3 1469 28.866371 E 31.777617 3.000000 29.629979 80 120 0.000000 29.629979 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pipewire 1512 16.254098 E 16.510392 3.000000 32.093335 224 109 0.000000 32.093335 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1527 11.267137 E 14.210616 3.000000 0.188517 6 120 0.000000 0.188517 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1541 11.066776 E 14.063472 3.000000 0.112549 13 79 0.000000 0.112549 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1551 11.210616 E 14.180555 3.000000 0.056827 2 120 0.000000 0.056827 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1553 14.775624 E 17.722860 3.000000 0.661282 10 120 0.000000 0.661282 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1526 0.567104 E 2.363017 3.000000 0.680927 15 120 0.000000 0.680927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgnome-session-b 1546 4026.427161 E 4028.816499 3.000000 72.220451 386 120 0.000000 72.220451 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1555 11.411258 E 14.381068 3.000000 0.030190 1 120 0.000000 0.030190 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1559 11.464077 E 14.455527 3.000000 0.052819 2 120 0.000000 0.052819 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gnome-shell 1590 5397.289304 E 5400.203924 3.000000 15419.406602 16428 120 0.000000 15419.406602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1602 241.182424 E 244.164119 3.000000 1.813576 72 120 0.000000 1.813576 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1608 5329.461356 E 5332.450731 3.000000 20.622265 213 120 0.000000 20.622265 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S KMS thread 1618 4040.643096 E 4043.470042 3.000000 312.191032 825 79 0.000000 312.191032 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-s:disk$0 3004 8.656514 E 213.116341 3.000000 0.090177 1 139 0.000000 0.090177 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3014 167.316606 E 170.276345 3.000000 71.365629 133 120 0.000000 71.365629 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S cups-browsed 1656 44.069903 E 46.976698 3.000000 283.244671 1152 120 0.000000 283.244671 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1670 304.900140 E 305.802357 3.000000 107.084760 2032 120 0.000000 107.084760 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1672 144.769731 E 147.755909 3.000000 0.723957 32 120 0.000000 0.723957 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2526 305.308381 E 307.900140 3.000000 3.053644 65 120 0.000000 3.053644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2527 290.625017 E 293.618099 3.000000 99.602375 2905 120 0.000000 99.602375 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2528 990.559120 E 993.426964 3.000000 184.664157 6220 120 0.000000 184.664157 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2422 727.414431 E 729.233997 3.000000 100.537508 248 120 0.000000 100.537508 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2818 31.335791 E 34.210294 3.000000 25.098438 64 120 0.000000 25.098438 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3024 60.304780 E 63.271147 3.000000 0.033633 1 120 0.000000 0.033633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:gdrv0 3269 566.947492 E 569.942158 3.000000 0.048510 3 120 0.000000 0.048510 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3038 563.666293 E 566.641667 3.000000 4.306399 54 120 0.000000 4.306399 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3081 645.782212 E 648.340009 3.000000 0.896962 8 120 0.000000 0.896962 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3085 646.371136 E 648.782212 3.000000 1.123443 8 120 0.000000 1.123443 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3107 5393.304034 E 5395.064444 3.000000 485.388287 1299 120 0.000000 485.388287 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-wacom 3091 644.537177 E 647.284944 3.000000 366.045403 439 120 0.000000 366.045403 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3118 160.094256 E 163.069340 3.000000 0.024916 1 120 0.000000 0.024916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-color 3095 5392.064444 E 5394.097784 3.000000 138.356254 75 120 0.000000 138.356254 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-keyboard 3100 648.247208 E 651.166836 3.000000 121.441087 43 120 0.000000 121.441087 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3123 160.645856 E 163.586872 3.000000 0.058984 1 120 0.000000 0.058984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-smartcard 3119 563.386800 E 566.368384 3.000000 7.380501 47 120 0.000000 7.380501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3141 163.322124 E 166.295023 3.000000 0.027101 1 120 0.000000 0.027101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3152 563.387981 E 566.317884 3.000000 5.186420 57 120 0.000000 5.186420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-datetime 3129 563.405186 E 566.383009 3.000000 11.094354 49 120 0.000000 11.094354 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3201 553.536426 E 556.465699 3.000000 0.162455 3 120 0.000000 0.162455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3219 184.113084 E 187.101602 3.000000 0.087152 2 120 0.000000 0.087152 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3292 378.083610 E 380.401752 3.000000 0.681858 1 120 0.000000 0.681858 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3342 4042.206196 E 4044.992366 3.000000 1.492101 12 120 0.000000 1.492101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3345 634.080030 E 637.037078 3.000000 79.580450 171 120 0.000000 79.580450 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-:disk$0 3376 606.974571 E 811.460271 3.000000 0.041875 2 139 0.000000 0.041875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x:gdrv0 3383 611.246200 E 614.198837 3.000000 0.047363 1 120 0.000000 0.047363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-portal 3364 5132.065958 E 5135.051107 3.000000 3.631144 27 120 0.000000 3.631144 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3382 611.727160 E 614.717547 3.000000 0.569298 17 120 0.000000 0.569298 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S sshd 3437 7.898835 E 10.142566 3.000000 77.928271 33 120 0.000000 77.928271 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S pipewire-pulse 3475 5.257457 E 8.249472 3.000000 16.156993 25 120 0.000000 16.156993 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sgnome-keyring-d 4742 60.402025 E 63.218079 3.000000 7.402169 26 120 0.000000 7.402169 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5111 76.881186 E 79.675463 3.000000 2.727325 5 120 0.000000 2.727325 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5128 94.298837 E 97.251569 3.000000 23.445852 267 120 0.000000 23.445852 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5131 95.888255 E 98.799375 3.000000 21.172376 49 120 0.000000 21.172376 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5241 721.061113 E 724.041507 3.000000 72.248214 171 120 0.000000 72.248214 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S redis-server 5282 5537.956694 E 5540.622631 3.000000 30207.005251 10882 120 0.000000 30207.005251 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Scontainerd-shim 5427 624.965436 E 627.173595 3.000000 63.284495 166 120 0.000000 63.284495 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5528 290.121910 E 293.092020 3.000000 0.588842 12 120 0.000000 0.588842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5458 727.588190 E 730.414431 3.000000 61.038229 138 120 0.000000 61.038229 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5536 6076.807826 E 6079.099034 3.000000 773.518017 1166 120 0.000000 773.518017 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5600 849.366916 E 852.353840 3.000000 39.919317 22 120 0.000000 39.919317 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5665 1661.043325 E 1661.083812 3.000000 55.912313 17 120 0.000000 55.912313 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5616 882.220441 E 885.175429 3.000000 29.865267 12 120 0.000000 29.865267 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5618 881.421942 E 884.354331 3.000000 29.053625 11 120 0.000000 29.053625 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5687 1785.074279 E 1788.064636 3.000000 41.826708 13 120 0.000000 41.826708 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5697 1797.414029 E 1798.448640 3.000000 30.959422 9 120 0.000000 30.959422 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5700 1798.495212 E 1801.486113 3.000000 32.018896 11 120 0.000000 32.018896 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5633 1752.220599 E 1755.211488 3.000000 57.584088 17 120 0.000000 57.584088 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6334 3165.588717 E 3168.411649 3.000000 10.885334 28 120 0.000000 10.885334 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 8795 5659.941040 E 5662.929329 3.000000 0.050028 3 120 0.000000 0.050028 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5715 1835.502622 E 1838.493962 3.000000 42.959724 13 120 0.000000 42.959724 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5623 337.533826 E 340.498957 3.000000 130.045663 1481 120 0.000000 130.045663 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/1:5 5970 134427.795012 E 134430.789818 3.000000 164.602571 2907 120 0.000000 164.602571 0.000000 0.000000 0 0 /\\n S postgres 6358 315.080419 E 318.012544 3.000000 23.970231 27 120 0.000000 23.970231 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S fwupd 7549 111.721430 E 112.376821 3.000000 1230.682800 1595 120 0.000000 1230.682800 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/1:0 7648 120357.505373 E 120360.493702 3.000000 0.096133 4 120 0.000000 0.096133 0.000000 0.000000 0 0 /\\n I kworker/1:1 7649 120357.513029 E 120360.510348 3.000000 0.048300 4 120 0.000000 0.048300 0.000000 0.000000 0 0 /\\n S python3 8815 7039.203349 E 7042.186163 3.000000 0.111516 3 120 0.000000 0.111516 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8818 7044.089760 E 7047.042939 3.000000 7.114135 207 120 0.000000 7.114135 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8900 7188.982323 E 7191.573834 3.000000 110.791476 14 120 0.000000 110.791476 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#2, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 294602\\n .nr_uninterruptible : -236\\n .next_balance : 4296.145594\\n .curr->pid : 0\\n .clock : 1478480.954918\\n .clock_task : 1478480.954918\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[2]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3188.702129\\n .avg_vruntime : 3188.702129\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 643\\n .runnable_avg : 267\\n .util_avg : 267\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 643\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.638747\\n .se->vruntime : 14044.121702\\n .se->sum_exec_runtime : 3202.541317\\n .se->load.weight : 315992\\n .se->avg.load_avg : 193\\n .se->avg.util_avg : 267\\n .se->avg.runnable_avg : 267\\n\\ncfs_rq[2]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 14044.121702\\n .avg_vruntime : 14044.121702\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 193\\n .runnable_avg : 267\\n .util_avg : 267\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 193\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.638747\\n .se->vruntime : 20653.665482\\n .se->sum_exec_runtime : 3595.801202\\n .se->load.weight : 285975\\n .se->avg.load_avg : 175\\n .se->avg.util_avg : 267\\n .se->avg.runnable_avg : 267\\n\\ncfs_rq[2]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6780.211952\\n .avg_vruntime : 6780.211952\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478476.220720\\n .se->vruntime : 89990.655619\\n .se->sum_exec_runtime : 7262.746482\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 832.938582\\n .avg_vruntime : 832.938582\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.607938\\n .se->vruntime : 89989.873375\\n .se->sum_exec_runtime : 860.124825\\n .se->load.weight : 136206\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 129.386853\\n .avg_vruntime : 129.386853\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.398104\\n .se->vruntime : 89975.802323\\n .se->sum_exec_runtime : 131.593633\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 874.903600\\n .avg_vruntime : 874.903600\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.218266\\n .se->vruntime : 89990.084160\\n .se->sum_exec_runtime : 890.257570\\n .se->load.weight : 143640\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 89990.655619\\n .avg_vruntime : 89990.655619\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478476.220720\\n .se->vruntime : 132324.079249\\n .se->sum_exec_runtime : 33330.999348\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 20653.665482\\n .avg_vruntime : 20653.665482\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 175\\n .runnable_avg : 267\\n .util_avg : 267\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 175\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.638747\\n .se->vruntime : 132324.001066\\n .se->sum_exec_runtime : 5956.693166\\n .se->load.weight : 338526\\n .se->avg.load_avg : 207\\n .se->avg.util_avg : 267\\n .se->avg.runnable_avg : 267\\n\\ncfs_rq[2]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 132324.079249\\n .avg_vruntime : 132324.079249\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 207\\n .runnable_avg : 268\\n .util_avg : 268\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[2]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 9.287879\\n .rt_runtime : 950.000000\\n\\ndl_rq[2]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/2 27 10232.512266 E 10235.476962 3.000000 0.310145 26 120 0.000000 0.310145 0.000000 0.000000 0 0 /\\n S idle_inject/2 28 -1.048574 E 0.451426 1.500000 0.000962 3 49 0.000000 0.000962 0.000000 0.000000 0 0 /\\n S migration/2 29 0.100700 E 0.850203 0.750000 182.052448 440 0 0.000000 182.052448 0.000000 0.000000 0 0 /\\n S ksoftirqd/2 30 132299.090371 E 132302.080782 3.000000 43.065189 2011 120 0.000000 43.065189 0.000000 0.000000 0 0 /\\n I kworker/2:0H 32 103.304456 E 103.338997 3.000000 0.014834 5 100 0.000000 0.014834 0.000000 0.000000 0 0 /\\n S oom_reaper 69 -1.013776 E 1.986224 3.000000 0.000042 2 120 0.000000 0.000042 0.000000 0.000000 0 0 /\\n S kcompactd0 71 132312.161723 E 132315.142997 3.000000 144.933761 2935 120 0.000000 144.933761 0.000000 0.000000 0 0 /\\n I kworker/2:1H 195 130740.608450 E 130740.641286 3.000000 9.472264 429 100 0.000000 9.472264 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 218 470.398502 E 470.433104 3.000000 0.005099 2 100 0.000000 0.005099 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 219 470.401038 E 470.435644 3.000000 0.002850 2 100 0.000000 0.002850 0.000000 0.000000 0 0 /\\n I kworker/2:3 223 132308.574159 E 132311.557497 3.000000 1581.539011 16690 120 0.000000 1581.539011 0.000000 0.000000 0 0 /\\n S systemd-udevd 351 1159.845797 E 1162.696747 3.000000 1287.401798 2609 120 0.000000 1287.401798 0.000000 0.000000 0 0 /system.slice/systemd-udevd.service\\n I kworker/u16:8 451 130035.424306 E 130035.774846 3.000000 347.621445 3119 120 0.000000 347.621445 0.000000 0.000000 0 0 /\\n S irq/191-mei_me 520 2425.538335 E 2428.535129 3.000000 2.494755 62 49 0.000000 2.494755 0.000000 0.000000 0 0 /\\n Sirq/195-iwlwifi 538 3925.397830 E 3928.395543 3.000000 3747.974546 19330 49 0.000000 3747.974546 0.000000 0.000000 0 0 /\\n S gdbus 1047 129.386853 E 132.175525 3.000000 238.312659 1012 120 0.000000 238.312659 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 854 181.532524 E 181.847161 3.000000 74.669991 322 120 0.000000 74.669991 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1046 247.008044 E 249.942943 3.000000 222.731664 906 120 0.000000 222.731664 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S udisksd 845 39.362468 E 40.266485 3.000000 193.466736 575 120 0.000000 193.466736 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 876 20.742468 E 23.348156 3.000000 0.617271 5 120 0.000000 0.617271 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n Ikworker/R-ipmi- 913 6961.772658 E 6961.807253 3.000000 0.015936 2 100 0.000000 0.015936 0.000000 0.000000 0 0 /\\n S pool-spawner 1100 6.890317 E 9.858408 3.000000 0.106301 5 120 0.000000 0.106301 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1116 2.347087 E 5.294553 3.000000 0.174658 34 120 0.000000 0.174658 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sh 1121 12.505172 E 15.381318 3.000000 5.274342 15 120 0.000000 5.274342 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1459 789.164834 E 789.557100 3.000000 222.989018 7410 120 0.000000 222.989018 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1460 356.789566 E 359.222037 3.000000 226.995066 5509 120 0.000000 226.995066 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1461 0.881565 E 2.097726 3.000000 0.020709 1 120 0.000000 0.020709 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sgdm-session-wor 1492 0.021664 E 2.378098 3.000000 7.685172 93 120 0.000000 7.685172 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 1500 0.906613 E 1.951424 3.000000 0.141963 1 120 0.000000 0.141963 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pw-data-loop 1536 3.469723 E 6.464575 3.000000 0.024781 3 79 0.000000 0.024781 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sgdm-wayland-ses 1517 0.890985 E 3.860521 3.000000 4.316422 18 120 0.000000 4.316422 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1565 410.548304 E 413.512933 3.000000 0.246882 6 120 0.000000 0.246882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1605 1606.489969 E 1609.464140 3.000000 21.987288 194 120 0.000000 21.987288 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shel:sh0 3005 31.707816 E 34.581346 3.000000 0.126470 1 120 0.000000 0.126470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3012 33.382173 E 238.030347 3.000000 0.007470 1 139 0.000000 0.007470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3013 33.387365 E 36.382173 3.000000 0.005192 1 120 0.000000 0.005192 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3276 121.709419 E 124.678683 3.000000 0.030736 1 120 0.000000 0.030736 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1666 874.903600 E 877.900003 3.000000 147.428501 3241 120 0.000000 147.428501 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2718 869.933997 E 871.753416 3.000000 423.327398 7701 120 0.000000 423.327398 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 7623 811.414952 E 814.059032 3.000000 36.283681 75 120 0.000000 36.283681 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2722 1.991100 E 4.985710 3.000000 0.640714 24 120 0.000000 0.640714 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Ikworker/R-tls-s 2863 22769.817423 E 22769.852008 3.000000 0.015449 2 100 0.000000 0.015449 0.000000 0.000000 0 0 /\\n S dconf worker 3025 46.149564 E 49.142692 3.000000 0.447278 11 120 0.000000 0.447278 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S colord 3035 21.580781 E 24.092855 3.000000 92.765102 187 120 0.000000 92.765102 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gmain 3041 0.737224 E 2.242460 3.000000 0.155686 2 120 0.000000 0.155686 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gjs 3078 487.170160 E 488.823207 3.000000 59.101805 83 120 0.000000 59.101805 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3130 407.533407 E 410.525336 3.000000 0.766318 14 120 0.000000 0.766318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3187 98.848084 E 101.823175 3.000000 0.095370 2 120 0.000000 0.095370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-media-keys 3146 953.008761 E 955.920109 3.000000 135.098877 137 120 0.000000 135.098877 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3202 99.517382 E 102.480455 3.000000 0.036927 1 120 0.000000 0.036927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3344 968.712808 E 971.613739 3.000000 1.076193 11 120 0.000000 1.076193 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3354 424.550236 E 427.529183 3.000000 0.083867 3 120 0.000000 0.083867 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3369 435.646524 E 438.628102 3.000000 0.253340 7 120 0.000000 0.253340 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3372 1521.603955 E 1524.526218 3.000000 1.475187 20 120 0.000000 1.475187 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3379 436.877871 E 439.851438 3.000000 0.116796 2 120 0.000000 0.116796 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S systemd 3449 96.100982 E 97.930315 3.000000 1124.256849 631 120 0.000000 1124.256849 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n Ssnapd-desktop-i 3468 39.501067 E 42.224366 3.000000 18.969394 43 120 0.000000 18.969394 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S docker 5101 229.682468 E 232.530385 3.000000 13.549417 232 120 0.000000 13.549417 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5107 171.690383 E 174.331107 3.000000 0.500947 6 120 0.000000 0.500947 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5109 229.433233 E 232.225759 3.000000 11.568629 15 120 0.000000 11.568629 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5124 193.061150 E 195.671496 3.000000 8.594148 49 120 0.000000 8.594148 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5211 870.132793 E 873.116925 3.000000 29.568281 761 120 0.000000 29.568281 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5236 817.853376 E 820.781351 3.000000 6.724896 270 120 0.000000 6.724896 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5244 817.585400 E 819.899215 3.000000 85.544975 170 120 0.000000 85.544975 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5263 817.998548 E 820.853376 3.000000 9.669150 636 120 0.000000 9.669150 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5268 818.140013 E 820.998548 3.000000 19.679646 90 120 0.000000 19.679646 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6331 854.041513 E 857.039265 3.000000 1.661889 20 120 0.000000 1.661889 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5408 390.450618 E 393.442277 3.000000 0.052751 3 120 0.000000 0.052751 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6178 823.101527 E 825.190345 3.000000 36.912750 82 120 0.000000 36.912750 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6179 698.463026 E 701.068142 3.000000 60.576483 108 120 0.000000 60.576483 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 5471 6773.564258 E 6776.435552 3.000000 104.663128 1122 120 0.000000 104.663128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5565 27.505903 E 30.461672 3.000000 0.909916 7 120 0.000000 0.909916 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5599 1243.917125 E 1246.899112 3.000000 28.626410 23 120 0.000000 28.626410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5602 1243.759704 E 1246.752160 3.000000 26.340665 20 120 0.000000 26.340665 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5603 1244.273695 E 1246.859634 3.000000 28.925019 24 120 0.000000 28.925019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5667 2030.812810 E 2033.802093 3.000000 56.273299 24 120 0.000000 56.273299 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5615 1308.530001 E 1309.304684 3.000000 24.830628 15 120 0.000000 24.830628 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5573 6780.211952 E 6783.133769 3.000000 7432.465960 11457 120 0.000000 7432.465960 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5643 1834.821469 E 1835.836851 3.000000 61.193099 20 120 0.000000 61.193099 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6952 5678.893157 E 5679.334814 3.000000 2.606224 4 120 0.000000 2.606224 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5634 1604.905533 E 1607.825141 3.000000 53.244457 20 120 0.000000 53.244457 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5704 2161.079209 E 2164.073284 3.000000 28.505268 11 120 0.000000 28.505268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5705 2161.257548 E 2162.782519 3.000000 28.668075 12 120 0.000000 28.668075 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5710 2162.173294 E 2164.602104 3.000000 29.547294 16 120 0.000000 29.547294 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6333 3512.110147 E 3514.864100 3.000000 10.868019 29 120 0.000000 10.868019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5575 6780.133769 E 6783.076509 3.000000 7302.318655 11699 120 0.000000 7302.318655 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5630 1334.192609 E 1335.792534 3.000000 36.310197 11 120 0.000000 36.310197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5680 2127.508196 E 2130.499659 3.000000 35.630276 19 120 0.000000 35.630276 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5685 2131.985144 E 2134.985144 3.000000 40.053783 21 120 0.000000 40.053783 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 8792 6439.161559 E 6442.132374 3.000000 0.142718 3 120 0.000000 0.142718 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5656 1932.156392 E 1935.156392 3.000000 101.676739 50 120 0.000000 101.676739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5625 677.529868 E 680.436012 3.000000 1.474437 7 120 0.000000 1.474437 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/2:0 7614 130776.888613 E 130779.871393 3.000000 74.656789 506 120 0.000000 74.656789 0.000000 0.000000 0 0 /\\n I kworker/2:2 7615 132312.142997 E 132315.133845 3.000000 314.031318 3275 120 0.000000 314.031318 0.000000 0.000000 0 0 /\\n I kworker/2:1 7894 125955.038632 E 125957.931027 3.000000 2.375222 15 120 0.000000 2.375222 0.000000 0.000000 0 0 /\\n I kworker/2:4 7895 125955.637846 E 125958.489624 3.000000 6.693093 25 120 0.000000 6.693093 0.000000 0.000000 0 0 /\\n I kworker/2:5 7896 126717.631718 E 126720.624702 3.000000 6.396287 23 120 0.000000 6.396287 0.000000 0.000000 0 0 /\\n I kworker/2:6 7897 125909.302306 E 125912.295314 3.000000 0.070675 4 120 0.000000 0.070675 0.000000 0.000000 0 0 /\\n I kworker/2:7 7898 125909.300451 E 125912.299094 3.000000 0.027822 2 120 0.000000 0.027822 0.000000 0.000000 0 0 /\\n I kworker/u16:1 8151 132312.133845 E 132315.118591 3.000000 38.971846 402 120 0.000000 38.971846 0.000000 0.000000 0 0 /\\n S python3 8817 3006.762924 E 3009.755620 3.000000 0.124033 5 120 0.000000 0.124033 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8901 3134.265179 E 3136.839711 3.000000 110.710113 14 120 0.000000 110.710113 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 9045 3188.702129 E 3191.695938 3.000000 3.636779 2 120 0.000000 3.636779 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#3, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 256502\\n .nr_uninterruptible : 20\\n .next_balance : 4296.145596\\n .curr->pid : 0\\n .clock : 1478480.901680\\n .clock_task : 1478480.901680\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3662.254803\\n .avg_vruntime : 3662.254803\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.916079\\n .se->vruntime : 15273.007388\\n .se->sum_exec_runtime : 3671.707545\\n .se->load.weight : 83229\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15273.007388\\n .avg_vruntime : 15273.007388\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.916079\\n .se->vruntime : 21789.903422\\n .se->sum_exec_runtime : 4512.886896\\n .se->load.weight : 84388\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1001.777666\\n .avg_vruntime : 1001.777666\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.735315\\n .se->vruntime : 82688.948159\\n .se->sum_exec_runtime : 1029.083879\\n .se->load.weight : 146842\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 41.193252\\n .avg_vruntime : 41.193252\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.424964\\n .se->vruntime : 82680.732906\\n .se->sum_exec_runtime : 43.230464\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 927.837471\\n .avg_vruntime : 927.837471\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478195.875935\\n .se->vruntime : 82689.007591\\n .se->sum_exec_runtime : 947.084372\\n .se->load.weight : 73938\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5227.815829\\n .avg_vruntime : 5227.815829\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478385.155884\\n .se->vruntime : 82689.184385\\n .se->sum_exec_runtime : 5593.066950\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/systemd-logind.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 127.805196\\n .avg_vruntime : 127.805196\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.010897\\n .se->vruntime : 82689.274136\\n .se->sum_exec_runtime : 128.992065\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/systemd-oomd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 81.754192\\n .avg_vruntime : 81.754192\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 3\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 3\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478478.972826\\n .se->vruntime : 82689.473128\\n .se->sum_exec_runtime : 82.832209\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 82689.473128\\n .avg_vruntime : 82689.473128\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478478.972826\\n .se->vruntime : 113719.890915\\n .se->sum_exec_runtime : 25455.073783\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 21789.903422\\n .avg_vruntime : 21789.903422\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.916079\\n .se->vruntime : 113719.383503\\n .se->sum_exec_runtime : 6396.766655\\n .se->load.weight : 71115\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 113719.890915\\n .avg_vruntime : 113719.890915\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[3]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 2.604232\\n .rt_runtime : 950.000000\\n\\ndl_rq[3]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/3 33 7886.138537 E 7889.102720 3.000000 0.348500 26 120 0.000000 0.348500 0.000000 0.000000 0 0 /\\n S idle_inject/3 34 -1.048518 E 0.451482 1.500000 0.001036 3 49 0.000000 0.001036 0.000000 0.000000 0 0 /\\n S migration/3 35 0.198781 E 0.948241 0.750000 182.581607 442 0 0.000000 182.581607 0.000000 0.000000 0 0 /\\n S ksoftirqd/3 36 113709.940756 E 113712.935989 3.000000 52.554754 1108 120 0.000000 52.554754 0.000000 0.000000 0 0 /\\n I kworker/3:0H 38 6.472894 E 6.507461 3.000000 0.011946 4 100 0.000000 0.011946 0.000000 0.000000 0 0 /\\n Ikworker/R-inet_ 64 -1.038883 E -1.004274 3.000000 0.009635 2 100 0.000000 0.009635 0.000000 0.000000 0 0 /\\n S kauditd 65 46475.465473 E 46478.440242 3.000000 2.812791 141 120 0.000000 2.812791 0.000000 0.000000 0 0 /\\n S khugepaged 74 112218.834350 E 112421.956696 3.000000 19.096034 374 139 0.000000 19.096034 0.000000 0.000000 0 0 /\\n Ikworker/R-kinte 75 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-kbloc 76 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-blkcg 77 0.992084 E 0.957475 3.000000 0.000070 2 100 0.000000 0.000070 0.000000 0.000000 0 0 /\\n Ikworker/R-tpm_d 82 0.481367 E 0.446758 3.000000 0.000111 2 100 0.000000 0.000111 0.000000 0.000000 0 0 /\\n I kworker/R-md 84 0.480619 E 0.446010 3.000000 0.000748 2 100 0.000000 0.000748 0.000000 0.000000 0 0 /\\n Ikworker/R-edac- 86 0.479971 E 0.445362 3.000000 0.000648 2 100 0.000000 0.000648 0.000000 0.000000 0 0 /\\n S watchdogd 88 0.469682 E 2.529619 3.000000 0.000699 2 49 0.000000 0.000699 0.000000 0.000000 0 0 /\\n Ikworker/R-kthro 93 0.358457 E 0.323888 3.000000 0.021180 2 100 0.000000 0.021180 0.000000 0.000000 0 0 /\\n S irq/127-pciehp 94 0.342701 E 2.655906 3.000000 0.020513 2 49 0.000000 0.020513 0.000000 0.000000 0 0 /\\n S hwrng 101 112059.818881 E 112062.466066 3.000000 60.099206 248 120 0.000000 60.099206 0.000000 0.000000 0 0 /\\n I kworker/3:1H 153 113223.082695 E 113223.117215 3.000000 29.800400 1876 100 0.000000 29.800400 0.000000 0.000000 0 0 /\\n I kworker/3:2 226 112194.537750 E 112197.534082 3.000000 158.762506 1876 120 0.000000 158.762506 0.000000 0.000000 0 0 /\\n Sirq/192-iwlwifi 534 4059.665296 E 4062.645526 3.000000 2014.704745 16403 49 0.000000 2014.704745 0.000000 0.000000 0 0 /\\n Sirq/196-iwlwifi 539 3926.018591 E 3929.015940 3.000000 86.604175 217 49 0.000000 86.604175 0.000000 0.000000 0 0 /\\n I kworker/R-ttm 576 4266.892470 E 4266.927070 3.000000 0.005129 2 100 0.000000 0.005129 0.000000 0.000000 0 0 /\\n S systemd-oomd 660 81.754192 E 84.555200 3.000000 1531.216645 1474 120 0.000000 1531.216645 0.000000 0.000000 0 0 /system.slice/systemd-oomd.service\\n S gdbus 938 6.914745 E 9.332271 3.000000 25.658172 104 120 0.000000 25.658172 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S cron 795 11.670507 E 14.583148 3.000000 11.549889 35 120 0.000000 11.549889 0.000000 0.000000 0 0 /system.slice/cron.service\\n Sgnome-remote-de 800 6.461804 E 9.080981 3.000000 30.145068 265 120 0.000000 30.145068 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S polkitd 812 41.193252 E 44.142504 3.000000 687.278784 1329 120 0.000000 687.278784 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S pool-spawner 922 3.894639 E 6.842135 3.000000 0.090432 2 120 0.000000 0.090432 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 831 206.525041 E 209.519124 3.000000 30.118582 233 120 0.000000 30.118582 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 852 310.199492 E 310.516321 3.000000 174.131223 492 120 0.000000 174.131223 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 853 2.078318 E 5.068150 3.000000 0.396308 18 120 0.000000 0.396308 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 859 -1.009569 E 1.951424 3.000000 0.039007 1 120 0.000000 0.039007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S systemd-logind 842 127.805196 E 130.715445 3.000000 1465.290990 6145 120 0.000000 1465.290990 0.000000 0.000000 0 0 /system.slice/systemd-logind.service\\n S gmain 935 241.232179 E 244.133070 3.000000 63.938124 371 120 0.000000 63.938124 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S ModemManager 1073 9.455997 E 11.392804 3.000000 90.291248 409 120 0.000000 90.291248 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1117 -1.009201 E 1.951424 3.000000 0.039375 1 120 0.000000 0.039375 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1458 999.986736 E 1002.294081 3.000000 413.133689 6003 120 0.000000 413.133689 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1482 0.012894 E 2.894979 3.000000 0.583316 4 120 0.000000 0.583316 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gdbus 1496 0.233532 E 2.720526 3.000000 1.188965 22 120 0.000000 1.188965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S wireplumber 1515 9.144716 E 9.344452 3.000000 112.045348 651 109 0.000000 112.045348 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1528 7.387174 E 10.325290 3.000000 0.194691 7 120 0.000000 0.194691 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1538 7.325290 E 10.316534 3.000000 0.041734 2 120 0.000000 0.041734 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1518 2.669021 E 5.657668 3.000000 0.061989 3 120 0.000000 0.061989 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1568 8.156596 E 11.144147 3.000000 0.100728 3 120 0.000000 0.100728 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1561 8.265857 E 11.247889 3.000000 0.366731 9 120 0.000000 0.366731 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1598 1073.656645 E 1076.563714 3.000000 1.266993 17 120 0.000000 1.266993 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1607 1075.891715 E 1078.887620 3.000000 115.310420 179 120 0.000000 115.310420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1610 1075.887620 E 1078.838870 3.000000 26.286938 188 120 0.000000 26.286938 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3008 5.879336 E 210.308511 3.000000 0.040484 1 139 0.000000 0.040484 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3009 5.885425 E 8.879336 3.000000 0.006089 1 120 0.000000 0.006089 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1681 0.987359 E 2.007769 3.000000 0.061217 2 120 0.000000 0.061217 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1664 927.837471 E 930.832670 3.000000 827.854202 46478 120 0.000000 827.854202 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2442 200.802238 E 203.083797 3.000000 2.686930 84 120 0.000000 2.686930 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-init 2511 9.958767 E 12.803820 3.000000 134.244882 1521 120 0.000000 134.244882 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2721 9.803820 E 12.658127 3.000000 13.769118 335 120 0.000000 13.769118 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2723 9.286568 E 12.104291 3.000000 10.516102 89 120 0.000000 10.516102 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2727 0.657300 E 2.325290 3.000000 0.078513 3 120 0.000000 0.078513 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S Xwaylan:disk$0 3264 278.898908 E 483.348085 3.000000 0.083880 3 139 0.000000 0.083880 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sat-spi2-registr 3034 320.892867 E 323.863419 3.000000 9.827853 77 120 0.000000 9.827853 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3084 396.608166 E 398.928697 3.000000 1.378050 9 120 0.000000 1.378050 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3104 50.860674 E 53.826398 3.000000 0.155648 6 120 0.000000 0.155648 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-rfkill 3114 1073.563714 E 1076.494702 3.000000 29.428370 317 120 0.000000 29.428370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3148 1073.532194 E 1076.286003 3.000000 66.525748 330 120 0.000000 66.525748 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3161 51.477948 E 54.430767 3.000000 0.086363 2 120 0.000000 0.086363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3165 265.319650 E 268.242694 3.000000 4.804589 50 120 0.000000 4.804589 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sound 3155 264.524415 E 267.507911 3.000000 10.096889 65 120 0.000000 10.096889 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3200 264.748433 E 267.666962 3.000000 4.545875 44 120 0.000000 4.545875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3173 52.876485 E 55.844305 3.000000 0.094693 4 120 0.000000 0.094693 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3195 53.525055 E 56.511106 3.000000 0.140273 3 120 0.000000 0.140273 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3212 262.457088 E 265.449831 3.000000 0.389984 12 120 0.000000 0.389984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-printer 3290 687.615620 E 690.465261 3.000000 187.874291 30 120 0.000000 187.874291 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3339 700.168791 E 703.029139 3.000000 0.936467 13 120 0.000000 0.936467 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3351 699.316593 E 701.734734 3.000000 3.194350 33 120 0.000000 3.194350 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3355 311.731393 E 314.671777 3.000000 0.146965 3 120 0.000000 0.146965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3356 408.298560 E 411.135610 3.000000 9.785534 67 120 0.000000 9.785534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-dconf 3360 312.231880 E 315.209559 3.000000 3.710779 6 120 0.000000 3.710779 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3365 311.671777 E 314.666437 3.000000 0.056426 2 120 0.000000 0.056426 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3368 312.703029 E 315.657097 3.000000 0.439195 10 120 0.000000 0.439195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3509 -1.026522 E 1.969433 3.000000 0.022054 3 120 0.000000 0.022054 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3511 3.665450 E 6.655609 3.000000 0.052600 3 120 0.000000 0.052600 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3551 9.844973 E 12.792466 3.000000 0.052507 1 120 0.000000 0.052507 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3599 197.020590 E 197.487604 3.000000 67.673866 80 120 0.000000 67.673866 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S sshd 3669 24.119215 E 26.352417 3.000000 60.985253 32 120 0.000000 60.985253 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S pool-spawner 4748 11.609030 E 14.551046 3.000000 0.057984 1 120 0.000000 0.057984 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5100 224.686053 E 227.677039 3.000000 61.547451 14 120 0.000000 61.547451 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5110 365.721586 E 368.663382 3.000000 48.913089 47 120 0.000000 48.913089 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5127 268.080230 E 270.854937 3.000000 0.225293 1 120 0.000000 0.225293 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5238 985.419247 E 988.376818 3.000000 79.206244 207 120 0.000000 79.206244 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5262 307.365255 E 310.358223 3.000000 2.509248 7 120 0.000000 2.509248 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S postgres 5289 1186.124794 E 1188.482746 3.000000 155.669199 247 120 0.000000 155.669199 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S docker-proxy 5393 441.075088 E 444.057442 3.000000 1.906891 4 120 0.000000 1.906891 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5397 441.007142 E 443.951633 3.000000 0.134457 6 120 0.000000 0.134457 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5420 990.286901 E 993.144477 3.000000 12.673759 720 120 0.000000 12.673759 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 8195 990.144477 E 991.948468 3.000000 10.134071 21 120 0.000000 10.134071 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5455 329.155687 E 332.140177 3.000000 0.106899 6 120 0.000000 0.106899 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7654 994.712073 E 996.798402 3.000000 17.787682 36 120 0.000000 17.787682 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5561 1.157627 E 4.068673 3.000000 14.650316 44 120 0.000000 14.650316 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5566 0.867397 E 3.800664 3.000000 6.451868 10 120 0.000000 6.451868 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5666 1455.901773 E 1455.931322 3.000000 52.537643 16 120 0.000000 52.537643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5692 1542.872428 E 1545.867503 3.000000 39.486389 14 120 0.000000 39.486389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6337 3770.130574 E 3772.832043 3.000000 1.045980 6 120 0.000000 1.045980 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6339 2749.264215 E 2752.131956 3.000000 10.760643 17 120 0.000000 10.760643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6342 2748.954739 E 2751.740522 3.000000 9.140090 22 120 0.000000 9.140090 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5607 675.005069 E 677.994134 3.000000 108.505409 56 120 0.000000 108.505409 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5675 1497.517568 E 1500.507764 3.000000 53.995739 18 120 0.000000 53.995739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5642 1261.164512 E 1264.157881 3.000000 21.195408 8 120 0.000000 21.195408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5701 1573.282016 E 1576.275123 3.000000 54.439900 15 120 0.000000 54.439900 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6335 3769.832043 E 3772.073778 3.000000 3.802600 4 120 0.000000 3.802600 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5631 796.046325 E 798.991768 3.000000 40.045155 23 120 0.000000 40.045155 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5681 1527.879182 E 1529.909057 3.000000 33.967325 14 120 0.000000 33.967325 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5684 1530.679057 E 1533.672041 3.000000 36.744957 12 120 0.000000 36.744957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5576 5227.815829 E 5230.735304 3.000000 7073.051397 11390 120 0.000000 7073.051397 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5711 1596.022219 E 1599.010783 3.000000 26.922198 10 120 0.000000 26.922198 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5712 1598.317683 E 1601.311774 3.000000 27.952471 10 120 0.000000 27.952471 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5713 1598.100775 E 1601.093750 3.000000 28.977268 10 120 0.000000 28.977268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5716 1603.713181 E 1606.705277 3.000000 27.988249 8 120 0.000000 27.988249 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6340 3770.272623 E 3773.130574 3.000000 0.935232 6 120 0.000000 0.935232 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5648 1264.334911 E 1267.326576 3.000000 21.039304 8 120 0.000000 21.039304 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5649 1267.119289 E 1270.110336 3.000000 23.813972 11 120 0.000000 23.813972 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5652 1267.460598 E 1270.456344 3.000000 24.138886 11 120 0.000000 24.138886 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5718 1603.710384 E 1606.705277 3.000000 34.052954 13 120 0.000000 34.052954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5621 1185.482746 E 1188.434789 3.000000 84.286378 839 120 0.000000 84.286378 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S gmain 7550 536.204417 E 539.164101 3.000000 38.510120 257 120 0.000000 38.510120 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/3:0 7622 111966.921262 E 111969.865145 3.000000 105.281622 1086 120 0.000000 105.281622 0.000000 0.000000 0 0 /\\n S postgres 8797 1184.987949 E 1187.682861 3.000000 3.303405 9 120 0.000000 3.303405 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/3:1 8808 113719.422358 E 113722.408938 3.000000 3.280941 117 120 0.000000 3.280941 0.000000 0.000000 0 0 /\\n S python3 8903 3652.886173 E 3655.886173 3.000000 110.716204 10 120 0.000000 110.716204 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 8819 1189.684445 E 1192.604503 3.000000 3.888162 16 120 0.000000 3.888162 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n\\ncpu#4, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 223688\\n .nr_uninterruptible : 185\\n .next_balance : 4296.145595\\n .curr->pid : 0\\n .clock : 1478480.902076\\n .clock_task : 1478480.902076\\n .avg_idle : 896718\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[4]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2809.454011\\n .avg_vruntime : 2809.454011\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.914495\\n .se->vruntime : 13807.250601\\n .se->sum_exec_runtime : 2817.296549\\n .se->load.weight : 82533\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13807.250601\\n .avg_vruntime : 13807.250601\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.914495\\n .se->vruntime : 21574.153437\\n .se->sum_exec_runtime : 3141.800781\\n .se->load.weight : 8977\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5652.033695\\n .avg_vruntime : 5652.033695\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478432.376064\\n .se->vruntime : 84925.913420\\n .se->sum_exec_runtime : 6023.260421\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 98.018010\\n .avg_vruntime : 98.018010\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.198829\\n .se->vruntime : 84914.426245\\n .se->sum_exec_runtime : 99.218994\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 815.267003\\n .avg_vruntime : 815.267003\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.794481\\n .se->vruntime : 84925.382899\\n .se->sum_exec_runtime : 822.103205\\n .se->load.weight : 146507\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 884.709865\\n .avg_vruntime : 884.709865\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.071930\\n .se->vruntime : 84925.426979\\n .se->sum_exec_runtime : 921.782167\\n .se->load.weight : 146312\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 84925.913420\\n .avg_vruntime : 84925.913420\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478432.376064\\n .se->vruntime : 120680.739778\\n .se->sum_exec_runtime : 27259.077475\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 21574.153437\\n .avg_vruntime : 21574.153437\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.914495\\n .se->vruntime : 120679.849221\\n .se->sum_exec_runtime : 7094.053968\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 120680.739778\\n .avg_vruntime : 120680.739778\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[4]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[4]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/4 39 8611.189859 E 8614.138975 3.000000 0.358588 26 120 0.000000 0.358588 0.000000 0.000000 0 0 /\\n S idle_inject/4 40 -1.048576 E 1.201424 2.250000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S migration/4 41 1.176891 E 3.426891 2.250000 179.673878 437 0 0.000000 179.673878 0.000000 0.000000 0 0 /\\n S ksoftirqd/4 42 120670.514890 E 120673.509937 3.000000 22.984901 943 120 0.000000 22.984901 0.000000 0.000000 0 0 /\\n I kworker/4:0 43 120679.883150 E 120682.867687 3.000000 355.547564 2637 120 0.000000 355.547564 0.000000 0.000000 0 0 /\\n I kworker/4:0H 44 132.163682 E 132.198197 3.000000 0.019668 4 100 0.000000 0.019668 0.000000 0.000000 0 0 /\\n Ikworker/R-ata_s 83 5.270300 E 5.304909 3.000000 0.000746 2 100 0.000000 0.000746 0.000000 0.000000 0 0 /\\n Ikworker/R-md_bi 85 5.270300 E 5.304909 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-devfr 87 5.273628 E 5.308237 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/128-pciehp 95 0.339759 E 2.659354 3.000000 0.006738 3 49 0.000000 0.006738 0.000000 0.000000 0 0 /\\n I kworker/4:1H 194 119329.789721 E 119329.822748 3.000000 13.170568 1014 100 0.000000 13.170568 0.000000 0.000000 0 0 /\\n Ikworker/R-cfg80 514 3339.240577 E 3339.275140 3.000000 0.012808 2 100 0.000000 0.012808 0.000000 0.000000 0 0 /\\n Sirq/197-iwlwifi 540 3926.376252 E 3929.374115 3.000000 19.222100 76 49 0.000000 19.222100 0.000000 0.000000 0 0 /\\n Sirq/201-iwlwifi 544 3926.622118 E 3929.620867 3.000000 0.136252 5 49 0.000000 0.136252 0.000000 0.000000 0 0 /\\n Ssystemd-timesyn 671 11.801273 E 13.596967 3.000000 75.626708 100 120 0.000000 75.626708 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n S pool-spawner 929 0.427240 E 3.421670 3.000000 0.182155 7 120 0.000000 0.182155 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S avahi-daemon 793 98.018010 E 100.946563 3.000000 750.361615 2659 120 0.000000 750.361615 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S gdbus 918 4.224344 E 6.070337 3.000000 17.705503 95 120 0.000000 17.705503 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 1042 1.501824 E 4.479627 3.000000 0.055072 2 120 0.000000 0.055072 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S sysbox-mgr 855 1368.256212 E 1371.247922 3.000000 262.688287 3401 120 0.000000 262.688287 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gdbus 939 985.787706 E 987.437247 3.000000 635.498454 3964 120 0.000000 635.498454 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S wpa_supplicant 901 227.478217 E 230.442320 3.000000 393.948523 695 120 0.000000 393.948523 0.000000 0.000000 0 0 /system.slice/wpa_supplicant.service\\n S gmain 1094 3.946236 E 6.930995 3.000000 0.050521 2 120 0.000000 0.050521 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gmain 1093 3.276503 E 6.269558 3.000000 0.066470 2 120 0.000000 0.066470 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1477 883.940470 E 886.925655 3.000000 375.562752 6652 120 0.000000 375.562752 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1490 884.709865 E 887.706702 3.000000 312.543770 6564 120 0.000000 312.543770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1532 0.548481 E 3.506291 3.000000 0.195304 7 120 0.000000 0.195304 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1547 0.212741 E 3.208152 3.000000 0.019168 3 79 0.000000 0.019168 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1519 -1.009572 E 1.951424 3.000000 0.039004 1 120 0.000000 0.039004 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1535 10.910098 E 14.575757 3.000000 65.949337 133 121 0.000000 65.949337 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S fuse mainloop 1563 0.636104 E 3.602310 3.000000 0.327847 4 120 0.000000 0.327847 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1599 2293.743972 E 2296.428061 3.000000 65.420210 390 120 0.000000 65.420210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1609 2293.129292 E 2296.108779 3.000000 20.607242 181 120 0.000000 20.607242 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1682 -1.007916 E 1.951424 3.000000 0.040660 1 120 0.000000 0.040660 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S gdbus 1683 15.181555 E 17.935819 3.000000 72.211517 376 120 0.000000 72.211517 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1674 809.265438 E 811.222640 3.000000 226.669395 3509 120 0.000000 226.669395 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2443 284.936640 E 287.916427 3.000000 35.663598 1701 120 0.000000 35.663598 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2401 864.156389 E 867.017379 3.000000 43.587620 162 120 0.000000 43.587620 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2402 44.216112 E 47.201754 3.000000 0.083347 6 120 0.000000 0.083347 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2420 44.291955 E 47.265037 3.000000 1.429798 32 120 0.000000 1.429798 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 3027 494.594461 E 497.580076 3.000000 1.096695 37 120 0.000000 1.096695 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dbus-daemon 3028 871.982914 E 874.971379 3.000000 8.820633 75 120 0.000000 8.820633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3040 23.893471 E 26.854493 3.000000 0.075685 2 120 0.000000 0.075685 0.000000 0.000000 0 0 /system.slice/colord.service\\n S pool-spawner 3070 84.801335 E 87.763845 3.000000 0.076250 2 120 0.000000 0.076250 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3071 84.763845 E 87.725839 3.000000 0.038006 1 120 0.000000 0.038006 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3086 585.187130 E 587.886236 3.000000 0.803427 9 120 0.000000 0.803427 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3113 121.997580 E 124.912918 3.000000 1.251295 53 120 0.000000 1.251295 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3120 104.510615 E 107.420360 3.000000 0.090255 1 120 0.000000 0.090255 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3132 104.942110 E 107.902899 3.000000 0.039211 1 120 0.000000 0.039211 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3147 432.291787 E 435.215403 3.000000 15.128436 45 120 0.000000 15.128436 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3199 432.208898 E 435.123843 3.000000 4.825108 55 120 0.000000 4.825108 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-power 3172 934.048735 E 936.983961 3.000000 531.922828 648 120 0.000000 531.922828 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gjs 3333 961.492427 E 962.754198 3.000000 64.931215 51 120 0.000000 64.931215 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3388 494.502646 E 497.479395 3.000000 0.383639 13 120 0.000000 0.383639 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x1:disk$0 3384 493.429311 E 698.009560 3.000000 0.064318 1 139 0.000000 0.064318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3391 494.823326 E 497.820442 3.000000 0.047210 2 120 0.000000 0.047210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 3453 0.638992 E 1.951424 3.000000 0.409584 1 120 0.000000 0.409584 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S module-rt 3508 16.982589 E 19.952500 3.000000 0.177132 8 120 0.000000 0.177132 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3512 16.731938 E 19.727789 3.000000 0.017591 3 120 0.000000 0.017591 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3519 17.278259 E 20.249377 3.000000 0.054962 2 120 0.000000 0.054962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S dbus-daemon 3501 17.501364 E 20.425841 3.000000 9.308695 60 120 0.000000 9.308695 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S sshd 3542 243.653225 E 246.637664 3.000000 200.602863 791 120 0.000000 200.602863 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S gmain 3547 17.425841 E 20.278259 3.000000 0.147582 1 120 0.000000 0.147582 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3596 0.171413 E 2.703804 3.000000 0.124783 1 120 0.000000 0.124783 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gdbus 4750 0.089371 E 2.823358 3.000000 0.503147 15 120 0.000000 0.503147 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S timer 4751 0.479745 E 2.495817 3.000000 0.024438 1 120 0.000000 0.024438 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker-compose 5122 196.344791 E 199.329849 3.000000 63.034858 39 120 0.000000 63.034858 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5123 250.166535 E 252.988732 3.000000 61.086725 1510 120 0.000000 61.086725 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5208 810.182613 E 813.178727 3.000000 34.767879 2917 120 0.000000 34.767879 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5215 805.308683 E 808.254718 3.000000 2.583048 56 120 0.000000 2.583048 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5242 260.021354 E 262.990538 3.000000 1.439470 33 120 0.000000 1.439470 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5267 249.428702 E 252.410406 3.000000 0.050853 2 120 0.000000 0.050853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7611 637.230743 E 640.230743 3.000000 25.728522 29 120 0.000000 25.728522 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sjemalloc_bg_thd 5374 138.716842 E 141.619686 3.000000 0.588916 10 120 0.000000 0.588916 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Sjemalloc_bg_thd 5375 0.560167 E 2.423287 3.000000 0.016546 1 120 0.000000 0.016546 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 6328 804.791363 E 807.788758 3.000000 2.258945 49 120 0.000000 2.258945 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 6329 804.212273 E 807.184068 3.000000 7.340909 47 120 0.000000 7.340909 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5407 291.517519 E 294.508545 3.000000 0.110756 6 120 0.000000 0.110756 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5428 264.775703 E 267.763855 3.000000 0.397285 12 120 0.000000 0.397285 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5429 871.953719 E 874.841677 3.000000 69.647349 193 120 0.000000 69.647349 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5460 875.173380 E 878.066694 3.000000 75.379853 208 120 0.000000 75.379853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5479 5.910874 E 8.239062 3.000000 24.294118 29 120 0.000000 24.294118 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5564 5.960558 E 8.911409 3.000000 0.756076 9 120 0.000000 0.756076 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 6352 3779.306625 E 3782.026102 3.000000 0.963905 5 120 0.000000 0.963905 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5693 2182.334914 E 2185.327152 3.000000 38.955454 14 120 0.000000 38.955454 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5572 5652.033695 E 5654.984787 3.000000 7446.566197 11317 120 0.000000 7446.566197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5670 2131.268004 E 2134.260351 3.000000 36.996673 11 120 0.000000 36.996673 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5671 2135.196688 E 2138.196688 3.000000 40.909890 14 120 0.000000 40.909890 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5640 1921.565079 E 1924.559625 3.000000 28.984572 12 120 0.000000 28.984572 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5644 1921.963150 E 1922.987767 3.000000 52.350338 20 120 0.000000 52.350338 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5696 2197.393849 E 2200.390282 3.000000 31.127998 15 120 0.000000 31.127998 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5699 2197.192376 E 2200.184357 3.000000 30.902525 11 120 0.000000 30.902525 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6949 3855.962894 E 3858.538841 3.000000 1.387175 6 120 0.000000 1.387175 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5574 5651.984787 E 5654.887518 3.000000 7299.976389 11972 120 0.000000 7299.976389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5632 1326.785621 E 1326.892101 3.000000 100.083757 4 120 0.000000 100.083757 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5658 1985.657062 E 1988.647654 3.000000 37.909073 12 120 0.000000 37.909073 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5660 1989.692299 E 1989.732082 3.000000 55.543120 15 120 0.000000 55.543120 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5719 2242.781412 E 2242.811558 3.000000 49.489219 18 120 0.000000 49.489219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6341 3778.491564 E 3778.505314 3.000000 3.051447 4 120 0.000000 3.051447 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n I kworker/4:2 7634 117310.797682 E 117313.756868 3.000000 0.551763 21 120 0.000000 0.551763 0.000000 0.000000 0 0 /\\n I kworker/4:1 8473 119347.123982 E 119350.098711 3.000000 33.037866 124 120 0.000000 33.037866 0.000000 0.000000 0 0 /\\n I kworker/4:3 8684 117293.555876 E 117296.535855 3.000000 0.164195 2 120 0.000000 0.164195 0.000000 0.000000 0 0 /\\n I kworker/u16:3 8736 120552.436038 E 120555.431040 3.000000 24.263332 229 120 0.000000 24.263332 0.000000 0.000000 0 0 /\\n S postgres 8809 771.351816 E 774.116295 3.000000 491.539249 38 120 0.000000 491.539249 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 8902 2787.226343 E 2789.757871 3.000000 110.730022 8 120 0.000000 110.730022 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#5, 2400.000 MHz\\n .nr_running : 1\\n .nr_switches : 263898\\n .nr_uninterruptible : -10\\n .next_balance : 4296.145627\\n .curr->pid : 9047\\n .clock : 1478481.870386\\n .clock_task : 1478481.870386\\n .avg_idle : 37051\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[5]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4801.488441\\n .avg_vruntime : 4801.488441\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 1048576\\n .load_avg : 982\\n .runnable_avg : 678\\n .util_avg : 678\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 986\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478481.870386\\n .se->vruntime : 16453.522559\\n .se->sum_exec_runtime : 4809.102348\\n .se->load.weight : 437013\\n .se->avg.load_avg : 408\\n .se->avg.util_avg : 678\\n .se->avg.runnable_avg : 678\\n\\ncfs_rq[5]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 16453.522559\\n .avg_vruntime : 16453.522559\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 437013\\n .load_avg : 409\\n .runnable_avg : 678\\n .util_avg : 678\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 396\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478481.870386\\n .se->vruntime : 24080.352885\\n .se->sum_exec_runtime : 5198.071322\\n .se->load.weight : 544748\\n .se->avg.load_avg : 509\\n .se->avg.util_avg : 678\\n .se->avg.runnable_avg : 678\\n\\ncfs_rq[5]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 11358.656161\\n .avg_vruntime : 11358.656161\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478388.031195\\n .se->vruntime : 82685.805197\\n .se->sum_exec_runtime : 11936.645337\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1862.930457\\n .avg_vruntime : 1862.930457\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478454.652585\\n .se->vruntime : 82685.883291\\n .se->sum_exec_runtime : 1867.249696\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 835.081627\\n .avg_vruntime : 835.081627\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.076598\\n .se->vruntime : 82685.178921\\n .se->sum_exec_runtime : 872.837025\\n .se->load.weight : 115637\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/dbus.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 589.654485\\n .avg_vruntime : 589.654485\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.176331\\n .se->vruntime : 82682.380175\\n .se->sum_exec_runtime : 591.022607\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 896.091864\\n .avg_vruntime : 896.091864\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.755564\\n .se->vruntime : 82685.098770\\n .se->sum_exec_runtime : 920.442075\\n .se->load.weight : 39687\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 97.974746\\n .avg_vruntime : 97.974746\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 2\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 2\\n .tg_load_avg : 2\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.303639\\n .se->vruntime : 82686.176714\\n .se->sum_exec_runtime : 123.909121\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 82686.176714\\n .avg_vruntime : 82686.176714\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.303639\\n .se->vruntime : 121292.259207\\n .se->sum_exec_runtime : 32131.976477\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 2\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[5]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 24080.352885\\n .avg_vruntime : 24080.352885\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 544748\\n .load_avg : 510\\n .runnable_avg : 678\\n .util_avg : 678\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 492\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478481.870386\\n .se->vruntime : 121347.603145\\n .se->sum_exec_runtime : 7811.507545\\n .se->load.weight : 625611\\n .se->avg.load_avg : 585\\n .se->avg.util_avg : 678\\n .se->avg.runnable_avg : 678\\n\\ncfs_rq[5]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 121347.603145\\n .avg_vruntime : 121347.603145\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 625611\\n .load_avg : 586\\n .runnable_avg : 681\\n .util_avg : 681\\n .util_est : 684\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[5]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[5]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/5 45 6999.749005 E 7002.677723 3.000000 0.271587 26 120 0.000000 0.271587 0.000000 0.000000 0 0 /\\n S idle_inject/5 46 -1.043636 E 1.204967 2.250000 0.004272 3 49 0.000000 0.004272 0.000000 0.000000 0 0 /\\n S migration/5 47 3.168235 E 5.417506 2.250000 181.592847 444 0 0.000000 181.592847 0.000000 0.000000 0 0 /\\n S ksoftirqd/5 48 121291.040566 E 121294.031155 3.000000 35.804974 1491 120 0.000000 35.804974 0.000000 0.000000 0 0 /\\n I kworker/5:0H 50 785.846494 E 785.880922 3.000000 0.029057 4 100 0.000000 0.029057 0.000000 0.000000 0 0 /\\n I kworker/5:1H 90 120112.253119 E 120112.287677 3.000000 10.646119 498 100 0.000000 10.646119 0.000000 0.000000 0 0 /\\n S irq/129-pciehp 96 0.336759 E 2.662268 3.000000 0.006014 3 49 0.000000 0.006014 0.000000 0.000000 0 0 /\\n Ikworker/R-acpi_ 100 803.615043 E 803.649645 3.000000 0.003136 2 100 0.000000 0.003136 0.000000 0.000000 0 0 /\\n I kworker/R-mld 103 822.822143 E 822.856734 3.000000 0.020268 2 100 0.000000 0.020268 0.000000 0.000000 0 0 /\\n Ikworker/R-ipv6_ 105 822.824530 E 822.859136 3.000000 0.002654 2 100 0.000000 0.002654 0.000000 0.000000 0 0 /\\n Ikworker/R-kstrp 112 825.212532 E 825.247134 3.000000 0.002925 2 100 0.000000 0.002925 0.000000 0.000000 0 0 /\\n I kworker/5:3 129 117769.318594 E 117772.202855 3.000000 235.775249 2391 120 0.000000 235.775249 0.000000 0.000000 0 0 /\\n Sirq/173-FRMW000 225 1210.147450 E 1213.127987 3.000000 0.350809 4 49 0.000000 0.350809 0.000000 0.000000 0 0 /\\n Sirq/174-PIXA385 227 1218.791465 E 1221.760797 3.000000 0.479717 4 49 0.000000 0.479717 0.000000 0.000000 0 0 /\\n Ssystemd-journal 315 97.974746 E 100.314873 3.000000 857.902450 2209 119 0.000000 857.902450 0.000000 0.000000 0 0 /system.slice/systemd-journald.service\\n S psimon 395 1769.940955 E 1772.934339 3.000000 0.031393 2 98 0.000000 0.031393 0.000000 0.000000 0 0 /\\n Sirq/198-iwlwifi 541 3741.717084 E 3744.716044 3.000000 11.549479 57 49 0.000000 11.549479 0.000000 0.000000 0 0 /\\n Ssystemd-resolve 665 141.503785 E 142.553853 3.000000 959.627251 1286 120 0.000000 959.627251 0.000000 0.000000 0 0 /system.slice/systemd-resolved.service\\n S dbus-daemon 796 589.654485 E 592.373915 3.000000 4178.779460 7853 120 0.000000 4178.779460 0.000000 0.000000 0 0 /system.slice/dbus.service\\n S pool-spawner 917 0.598568 E 2.374275 3.000000 0.139307 3 120 0.000000 0.139307 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S snapd 2921 150.000733 E 153.000733 3.000000 139.295594 243 120 0.000000 139.295594 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2924 179.219846 E 182.205093 3.000000 189.662824 222 120 0.000000 189.662824 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gmain 953 0.274092 E 3.243919 3.000000 0.030173 1 120 0.000000 0.030173 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 858 3.421352 E 6.394871 3.000000 1.493133 34 120 0.000000 1.493133 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S pool-spawner 877 0.968110 E 1.951424 3.000000 0.080466 1 120 0.000000 0.080466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gdbus 888 35.909079 E 38.365218 3.000000 26.761403 424 120 0.000000 26.761403 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 1096 5.835716 E 8.797854 3.000000 0.070490 2 120 0.000000 0.070490 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1108 28.360887 E 31.300470 3.000000 32.246881 160 120 0.000000 32.246881 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1113 1.961790 E 4.958126 3.000000 10.058361 153 120 0.000000 10.058361 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1115 1.948170 E 4.912969 3.000000 0.190242 20 120 0.000000 0.190242 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1447 2.681121 E 5.678513 3.000000 22.987360 343 120 0.000000 22.987360 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1505 835.081627 E 838.077146 3.000000 289.580231 7114 120 0.000000 289.580231 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 1485 3.989182 E 6.948338 3.000000 16.521431 131 120 0.000000 16.521431 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gmain 1494 2.779321 E 5.771975 3.000000 0.065744 3 120 0.000000 0.065744 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire-pulse 1516 26.233418 E 26.485480 3.000000 19.482467 71 109 0.000000 19.482467 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1537 1837.374618 E 1839.196926 3.000000 141.754506 780 120 0.000000 141.754506 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 1557 26.114410 E 28.921546 3.000000 4.480217 9 120 0.000000 4.480217 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1606 1838.498828 E 1841.491391 3.000000 20.057730 182 120 0.000000 20.057730 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1657 171.907138 E 174.896341 3.000000 206.971759 2083 120 0.000000 206.971759 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1669 344.620239 E 347.584650 3.000000 69.767271 2073 120 0.000000 69.767271 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2394 356.668054 E 359.629743 3.000000 47.946204 1790 120 0.000000 47.946204 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2525 895.636665 E 897.792822 3.000000 212.883401 4620 120 0.000000 212.883401 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2817 0.969895 E 2.006035 3.000000 0.078681 2 120 0.000000 0.078681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S pool-spawner 3023 33.403610 E 36.375096 3.000000 0.062687 2 120 0.000000 0.062687 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3036 49.145973 E 52.105602 3.000000 0.040371 1 120 0.000000 0.040371 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 3069 409.720330 E 411.795486 3.000000 3.645960 9 120 0.000000 3.645960 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3087 923.987178 E 926.920563 3.000000 0.691954 9 120 0.000000 0.691954 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3102 260.315442 E 263.308450 3.000000 0.043178 2 120 0.000000 0.043178 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3125 271.161595 E 274.095199 3.000000 0.721540 8 120 0.000000 0.721540 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3134 695.253497 E 698.160802 3.000000 18.015111 51 120 0.000000 18.015111 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3142 271.415232 E 274.408854 3.000000 0.052239 2 120 0.000000 0.052239 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3144 283.234823 E 286.195976 3.000000 0.156948 5 120 0.000000 0.156948 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3160 274.593574 E 277.561112 3.000000 0.032462 1 120 0.000000 0.032462 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3205 694.073828 E 697.059396 3.000000 0.539966 11 120 0.000000 0.539966 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3190 291.047172 E 294.041558 3.000000 0.069455 3 120 0.000000 0.069455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3191 291.082083 E 294.047172 3.000000 0.064373 2 120 0.000000 0.064373 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3171 277.903854 E 280.871361 3.000000 0.032493 1 120 0.000000 0.032493 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3208 289.768671 E 292.723596 3.000000 0.045075 1 120 0.000000 0.045075 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3341 1268.500237 E 1271.417686 3.000000 1.040132 11 120 0.000000 1.040132 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3347 710.823685 E 713.793865 3.000000 0.043738 2 120 0.000000 0.043738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3348 710.793865 E 713.767416 3.000000 0.026449 1 120 0.000000 0.026449 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-daemon 3346 949.332769 E 952.288245 3.000000 42.959636 73 120 0.000000 42.959636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11 3362 923.587585 E 926.310829 3.000000 45.522706 130 120 0.000000 45.522706 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3371 726.850047 E 729.799574 3.000000 0.076524 2 120 0.000000 0.076524 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sibus-engine-sim 3378 728.885393 E 731.863437 3.000000 4.625539 14 120 0.000000 4.625539 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3513 1.729229 E 4.725188 3.000000 0.034825 5 120 0.000000 0.034825 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S wireplumber 3472 11.462644 E 13.755284 3.000000 40.504423 63 120 0.000000 40.504423 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3555 8.358478 E 11.299358 3.000000 0.319715 3 120 0.000000 0.319715 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3550 7.088145 E 10.059456 3.000000 0.088092 2 120 0.000000 0.088092 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3553 7.326957 E 10.315957 3.000000 0.238812 7 120 0.000000 0.238812 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fusermount3 3556 8.289925 E 10.425022 3.000000 0.864903 1 120 0.000000 0.864903 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Ssnapd-desktop-i 3594 12.810910 E 15.645251 3.000000 16.524009 26 120 0.000000 16.524009 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gmain 3597 12.645251 E 15.600431 3.000000 0.044820 1 120 0.000000 0.044820 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S sshd 3711 4765.617366 E 4767.955237 3.000000 4222.197256 12339 120 0.000000 4222.197256 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S docker 5102 107.870447 E 110.830169 3.000000 5.213757 31 120 0.000000 5.213757 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5104 76.789473 E 79.661122 3.000000 0.935648 8 120 0.000000 0.935648 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5105 76.471056 E 79.122576 3.000000 0.348480 1 120 0.000000 0.348480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5139 130.459046 E 133.050501 3.000000 85.862257 410 120 0.000000 85.862257 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5212 345.929760 E 348.904077 3.000000 0.025683 1 120 0.000000 0.025683 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5221 346.057686 E 349.014905 3.000000 0.042781 1 120 0.000000 0.042781 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5237 817.591944 E 820.436804 3.000000 7.450117 58 120 0.000000 7.450117 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5239 318.088842 E 321.070226 3.000000 0.081546 6 120 0.000000 0.081546 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5270 817.436804 E 820.329571 3.000000 74.217333 174 120 0.000000 74.217333 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5396 393.299699 E 396.076725 3.000000 0.339736 7 120 0.000000 0.339736 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5401 887.629550 E 890.618610 3.000000 1.097358 27 120 0.000000 1.097358 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5405 356.859342 E 359.855343 3.000000 1.795184 14 120 0.000000 1.795184 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5409 356.858058 E 359.853277 3.000000 0.086967 4 120 0.000000 0.086967 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5410 356.739028 E 359.714574 3.000000 0.024454 1 120 0.000000 0.024454 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5419 323.414770 E 326.408620 3.000000 2.963462 8 120 0.000000 2.963462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5421 323.427369 E 326.411167 3.000000 0.463860 15 120 0.000000 0.463860 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5423 821.583660 E 824.425824 3.000000 80.094428 177 120 0.000000 80.094428 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5454 327.251540 E 330.239598 3.000000 0.078194 9 120 0.000000 0.078194 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5539 821.425824 E 823.243774 3.000000 64.618765 165 120 0.000000 64.618765 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5563 4.567941 E 7.480591 3.000000 6.436335 18 120 0.000000 6.436335 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5614 1204.439296 E 1207.439296 3.000000 25.601066 7 120 0.000000 25.601066 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5617 1206.891768 E 1209.822325 3.000000 28.034014 9 120 0.000000 28.034014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5619 1208.780352 E 1210.861964 3.000000 29.914255 9 120 0.000000 29.914255 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5608 1185.932477 E 1188.922565 3.000000 37.946501 14 120 0.000000 37.946501 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5672 1995.255322 E 1995.274003 3.000000 73.850813 20 120 0.000000 73.850813 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5641 1768.202285 E 1771.193258 3.000000 54.929183 14 120 0.000000 54.929183 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5695 2071.651562 E 2071.688139 3.000000 32.936801 11 120 0.000000 32.936801 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6951 3276.159243 E 3279.007946 3.000000 6.751696 107 120 0.000000 6.751696 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5637 1539.174198 E 1540.010364 3.000000 38.326835 12 120 0.000000 38.326835 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5638 1538.793722 E 1540.152260 3.000000 37.736919 12 120 0.000000 37.736919 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5709 2084.464804 E 2087.450225 3.000000 29.991031 9 120 0.000000 29.991031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 8794 11043.388259 E 11046.241027 3.000000 8.375659 143 120 0.000000 8.375659 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5654 2046.336174 E 2049.326048 3.000000 38.012486 12 120 0.000000 38.012486 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5657 1803.954929 E 1805.989704 3.000000 38.959841 12 120 0.000000 38.959841 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5659 1807.015254 E 1809.026693 3.000000 42.007189 11 120 0.000000 42.007189 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5714 2109.823685 E 2109.851682 3.000000 36.490008 12 120 0.000000 36.490008 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5577 11358.656161 E 11361.593699 3.000000 7063.469321 11902 120 0.000000 7063.469321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6345 3187.769027 E 3190.605767 3.000000 11.445595 34 120 0.000000 11.445595 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6359 117.162354 E 120.115087 3.000000 6.642134 19 120 0.000000 6.642134 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6361 28.804050 E 31.622006 3.000000 6.682534 15 120 0.000000 6.682534 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/u17:1 7565 108539.619300 E 108539.653039 3.000000 566.174467 8892 100 0.000000 566.174467 0.000000 0.000000 0 0 /\\n I kworker/5:1 7621 114289.159029 E 114292.089967 3.000000 0.298700 8 120 0.000000 0.298700 0.000000 0.000000 0 0 /\\n I kworker/u16:0 8019 118945.026714 E 118947.984598 3.000000 18.875506 174 120 0.000000 18.875506 0.000000 0.000000 0 0 /\\n I kworker/5:0 8172 121291.306832 E 121294.299597 3.000000 52.871558 296 120 0.000000 52.871558 0.000000 0.000000 0 0 /\\n I kworker/5:2 8452 114289.191206 E 114292.174286 3.000000 0.199700 4 120 0.000000 0.199700 0.000000 0.000000 0 0 /\\n S python3 8904 4750.129192 E 4752.656580 3.000000 110.689873 11 120 0.000000 110.689873 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 8820 158.945734 E 161.911772 3.000000 3.852390 14 120 0.000000 3.852390 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n>R python3 9047 4802.488605 E 4802.976716 3.000000 26.928340 24 120 0.000000 26.928340 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#6, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 238400\\n .nr_uninterruptible : 118\\n .next_balance : 4296.145595\\n .curr->pid : 0\\n .clock : 1478482.896397\\n .clock_task : 1478482.896397\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[6]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3794.155518\\n .avg_vruntime : 3794.155518\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2332\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478428.472978\\n .se->vruntime : 15076.536406\\n .se->sum_exec_runtime : 3800.522221\\n .se->load.weight : 1043564\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2309.454607\\n .avg_vruntime : 2309.454607\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478206.552511\\n .se->vruntime : 3842.684658\\n .se->sum_exec_runtime : 2343.647473\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3842.684658\\n .avg_vruntime : 3842.684658\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478206.552511\\n .se->vruntime : 22630.521343\\n .se->sum_exec_runtime : 2459.070248\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1380.217883\\n .avg_vruntime : 1380.217883\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478465.714635\\n .se->vruntime : 88073.692903\\n .se->sum_exec_runtime : 1382.950926\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 149.204574\\n .avg_vruntime : 149.204574\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478103.944283\\n .se->vruntime : 88062.748502\\n .se->sum_exec_runtime : 151.607626\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 62.722879\\n .avg_vruntime : 62.722879\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.398083\\n .se->vruntime : 88063.411663\\n .se->sum_exec_runtime : 64.627699\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9775.679860\\n .avg_vruntime : 9775.679860\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478456.464826\\n .se->vruntime : 88073.673466\\n .se->sum_exec_runtime : 10331.768927\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5847.475004\\n .avg_vruntime : 5847.475004\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478200.424989\\n .se->vruntime : 88073.464958\\n .se->sum_exec_runtime : 5848.543123\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 746.451903\\n .avg_vruntime : 746.451903\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478192.139333\\n .se->vruntime : 88072.195202\\n .se->sum_exec_runtime : 758.280811\\n .se->load.weight : 161319\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 768.241420\\n .avg_vruntime : 768.241420\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.023932\\n .se->vruntime : 88073.137740\\n .se->sum_exec_runtime : 792.973788\\n .se->load.weight : 166634\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69.621641\\n .avg_vruntime : 69.621641\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.329385\\n .se->vruntime : 88073.563436\\n .se->sum_exec_runtime : 71.188951\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 88073.692903\\n .avg_vruntime : 88073.692903\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478465.714635\\n .se->vruntime : 123822.853950\\n .se->sum_exec_runtime : 33162.227815\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15076.536406\\n .avg_vruntime : 15076.536406\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 778\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478428.472978\\n .se->vruntime : 22873.449179\\n .se->sum_exec_runtime : 4079.474612\\n .se->load.weight : 630819\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 22873.449179\\n .avg_vruntime : 22873.449179\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 846\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478428.472978\\n .se->vruntime : 123822.654523\\n .se->sum_exec_runtime : 6915.132659\\n .se->load.weight : 490510\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 123822.853950\\n .avg_vruntime : 123822.853950\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 2\\n .runnable_avg : 2\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[6]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[6]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S kthreadd 2 121461.503189 E 121464.273977 3.000000 10.456211 243 120 0.000000 10.456211 0.000000 0.000000 0 0 /\\n S cpuhp/6 51 8615.222785 E 8618.158454 3.000000 0.252486 26 120 0.000000 0.252486 0.000000 0.000000 0 0 /\\n S idle_inject/6 52 -1.048596 E 1.201404 2.250000 0.001435 3 49 0.000000 0.001435 0.000000 0.000000 0 0 /\\n S migration/6 53 3.285100 E 5.534388 2.250000 182.220148 442 0 0.000000 182.220148 0.000000 0.000000 0 0 /\\n S ksoftirqd/6 54 123694.499959 E 123697.359757 3.000000 29.433753 817 120 0.000000 29.433753 0.000000 0.000000 0 0 /\\n I kworker/6:0H 56 122009.125190 E 122009.159403 3.000000 8.643178 498 100 0.000000 8.643178 0.000000 0.000000 0 0 /\\n S irq/130-pciehp 97 0.333820 E 2.665268 3.000000 0.005759 3 49 0.000000 0.005759 0.000000 0.000000 0 0 /\\n I kworker/6:1H 104 0.901750 E 0.936338 3.000000 0.024295 2 100 0.000000 0.024295 0.000000 0.000000 0 0 /\\n Ikworker/R-ext4- 265 715.149068 E 715.183650 3.000000 0.016782 2 100 0.000000 0.016782 0.000000 0.000000 0 0 /\\n I kworker/u16:5 423 119530.453004 E 119533.175963 3.000000 450.396024 7169 120 0.000000 450.396024 0.000000 0.000000 0 0 /\\n Sirq/199-iwlwifi 542 3741.720024 E 3744.718960 3.000000 5.509304 53 49 0.000000 5.509304 0.000000 0.000000 0 0 /\\n Siio-sensor-prox 804 51.794222 E 54.650306 3.000000 342.582748 667 120 0.000000 342.582748 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S pool-spawner 931 3.995045 E 6.943176 3.000000 0.051869 1 120 0.000000 0.051869 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S snapd 849 447.244801 E 450.239176 3.000000 363.295466 17539 120 0.000000 363.295466 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1045 246.848037 E 249.653279 3.000000 94.409312 356 120 0.000000 94.409312 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2920 446.948127 E 449.920769 3.000000 87.973430 250 120 0.000000 87.973430 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 958 9.238449 E 12.208952 3.000000 0.475075 10 120 0.000000 0.475075 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 851 1380.217883 E 1383.198446 3.000000 4287.827284 58854 120 0.000000 4287.827284 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 949 3.796978 E 6.673936 3.000000 0.123042 1 120 0.000000 0.123042 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 951 1380.198446 E 1383.186284 3.000000 2752.953346 33921 120 0.000000 2752.953346 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 1112 5.262021 E 8.244316 3.000000 0.017705 1 120 0.000000 0.017705 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gdbus 906 62.722879 E 65.511598 3.000000 105.707492 406 120 0.000000 105.707492 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S probing-thread 1075 6.567609 E 9.544668 3.000000 0.022941 1 120 0.000000 0.022941 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 937 1.153308 E 4.086953 3.000000 0.098542 2 120 0.000000 0.098542 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S in:imklog 955 69.050507 E 71.746852 3.000000 17.742635 181 120 0.000000 17.742635 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S rs:main Q:Reg 956 69.621641 E 72.604687 3.000000 151.466109 2941 120 0.000000 151.466109 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S upowerd 1086 115.613512 E 117.643746 3.000000 303.608779 228 120 0.000000 303.608779 0.000000 0.000000 0 0 /system.slice/upower.service\\n S psimon 1430 9260.147662 E 9263.146878 3.000000 0.006730 2 98 0.000000 0.006730 0.000000 0.000000 0 0 /\\n S containerd 1474 768.241420 E 771.154742 3.000000 260.168589 6972 120 0.000000 260.168589 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S systemd 1499 92.091755 E 93.990391 3.000000 1855.125383 759 120 0.000000 1855.125383 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S module-rt 1530 2.618657 E 5.543553 3.000000 0.223127 6 120 0.000000 0.223127 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sdbus-run-sessio 1533 0.258773 E 2.587285 3.000000 1.487986 5 120 0.000000 1.487986 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1549 15.843335 E 18.772392 3.000000 17.820417 224 120 0.000000 17.820417 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S rtkit-daemon 1550 -1.032441 E 2.697765 3.000000 12.372671 199 0 0.000000 12.372671 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S gmain 1566 17.297077 E 20.277928 3.000000 0.097746 7 120 0.000000 0.097746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1570 17.355420 E 20.297077 3.000000 0.588370 21 120 0.000000 0.588370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 1601 2306.381196 E 2308.202272 3.000000 924.311198 2626 120 0.000000 924.311198 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1603 2304.943180 E 2307.917706 3.000000 20.319276 195 120 0.000000 20.319276 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3029 275.589042 E 276.659165 3.000000 15.079471 7 120 0.000000 15.079471 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S krfcommd 1621 10074.755342 E 10075.075292 3.000000 0.065550 2 110 0.000000 0.065550 0.000000 0.000000 0 0 /\\n S dockerd 1667 360.733205 E 363.572264 3.000000 44.912651 1440 120 0.000000 44.912651 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1668 10.959996 E 13.909631 3.000000 0.136753 4 120 0.000000 0.136753 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1671 376.622448 E 379.612498 3.000000 35.314543 1107 120 0.000000 35.314543 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2406 742.220015 E 744.196650 3.000000 366.619528 7269 120 0.000000 366.619528 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1659 1.170927 E 4.116025 3.000000 3.910708 30 120 0.000000 3.910708 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S sshd 1702 74.518561 E 77.246586 3.000000 11.486317 11 120 0.000000 11.486317 0.000000 0.000000 0 0 /system.slice/ssh.service\\n Scontainerd-shim 2398 30.228595 E 33.220919 3.000000 3.863503 51 120 0.000000 3.863503 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2400 742.618206 E 745.436102 3.000000 11.884249 417 120 0.000000 11.884249 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2404 742.436102 E 745.241822 3.000000 63.645045 144 120 0.000000 63.645045 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2417 28.278836 E 31.246599 3.000000 0.032237 1 120 0.000000 0.032237 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2418 30.220839 E 33.148343 3.000000 0.624572 15 120 0.000000 0.624572 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2717 7.476168 E 10.461486 3.000000 28.234681 817 120 0.000000 28.234681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2724 8.330328 E 11.312981 3.000000 0.730104 41 120 0.000000 0.730104 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2729 0.009183 E 2.987065 3.000000 0.474507 16 120 0.000000 0.474507 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3037 69.004645 E 71.977650 3.000000 0.026995 1 120 0.000000 0.026995 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3083 288.025683 E 289.715393 3.000000 1.607031 8 120 0.000000 1.607031 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3088 286.715393 E 289.284690 3.000000 1.401843 9 120 0.000000 1.401843 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3124 87.455847 E 90.416578 3.000000 0.039269 1 120 0.000000 0.039269 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3131 302.640897 E 305.308430 3.000000 2.994609 50 120 0.000000 2.994609 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3158 93.881548 E 96.817284 3.000000 0.064264 1 120 0.000000 0.064264 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-housekeepin 3169 2303.719789 E 2306.290284 3.000000 459.513711 175 120 0.000000 459.513711 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3182 109.126031 E 111.562635 3.000000 0.591888 2 120 0.000000 0.591888 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3184 108.724420 E 111.678855 3.000000 0.093578 2 120 0.000000 0.093578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3216 109.368449 E 112.350997 3.000000 0.217820 14 120 0.000000 0.217820 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3213 602.863968 E 605.510516 3.000000 272.558231 744 120 0.000000 272.558231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3293 586.573053 E 589.290637 3.000000 24.862703 32 120 0.000000 24.862703 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3337 606.691952 E 609.593211 3.000000 1.370128 13 120 0.000000 1.370128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3338 606.814834 E 609.691952 3.000000 1.139504 13 120 0.000000 1.139504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S module-rt 3510 4.969118 E 7.891565 3.000000 0.240480 6 120 0.000000 0.240480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3523 5.394138 E 8.306091 3.000000 0.426467 6 120 0.000000 0.426467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3546 5.427172 E 8.394138 3.000000 0.089890 2 120 0.000000 0.089890 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3548 5.547188 E 8.427172 3.000000 0.773129 24 120 0.000000 0.773129 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 4749 16.047752 E 18.987863 3.000000 0.059889 1 120 0.000000 0.059889 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/6:0 4983 123457.589336 E 123460.548880 3.000000 251.140123 2718 120 0.000000 251.140123 0.000000 0.000000 0 0 /\\n S docker 5106 161.908508 E 163.889126 3.000000 62.445277 43 120 0.000000 62.445277 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5126 176.890355 E 179.723271 3.000000 40.133942 172 120 0.000000 40.133942 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5213 736.111965 E 739.096508 3.000000 10.405261 576 120 0.000000 10.405261 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5240 265.802650 E 268.788465 3.000000 0.020995 2 120 0.000000 0.020995 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5243 266.286329 E 269.275178 3.000000 0.261505 4 120 0.000000 0.261505 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5264 273.123925 E 276.097681 3.000000 1.821770 25 120 0.000000 1.821770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5266 267.028584 E 270.019464 3.000000 0.210716 13 120 0.000000 0.210716 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5339 747.181780 E 750.089905 3.000000 80.891939 305 120 0.000000 80.891939 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6330 712.058983 E 715.010510 3.000000 2.116752 10 120 0.000000 2.116752 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5422 750.557305 E 753.486573 3.000000 69.674627 154 120 0.000000 69.674627 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5450 279.103396 E 282.098400 3.000000 2.396339 8 120 0.000000 2.396339 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5453 754.621956 E 757.487651 3.000000 40.732460 138 120 0.000000 40.732460 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5604 954.763097 E 957.751202 3.000000 28.240943 116 120 0.000000 28.240943 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5663 1792.640288 E 1795.640288 3.000000 38.952545 12 120 0.000000 38.952545 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5668 1789.732642 E 1791.724291 3.000000 35.988177 10 120 0.000000 35.988177 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5571 9775.679860 E 9778.590039 3.000000 7587.469911 11970 120 0.000000 7587.469911 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5606 969.507874 E 972.497742 3.000000 25.491566 11 120 0.000000 25.491566 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5609 971.056429 E 974.046014 3.000000 27.020193 26 120 0.000000 27.020193 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5610 971.458654 E 974.453476 3.000000 27.417031 12 120 0.000000 27.417031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5707 1930.771185 E 1933.761817 3.000000 30.988047 9 120 0.000000 30.988047 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6332 7107.306165 E 7109.972962 3.000000 1.236847 6 120 0.000000 1.236847 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5628 1001.868572 E 1004.809337 3.000000 27.930046 12 120 0.000000 27.930046 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5629 1002.170072 E 1005.109190 3.000000 33.107018 10 120 0.000000 33.107018 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5679 1895.668218 E 1898.660660 3.000000 32.971433 10 120 0.000000 32.971433 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5683 1896.759957 E 1898.798855 3.000000 34.012241 10 120 0.000000 34.012241 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5720 1943.308345 E 1946.308345 3.000000 26.777888 7 120 0.000000 26.777888 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5723 1942.666364 E 1944.688960 3.000000 26.120826 8 120 0.000000 26.120826 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6338 3080.378005 E 3083.193564 3.000000 9.671179 24 120 0.000000 9.671179 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5620 234.680396 E 237.623322 3.000000 109.511939 523 120 0.000000 109.511939 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6357 287.175570 E 290.141373 3.000000 6.697301 20 120 0.000000 6.697301 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6954 97.530568 E 100.452191 3.000000 6.320513 15 120 0.000000 6.320513 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n SGUsbEventThread 7552 122.697656 E 125.559037 3.000000 49.671176 486 120 0.000000 49.671176 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/6:1 7633 121461.571646 E 121464.503189 3.000000 57.173778 409 120 0.000000 57.173778 0.000000 0.000000 0 0 /\\n I kworker/6:2 8811 123822.661243 E 123825.654523 3.000000 6.941914 92 120 0.000000 6.941914 0.000000 0.000000 0 0 /\\n S python3 8905 3559.997926 E 3560.512667 3.000000 110.457959 13 120 0.000000 110.457959 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#7, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 224770\\n .nr_uninterruptible : -73\\n .next_balance : 4296.145596\\n .curr->pid : 0\\n .clock : 1478482.976860\\n .clock_task : 1478482.976860\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[7]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5999.587807\\n .avg_vruntime : 5999.587807\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 185\\n .runnable_avg : 187\\n .util_avg : 187\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 185\\n .tg_load_avg : 2332\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.916043\\n .se->vruntime : 17423.523044\\n .se->sum_exec_runtime : 6007.272505\\n .se->load.weight : 102929\\n .se->avg.load_avg : 18\\n .se->avg.util_avg : 186\\n .se->avg.runnable_avg : 186\\n\\ncfs_rq[7]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 17423.523044\\n .avg_vruntime : 17423.523044\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 18\\n .runnable_avg : 186\\n .util_avg : 186\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 18\\n .tg_load_avg : 778\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.916043\\n .se->vruntime : 27107.758690\\n .se->sum_exec_runtime : 6208.805681\\n .se->load.weight : 55461\\n .se->avg.load_avg : 9\\n .se->avg.util_avg : 186\\n .se->avg.runnable_avg : 186\\n\\ncfs_rq[7]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 909.632865\\n .avg_vruntime : 909.632865\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.739331\\n .se->vruntime : 82250.536605\\n .se->sum_exec_runtime : 911.099672\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/systemd-hostnamed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2.602241\\n .avg_vruntime : 2.602241\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478113.426969\\n .se->vruntime : 82234.369672\\n .se->sum_exec_runtime : 3.650817\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 875.071481\\n .avg_vruntime : 875.071481\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.042582\\n .se->vruntime : 82250.400995\\n .se->sum_exec_runtime : 894.119667\\n .se->load.weight : 149242\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 834.727094\\n .avg_vruntime : 834.727094\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.087274\\n .se->vruntime : 82250.403945\\n .se->sum_exec_runtime : 847.102059\\n .se->load.weight : 123959\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/accounts-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 42.380818\\n .avg_vruntime : 42.380818\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.329021\\n .se->vruntime : 82250.512983\\n .se->sum_exec_runtime : 44.402844\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 82250.536605\\n .avg_vruntime : 82250.536605\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.739331\\n .se->vruntime : 131249.579862\\n .se->sum_exec_runtime : 31637.392410\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 458.416533\\n .avg_vruntime : 458.416533\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478114.165787\\n .se->vruntime : 131152.920300\\n .se->sum_exec_runtime : 463.043717\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 27107.758690\\n .avg_vruntime : 27107.758690\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 10\\n .runnable_avg : 186\\n .util_avg : 186\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 10\\n .tg_load_avg : 846\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.916043\\n .se->vruntime : 131249.529253\\n .se->sum_exec_runtime : 11032.923991\\n .se->load.weight : 39403\\n .se->avg.load_avg : 7\\n .se->avg.util_avg : 186\\n .se->avg.runnable_avg : 186\\n\\ncfs_rq[7]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 131249.613391\\n .avg_vruntime : 131249.613391\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 24\\n .runnable_avg : 204\\n .util_avg : 187\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[7]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[7]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/7 57 8699.309454 E 8702.275668 3.000000 0.282413 26 120 0.000000 0.282413 0.000000 0.000000 0 0 /\\n S idle_inject/7 58 -1.048578 E 1.201422 2.250000 0.001352 3 49 0.000000 0.001352 0.000000 0.000000 0 0 /\\n S migration/7 59 3.384442 E 5.633801 2.250000 182.324631 435 0 0.000000 182.324631 0.000000 0.000000 0 0 /\\n S ksoftirqd/7 60 131247.031585 E 131250.028185 3.000000 20.515790 559 120 0.000000 20.515790 0.000000 0.000000 0 0 /\\n I kworker/7:0H 62 127976.360276 E 127976.394497 3.000000 10.979531 383 100 0.000000 10.979531 0.000000 0.000000 0 0 /\\n S kdevtmpfs 63 9325.916585 E 9328.878568 3.000000 8.686237 285 120 0.000000 8.686237 0.000000 0.000000 0 0 /\\n I kworker/u16:2 68 129289.259959 E 129292.198800 3.000000 304.043497 4370 120 0.000000 304.043497 0.000000 0.000000 0 0 /\\n S kswapd0 91 0.799409 E 2.181565 3.000000 0.034879 3 120 0.000000 0.034879 0.000000 0.000000 0 0 /\\n Secryptfs-kthrea 92 -1.016388 E 1.982554 3.000000 0.003235 2 120 0.000000 0.003235 0.000000 0.000000 0 0 /\\n I kworker/7:1H 186 54.192213 E 54.226778 3.000000 0.130453 2 100 0.000000 0.130453 0.000000 0.000000 0 0 /\\n I kworker/7:2 196 131249.613391 E 131252.579862 3.000000 250.775242 1307 120 0.000000 250.775242 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 220 260.331222 E 260.365822 3.000000 0.004276 2 100 0.000000 0.004276 0.000000 0.000000 0 0 /\\n Sirq/200-iwlwifi 543 3741.722959 E 3744.721790 3.000000 199.067755 1039 49 0.000000 199.067755 0.000000 0.000000 0 0 /\\n S gmain 930 42.380818 E 45.379611 3.000000 145.844655 1420 120 0.000000 145.844655 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gmain 932 5.984093 E 8.944402 3.000000 0.039691 1 120 0.000000 0.039691 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n Spower-profiles- 815 6.306037 E 8.958709 3.000000 42.592465 217 120 0.000000 42.592465 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 926 307.252609 E 310.213510 3.000000 119.548181 476 120 0.000000 119.548181 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S pool-spawner 952 0.552605 E 2.408198 3.000000 0.084044 2 120 0.000000 0.084044 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 838 909.632865 E 912.609243 3.000000 2133.921554 26958 120 0.000000 2133.921554 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gmain 874 8.807278 E 11.798542 3.000000 0.044986 2 120 0.000000 0.044986 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gmain 875 33.727890 E 36.645494 3.000000 53.497474 377 120 0.000000 53.497474 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gdbus 1104 39.518224 E 42.502553 3.000000 25.922954 100 120 0.000000 25.922954 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1120 -1.040991 E 1.951424 3.000000 0.113711 2 120 0.000000 0.113711 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sleep 1149 39.073787 E 39.604681 3.000000 7.280071 3 120 0.000000 7.280071 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1457 834.727094 E 837.725054 3.000000 379.813676 23086 120 0.000000 379.813676 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 5141 831.382357 E 833.657029 3.000000 87.349390 3578 120 0.000000 87.349390 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1493 0.604404 E 2.386227 3.000000 0.063206 3 120 0.000000 0.063206 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 1513 11.763534 E 14.743230 3.000000 12.527238 32 120 0.000000 12.527238 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1525 22.920219 E 25.873281 3.000000 11.380453 155 120 0.000000 11.380453 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sxdg-document-po 1548 22.929418 E 25.920219 3.000000 6.358220 29 120 0.000000 6.358220 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fuse mainloop 1567 19.595470 E 22.587394 3.000000 0.137316 5 120 0.000000 0.137316 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1558 18.304433 E 21.267038 3.000000 0.111080 2 120 0.000000 0.111080 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1604 3937.965769 E 3940.937861 3.000000 25.682158 186 120 0.000000 25.682158 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1665 387.715999 E 390.699088 3.000000 82.085644 1953 120 0.000000 82.085644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1673 0.023012 E 2.973127 3.000000 0.586838 20 120 0.000000 0.586838 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1700 875.071481 E 878.068687 3.000000 35.881283 1631 120 0.000000 35.881283 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1703 404.236973 E 407.207709 3.000000 45.206785 1218 120 0.000000 45.206785 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1662 21.144108 E 24.086104 3.000000 2.833795 30 120 0.000000 2.833795 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n Scontainerd-shim 2419 814.635101 E 816.812436 3.000000 88.387081 215 120 0.000000 88.387081 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 3726 814.805912 E 817.635101 3.000000 70.702776 145 120 0.000000 70.702776 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2763 39.709262 E 42.548054 3.000000 46.296903 138 120 0.000000 46.296903 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Sat-spi-bus-laun 3022 424.559544 E 427.521167 3.000000 3.389602 32 120 0.000000 3.389602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayla:traceq0 3268 365.997005 E 570.481954 3.000000 0.077355 4 139 0.000000 0.077355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3043 57.661466 E 60.641092 3.000000 4.306383 153 120 0.000000 4.306383 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gdbus 3073 207.807359 E 210.334322 3.000000 2.467237 14 120 0.000000 2.467237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3110 30.677526 E 33.625817 3.000000 0.075552 2 120 0.000000 0.075552 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3111 30.630162 E 33.591988 3.000000 0.038174 1 120 0.000000 0.038174 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sharing 3080 3938.637742 E 3941.098663 3.000000 270.234670 1646 120 0.000000 270.234670 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3135 50.522322 E 53.477690 3.000000 0.080793 3 120 0.000000 0.080793 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3143 51.324937 E 54.279106 3.000000 0.083157 2 120 0.000000 0.083157 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3189 52.566712 E 55.538836 3.000000 0.112926 2 120 0.000000 0.112926 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3211 1467.846211 E 1470.663093 3.000000 19.246036 145 120 0.000000 19.246036 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-screensaver 3149 357.671192 E 360.642427 3.000000 5.256014 42 120 0.000000 5.256014 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3164 357.647615 E 360.580773 3.000000 4.749683 47 120 0.000000 4.749683 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3207 353.954110 E 356.900350 3.000000 0.139738 3 120 0.000000 0.139738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3291 223.408768 E 226.036502 3.000000 1.806394 7 120 0.000000 1.806394 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3343 3092.494350 E 3095.348483 3.000000 1.291563 13 120 0.000000 1.291563 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11:sh0 3385 419.506573 E 422.481074 3.000000 0.025499 1 120 0.000000 0.025499 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3392 424.607454 E 427.559544 3.000000 0.047910 1 120 0.000000 0.047910 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3370 394.943027 E 397.936848 3.000000 0.039410 2 120 0.000000 0.039410 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3380 419.140487 E 422.107152 3.000000 0.033335 1 120 0.000000 0.033335 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3464 22.074172 E 25.016557 3.000000 16.001058 53 120 0.000000 16.001058 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3517 12.573708 E 15.568099 3.000000 0.023024 3 120 0.000000 0.023024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-document-po 3544 22.100524 E 25.096416 3.000000 5.893123 20 120 0.000000 5.893123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3557 22.144924 E 25.141339 3.000000 0.142775 5 120 0.000000 0.142775 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3558 22.141339 E 25.132316 3.000000 0.068673 3 120 0.000000 0.068673 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3598 3.360579 E 6.033303 3.000000 11.821224 56 120 0.000000 11.821224 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S bash 3712 5663.334123 E 5666.334123 3.000000 300.514467 657 120 0.000000 300.514467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n I kworker/7:0 5028 127693.365863 E 127696.353044 3.000000 282.688376 1699 120 0.000000 282.688376 0.000000 0.000000 0 0 /\\n S docker-compose 5130 32.710798 E 35.321772 3.000000 4.743828 75 120 0.000000 4.743828 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5210 861.248781 E 864.231830 3.000000 56.542744 1101 120 0.000000 56.542744 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5731 724.907868 E 727.900010 3.000000 0.466392 18 120 0.000000 0.466392 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5214 396.628965 E 399.619883 3.000000 1.632861 6 120 0.000000 1.632861 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5216 396.205006 E 399.151410 3.000000 0.149899 4 120 0.000000 0.149899 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5217 396.329416 E 399.319519 3.000000 0.046450 2 120 0.000000 0.046450 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5218 396.450772 E 399.445603 3.000000 0.020033 2 120 0.000000 0.020033 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5219 396.731794 E 399.686069 3.000000 0.045725 1 120 0.000000 0.045725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5222 396.826857 E 399.811763 3.000000 0.015094 1 120 0.000000 0.015094 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5235 270.215607 E 273.195321 3.000000 2.769908 8 120 0.000000 2.769908 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7610 819.136198 E 822.071243 3.000000 44.792622 80 120 0.000000 44.792622 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6177 822.880464 E 824.980765 3.000000 47.431312 81 120 0.000000 47.431312 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_aof 5372 6.171250 E 9.150339 3.000000 0.020911 1 120 0.000000 0.020911 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5395 843.892232 E 846.834651 3.000000 4.892991 221 120 0.000000 4.892991 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5452 823.155666 E 826.044605 3.000000 9.061290 535 120 0.000000 9.061290 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5457 284.338260 E 287.332839 3.000000 0.005421 1 120 0.000000 0.005421 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5601 910.364125 E 913.358635 3.000000 41.347394 21 120 0.000000 41.347394 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5662 1681.165612 E 1681.188384 3.000000 52.890599 17 120 0.000000 52.890599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5690 1759.655576 E 1761.689682 3.000000 32.986562 10 120 0.000000 32.986562 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6346 5129.599606 E 5130.300726 3.000000 2.373161 4 120 0.000000 2.373161 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5611 927.013891 E 930.004534 3.000000 30.958221 12 120 0.000000 30.958221 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5673 1716.676043 E 1719.667802 3.000000 47.953219 14 120 0.000000 47.953219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5698 1774.551283 E 1776.580995 3.000000 33.736341 12 120 0.000000 33.736341 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6950 3585.432725 E 3588.280345 3.000000 9.846769 66 120 0.000000 9.846769 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5635 1287.816586 E 1288.577374 3.000000 38.206043 11 120 0.000000 38.206043 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5636 1287.895610 E 1290.746600 3.000000 38.107591 11 120 0.000000 38.107591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5627 989.132258 E 992.064464 3.000000 56.892128 21 120 0.000000 56.892128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5682 1750.007994 E 1752.998981 3.000000 35.980149 10 120 0.000000 35.980149 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6344 3198.674402 E 3201.541368 3.000000 11.659960 15 120 0.000000 11.659960 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5647 1753.844207 E 1756.837808 3.000000 23.001512 8 120 0.000000 23.001512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5650 1495.354451 E 1498.348112 3.000000 23.003437 7 120 0.000000 23.003437 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5651 1498.355809 E 1501.345904 3.000000 25.997880 8 120 0.000000 25.997880 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5653 1499.385527 E 1502.375556 3.000000 27.015431 8 120 0.000000 27.015431 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5721 1803.013378 E 1806.006859 3.000000 29.898894 9 120 0.000000 29.898894 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5722 1807.064009 E 1810.054337 3.000000 33.945514 12 120 0.000000 33.945514 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6336 5129.831449 E 5132.599606 3.000000 1.078567 6 120 0.000000 1.078567 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5624 279.028513 E 281.980614 3.000000 23.069037 166 120 0.000000 23.069037 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6349 266.713725 E 269.645614 3.000000 15.566291 25 120 0.000000 15.566291 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S libusb_event 7551 0.942863 E 1.951424 3.000000 0.105713 1 120 0.000000 0.105713 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/7:1 7636 124224.968731 E 124227.939001 3.000000 24.625998 181 120 0.000000 24.625998 0.000000 0.000000 0 0 /\\n I kworker/7:3 7899 124217.212175 E 124220.208838 3.000000 0.076763 2 120 0.000000 0.076763 0.000000 0.000000 0 0 /\\n S postgres 8796 271.985108 E 274.842989 3.000000 5.061939 13 120 0.000000 5.061939 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 8813 5999.587807 E 6002.563562 3.000000 869.634385 572 120 0.000000 869.634385 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Sjemalloc_bg_thd 8907 5758.293964 E 5761.238899 3.000000 0.055065 1 120 0.000000 0.055065 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Ssystemd-hostnam 8949 2.602241 E 3.859757 3.000000 440.967836 53 120 0.000000 440.967836 0.000000 0.000000 0 0 /system.slice/systemd-hostnamed.service\\n\\n"}, "Docker Version": "Client: Docker Engine - Community\\n Version: 27.2.1\\n API version: 1.47\\n Go version: go1.22.7\\n Git commit: 9e34c9b\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Context: default\\n\\nServer: Docker Engine - Community\\n Engine:\\n Version: 27.2.1\\n API version: 1.47 (minimum version 1.24)\\n Go version: go1.22.7\\n Git commit: 8b539b8\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Experimental: false\\n containerd:\\n Version: 1.7.21\\n GitCommit: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc:\\n Version: 1.1.13\\n GitCommit: v1.1.13-0-g58aa920\\n docker-init:\\n Version: 0.19.0\\n GitCommit: de40ad0\\n", "Hardware Model": "Laptop", "Virtualization": "Unknown", "CPU Utilization": 3.8, "Hardware Vendor": "Framework", "Hyper Threading": "1", "Hardware Details": "framebook\\n description: Notebook\\n product: Laptop (FRANBMCP0A)\\n vendor: Framework\\n version: AA\\n serial: FRANBMCPAA1484005R\\n width: 64 bits\\n capabilities: smbios-3.3.0 dmi-3.3.0 smp vsyscall32\\n configuration: administrator_password=disabled boot=normal chassis=notebook family=FRANBMCP power-on_password=disabled sku=FRANBMCP0A uuid=1cd24d0f-5c53-ec11-810d-283616200463\\n *-core\\n description: Motherboard\\n product: FRANBMCP0A\\n vendor: Framework\\n physical id: 0\\n version: AA\\n serial: FRANBMCPAA1484005R\\n slot: *\\n *-firmware\\n description: BIOS\\n vendor: INSYDE Corp.\\n physical id: 0\\n version: 03.19\\n date: 05/29/2023\\n size: 128KiB\\n capacity: 12MiB\\n capabilities: pci upgrade shadowing cdboot bootselect int9keyboard int10video acpi usb biosbootspecification uefi\\n *-cpu\\n description: CPU\\n product: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\\n vendor: Intel Corp.\\n physical id: 4\\n bus info: cpu@0\\n version: 6.140.1\\n serial: To Be Filled By O.E.M.\\n slot: U3E1\\n size: 975MHz\\n capacity: 4200MHz\\n width: 64 bits\\n clock: 100MHz\\n capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect md_clear ibt flush_l1d arch_capabilities cpufreq\\n configuration: cores=4 enabledcores=4 microcode=184 threads=8\\n *-cache:0\\n description: L1 cache\\n physical id: 6\\n slot: L1 Cache\\n size: 128KiB\\n capacity: 128KiB\\n capabilities: synchronous internal write-back instruction\\n configuration: level=1\\n *-cache:1\\n description: L2 cache\\n physical id: 7\\n slot: L2 Cache\\n size: 5MiB\\n capacity: 5MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=2\\n *-cache:2\\n description: L3 cache\\n physical id: 8\\n slot: L3 Cache\\n size: 8MiB\\n capacity: 8MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=3\\n *-cache\\n description: L1 cache\\n physical id: 5\\n slot: L1 Cache\\n size: 192KiB\\n capacity: 192KiB\\n capabilities: synchronous internal write-back data\\n configuration: level=1\\n *-memory\\n description: System Memory\\n physical id: 14\\n slot: System board or motherboard\\n size: 32GiB\\n *-bank:0\\n description: [empty]\\n physical id: 0\\n slot: Controller0-ChannelA-DIMM0\\n *-bank:1\\n description: SODIMM DDR4 Synchronous 3200 MHz (0.3 ns)\\n product: CT32G4SFD832A.M16FF\\n vendor: Crucial Technology\\n physical id: 1\\n serial: E63FE743\\n slot: Controller1-ChannelA-DIMM0\\n size: 32GiB\\n width: 64 bits\\n clock: 3200MHz (0.3ns)\\n *-pci\\n description: Host bridge\\n product: 11th Gen Core Processor Host Bridge/DRAM Registers\\n vendor: Intel Corporation\\n physical id: 100\\n bus info: pci@0000:00:00.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n *-display\\n description: VGA compatible controller\\n product: TigerLake-LP GT2 [Iris Xe Graphics]\\n vendor: Intel Corporation\\n physical id: 2\\n bus info: pci@0000:00:02.0\\n logical name: /dev/fb0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb\\n configuration: depth=32 driver=i915 latency=0 mode=2256x1504 resolution=2256,1504 visual=truecolor xres=2256 yres=1504\\n resources: iomemory:600-5ff iomemory:400-3ff irq:204 memory:605c000000-605cffffff memory:4000000000-400fffffff ioport:3000(size=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff\\n *-generic:0\\n description: Signal processing controller\\n product: TigerLake-LP Dynamic Tuning Processor Participant\\n vendor: Intel Corporation\\n physical id: 4\\n bus info: pci@0000:00:04.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: driver=proc_thermal latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d180000-605d19ffff\\n *-pci:0\\n description: PCI bridge\\n product: 11th Gen Core Processor PCIe Controller\\n vendor: Intel Corporation\\n physical id: 6\\n bus info: pci@0000:00:06.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:126 memory:7a300000-7a3fffff\\n *-nvme\\n description: NVMe device\\n product: WDS100T1X0E-00AFY0\\n vendor: Sandisk Corp\\n physical id: 0\\n bus info: pci@0000:01:00.0\\n logical name: /dev/nvme0\\n version: 614900WD\\n serial: 22047A801405\\n width: 64 bits\\n clock: 33MHz\\n capabilities: nvme pm msi msix pciexpress nvm_express bus_master cap_list\\n configuration: driver=nvme latency=0 nqn=nqn.2018-01.com.wdc:nguid:E8238FA6BF53-0001-001B448B45A2BCF6 state=live\\n resources: irq:16 memory:7a300000-7a303fff\\n *-namespace:0\\n description: NVMe disk\\n physical id: 0\\n logical name: hwmon2\\n *-namespace:1\\n description: NVMe disk\\n physical id: 2\\n logical name: /dev/ng0n1\\n *-namespace:2\\n description: NVMe disk\\n physical id: 1\\n bus info: nvme@0:1\\n logical name: /dev/nvme0n1\\n size: 931GiB (1TB)\\n capabilities: gpt-1.00 partitioned partitioned:gpt\\n configuration: guid=45dd4e4e-5082-4f7b-926f-7bfbac3490ba logicalsectorsize=512 sectorsize=512 wwid=eui.e8238fa6bf530001001b448b45a2bcf6\\n *-volume:0 UNCLAIMED\\n description: Windows FAT volume\\n vendor: MSDOS5.0\\n physical id: 1\\n bus info: nvme@0:1,1\\n version: FAT32\\n serial: 74bd-e763\\n size: 95MiB\\n capacity: 99MiB\\n capabilities: boot fat initialized\\n configuration: FATs=2 filesystem=fat name=EFI system partition\\n *-volume:1\\n description: reserved partition\\n vendor: Windows\\n physical id: 2\\n bus info: nvme@0:1,2\\n logical name: /dev/nvme0n1p2\\n serial: 0ea6d81a-270e-4676-b42f-41e3e89d8733\\n capacity: 15MiB\\n capabilities: nofs\\n configuration: name=Microsoft reserved partition\\n *-volume:2\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 3\\n bus info: nvme@0:1,3\\n logical name: /dev/nvme0n1p3\\n version: 3.1\\n serial: c851c6e2-393b-f34f-a874-3f47e3b4d22a\\n size: 465GiB\\n capacity: 465GiB\\n capabilities: ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:22:01 filesystem=ntfs name=Basic data partition state=clean\\n *-volume:3\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 4\\n bus info: nvme@0:1,4\\n logical name: /dev/nvme0n1p4\\n version: 3.1\\n serial: 4c29-9ee3\\n size: 523MiB\\n capacity: 523MiB\\n capabilities: boot precious ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:25:01 filesystem=ntfs state=clean\\n *-volume:4\\n description: EXT4 volume\\n vendor: Linux\\n physical id: 5\\n bus info: nvme@0:1,5\\n logical name: /dev/nvme0n1p5\\n logical name: /\\n logical name: /var/snap/firefox/common/host-hunspell\\n version: 1.0\\n serial: c6c4e62b-4240-443a-8feb-6001a7f1b7b5\\n size: 465GiB\\n capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized\\n configuration: created=2024-03-22 19:59:07 filesystem=ext4 lastmountpoint=/ modified=2024-09-12 18:36:24 mount.fstype=ext4 mount.options=ro,noexec,noatime,errors=remount-ro mounted=2024-09-12 18:36:25 state=mounted\\n *-pci:1\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0\\n vendor: Intel Corporation\\n physical id: 7\\n bus info: pci@0000:00:07.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:127 ioport:4000(size=4096) memory:7c000000-881fffff ioport:6000000000(size=469762048)\\n *-pci:2\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1\\n vendor: Intel Corporation\\n physical id: 7.1\\n bus info: pci@0000:00:07.1\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:128 ioport:5000(size=4096) memory:6e000000-7a1fffff ioport:6020000000(size=469762048)\\n *-pci:3\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2\\n vendor: Intel Corporation\\n physical id: 7.2\\n bus info: pci@0000:00:07.2\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:129 ioport:6000(size=4096) memory:60000000-6c1fffff ioport:6040000000(size=469762048)\\n *-pci:4\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3\\n vendor: Intel Corporation\\n physical id: 7.3\\n bus info: pci@0000:00:07.3\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:130 ioport:7000(size=4096) memory:52000000-5e1fffff ioport:6060000000(size=469762048)\\n *-generic:1 UNCLAIMED\\n description: System peripheral\\n product: GNA Scoring Accelerator module\\n vendor: Intel Corporation\\n physical id: 8\\n bus info: pci@0000:00:08.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff memory:605d1d8000-605d1d8fff\\n *-generic:2\\n description: Signal processing controller\\n product: Tigerlake Telemetry Aggregator Driver\\n vendor: Intel Corporation\\n physical id: a\\n bus info: pci@0000:00:0a.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress pm cap_list\\n configuration: driver=intel_vsec latency=0\\n resources: iomemory:600-5ff irq:0 memory:605d1c0000-605d1c7fff\\n *-usb:0\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 USB Controller\\n vendor: Intel Corporation\\n physical id: d\\n bus info: pci@0000:00:0d.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: iomemory:600-5ff irq:148 memory:605d1b0000-605d1bffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@1\\n logical name: usb1\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=1 speed=480Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@2\\n logical name: usb2\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-usb:1\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #0\\n vendor: Intel Corporation\\n physical id: d.2\\n bus info: pci@0000:00:0d.2\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d140000-605d17ffff memory:605d1d7000-605d1d7fff\\n *-usb:2\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #1\\n vendor: Intel Corporation\\n physical id: d.3\\n bus info: pci@0000:00:0d.3\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d100000-605d13ffff memory:605d1d6000-605d1d6fff\\n *-communication:0\\n description: Serial controller\\n product: Tiger Lake-LP Integrated Sensor Hub\\n vendor: Intel Corporation\\n physical id: 12\\n bus info: pci@0000:00:12.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm 8250 bus_master cap_list\\n configuration: driver=intel_ish_ipc latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1a0000-605d1affff\\n *-usb:3\\n description: USB controller\\n product: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller\\n vendor: Intel Corporation\\n physical id: 14\\n bus info: pci@0000:00:14.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: irq:156 memory:7a400000-7a40ffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@3\\n logical name: usb3\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=12 speed=480Mbit/s\\n *-usb:0\\n description: Human interface device\\n product: HDMI Expansion Card\\n vendor: Framework\\n physical id: 1\\n bus info: usb@3:1\\n version: 0.00\\n serial: 11AD1D0001DB3E1540120B00\\n capabilities: usb-2.01\\n configuration: driver=usbhid maxpower=100mA speed=12Mbit/s\\n *-usb:1\\n description: Video\\n product: Laptop Camera\\n vendor: Generic\\n physical id: 7\\n bus info: usb@3:7\\n version: 0.21\\n serial: 200901010001\\n capabilities: usb-2.01\\n configuration: driver=uvcvideo maxpower=300mA speed=480Mbit/s\\n *-usb:2 UNCLAIMED\\n description: Generic USB device\\n product: Goodix USB2.0 MISC\\n vendor: Goodix Technology Co., Ltd.\\n physical id: 9\\n bus info: usb@3:9\\n version: 1.00\\n serial: UID7D62CCAE_XXXX_MOC_B0\\n capabilities: usb-2.00\\n configuration: maxpower=100mA speed=12Mbit/s\\n *-usb:3\\n description: Bluetooth wireless interface\\n product: AX210 Bluetooth\\n vendor: Intel Corp.\\n physical id: a\\n bus info: usb@3:a\\n version: 0.00\\n capabilities: bluetooth usb-2.01\\n configuration: driver=btusb maxpower=100mA speed=12Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@4\\n logical name: usb4\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-memory UNCLAIMED\\n description: RAM memory\\n product: Tiger Lake-LP Shared SRAM\\n vendor: Intel Corporation\\n physical id: 14.2\\n bus info: pci@0000:00:14.2\\n version: 20\\n width: 64 bits\\n clock: 33MHz (30.3ns)\\n capabilities: pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff memory:605d1cc000-605d1cffff memory:605d1d5000-605d1d5fff\\n *-serial:0\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #0\\n vendor: Intel Corporation\\n physical id: 15\\n bus info: pci@0000:00:15.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:27 memory:4017000000-4017000fff\\n *-serial:1\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #1\\n vendor: Intel Corporation\\n physical id: 15.1\\n bus info: pci@0000:00:15.1\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:40 memory:4017001000-4017001fff\\n *-serial:2\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #3\\n vendor: Intel Corporation\\n physical id: 15.3\\n bus info: pci@0000:00:15.3\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:30 memory:4017002000-4017002fff\\n *-communication:1\\n description: Communication controller\\n product: Tiger Lake-LP Management Engine Interface\\n vendor: Intel Corporation\\n physical id: 16\\n bus info: pci@0000:00:16.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=mei_me latency=0\\n resources: iomemory:600-5ff irq:191 memory:605d1d1000-605d1d1fff\\n *-pci:5\\n description: PCI bridge\\n product: Tiger Lake-LP PCI Express Root Port #10\\n vendor: Intel Corporation\\n physical id: 1d\\n bus info: pci@0000:00:1d.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:131 memory:7a200000-7a2fffff\\n *-network\\n description: Wireless interface\\n product: Wi-Fi 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak]\\n vendor: Intel Corporation\\n physical id: 0\\n bus info: pci@0000:aa:00.0\\n logical name: wlp170s0\\n version: 1a\\n serial: 00:93:37:96:a0:14\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\\n configuration: broadcast=yes driver=iwlwifi driverversion=6.8.0-44-generic firmware=86.fb5c9aeb.0 ty-a0-gf-a0-86.uc ip=192.168.179.3 latency=0 link=yes multicast=yes wireless=IEEE 802.11\\n resources: irq:17 memory:7a200000-7a203fff\\n *-isa\\n description: ISA bridge\\n product: Tiger Lake-LP LPC Controller\\n vendor: Intel Corporation\\n physical id: 1f\\n bus info: pci@0000:00:1f.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: isa bus_master\\n configuration: latency=0\\n *-pnp00:00\\n product: PnP device PNP0303\\n physical id: 0\\n capabilities: pnp\\n configuration: driver=i8042 kbd\\n *-pnp00:01\\n product: PnP device PNP0f03\\n physical id: 1\\n capabilities: pnp\\n configuration: driver=i8042 aux\\n *-pnp00:02\\n product: PnP device PNP0c02\\n physical id: 2\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:03\\n product: PnP device PNP0c02\\n physical id: 3\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:04\\n product: PnP device PNP0c02\\n physical id: 4\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:05\\n product: PnP device PNP0c02\\n physical id: 5\\n capabilities: pnp\\n configuration: driver=system\\n *-multimedia\\n description: Audio device\\n product: Tiger Lake-LP Smart Sound Technology Audio Controller\\n vendor: Intel Corporation\\n physical id: 1f.3\\n bus info: pci@0000:00:1f.3\\n logical name: card0\\n logical name: /dev/snd/controlC0\\n logical name: /dev/snd/hwC0D0\\n logical name: /dev/snd/hwC0D2\\n logical name: /dev/snd/pcmC0D0c\\n logical name: /dev/snd/pcmC0D0p\\n logical name: /dev/snd/pcmC0D3p\\n logical name: /dev/snd/pcmC0D7p\\n logical name: /dev/snd/pcmC0D8p\\n logical name: /dev/snd/pcmC0D9p\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=snd_hda_intel latency=32\\n resources: iomemory:600-5ff iomemory:600-5ff irq:205 memory:605d1c8000-605d1cbfff memory:605d000000-605d0fffff\\n *-input:0\\n product: HDA Intel PCH Mic\\n physical id: 0\\n logical name: input12\\n logical name: /dev/input/event9\\n *-input:1\\n product: HDA Intel PCH Headphone\\n physical id: 1\\n logical name: input13\\n logical name: /dev/input/event10\\n *-input:2\\n product: HDA Intel PCH HDMI/DP,pcm=3\\n physical id: 2\\n logical name: input14\\n logical name: /dev/input/event11\\n *-input:3\\n product: HDA Intel PCH HDMI/DP,pcm=7\\n physical id: 3\\n logical name: input15\\n logical name: /dev/input/event12\\n *-input:4\\n product: HDA Intel PCH HDMI/DP,pcm=8\\n physical id: 4\\n logical name: input16\\n logical name: /dev/input/event13\\n *-input:5\\n product: HDA Intel PCH HDMI/DP,pcm=9\\n physical id: 5\\n logical name: input17\\n logical name: /dev/input/event14\\n *-serial:3\\n description: SMBus\\n product: Tiger Lake-LP SMBus Controller\\n vendor: Intel Corporation\\n physical id: 1f.4\\n bus info: pci@0000:00:1f.4\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n configuration: driver=i801_smbus latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1d0000-605d1d00ff ioport:efa0(size=32)\\n *-serial:4\\n description: Serial bus controller\\n product: Tiger Lake-LP SPI Controller\\n vendor: Intel Corporation\\n physical id: 1f.5\\n bus info: pci@0000:00:1f.5\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: bus_master\\n configuration: driver=intel-spi latency=0\\n resources: irq:0 memory:50400000-50400fff\\n *-battery\\n description: Lithium Ion Battery\\n product: FRANBBAT\\n vendor: FRANBBATA112610BG3\\n physical id: 1\\n version: 2021/7/5\\n serial: 0194\\n slot: Front\\n configuration: voltage=0.0V\\n *-power UNCLAIMED\\n description: OEM Define 1\\n product: OEM Define 5\\n vendor: OEM Define 2\\n physical id: 2\\n version: OEM Define 6\\n serial: OEM Define 3\\n capacity: 75mWh\\n *-input:0\\n product: Lid Switch\\n physical id: 3\\n logical name: input0\\n logical name: /dev/input/event0\\n capabilities: platform\\n *-input:1\\n product: Power Button\\n physical id: 4\\n logical name: input1\\n logical name: /dev/input/event1\\n capabilities: platform\\n *-input:2\\n product: PIXA3854:00 093A:0274 Touchpad\\n physical id: 5\\n logical name: input10\\n logical name: /dev/input/event6\\n logical name: /dev/input/mouse1\\n capabilities: i2c\\n *-input:3\\n product: Video Bus\\n physical id: 6\\n logical name: input11\\n logical name: /dev/input/event8\\n capabilities: platform\\n *-input:4\\n product: AT Translated Set 2 keyboard\\n physical id: 7\\n logical name: input2\\n logical name: /dev/input/event2\\n logical name: input2::capslock\\n logical name: input2::numlock\\n logical name: input2::scrolllock\\n capabilities: i8042\\n *-input:5\\n product: ImExPS/2 Generic Explorer Mouse\\n physical id: 8\\n logical name: input4\\n logical name: /dev/input/event7\\n logical name: /dev/input/mouse2\\n capabilities: i8042\\n *-input:6\\n product: FRMW0001:00 32AC:0006 Wireless Radio Control\\n physical id: 9\\n logical name: input5\\n logical name: /dev/input/event3\\n capabilities: i2c\\n *-input:7\\n product: FRMW0001:00 32AC:0006 Consumer Control\\n physical id: a\\n logical name: input6\\n logical name: /dev/input/event4\\n capabilities: i2c\\n *-input:8\\n product: PIXA3854:00 093A:0274 Mouse\\n physical id: b\\n logical name: input9\\n logical name: /dev/input/event5\\n logical name: /dev/input/mouse0\\n capabilities: i2c\\n", "Operating System": "Ubuntu 24.04.1 LTS", "Scaling Governor": "powersave", "CPU Complete Dump": {"/sys/devices/system/cpu/online": "0-7\\n", "/sys/devices/system/cpu/uevent": "", "/sys/devices/system/cpu/offline": "\\n", "/sys/devices/system/cpu/present": "0-7\\n", "/sys/devices/system/cpu/isolated": "\\n", "/sys/devices/system/cpu/modalias": "cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n", "/sys/devices/system/cpu/possible": "0-7\\n", "/sys/devices/system/cpu/nohz_full": " (null)\\n", "/sys/devices/system/cpu/kernel_max": "8191\\n", "/sys/devices/system/cpu/smt/active": "1\\n", "/sys/devices/system/cpu/cpu0/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu1/online": "1\\n", "/sys/devices/system/cpu/cpu1/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu2/online": "1\\n", "/sys/devices/system/cpu/cpu2/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu3/online": "1\\n", "/sys/devices/system/cpu/cpu3/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu4/online": "1\\n", "/sys/devices/system/cpu/cpu4/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu5/online": "1\\n", "/sys/devices/system/cpu/cpu5/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu6/online": "1\\n", "/sys/devices/system/cpu/cpu6/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu7/online": "1\\n", "/sys/devices/system/cpu/cpu7/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/power/async": "disabled\\n", "/sys/devices/system/cpu/smt/control": "on\\n", "/sys/devices/system/cpu/power/control": "auto\\n", "/sys/devices/system/cpu/hotplug/states": " 0: offline\\n 1: threads:prepare\\n 2: perf:prepare\\n 3: perf/x86:prepare\\n 8: x86/mce:dead\\n 9: virtio/net:dead\\n 11: slub:dead\\n 13: mm/writeback:dead\\n 14: mm/vmstat:dead\\n 15: softirq:dead\\n 20: irq_poll:dead\\n 21: block/softirq:dead\\n 22: block/bio:dead\\n 23: acpi/cpu-drv:dead\\n 25: block/mq:dead\\n 26: fs/buffer:dead\\n 27: printk:dead\\n 28: mm/memctrl:dead\\n 29: lib/percpu_cnt:dead\\n 30: lib/radix:dead\\n 31: mm/page_alloc:pcp\\n 32: net/dev:dead\\n 34: iommu/iova:dead\\n 36: padata:dead\\n 38: random:prepare\\n 39: workqueue:prepare\\n 41: hrtimers:prepare\\n 43: x86/x2apic:prepare\\n 44: smpcfd:prepare\\n 45: relay:prepare\\n 47: RCU/tree:prepare\\n 55: base/topology:prepare\\n 58: trace/RB:prepare\\n 59: mm/zsmalloc:prepare\\n 63: timers:prepare\\n 65: fork:vm_stack_cache\\n 66: crash/cpuhp\\n 86: cpu:kick_ap\\n 87: cpu:bringup\\n 88: idle:dead\\n 89: ap:offline\\n 90: x86/cachectrl:starting\\n 91: sched:starting\\n 92: RCU/tree:dying\\n104: perf/x86:starting\\n106: perf/x86/cstate:starting\\n137: smpcfd:dying\\n138: hrtimers:dying\\n141: ap:online\\n142: cpu:teardown\\n145: kvm/cpu:online\\n146: sched:waitempty\\n147: smpboot/threads:online\\n148: irq/affinity:online\\n149: block/mq:online\\n151: x86/intel/epb:online\\n152: perf:online\\n153: perf/x86:online\\n154: perf/x86/intel/uncore:online\\n157: perf/x86/rapl:online\\n158: perf/x86/cstate:online\\n184: lockup_detector:online\\n185: workqueue:online\\n186: random:online\\n187: RCU/tree:online\\n188: base/cacheinfo:online\\n189: x86/splitlock\\n190: mm/writeback:online\\n191: mm/vmstat:online\\n192: padata:online\\n193: mm/compaction:online\\n194: io-wq/online\\n195: lib/percpu_cnt:online\\n196: idle/intel:online\\n197: acpi/cpu-drv:online\\n198: virtio/net:online\\n199: x86/therm:online\\n200: cpufreq:online\\n201: leds/trigger:starting\\n202: x86/mce:online\\n203: x86/microcode:online\\n204: x86/resctrl/cat:online:\\n205: printk:online\\n206: trace/hwlat:online\\n207: trace/osnoise:online\\n208: swap_slots_cache\\n209: x86/msr:online\\n210: powercap/rapl:online\\n211: perf/x86/intel/i915:online\\n212: powercap/rapl:online\\n213: hwmon/coretemp:online\\n214: thermal/x86_pkg:online\\n215: platform/x86/uncore-freq:online\\n232: sched:active\\n233: online\\n", "/sys/devices/system/cpu/cpu0/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu1/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu2/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu3/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu4/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu5/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu6/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu7/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu0/cache/uevent": "", "/sys/devices/system/cpu/cpu0/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu1/cache/uevent": "", "/sys/devices/system/cpu/cpu1/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu2/cache/uevent": "", "/sys/devices/system/cpu/cpu2/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu3/cache/uevent": "", "/sys/devices/system/cpu/cpu3/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu4/cache/uevent": "", "/sys/devices/system/cpu/cpu4/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu5/cache/uevent": "", "/sys/devices/system/cpu/cpu5/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu6/cache/uevent": "", "/sys/devices/system/cpu/cpu6/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu7/cache/uevent": "", "/sys/devices/system/cpu/cpu7/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu0/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu0/power/control": "auto\\n", "/sys/devices/system/cpu/cpu1/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu1/power/control": "auto\\n", "/sys/devices/system/cpu/cpu2/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu2/power/control": "auto\\n", "/sys/devices/system/cpu/cpu3/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu3/power/control": "auto\\n", "/sys/devices/system/cpu/cpu4/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu4/power/control": "auto\\n", "/sys/devices/system/cpu/cpu5/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu5/power/control": "auto\\n", "/sys/devices/system/cpu/cpu6/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu6/power/control": "auto\\n", "/sys/devices/system/cpu/cpu7/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu7/power/control": "auto\\n", "/sys/devices/system/cpu/cpu0/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu1/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu2/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu3/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu4/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu5/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu6/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu7/hotplug/target": "233\\n", "/sys/devices/system/cpu/intel_pstate/status": "active\\n", "/sys/devices/system/cpu/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/vulnerabilities/mds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu0/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu2/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu3/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu4/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu6/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu7/topology/die_id": "0\\n", "/sys/devices/system/cpu/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/vulnerabilities/l1tf": "Not affected\\n", "/sys/devices/system/cpu/cpu0/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu2/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu3/topology/core_id": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu6/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu7/topology/core_id": "3\\n", "/sys/devices/system/cpu/intel_pstate/no_turbo": "0\\n", "/sys/devices/system/cpu/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/vulnerabilities/srbds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu0/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu0/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu0/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu0/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu0/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu0/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu1/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu1/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu1/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu1/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu1/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu1/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu2/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu2/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu2/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu2/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu2/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu2/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu3/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu3/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu3/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu3/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu3/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu3/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu4/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu4/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu4/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu4/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu4/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu4/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu5/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu5/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu5/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu5/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu5/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu5/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu6/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu6/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu6/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu6/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu6/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu6/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu7/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu7/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu7/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu7/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu7/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu7/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpuidle/current_driver": "intel_idle\\n", "/sys/devices/system/cpu/intel_pstate/turbo_pct": "47\\n", "/sys/devices/system/cpu/cpu0/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu0/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu1/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu1/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu2/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu3/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu3/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu4/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu4/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu5/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu5/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu6/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu7/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu7/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu0/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu0/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/time": "185624\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/time": "32432258\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/time": "43663241\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/time": "1334495367\\n", "/sys/devices/system/cpu/cpu0/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu1/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/time": "185829\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/time": "20653668\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/time": "19564904\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/time": "1376776470\\n", "/sys/devices/system/cpu/cpu1/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu2/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/time": "174094\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/time": "22496514\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/time": "26966640\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/time": "1368342807\\n", "/sys/devices/system/cpu/cpu2/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu3/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu3/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/time": "184629\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/time": "17481669\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/time": "15330817\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/time": "1401544639\\n", "/sys/devices/system/cpu/cpu3/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpu4/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu4/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/time": "156081\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/time": "15989801\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/time": "12238620\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/time": "1407276630\\n", "/sys/devices/system/cpu/cpu4/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu5/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/time": "182343\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/time": "18450635\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/time": "15207508\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/time": "1394633611\\n", "/sys/devices/system/cpu/cpu5/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu6/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/time": "166656\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/time": "15405820\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/time": "13361807\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/time": "1400318402\\n", "/sys/devices/system/cpu/cpu6/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu7/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu7/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/time": "177385\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/time": "16574715\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/time": "13502838\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/time": "1395803546\\n", "/sys/devices/system/cpu/cpu7/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpuidle/current_governor": "menu\\n", "/sys/devices/system/cpu/intel_pstate/num_pstates": "39\\n", "/sys/devices/system/cpu/vulnerabilities/meltdown": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/retbleed": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/below": "2890\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/usage": "3084\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/above": "1984\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/below": "20903\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/usage": "98502\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/above": "2498\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/below": "42\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/usage": "47116\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/above": "64383\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/usage": "145321\\n", "/sys/devices/system/cpu/cpu0/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/below": "3254\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/usage": "3399\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/above": "1736\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/below": "10773\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/usage": "83255\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/above": "1737\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/below": "34\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/usage": "21161\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/above": "22898\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/usage": "76685\\n", "/sys/devices/system/cpu/cpu1/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/below": "2913\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/usage": "3080\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/above": "2199\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/below": "10815\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/usage": "88874\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/above": "2774\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/below": "16\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/usage": "28941\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/above": "16072\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/usage": "89021\\n", "/sys/devices/system/cpu/cpu2/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/below": "3249\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/usage": "3557\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/above": "2352\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/below": "8804\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/usage": "75591\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/above": "1958\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/below": "48\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/usage": "16463\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/above": "12312\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/usage": "59036\\n", "/sys/devices/system/cpu/cpu3/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/below": "3227\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/usage": "3517\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/above": "1530\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/below": "7952\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/usage": "72308\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/above": "1238\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/below": "20\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/usage": "13191\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/above": "7646\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/usage": "45967\\n", "/sys/devices/system/cpu/cpu4/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/below": "3090\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/usage": "3239\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/above": "1853\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/below": "8718\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/usage": "78532\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/above": "1659\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/below": "39\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/usage": "16347\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/above": "9416\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/usage": "62169\\n", "/sys/devices/system/cpu/cpu5/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/below": "2903\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/usage": "3122\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/above": "2240\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/below": "7783\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/usage": "71131\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/above": "1385\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/below": "17\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/usage": "14373\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/above": "6920\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/usage": "54821\\n", "/sys/devices/system/cpu/cpu6/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/below": "3138\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/usage": "3491\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/above": "2448\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/below": "8787\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/usage": "72496\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/above": "1513\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/below": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/usage": "14534\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/above": "8278\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/usage": "48507\\n", "/sys/devices/system/cpu/cpu7/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/intel_pstate/max_perf_pct": "100\\n", "/sys/devices/system/cpu/intel_pstate/min_perf_pct": "9\\n", "/sys/devices/system/cpu/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu0/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu1/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu2/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu3/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu4/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu5/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu6/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu7/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v1": "Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v2": "Mitigation: Enhanced / Automatic IBRS; IBPB: conditional; RSB filling; PBRSB-eIBRS: SW sequence; BHI: SW loop, KVM: SW loop\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu0/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu1/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu2/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu3/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu4/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu5/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu6/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu7/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpuidle/available_governors": "ladder menu teo \\n", "/sys/devices/system/cpu/cpuidle/current_governor_ro": "menu\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/feedback_ctrs": "ref:206713170144 del:103243833905\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/feedback_ctrs": "ref:147525718128 del:81213703586\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/feedback_ctrs": "ref:146283138000 del:72929912153\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/feedback_ctrs": "ref:105116445696 del:51020196926\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/feedback_ctrs": "ref:101729938848 del:56758563656\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/feedback_ctrs": "ref:121482137712 del:61394518872\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/feedback_ctrs": "ref:117422405976 del:54962721983\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/feedback_ctrs": "ref:124934383200 del:57961819683\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpufreq/policy0/related_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/related_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/related_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/related_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/related_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/related_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/related_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/related_cpus": "7\\n", "/sys/devices/system/cpu/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpufreq/policy0/affected_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/affected_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/affected_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/affected_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/affected_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/affected_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/affected_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/affected_cpus": "7\\n", "/sys/devices/system/cpu/vulnerabilities/itlb_multihit": "Not affected\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu0/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu1/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu2/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu3/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu4/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu5/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu6/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu7/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy1/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy2/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy3/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy4/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy5/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy6/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy7/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/vulnerabilities/mmio_stale_data": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/tsx_async_abort": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq": "3799961\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_cur_freq": "400224\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_cur_freq": "795643\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_cur_freq": "400151\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_cur_freq": "784780\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_cur_freq": "400288\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu0/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/vulnerabilities/spec_store_bypass": "Mitigation: Speculative Store Bypass disabled via prctl\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu1/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu2/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu3/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu4/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu5/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu6/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu7/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_nonlinear_perf": "13\\n", "/sys/devices/system/cpu/vulnerabilities/gather_data_sampling": "Mitigation: Microcode\\n", "/sys/devices/system/cpu/vulnerabilities/spec_rstack_overflow": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/vulnerabilities/reg_file_data_sampling": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us": "315057209\\n", "/sys/devices/system/cpu/cpu0/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us": "15846041\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/min_freq_khz": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_min_freq_khz": "400000\\n"}, "Docker Containers": "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES", "Network Interfaces": "2: wlp170s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1456 qdisc noqueue state UP group default qlen 1000\\n link/ether 00:93:37:96:a0:14 brd ff:ff:ff:ff:ff:ff\\n--\\n4: br-5358121b016d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:31:4c:7c:39 brd ff:ff:ff:ff:ff:ff\\n--\\n5: br-6e0ae77042d6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:29:4c:03:1e brd ff:ff:ff:ff:ff:ff\\n--\\n6: br-7688b5ca7e2d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:e5:22:19:30 brd ff:ff:ff:ff:ff:ff\\n--\\n7: br-9ba2a39b0b1e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:f5:74:c1:66 brd ff:ff:ff:ff:ff:ff\\n--\\n8: br-ce560083466a: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:a4:f4:58:34 brd ff:ff:ff:ff:ff:ff\\n--\\n9: br-17d7b4ff19e9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:40:0a:a9:6e brd ff:ff:ff:ff:ff:ff\\n--\\n10: br-b8fe670a4cd7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:15:10:5f:b5 brd ff:ff:ff:ff:ff:ff\\n--\\n11: br-c26dcd3569f9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:53:0c:b7:f6 brd ff:ff:ff:ff:ff:ff\\n--\\n13: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:2f:19:92:44 brd ff:ff:ff:ff:ff:ff\\n--\\n15: veth4b2531f@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default \\n link/ether 16:4d:d1:07:e9:34 brd ff:ff:ff:ff:ff:ff link-netnsid 0\\n--\\n27: br-cd08359ec224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:cb:56:8d:7d brd ff:ff:ff:ff:ff:ff\\n--\\n29: veth4f67909@if28: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether c2:8b:74:ce:4b:f2 brd ff:ff:ff:ff:ff:ff link-netnsid 2\\n--\\n31: veth3d72cc1@if30: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 56:6f:f8:d3:95:47 brd ff:ff:ff:ff:ff:ff link-netnsid 1\\n--\\n33: veth888843b@if32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 72:81:21:75:96:2a brd ff:ff:ff:ff:ff:ff link-netnsid 3\\n--\\n35: veth0c4fb2f@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 1e:1a:b4:b7:47:13 brd ff:ff:ff:ff:ff:ff link-netnsid 4\\n", "Current Clocksource": "tsc", "RAPL Energy Filtering": "0\\n", "Installed Python Packages": "aiohappyeyeballs==2.4.0\\naiohttp==3.10.3\\naiosignal==1.3.1\\nalembic==1.13.2\\nannotated-types==0.7.0\\nanybadge==1.14.0\\nanyio==4.4.0\\nattrs==24.2.0\\ncertifi==2024.8.30\\ncharset-normalizer==3.3.2\\nclick==8.1.7\\ncolorlog==6.8.2\\ndeepdiff==7.0.1\\ndnspython==2.6.1\\ndocker==7.1.0\\nemail_validator==2.2.0\\nfastapi==0.112.0\\nfastapi-cli==0.0.5\\nfrozenlist==1.4.1\\ngreenlet==3.1.0\\ngunicorn==23.0.0\\nh11==0.14.0\\nhiredis==3.0.0\\nhttpcore==1.0.5\\nhttptools==0.6.1\\nhttpx==0.27.2\\nidna==3.8\\nJinja2==3.1.4\\njoblib==1.4.2\\nMako==1.3.5\\nmarkdown-it-py==3.0.0\\nMarkupSafe==2.1.5\\nmdurl==0.1.2\\nmultidict==6.1.0\\nnumpy==2.0.1\\nnvidia-nccl-cu12==2.22.3\\noptuna==3.6.1\\nordered-set==4.1.0\\norjson==3.10.7\\npackaging==24.1\\npandas==2.2.2\\nplotext==5.2.8\\npsutil==6.0.0\\npsycopg==3.2.1\\npsycopg-binary==3.2.1\\npsycopg-pool==3.2.2\\npyarrow==17.0.0\\npydantic==2.9.1\\npydantic_core==2.23.3\\nPygments==2.18.0\\npyserial==3.5\\npython-dateutil==2.9.0.post0\\npython-dotenv==1.0.1\\npython-multipart==0.0.9\\npytz==2024.2\\nPyYAML==6.0.2\\nredis==5.0.8\\nrequests==2.32.3\\nrich==13.8.1\\nschema==0.7.7\\nscikit-learn==1.5.1\\nscipy==1.14.0\\nshellingham==1.5.4\\nsix==1.16.0\\nsniffio==1.3.1\\nSQLAlchemy==2.0.34\\nstarlette==0.37.2\\nthreadpoolctl==3.5.0\\ntqdm==4.66.5\\ntyper==0.12.5\\ntyping_extensions==4.12.2\\ntzdata==2024.1\\nurllib3==2.2.2\\nuvicorn==0.30.6\\nuvicorn-worker==0.2.0\\nuvloop==0.20.0\\nwatchfiles==0.24.0\\nwebsockets==13.0.1\\nxgboost==2.1.0\\nyarl==1.11.1\\n", "Installed System Packages": "Desired=Unknown/Install/Remove/Purge/Hold\\n| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend\\n|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\\n||/ Name Version Architecture Description\\n+++-=============================================-==========================================-============-===================================================================================\\nii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information\\nii acl 2.3.2-1build1 amd64 access control list - utilities\\nii adduser 3.137ubuntu1 all add and remove users and groups\\nii adwaita-icon-theme 46.0-1 all default icon theme of GNOME\\nii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files\\nii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files\\nii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files\\nii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA\\nii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs\\nii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn\'t go by time\\nii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version\\nii apparmor 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 user-space parser utility for AppArmor\\nii apport 2.28.1-0ubuntu3.1 all automatically generate crash reports for debugging\\nii apport-core-dump-handler 2.28.1-0ubuntu3.1 all Kernel core dump handler for Apport\\nii apport-gtk 2.28.1-0ubuntu3.1 all GTK+ frontend for the apport crash report system\\nii apport-symptoms 0.25 all symptom scripts for apport\\nii appstream 1.0.2-1build6 amd64 Software component metadata management\\nii apt 2.7.14build2 amd64 commandline package manager\\nii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads\\nii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads\\nii apt-utils 2.7.14build2 amd64 package management related utility programs\\nii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service\\nii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients\\nii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker\\nii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell\\nii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)\\nii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)\\nii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon\\nii baobab 46.0-1build1 amd64 GNOME disk usage analyzer\\nii base-files 13ubuntu10.1 amd64 Debian base system miscellaneous files\\nii base-passwd 3.6.3build1 amd64 Debian base system master password and group files\\nii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell\\nii bash-completion 1:2.11-8 all programmable completion for the bash shell\\nii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language\\nii bind9-dnsutils 1:9.18.28-0ubuntu0.24.04.1 amd64 Clients provided with BIND 9\\nii bind9-host 1:9.18.28-0ubuntu0.24.04.1 amd64 DNS Lookup Utility\\nii bind9-libs:amd64 1:9.18.28-0ubuntu0.24.04.1 amd64 Shared Libraries used by BIND 9\\nii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities\\nii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities\\nii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target\\nii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons\\nii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS\\nii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon\\nii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices\\nii boot-repair 4ppa2081 all Graphical tool to repair boot problems\\nii boot-sav 4ppa2081 all Librairies for Boot-Info, OS-uninstaller and Boot-repair\\nii boot-sav-extra 4ppa2081 all Extra librairies for OS-uninstaller and Boot-repair\\nii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)\\nii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF\\nii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display\\nii bsdextrautils 2.39.3-9ubuntu6.1 amd64 extra utilities from 4.4BSD-Lite\\nii bsdutils 1:2.39.3-9ubuntu6.1 amd64 basic utilities from 4.4BSD-Lite\\nii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation\\nii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages\\nii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs\\nii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities\\nii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities\\nii ca-certificates 20240203 all Common CA certificates\\nii ca-certificates-java 20240118 all Common CA certificates (JKS keystore)\\nii cloud-guest-utils 0.33-1 all cloud guest utilities\\nii cloud-init 24.2-0ubuntu1~24.04.2 all initialization and customization tool for cloud instances\\nii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon\\nii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files\\nii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions\\nii console-setup 1.226ubuntu1 all console font and keymap setup program\\nii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup\\nii containerd.io 1.7.21-1 amd64 An open and reliable container runtime\\nii coreutils 9.4-3ubuntu6 amd64 GNU core utilities\\nii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files\\nii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)\\nii cpp-11 11.4.0-9ubuntu1 amd64 GNU C preprocessor\\nii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor\\nii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu\\nii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture\\nii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2\\nii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon\\nii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon\'s configuration files\\nii cups 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface\\nii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed\\nii cups-bsd 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - BSD commands\\nii cups-client 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - client programs (SysV)\\nii cups-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - common files\\nii cups-core-drivers 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - driverless printing\\nii cups-daemon 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - daemon\\nii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package\\nii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing\\nii cups-ipp-utils 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities\\nii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges\\nii cups-ppdc 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities\\nii cups-server-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - server common files\\nii curl 8.5.0-2ubuntu10.3 amd64 command line tool for transferring data with URL syntax\\nii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell\\nii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)\\nii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)\\nii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)\\nii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)\\nii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)\\nii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)\\nii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator\\nii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities\\nii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end\\nii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service\\nii debconf 1.5.86ubuntu1 all Debian configuration management system\\nii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf\\nii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian\\nii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files\\nii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)\\nii dictionaries-common 1.29.7 all spelling dictionaries - common utilities\\nii diffutils 1:3.10-1build1 amd64 File comparison utilities\\nii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service\\nii distro-info 1.7build1 amd64 provides information about the distributions\' releases\\nii distro-info-data 0.60ubuntu0.1 all information about the distributions\' releases (data files)\\nii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder\\nii dmsetup 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme\\nii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key\\nii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable\\nii docbook-xml 4.5-12 all standard XML documentation system for software and systems\\nii docker-buildx-plugin 0.16.2-1~ubuntu.22.04~jammy amd64 Docker Buildx cli plugin.\\nii docker-ce 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker: the open-source application container engine\\nii docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine\\nii docker-ce-rootless-extras 5:27.2.1-1~ubuntu.22.04~jammy amd64 Rootless support for Docker.\\nii docker-compose-plugin 2.29.2-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.\\nii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems\\nii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system\\nii dpkg-dev 1.22.6ubuntu6.1 all Debian package development tools\\nii dracut-install 060+5-1ubuntu3.2 amd64 dracut is an event driven initramfs infrastructure (dracut-install)\\nii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities\\nii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends\\nii ed 1.20.1-1 amd64 classic UNIX line editor\\nii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager\\nii eject 2.39.3-9ubuntu6.1 amd64 ejects CDs and operates CD-Changers under Linux\\nii emacsen-common 3.0.5 all Common facilities for all emacsen\\nii enchant-2 2.3.3-2build2 amd64 Wrapper for various spell checker engines (binary programs)\\nii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program\\nii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files\\nii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings\\nii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer\\nii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files\\nii evolution-data-server 3.52.3-0ubuntu1 amd64 evolution database backend server\\nii evolution-data-server-common 3.52.3-0ubuntu1 all architecture independent files for Evolution Data Server\\nii fakeroot 1.33-1 amd64 tool for simulating superuser privileges\\nii fdisk 2.39.3-9ubuntu6.1 amd64 collection of partitioning utilities\\nii file 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers\\nii file-roller 44.3-0ubuntu1 amd64 archive manager for GNOME\\nii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs\\nii firefox 1:1snap1-0ubuntu5 amd64 Transitional package - firefox -> firefox snap\\nii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed\\nii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries\\nii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration\\nii fonts-beng 2:1.3 all Metapackage to install Bengali and Assamese fonts\\nii fonts-beng-extra 3.3.1-2 all TrueType fonts for Bengali language\\nii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters\\nii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters\\nii fonts-deva 2:1.4 all Meta package to install all Devanagari fonts\\nii fonts-deva-extra 3.0-6 all Free fonts for Devanagari script\\nii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)\\nii fonts-freefont-ttf 20211204+svn4273-2 all Freefont Serif, Sans and Mono Truetype fonts\\nii fonts-gargi 2.0-6 all OpenType Devanagari font\\nii fonts-gubbi 1.3-7 all Gubbi free font for Kannada script\\nii fonts-gujr 2:1.5 all Meta package to install all Gujarati fonts\\nii fonts-gujr-extra 1.0.1-2 all Free fonts for Gujarati script\\nii fonts-guru 2:1.3 all Meta package to install all Punjabi fonts\\nii fonts-guru-extra 2.0-5 all Free fonts for Punjabi language\\nii fonts-indic 2:1.4 all Meta package to install all Indian language fonts\\nii fonts-kalapi 1.0-5 all Kalapi Gujarati Unicode font\\nii fonts-knda 2:1.3 all Meta package for Kannada fonts\\nii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier\\nii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow\\nii fonts-lohit-beng-assamese 2.91.5-2 all Lohit TrueType font for Assamese Language\\nii fonts-lohit-beng-bengali 2.91.5-3 all Lohit TrueType font for Bengali Language\\nii fonts-lohit-deva 2.95.4-5 all Lohit TrueType font for Devanagari script\\nii fonts-lohit-gujr 2.92.4-4 all Lohit TrueType font for Gujarati Language\\nii fonts-lohit-guru 2.91.2-3 all Lohit TrueType font for Punjabi Language\\nii fonts-lohit-knda 2.5.4-3 all Lohit TrueType font for Kannada Language\\nii fonts-lohit-mlym 2.92.2-2 all Lohit TrueType font for Malayalam Language\\nii fonts-lohit-orya 2.91.2-2 all Lohit TrueType font for Oriya Language\\nii fonts-lohit-taml 2.91.3-2 all Lohit TrueType font for Tamil Language\\nii fonts-lohit-taml-classical 2.5.4-2 all Lohit Tamil TrueType fonts for Tamil script\\nii fonts-lohit-telu 2.5.5-2build1 all Lohit TrueType font for Telugu Language\\nii fonts-mlym 2:1.3 all Meta package to install all Malayalam fonts\\nii fonts-nakula 1.0-4 all Free Unicode compliant Devanagari font\\nii fonts-navilu 1.2-4 all Handwriting font for Kannada\\nii fonts-noto-cjk 1:20230817+repack1-3 all \\"No Tofu\\" font families with large Unicode coverage (CJK regular and bold)\\nii fonts-noto-color-emoji 2.042-1 all color emoji font from Google\\nii fonts-noto-core 20201225-2 all \\"No Tofu\\" font families with large Unicode coverage (core)\\nii fonts-noto-mono 20201225-2 all \\"No Tofu\\" monospaced font family with large Unicode coverage\\nii fonts-opensymbol 4:102.12+LibO24.2.5-0ubuntu0.24.04.2 all OpenSymbol TrueType font\\nii fonts-orya 2:1.3 all Meta package to install all Odia fonts\\nii fonts-orya-extra 2.0-6 all Free fonts for Odia script\\nii fonts-pagul 1.0-9 all Free TrueType font for the Sourashtra language\\nii fonts-sahadeva 1.0-5 all Free Unicode compliant Devanagari font\\nii fonts-samyak-deva 1.2.2-6 all Samyak TrueType font for Devanagari script\\nii fonts-samyak-gujr 1.2.2-6 all Samyak TrueType font for Gujarati language\\nii fonts-samyak-mlym 1.2.2-6 all Samyak TrueType font for Malayalam language\\nii fonts-samyak-taml 1.2.2-6 all Samyak TrueType font for Tamil language\\nii fonts-sarai 1.0-3 all truetype font for devanagari script\\nii fonts-sil-annapurna 2.000-2 all smart font for languages using Devanagari script\\nii fonts-smc 1:7.5 all Metapackage for various TrueType fonts for Malayalam Language\\nii fonts-smc-anjalioldlipi 7.1.2-2 all AnjaliOldLipi malayalam font\\nii fonts-smc-chilanka 1.540-2 all Chilanka malayalam font\\nii fonts-smc-dyuthi 3.0.2-2 all Dyuthi malayalam font\\nii fonts-smc-gayathri 1.200-1 all Gayathri Malayalam font\\nii fonts-smc-karumbi 1.1.2-2 all Karumbi malayalam font\\nii fonts-smc-keraleeyam 3.0.2-2 all Keraleeyam malayalam font\\nii fonts-smc-manjari 2.200-1 all Manjari malayalam font\\nii fonts-smc-meera 7.0.3-1 all Meera malayalam font\\nii fonts-smc-rachana 7.0.2-1build1 all Rachana malayalam font\\nii fonts-smc-raghumalayalamsans 2.2.1-1 all RaghuMalayalamSans malayalam font\\nii fonts-smc-suruma 3.2.3-1 all Suruma malayalam font\\nii fonts-smc-uroob 2.0.2-1 all Uroob malayalam font\\nii fonts-taml 2:1.4 all Meta package to install all Tamil fonts\\nii fonts-telu 2:1.3 all Meta package to install all Telugu fonts\\nii fonts-telu-extra 2.0-6 all Free fonts for Telugu script\\nii fonts-teluguvijayam 2.1-1 all TrueType fonts for Telugu script (te)\\nii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu\\nii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts\\nii fonts-yrsa-rasa 2.005-1 all Open-source, libre fonts for Latin + Gujarati\\nii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database\\nii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access\\nii freeipmi-common 1.6.13-3 all GNU implementation of the IPMI protocol - common files\\nii freeipmi-tools 1.6.13-3 amd64 GNU implementation of the IPMI protocol - tools\\nii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly\\nii ftp 20230507-2build3 all dummy transitional package for tnftp\\nii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)\\nii fwupd 1.9.24-1~24.04.1 amd64 Firmware update daemon\\nii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary\\nii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler\\nii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler\\nii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture\\nii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture\\nii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand\\nii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)\\nii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler\\nii gcc-11 11.4.0-9ubuntu1 amd64 GNU C compiler\\nii gcc-11-base:amd64 11.4.0-9ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler\\nii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture\\nii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture\\nii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)\\nii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)\\nii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger\\nii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool\\nii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager\\nii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service\\nii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library\\nii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system\\nii ghostscript 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF\\nii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService\\nii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita\\nii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)\\nii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)\\nii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4\\nii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library\\nii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components\\nii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library\\nii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library\\nii gir1.2-gdesktopenums-3.0:amd64 46.1-0ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas\\nii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library - GObject-Introspection\\nii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager\\nii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)\\nii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library\\nii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule\\nii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library\\nii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar\\nii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)\\nii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth\\nii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)\\nii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)\\nii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)\\nii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library\\nii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data\\nii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library\\nii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy\\nii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)\\nii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data\\nii gir1.2-javascriptcoregtk-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-javascriptcoregtk-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-mutter-14:amd64 46.2-1ubuntu0.24.04.1 amd64 GObject introspection data for Mutter\\nii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library\\nii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4\\nii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)\\nii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library\\nii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings\\nii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)\\nii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit\\nii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files\\nii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)\\nii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1\\nii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library\\nii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data\\nii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library\\nii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower\\nii gir1.2-vte-2.91:amd64 0.76.0-1ubuntu0.1 amd64 GObject introspection data for the VTE library\\nii gir1.2-webkit-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-webkit2-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library\\nii git 1:2.43.0-1ubuntu7.1 amd64 fast, scalable, distributed revision control system\\nii git-man 1:2.43.0-1ubuntu7.1 all fast, scalable, distributed revision control system (manual pages)\\nii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)\\nii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd\\nii glade2script 3.2.4~ppa23 all Glade interface engine for scripts\\nii glade2script-python3 3.2.4~ppa23 all Glade interface engine for scripts (Python3 version)\\nii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib\\nii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files\\nii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services\\nii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons\\nii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files\\nii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app\\nii gnome-calculator 1:46.1-1ubuntu1~24.04.1 amd64 GNOME desktop calculator\\nii gnome-characters 46.0-1build1 amd64 character map application\\nii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support\\nii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop\\nii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files\\nii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images\\nii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps\\nii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media\\nii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME\\nii gnome-initial-setup 46.2-1ubuntu0.24.04.1 amd64 Initial GNOME system setup helper\\nii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)\\nii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library\\nii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal\\nii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii gnome-online-accounts 3.50.4-0ubuntu2 amd64 service to manage online accounts for the GNOME desktop\\nii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop\\nii gnome-remote-desktop 46.3-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire\\nii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime\\nii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events\\nii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files\\nii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings\\nii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files\\nii gnome-shell 46.0-0ubuntu6~24.04.4 amd64 graphical shell for the GNOME desktop\\nii gnome-shell-common 46.0-0ubuntu6~24.04.4 all common files for the GNOME graphical shell\\nii gnome-shell-extension-appindicator 58-1 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell\\nii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell\\nii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell\\nii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1.1 all extension which adds a Windows-like snap assist to GNOME Shell\\nii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam\\nii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME\\nii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME\\nii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application\\nii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator\\nii gnome-text-editor 46.3-0ubuntu2 amd64 simple text editor for GNOME\\nii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine\\nii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files\\nii gnome-user-docs 46.0-1ubuntu1 all GNOME Help\\nii gnome-user-docs-de 46.0-1ubuntu1 all GNOME Help (German)\\nii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement\\nii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files\\nii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs\\nii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations\\nii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent\\nii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client\\nii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities\\nii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version\\nii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool\\nii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep\\nii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)\\nii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)\\nii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)\\nii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)\\nii grub-gfxpayload-lists 0.7build2 amd64 GRUB gfxpayload blacklist\\nii grub-pc 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)\\nii grub-pc-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)\\nii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)\\nii gsettings-desktop-schemas 46.1-0ubuntu1 all GSettings desktop-wide schemas\\nii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu\\nii gstreamer1.0-alsa:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugin for ALSA\\nii gstreamer1.0-gl:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for GL\\nii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)\\nii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit\\nii gstreamer1.0-pipewire:amd64 1.0.5-1ubuntu1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server\\nii gstreamer1.0-plugins-base:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins from the \\"base\\" set\\nii gstreamer1.0-plugins-base-apps 1.24.2-1ubuntu0.1 amd64 GStreamer helper programs from the \\"base\\" set\\nii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the \\"good\\" set\\nii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer\\nii gstreamer1.0-x:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for X11 and Pango\\nii gtk-update-icon-cache 3.24.41-4ubuntu1.1 amd64 icon theme caching utility\\nii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine\\nii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1.1 amd64 pixbuf-based theme for GTK 2\\nii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module\\nii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends\\nii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files\\nii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers\\nii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server\\nii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries\\nii gzip 1.12-1ubuntu3 amd64 GNU compression utilities\\nii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance\\nii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader\\nii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer\\nii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes\\nii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name\\nii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)\\nii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files\\nii humanity-icon-theme 0.6.16 all Humanity Icon theme\\nii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell\\nii hwdata 0.379-1 all hardware identification / configuration data\\nii ibus 1.5.29-2 amd64 Intelligent Input Bus - core\\nii ibus-data 1.5.29-2 all Intelligent Input Bus - data files\\nii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support\\nii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support\\nii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support\\nii ibus-table 1.17.4-2 all table engine for IBus\\nii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs\\nii ieee-data 20220827.1 all OUI and IAB listings\\nii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy\\nii im-config 0.57-2 all Input method configuration framework\\nii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client\\nii info 7.1-3build2 amd64 Standalone GNU Info documentation browser\\nii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed\\nii init-system-helpers 1.66ubuntu1 all helper tools for all init systems\\nii initramfs-tools 0.142ubuntu25.2 all generic modular initramfs generator (automation)\\nii initramfs-tools-bin 0.142ubuntu25.2 amd64 binaries used by initramfs-tools\\nii initramfs-tools-core 0.142ubuntu25.2 all generic modular initramfs generator (core tools)\\nii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem\\nii install-info 7.1-3build2 amd64 Manage installed documentation in info format\\nii intel-microcode 3.20240813.0ubuntu0.24.04.2 amd64 Processor microcode firmware for Intel CPUs\\nii ipmitool 1.8.19-7build2 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)\\nii ipp-usb 0.9.24-0ubuntu3.1 amd64 Daemon for IPP over USB printer support\\nii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools\\nii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT\\nii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts\\nii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host\\nii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations\\nii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool\\nii java-common 0.75+exp1 all Base package for Java runtimes\\nii javascript-common 11+nmu1 all Base support for JavaScript library packages\\nii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor\\nii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities\\nii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker\\nii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences\\nii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service\\nii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot\\nii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules\\nii language-pack-de 1:24.04+20240817 all translation updates for language German\\nii language-pack-de-base 1:24.04+20240817 all translations for language German\\nii language-pack-en 1:24.04+20240817 all translation updates for language English\\nii language-pack-en-base 1:24.04+20240817 all translations for language English\\nii language-pack-gnome-de 1:24.04+20240817 all GNOME translation updates for language German\\nii language-pack-gnome-de-base 1:24.04+20240817 all GNOME translations for language German\\nii language-pack-gnome-en 1:24.04+20240817 all GNOME translation updates for language English\\nii language-pack-gnome-en-base 1:24.04+20240817 all GNOME translations for language English\\nii language-selector-common 0.225 all Language selector for Ubuntu\\nii language-selector-gnome 0.225 all Language selector frontend for Ubuntu\\nii laptop-detect 0.16 all system chassis type checker\\nii less 590-2ubuntu2.1 amd64 pager program similar to more\\nii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library\\nii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library\\nii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries\\nii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library\\nii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones\\nii libaio1t64:amd64 0.3.113-6build1 amd64 Linux kernel AIO access library - shared library\\nii libalgorithm-diff-perl 1.201-1 all module to find differences between files\\nii libalgorithm-diff-xs-perl:amd64 0.04-8build3 amd64 module to find differences between files (XS accelerated)\\nii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data\\nii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)\\nii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library\\nii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library\\nii libapparmor1:amd64 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 changehat AppArmor library\\nii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services\\nii libapr1-dev 1.7.2-3.1build2 amd64 Apache Portable Runtime Library - Development Headers\\nii libapr1t64:amd64 1.7.2-3.1build2 amd64 Apache Portable Runtime Library\\nii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library\\nii libarchive13t64:amd64 3.7.2-2ubuntu0.1 amd64 Multi-format archive and compression library (shared library)\\nii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library\\nii libasan6:amd64 11.4.0-9ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers\\nii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications\\nii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library\\nii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components\\nii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library\\nii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library\\nii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge\\nii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library\\nii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit\\nii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)\\nii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions\\nii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions\\nii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library\\nii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library\\nii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files\\nii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing\\nii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework\\nii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library\\nii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files\\nii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library\\nii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi\'s embeddable mDNS/DNS-SD library\\nii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library\\nii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices\\nii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)\\nii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators\\nii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)\\nii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries\\nii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)\\nii libblkid-dev:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library - headers\\nii libblkid1:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library\\nii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev\\nii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev\\nii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev\\nii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev\\nii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev\\nii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev\\nii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev\\nii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev\\nii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices\\nii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack\\nii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library\\nii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization\\nii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading\\nii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)\\nii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)\\nii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library\\nii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)\\nii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library\\nii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions\\nii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations\\nii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes\\nii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime\\nii libc-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Binaries\\nii libc-dev-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Development binaries\\nii libc-devtools 2.39-0ubuntu8.3 amd64 GNU C Library: Development tools\\nii libc6:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Shared libraries\\nii libc6-dbg:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: detached debugging symbols\\nii libc6-dev:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Development Libraries and Header Files\\nii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library\\nii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl\\nii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)\\nii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library\\nii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)\\nii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library\\nii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)\\nii libcamel-1.2-64t64:amd64 3.52.3-0ubuntu1 amd64 Evolution MIME message handling library\\nii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library\\nii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra\\nii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds\\nii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra\\nii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds\\nii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library\\nii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)\\nii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)\\nii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)\\nii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB\\nii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs\\nii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction\\nii libcdio19t64:amd64 2.1.0-4.1ubuntu1.2 amd64 library to read and control CD-ROM\\nii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)\\nii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library\\nii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library\\nii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes\\nii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)\\nii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)\\nii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord\\nii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime\\nii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime\\nii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library\\nii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library\\nii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files\\nii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library\\nii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.1 amd64 disk encryption support - shared library\\nii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)\\nii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)\\nii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library\\nii libcups2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Core library\\nii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files\\nii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library\\nii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Raster image library\\nii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)\\nii libcurl4t64:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)\\nii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library\\nii libdata-dump-perl 1.25-1 all Perl module to help dump data structures\\nii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library\\nii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]\\nii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)\\nii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC\\nii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus\\nii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version\\nii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library\\nii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation\\nii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)\\nii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server\\nii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)\\nii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library\\nii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK\\nii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib\\nii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression\\nii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre\\nii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format\\nii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files\\nii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules\\nii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime\\nii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files\\nii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime\\nii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime\\nii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime\\nii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime\\nii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library\\nii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)\\nii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information\\nii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library\\nii libebackend-1.2-11t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libebook-1.2-21t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution address books\\nii libebook-contacts-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution contacts books\\nii libecal-2.0-3:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution calendars\\nii libedata-book-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution address books\\nii libedata-cal-2.0-2t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution calendars\\nii libedataserver-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedataserverui-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries\\nii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library\\nii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libegl-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library\\nii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support\\nii libei1:amd64 1.2.1-1 amd64 Emulated Input client library\\nii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library\\nii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files\\nii libenchant-2-2:amd64 2.3.3-2build2 amd64 Wrapper library for various spell checker engines (runtime libs)\\nii libencode-locale-perl 1.05-3 all utility to determine the locale encoding\\nii libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files\\nii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library\\nii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way\\nii libespeak-ng1:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: shared library\\nii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)\\nii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices\\nii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library\\nii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets\\nii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)\\nii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files\\nii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library\\nii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library\\nii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit\\nii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries\\nii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library\\nii libexttextcat-data 3.4.7-1build1 all Language detection library - data files\\nii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions\\nii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries\\nii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C\\nii libfdisk1:amd64 2.39.3-9ubuntu6.1 amd64 fdisk partitioning library\\nii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)\\nii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime\\nii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision\\nii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects\\nii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification\\nii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files\\nii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)\\nii libfile-listing-perl 6.16-1 all module to parse directory listings\\nii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types\\nii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library\\nii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library\\nii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files\\nii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime\\nii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library\\nii libfprint-2-2 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, shared libraries\\nii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, drivers shared libraries\\nii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX\\nii libfreeipmi17 1.6.13-3 amd64 GNU IPMI - libraries\\nii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)\\nii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)\\nii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files\\nii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm\\nii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers\\nii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)\\nii libfwupd2:amd64 1.9.24-1~24.04.1 amd64 Firmware update daemon library\\nii libgail-common:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- common modules\\nii libgail18t64:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- shared libraries\\nii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)\\nii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)\\nii libgbm1:amd64 24.0.9-0ubuntu0.1 amd64 generic buffer management API -- runtime\\nii libgcc-11-dev:amd64 11.4.0-9ubuntu1 amd64 GCC support library (development files)\\nii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)\\nii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library\\nii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks\\nii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks\\nii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks\\nii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library\\nii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library\\nii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files\\nii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries\\nii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version) \\nii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version) \\nii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library\\nii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library (thumbnailer)\\nii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 all GDK Pixbuf library - data files\\nii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)\\nii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library\\nii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service\\nii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim\\nii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library\\nii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)\\nii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)\\nii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data\\nii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform\\nii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support\\nii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules\\nii libgl1-mesa-dri:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules\\nii libglapi-mesa:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the GL API -- shared library\\nii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support\\nii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries\\nii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries\\nrc libglib2.0-0:amd64 2.72.4-0ubuntu2.3 amd64 GLib library of C routines\\nii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines\\nii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library\\nii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library\\nii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library\\nii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library\\nii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)\\nii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)\\nii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library\\nii libglx-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library\\nii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support\\nii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library\\nii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME\\nii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files\\nii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library\\nii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library\\nii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version\\nii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files\\nii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files\\nii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files\\nii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library\\nii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.2 amd64 GNU TLS library - main runtime library\\nii libgoa-1.0-0b:amd64 3.50.4-0ubuntu2 amd64 library for GNOME Online Accounts\\nii libgoa-1.0-common 3.50.4-0ubuntu2 all library for GNOME Online Accounts - common files\\nii libgoa-backend-1.0-2:amd64 3.50.4-0ubuntu2 amd64 backend library for GNOME Online Accounts\\nii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library\\nii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library\\nii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)\\nii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME\\nii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library\\nii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages\\nii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library\\nii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library\\nii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)\\nii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types\\nii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library\\nii libgs-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - ICC profiles\\nii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF - Library\\nii libgs10-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - common files\\nii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version\\nii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files\\nii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds\\nii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications\\nii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files\\nii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism\\nii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP\\nii libgstreamer-gl1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer GL libraries\\nii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer libraries from the \\"base\\" set\\nii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the \\"good\\" set\\nii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements\\nrc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library\\nii libgtk-3-0t64:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library\\nii libgtk-3-bin 3.24.41-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk-3-common 3.24.41-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library\\nii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library\\nii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library\\nii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library\\nrc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-bin 2.24.33-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk2.0-common 2.24.33-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library\\nii libgtkmm-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)\\nii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget\\nii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget\\nii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)\\nii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)\\nii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev\\nii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP\\nii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP\\nii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP\\nii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1\\nii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library\\nii libgweather-4-common 4.4.2-1build1 all GWeather common files\\nii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)\\nii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones\\nii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)\\nii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend\\nii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)\\nii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin\\nii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin\\nii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin\\nii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library\\nii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)\\nii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries\\nii libhtml-form-perl 6.11-1 all module that represents an HTML form element\\nii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats\\nii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents\\nii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML\\nii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees\\nii libhttp-cookies-perl 6.11-1 all HTTP cookie jars\\nii libhttp-daemon-perl 6.16-1 all simple http server class\\nii libhttp-date-perl 6.06-1 all module of date conversion routines\\nii libhttp-message-perl 6.45-1ubuntu1 all perl interface to HTTP style messages\\nii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation\\nii libhunspell-1.7-0:amd64 1.7.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)\\nii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library\\nii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library\\nii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)\\nii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)\\nii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library\\nii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode\\nii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications\\nii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library\\nii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)\\nii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access\\nii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library\\nii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library\\nii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices\\nii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser\\nii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks\\nii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library\\nii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection\\nii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets\\nii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)\\nii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library\\nii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library\\nii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics\\nii libipmiconsole2 1.6.13-3 amd64 GNU IPMI - Serial-over-Lan library\\nii libipmidetect0 1.6.13-3 amd64 GNU IPMI - IPMI node detection library\\nii libipsec-mb1 1.5-1build1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library\\nii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library\\nii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints\\nii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems\\nii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images\\nii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library\\nii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library\\nii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data\\nii libjavascriptcoregtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjavascriptcoregtk-6.0-1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries\\nii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries\\nii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library\\nii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library\\nii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group\'s JPEG runtime library (dependency package)\\nii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library\\nii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications\\nii libjs-sphinxdoc 7.2.6-6 all JavaScript support for Sphinx documentation\\nii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript\'s functional programming helper library\\nii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library\\nii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library\\nii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)\\nii libjudydebian1 1.0.5-5.1build1 amd64 C library for creating and accessing dynamic arrays\\nii libk5crypto3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Crypto Library\\nii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)\\nii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs\\nii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library\\nii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)\\nii libkrb5-3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries\\nii libkrb5support0:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Support library\\nii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library\\nii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data\\nii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages\\nii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)\\nii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library\\nii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)\\nii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)\\nii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)\\nii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries\\nii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries\\nii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library\\nii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library\\nii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library\\nii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl\\nii liblouis-data 3.29.0-1build1 all Braille translation library - data\\nii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs\\nii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities\\nii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data\\nii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs\\nii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)\\nii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool\\nii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)\\nii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)\\nii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)\\nii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4\\nii libluajit-5.1-2:amd64 2.1.0+git20231223.c525bcb+dfsg-1 amd64 Just in time compiler for Lua - library version\\nii libluajit-5.1-common 2.1.0+git20231223.c525bcb+dfsg-1 all Just in time compiler for Lua - common files\\nii liblwp-mediatypes-perl 6.04-2 all module to guess media type for a file or a URL\\nii liblwp-protocol-https-perl 6.13-1 all HTTPS driver for LWP::UserAgent\\nii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime\\nii liblzma5:amd64 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression library\\nii liblzo2-2:amd64 2.10-2build4 amd64 data compression library\\nii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using \\"magic\\" numbers (compiled magic file)\\nrc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs\\nii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library\\nii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library\\nii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol\\nii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports\\nii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line\\nii libmd0:amd64 1.1.0-2build1 amd64 message digest functions from BSD systems - shared library\\nii libmediaart-2.0-0:amd64 1.9.6-1build2 amd64 media art extraction and cache management library\\nii libmhash2:amd64 0.9.9.9-9build3 amd64 Library for cryptographic hashing and message authentication\\nii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries\\nii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library\\nii libmount-dev:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library - headers\\nii libmount1:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library\\nii libmozjs-115-0t64:amd64 115.10.0-1 amd64 SpiderMonkey JavaScript library\\nii libmp3lame0:amd64 3.100-6build1 amd64 MP3 encoding library\\nii libmpc3:amd64 1.3.1-1build1 amd64 multiple precision complex floating-point library\\nii libmpfr6:amd64 4.2.1-1build1 amd64 multiple precision floating-point computation\\nii libmpg123-0t64:amd64 1.32.5-1ubuntu1 amd64 MPEG layer 1/2/3 audio decoder (shared library)\\nii libmsgraph-0-1:amd64 0.2.1-0ubuntu3 amd64 library for accessing the Microsoft Graph API\\nii libmtdev1t64:amd64 1.1.6-1.1build1 amd64 Multitouch Protocol Translation Library - shared library\\nii libmtp-common 1.1.21-3.1build1 all Media Transfer Protocol (MTP) common files\\nii libmtp-runtime 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) runtime tools\\nii libmtp9t64:amd64 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) library\\nii libmutter-14-0:amd64 46.2-1ubuntu0.24.04.1 amd64 window manager library from the Mutter window manager\\nii libmysqlclient21:amd64 8.0.39-0ubuntu0.24.04.2 amd64 MySQL database client library\\nii libmythes-1.2-0:amd64 2:1.2.5-1build1 amd64 simple thesaurus library\\nii libnautilus-extension4:amd64 1:46.2-0ubuntu0.2 amd64 libraries for nautilus components - runtime version\\nii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling\\nii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)\\nii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol\\nii libnet-dbus-perl 1.2.0-2build3 amd64 Perl extension for the DBus bindings\\nii libnet-http-perl 6.23-1 all module providing low-level HTTP connection client\\nii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP\\nii libnet-ssleay-perl:amd64 1.94-1build4 amd64 Perl module for Secure Sockets Layer (SSL)\\nii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library\\nii libnetplan1:amd64 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration runtime library\\nii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)\\nii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik\'s Windowing Toolkit - text mode windowing with slang\\nii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library\\nii libnfs14:amd64 5.0.2-1build1 amd64 NFS client library (shared library)\\nii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library\\nii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library\\nii libnghttp2-14:amd64 1.59.0-1ubuntu0.1 amd64 library implementing HTTP/2 protocol (shared library)\\nii libnl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets\\nii libnl-genl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - generic netlink\\nii libnl-route-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - route interface\\nii libnm0:amd64 1.46.0-1ubuntu2 amd64 GObject-based client library for NetworkManager\\nii libnma-common 1.10.6-3build2 all NetworkManager GUI library - translations\\nii libnma-gtk4-0:amd64 1.10.6-3build2 amd64 NetworkManager GUI GTK4 library\\nii libnma0:amd64 1.10.6-3build2 amd64 NetworkManager GUI library\\nii libnotify-bin 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Utilities)\\nii libnotify4:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon\\nii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads\\nii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library\\nii libnss-mdns:amd64 0.15.1-4build1 amd64 NSS module for Multicast DNS name resolution\\nii libnss-systemd:amd64 255.4-1ubuntu8.4 amd64 nss module providing dynamic user and group name resolution\\nii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries\\nii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)\\nii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy\\nii libnvme1t64 1.8-3build1 amd64 NVMe management library (library)\\nii libogg0:amd64 1.3.5-3build1 amd64 Ogg bitstream library\\nii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library\\nii libopengl0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- OpenGL support\\nii libopenipmi0t64 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface - runtime\\nii libopenjp2-7:amd64 2.5.0-2build3 amd64 JPEG 2000 image compression/decompression library\\nii libopus0:amd64 1.4-1build1 amd64 Opus codec runtime library\\nii liborc-0.4-0t64:amd64 1:0.4.38-1ubuntu0.1 amd64 Library of Optimized Inner Loops Runtime Compiler\\nii liborcus-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents\\nii liborcus-parser-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents - parser library\\nii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime\\nii libpackagekit-glib2-18:amd64 1.2.8-2build3 amd64 Library for accessing PackageKit using GLib\\nii libpam-cap:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (PAM module)\\nii libpam-fprintd:amd64 1.94.3-1 amd64 PAM module for fingerprint authentication through fprintd\\nii libpam-gnome-keyring:amd64 46.1-2build1 amd64 PAM module to unlock the GNOME keyring upon login\\nii libpam-modules:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM\\nii libpam-modules-bin 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM - helper binaries\\nii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength\\nii libpam-runtime 1.5.3-5ubuntu5.1 all Runtime support for the PAM library\\nii libpam-sss:amd64 2.9.4-1.1ubuntu6.1 amd64 Pam module for the System Security Services Daemon\\nii libpam-systemd:amd64 255.4-1ubuntu8.4 amd64 system and service manager - PAM module\\nii libpam0g:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules library\\nii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangomm-2.48-1t64:amd64 2.52.0-1build1 amd64 C++ Wrapper for pango (shared libraries)\\nii libpangoxft-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)\\nii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics\\nii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library\\nii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture\\nii libpcaudio0:amd64 1.2-2build3 amd64 C API to different audio devices - shared library\\nii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)\\nii libpciaccess0:amd64 0.17-3build1 amd64 Generic PCI access library for X\\nii libpcre2-16-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files\\nii libpcre2-32-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 32 bit runtime files\\nii libpcre2-8-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files\\nii libpcre2-dev:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - development files\\nii libpcre2-posix3:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files\\nii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)\\nii libpeas-1.0-0:amd64 1.36.0-3build4 amd64 Application plugin library\\nii libpeas-common 1.36.0-3build4 all Application plugin library (common files)\\nii libperl5.38t64:amd64 5.38.2-3.2build2 amd64 shared Perl library\\nii libphonenumber8:amd64 8.12.57+ds-4.2build3 amd64 parsing/formatting/validating phone numbers\\nii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library\\nii libpipewire-0.3-0t64:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server\\nii libpipewire-0.3-common 1.0.5-1ubuntu1 all libraries for the PipeWire multimedia server - common files\\nii libpipewire-0.3-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - modules\\nii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo\\nii libpkcs11-helper1t64:amd64 1.29.0-2.1build2 amd64 library that simplifies the interaction with PKCS#11\\nii libpkgconf3:amd64 1.8.1-2build1 amd64 shared library for pkgconf\\nii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists\\nii libplymouth5:amd64 24.004.60-1ubuntu7 amd64 graphical boot animation and logger - shared libraries\\nii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)\\nii libpolkit-agent-1-0:amd64 124-2ubuntu1 amd64 polkit Authentication Agent API\\nii libpolkit-gobject-1-0:amd64 124-2ubuntu1 amd64 polkit Authorization API\\nii libpoppler-cpp0t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (CPP shared library)\\nii libpoppler-glib8t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (GLib-based shared library)\\nii libpoppler134:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library\\nii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters\\nii libportal-gtk4-1:amd64 0.7.1-5build5 amd64 Flatpak portal library for GTK 4 GUIs\\nii libportal1:amd64 0.7.1-5build5 amd64 Flatpak portal library - non-GUI part\\nii libppd2:amd64 2:2.0.0-0ubuntu4 amd64 OpenPrinting libppd - Shared library\\nii libppd2-common 2:2.0.0-0ubuntu4 all OpenPrinting libppd - Auxiliary files\\nii libpq5:amd64 16.4-0ubuntu0.24.04.2 amd64 PostgreSQL C client library\\nii libproc2-0:amd64 2:4.0.4-4ubuntu3 amd64 library for accessing process information from /proc\\nii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)\\nii libprotobuf32t64:amd64 3.21.12-8.2build1 amd64 protocol buffers C++ library\\nii libproxy1-plugin-gsettings:amd64 0.5.4-4build1 amd64 transitional package for libproxy GSettings plugin\\nii libproxy1-plugin-networkmanager:amd64 0.5.4-4build1 amd64 transitional package for libproxy NetworkManager plugin\\nii libproxy1v5:amd64 0.5.4-4build1 amd64 automatic proxy configuration management library (shared)\\nii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)\\nii libpulse-mainloop-glib0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries (glib support)\\nii libpulse0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries\\nii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)\\nii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation\\nii libpython3-dev:amd64 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii libpython3.12-dev:amd64 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (standard library, version 3.12)\\nii libpython3.12t64:amd64 3.12.3-1ubuntu0.1 amd64 Shared Python runtime library (version 3.12)\\nii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol\\nii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports\\nii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line\\nii libqpdf29t64:amd64 11.9.0-1.1build1 amd64 runtime library for PDF transformation/inspection software\\nii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol\\nii libquadmath0:amd64 14-20240412-0ubuntu1 amd64 GCC Quad-Precision Math Library\\nii libraptor2-0:amd64 2.0.16-3build3 amd64 Raptor 2 RDF syntax library\\nii libraqm0:amd64 0.10.1-1build1 amd64 Library for complex text layout\\nii librasqal3t64:amd64 0.9.33-2.1build1 amd64 Rasqal RDF query library\\nii libraw1394-11:amd64 2.1.2-2build3 amd64 library for direct access to IEEE 1394 bus (aka FireWire)\\nii librdf0t64:amd64 1.0.17-3.1ubuntu3 amd64 Redland Resource Description Framework (RDF) library\\nii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries\\nii libreoffice-common 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- arch-independent files\\nii libreoffice-core 4:24.2.5-0ubuntu0.24.04.2 amd64 office productivity suite -- arch-dependent files\\nii libreoffice-style-colibre 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- colibre symbol style\\nii libreoffice-style-yaru 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- Yaru symbol style\\nii libreoffice-uiconfig-common 4:24.2.5-0ubuntu0.24.04.2 all UI data (\\"config\\") for LibreOffice (\\"common\\" set)\\nii librest-1.0-0:amd64 0.9.1-6build3 amd64 REST service access library\\nii librevenge-0.0-0:amd64 0.0.5-3build1 amd64 Base Library for writing document interface filters\\nii libroc0.3:amd64 0.3.0+dfsg-7ubuntu2 amd64 real-time audio streaming over the network (shared library)\\nii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)\\nii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)\\nii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)\\nii librygel-core-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - core library\\nii librygel-db-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - db library\\nii librygel-renderer-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - renderer library\\nii librygel-server-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - server library\\nii libsamplerate0:amd64 0.2.2-4build1 amd64 Audio sample rate conversion library\\nii libsane-common 1.2.1-7build4 all API library for scanners -- documentation and support files\\nii libsane-hpaio:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP SANE backend for multi-function peripherals\\nii libsane1:amd64 1.2.1-7build4 amd64 API library for scanners\\nii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library\\nii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules\\nii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)\\nii libsbc1:amd64 2.0-1build1 amd64 Sub Band CODEC library - runtime\\nii libsctp-dev:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - development files\\nii libsctp1:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - shared library\\nii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter\\nii libsecret-1-0:amd64 0.21.4-1build3 amd64 Secret store\\nii libsecret-common 0.21.4-1build3 all Secret store (common files)\\nii libselinux1:amd64 3.5-2ubuntu2 amd64 SELinux runtime shared libraries\\nii libselinux1-dev:amd64 3.5-2ubuntu2 amd64 SELinux development headers\\nii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries\\nii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library\\nii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files\\nii libsensors-dev:amd64 1:3.6.0-9build1 amd64 lm-sensors development kit\\nii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors\\nii libsepol-dev:amd64 3.5-2build1 amd64 SELinux binary policy manipulation library and development files\\nii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies\\nii libsframe1:amd64 2.42-4ubuntu2 amd64 Library to handle the SFrame format (runtime library)\\nii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion\\nii libshout3:amd64 2.4.6-1build2 amd64 MP3/Ogg Vorbis broadcast streaming library\\nii libsigc++-3.0-0:amd64 3.6.0-2 amd64 type-safe Signal Framework for C++ - runtime\\nii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version\\nii libslirp0:amd64 4.7.0-1ubuntu3 amd64 General purpose TCP-IP emulator library\\nii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library\\nii libsmartcols1:amd64 2.39.3-9ubuntu6.1 amd64 smart column output alignment library\\nii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 shared library for communication with SMB/CIFS servers\\nii libsnapd-glib-2-1:amd64 1.64-0ubuntu5 amd64 GLib snapd library\\nii libsndfile1:amd64 1.2.2-1ubuntu5 amd64 Library for reading/writing audio files\\nii libsnmp-base 5.9.4+dfsg-1.1ubuntu3 all SNMP configuration script, MIBs and documentation\\nii libsnmp40t64:amd64 5.9.4+dfsg-1.1ubuntu3 amd64 SNMP (Simple Network Management Protocol) library\\nii libsonic0:amd64 0.2.0-13build1 amd64 Simple library to speed up or slow down speech\\nii libsoup-2.4-1:amd64 2.74.3-6ubuntu1 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-0:amd64 3.4.4-5build2 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-common 3.4.4-5build2 all HTTP library implementation in C -- Common files\\nii libsoup2.4-common 2.74.3-6ubuntu1 all HTTP library implementation in C -- Common files\\nii libsource-highlight-common 3.1.9-4.3build1 all architecture-independent files for source highlighting library\\nii libsource-highlight4t64:amd64 3.1.9-4.3build1 amd64 source highlighting library\\nii libspa-0.2-bluetooth:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - bluetooth plugins\\nii libspa-0.2-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server Simple Plugin API - modules\\nii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents\\nii libspeechd2:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Shared libraries\\nii libspeex1:amd64 1.2.1-2ubuntu2 amd64 The Speex codec runtime library\\nii libspeexdsp1:amd64 1.2.1-1ubuntu3 amd64 DSP library derived from speex\\nii libsqlite3-0:amd64 3.45.1-1ubuntu2 amd64 SQLite 3 shared library\\nii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library\\nii libssh-4:amd64 0.10.6-2build2 amd64 tiny C SSH library (OpenSSL flavor)\\nrc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libssl3t64:amd64 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libstartup-notification0:amd64 0.12-6build3 amd64 library for program launch feedback (shared library)\\nii libstdc++-13-dev:amd64 13.2.0-23ubuntu4 amd64 GNU Standard C++ Library v3 (development files)\\nii libstdc++6:amd64 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3\\nii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval\\nii libsynctex2:amd64 2023.20230311.66589-9build3 amd64 TeX Live: SyncTeX parser library\\nii libsysmetrics1:amd64 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics - shared lib\\nii libsystemd-shared:amd64 255.4-1ubuntu8.4 amd64 systemd shared private library\\nii libsystemd0:amd64 255.4-1ubuntu8.4 amd64 systemd utility library\\nii libtag1v5:amd64 1.13.1-1build1 amd64 audio meta-data library\\nii libtag1v5-vanilla:amd64 1.13.1-1build1 amd64 audio meta-data library - vanilla flavour\\nii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator\\nii libtasn1-6:amd64 4.19.0-3build1 amd64 Manage ASN.1 structures (runtime)\\nii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files\\nii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library\\nii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process\\nii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library\\nii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal\\nii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl\\nii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap\\nii libthai-data 0.1.29-2build1 all Data files for Thai language support library\\nii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library\\nii libtheora0:amd64 1.1.1+dfsg.1-16.1build3 amd64 Theora Video Compression Codec\\nii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays\\nii libtiff6:amd64 4.5.1+git230720-4ubuntu2.2 amd64 Tag Image File Format (TIFF) library\\nii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information\\nii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling\\nii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files\\nii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library\\nii libtotem-plparser-common 3.26.6-1build5 all Totem Playlist Parser library - common files\\nii libtotem-plparser18:amd64 3.26.6-1build5 amd64 Totem Playlist Parser library - runtime files\\nii libtraceevent1:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (shared library)\\nii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (plugins)\\nii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)\\nii libtracker-sparql-3.0-0:amd64 3.7.1-1build1 amd64 metadata database, indexer and search tool - library\\nii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch\\nii libtsan0:amd64 11.4.0-9ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtsan2:amd64 14-20240412-0ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-rc0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-libtpms0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-spi-helper0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tctildr0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtwolame0:amd64 0.4.0-2build3 amd64 MPEG Audio Layer 2 encoding library\\nii libu2f-udev 1.1.10-3build3 all Universal 2nd Factor (U2F) — transitional package\\nii libubsan1:amd64 14-20240412-0ubuntu1 amd64 UBSan -- undefined behaviour sanitizer (runtime)\\nii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library\\nii libudev1:amd64 255.4-1ubuntu8.4 amd64 libudev shared library\\nii libudisks2-0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2\\nii libunistring5:amd64 1.1-2build1 amd64 Unicode string library for C\\nii libunity-protocol-private0:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - private library\\nii libunity-scopes-json-def-desktop 7.1.4+19.04.20190319-6build4 all binding to get places into the launcher - desktop def file\\nii libunity9:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - shared library\\nii libuno-cppu3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU public library\\nii libuno-cppuhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU helper library\\nii libuno-purpenvhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- \\"purpose environment\\" helper\\nii libuno-sal3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL public library\\nii libuno-salhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library\\nii libunwind8:amd64 1.6.2-3build1 amd64 library to determine the call-chain of a program - runtime\\nii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library\\nii liburi-perl 5.27-1 all module to manipulate and access URI strings\\nii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library\\nii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library\\nii libuuid1:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library\\nii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library\\nii libv4l-0t64:amd64 1.26.1-4build3 amd64 Collection of video4linux support libraries\\nii libv4lconvert0t64:amd64 1.26.1-4build3 amd64 Video4linux frame format conversion library\\nii libvisual-0.4-0:amd64 0.4.2-2build1 amd64 audio visualization framework\\nii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases\\nii libvorbis0a:amd64 1.3.7-1build3 amd64 decoder library for Vorbis General Audio Compression Codec\\nii libvorbisenc2:amd64 1.3.7-1build3 amd64 encoder library for Vorbis General Audio Compression Codec\\nii libvorbisfile3:amd64 1.3.7-1build3 amd64 high-level API for Vorbis General Audio Compression Codec\\nii libvpx9:amd64 1.14.0-1ubuntu2.1 amd64 VP8 and VP9 video codec (shared library)\\nii libvte-2.91-0:amd64 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime files\\nii libvte-2.91-common 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - common files\\nii libvulkan1:amd64 1.3.275.0-1build1 amd64 Vulkan loader library\\nii libwacom-common 2.10.0-2 all Wacom model feature query library (common files)\\nii libwacom9:amd64 2.10.0-2 amd64 Wacom model feature query library\\nii libwavpack1:amd64 5.6.0-1build1 amd64 audio codec (lossy and lossless) - library\\nii libwayland-client0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - client library\\nii libwayland-cursor0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - cursor library\\nii libwayland-egl1:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - EGL library\\nii libwayland-server0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - server library\\nii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba winbind client library\\nii libwebkit2gtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebkitgtk-6.0-4:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.\\nii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebrtc-audio-processing1:amd64 0.3.1-0ubuntu6 amd64 AudioProcessing module from the WebRTC project.\\nii libwhoopsie-preferences0 23build3 amd64 Ubuntu error tracker submission settings - shared library\\nii libwhoopsie0:amd64 0.2.77build3 amd64 Ubuntu error tracker submission - shared library\\nii libwinpr3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Windows Portable Runtime library\\nii libwireplumber-0.4-0:amd64 0.4.17-1ubuntu4 amd64 Shared libraries for WirePlumber\\nii libwmf-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion library\\nii libwmf-0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin\\nii libwmf0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin - transitional package\\nii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library\\nii libwnck-3-0:amd64 43.0-3build4 amd64 Window Navigator Construction Kit - runtime files\\nii libwnck-3-common 43.0-3build4 all Window Navigator Construction Kit - common files\\nii libwoff1:amd64 1.0.2-2build1 amd64 library for converting fonts to WOFF 2.0\\nii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema\'s TCP wrappers library\\nii libwww-perl 6.76-1 all simple and consistent interface to the world-wide web\\nii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions\\nii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library\\nii libx11-data 2:1.8.7-1build1 all X11 client-side library\\nii libx11-protocol-perl 0.56-9 all Perl module for the X Window System Protocol, version 11\\nii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library\\nii libxatracker2:amd64 24.0.9-0ubuntu0.1 amd64 X acceleration library -- runtime\\nii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library\\nii libxaw7:amd64 2:1.0.14-1build2 amd64 X11 Athena Widget library\\nii libxcb-damage0:amd64 1.15-1ubuntu2 amd64 X C Binding, damage extension\\nii libxcb-dri2-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri2 extension\\nii libxcb-dri3-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri3 extension\\nii libxcb-glx0:amd64 1.15-1ubuntu2 amd64 X C Binding, glx extension\\nii libxcb-icccm4:amd64 0.4.1-1.1build3 amd64 utility libraries for X C Binding -- icccm\\nii libxcb-image0:amd64 0.4.0-2build1 amd64 utility libraries for X C Binding -- image\\nii libxcb-keysyms1:amd64 0.4.0-1build4 amd64 utility libraries for X C Binding -- keysyms\\nii libxcb-present0:amd64 1.15-1ubuntu2 amd64 X C Binding, present extension\\nii libxcb-randr0:amd64 1.15-1ubuntu2 amd64 X C Binding, randr extension\\nii libxcb-render-util0:amd64 0.3.9-1build4 amd64 utility libraries for X C Binding -- render-util\\nii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension\\nii libxcb-res0:amd64 1.15-1ubuntu2 amd64 X C Binding, res extension\\nii libxcb-shape0:amd64 1.15-1ubuntu2 amd64 X C Binding, shape extension\\nii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension\\nii libxcb-sync1:amd64 1.15-1ubuntu2 amd64 X C Binding, sync extension\\nii libxcb-util1:amd64 0.4.0-1build3 amd64 utility libraries for X C Binding -- atom, aux and event\\nii libxcb-xfixes0:amd64 1.15-1ubuntu2 amd64 X C Binding, xfixes extension\\nii libxcb-xkb1:amd64 1.15-1ubuntu2 amd64 X C Binding, XKEYBOARD extension\\nii libxcb-xv0:amd64 1.15-1ubuntu2 amd64 X C Binding, xv extension\\nii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding\\nii libxcomposite1:amd64 1:0.4.5-1build3 amd64 X11 Composite extension library\\nii libxcursor1:amd64 1:1.2.1-1build1 amd64 X cursor management library\\nii libxcvt0:amd64 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator -- shared library\\nii libxdamage1:amd64 1:1.1.6-1build1 amd64 X11 damaged region extension library\\nii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library\\nii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library\\nii libxfixes3:amd64 1:6.0.0-2build1 amd64 X11 miscellaneous \'fixes\' extension library\\nii libxfont2:amd64 1:2.0.6-1build1 amd64 X11 font rasterisation library\\nii libxft2:amd64 2.3.6-1build1 amd64 FreeType-based font drawing library for X\\nii libxi6:amd64 2:1.8.1-1build1 amd64 X11 Input extension library\\nii libxinerama1:amd64 2:1.1.4-3build1 amd64 X11 Xinerama extension library\\nii libxkbcommon-x11-0:amd64 1.6.0-1build1 amd64 library to create keymaps with the XKB X11 protocol\\nii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library\\nii libxkbfile1:amd64 1:1.1.0-1build4 amd64 X11 keyboard file manipulation library\\nii libxkbregistry0:amd64 1.6.0-1build1 amd64 library to query available RMLVO\\nii libxklavier16:amd64 5.4-5build2 amd64 X Keyboard Extension high-level API\\nii libxml-parser-perl 2.47-1build3 amd64 Perl module for parsing XML files\\nii libxml-twig-perl 1:3.52-2 all Perl module for processing huge XML documents in tree mode\\nii libxml-xpathengine-perl 0.14-2 all re-usable XPath engine for DOM-like trees\\nii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3 amd64 GNOME XML library\\nii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library\\nii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library\\nii libxmlsec1t64-nss:amd64 1.2.39-5build2 amd64 Nss engine for the XML security library\\nii libxmu6:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous utility library\\nii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library\\nii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library\\nii libxrandr2:amd64 2:1.5.2-2build1 amd64 X11 RandR extension library\\nii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library\\nii libxres1:amd64 2:1.2.1-1build1 amd64 X11 Resource extension library\\nii libxshmfence1:amd64 1.3-1build5 amd64 X shared memory fences - shared library\\nii libxslt1.1:amd64 1.1.39-0exp1build1 amd64 XSLT 1.0 processing library - runtime library\\nii libxss1:amd64 1:1.2.3-1build3 amd64 X11 Screen Saver extension library\\nii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library\\nii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library\\nii libxtst6:amd64 2:1.2.3-1.1build1 amd64 X11 Testing -- Record extension library\\nii libxv1:amd64 2:1.0.11-1.1build1 amd64 X11 Video extension library\\nii libxvmc1:amd64 2:1.0.12-2build3 amd64 X11 Video extension library\\nii libxxf86dga1:amd64 2:1.1.5-1build1 amd64 X11 Direct Graphics Access extension library\\nii libxxf86vm1:amd64 1:1.1.4-1build4 amd64 X11 XFree86 video mode extension library\\nii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash\\nii libyajl2:amd64 2.1.0-5build1 amd64 Yet Another JSON Library\\nii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library\\nii libyelp0:amd64 42.2-1build2 amd64 Library for the GNOME help browser\\nii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm\\nii linux-base 4.5ubuntu9 all Linux image base package\\nii linux-firmware 20240318.git3b128b60-0ubuntu2.3 amd64 Firmware for Linux kernel drivers\\nii linux-generic 6.8.0-44.44 amd64 Complete Generic Linux kernel and headers\\nii linux-headers-6.8.0-40 6.8.0-40.40 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-6.8.0-44 6.8.0-44.44 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-generic 6.8.0-44.44 amd64 Generic Linux kernel headers\\nrc linux-image-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Signed kernel image generic\\nii linux-image-6.8.0-40-generic 6.8.0-40.40 amd64 Signed kernel image generic\\nii linux-image-6.8.0-44-generic 6.8.0-44.44 amd64 Signed kernel image generic\\nii linux-image-generic 6.8.0-44.44 amd64 Generic Linux kernel image\\nii linux-libc-dev:amd64 6.8.0-44.44 amd64 Linux Kernel Headers for development\\nrc linux-modules-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-sound-base 1.0.25+dfsg-0ubuntu7 all base package for ALSA and OSS sound systems\\nii linux-tools-6.8.0-40 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-44 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-common 6.8.0-44.44 all Linux kernel version specific tools for version 6.8.0\\nii lm-sensors 1:3.6.0-9build1 amd64 utilities to read temperature/voltage/fan sensors\\nii locales 2.39-0ubuntu8.3 all GNU C Library: National Language (locale) data [support]\\nii login 1:4.13+dfsg1-4ubuntu3 amd64 system login tools\\nii logrotate 3.21.0-2build1 amd64 Log rotation utility\\nii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file\\nii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality\\nii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)\\nii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration\\nii lsof 4.95.0-1build3 amd64 utility to list open files\\nii lto-disabled-list 47 all list of packages not to build with LTO\\nii mailcap 3.70+nmu1ubuntu1 all Debian\'s mailcap system, and support programs\\nii make 4.3-4.1build2 amd64 utility for directing compilation\\nii man-db 2.12.0-4build2 amd64 tools for reading manual pages\\nii manpages 6.7-2 all Manual pages about using a GNU/Linux system\\nii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development\\nii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language\\nii media-types 10.1.0 all List of standard media types and their usual file extension\\nii memtest86+ 7.00-1build1 amd64 stand-alone memory tester for x86 and x86-64\\nii mesa-vulkan-drivers:amd64 24.0.9-0ubuntu0.1 amd64 Mesa Vulkan graphics drivers\\nii mobile-broadband-provider-info 20230416-1 all database of mobile broadband service providers\\nii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems\\nii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys\\nii mongodb-database-tools 100.9.4 amd64 mongodb-database-tools package provides tools for working with the MongoDB server: \\nii mongodb-org-database-tools-extra 7.0.9 amd64 Extra MongoDB database tools\\nii mongodb-org-server 7.0.9 amd64 MongoDB database server\\nii mongodb-org-shell 7.0.9 amd64 MongoDB shell client\\nii mongodb-org-tools 7.0.9 amd64 MongoDB tools\\nii mount 2.39.3-9ubuntu6.1 amd64 tools for mounting and manipulating filesystems\\nii mousetweaks 3.32.0-4build2 amd64 mouse accessibility enhancements for the GNOME desktop\\nii mscompress 0.4-10build1 amd64 Microsoft \\"compress.exe/expand.exe\\" compatible (de)compressor\\nii msr-tools 1.3-5build1 amd64 Utilities for modifying MSRs from userspace\\nii mtr-tiny 0.95-1.1build2 amd64 Full screen ncurses traceroute tool\\nii mutter-common 46.2-1ubuntu0.24.04.1 all shared files for the Mutter window manager\\nii mutter-common-bin 46.2-1ubuntu0.24.04.1 amd64 shared programs for the Mutter window manager\\nii mysql-common 5.8+1.1.0build1 all MySQL database common files, e.g. /etc/mysql/my.cnf\\nii nano 7.2-2build1 amd64 small, friendly text editor inspired by Pico\\nii nautilus 1:46.2-0ubuntu0.2 amd64 file manager and graphical shell for GNOME\\nii nautilus-data 1:46.2-0ubuntu0.2 all data files for nautilus\\nii nautilus-extension-gnome-terminal:amd64 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application - Nautilus extension\\nii nautilus-sendto 3.8.6-7build2 amd64 easily send files via email from within Nautilus\\nii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions\\nii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages\\nii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions\\nii net-tools 2.10-0.1ubuntu4 amd64 NET-3 networking toolkit\\nii netbase 6.4 all Basic TCP/IP networking system\\nii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife\\nii netplan-generator 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration systemd-generator\\nii netplan.io 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration for various backends\\nii network-manager 1.46.0-1ubuntu2 amd64 network management framework (daemon and userspace tools)\\nii network-manager-config-connectivity-ubuntu 1.46.0-1ubuntu2 all NetworkManager configuration to enable connectivity checking\\nii network-manager-gnome 1.34.0-1ubuntu3 amd64 network management framework (GNOME frontend)\\nii network-manager-openvpn 1.10.2-4build2 amd64 network management framework (OpenVPN plugin core)\\nii network-manager-openvpn-gnome 1.10.2-4build2 amd64 network management framework (OpenVPN plugin GNOME GUI)\\nii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)\\nii network-manager-pptp-gnome 1.2.12-3build2 amd64 network management framework (PPTP plugin GNOME GUI)\\nii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes\\nii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project\\nii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE\\nii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool\\nii openipmi 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface (for servers)\\nii openjdk-17-jre-headless:amd64 17.0.12+7-1ubuntu2~24.04 amd64 OpenJDK Java runtime, using Hotspot JIT (headless)\\nii openprinting-ppds 20230202-1 all OpenPrinting printer support - PostScript PPD files\\nii openssh-client 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) client, for secure access to remote machines\\nii openssh-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) server, for secure access from remote machines\\nii openssh-sftp-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines\\nii openssl 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - cryptographic utility\\nii openvpn 2.6.9-1ubuntu4.1 amd64 virtual private network daemon\\nii orca 46.1-1ubuntu1 all Scriptable screen reader\\nii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives\\nii p11-kit 0.25.3-4ubuntu2.1 amd64 p11-glue utilities\\nii p11-kit-modules:amd64 0.25.3-4ubuntu2.1 amd64 p11-glue proxy and trust modules\\nii packagekit 1.2.8-2build3 amd64 Provides a package management service\\nii packagekit-tools 1.2.8-2build3 amd64 Provides PackageKit command-line tools\\nii parted 3.6-4build1 amd64 disk partition manipulator\\nii passwd 1:4.13+dfsg1-4ubuntu3 amd64 change and administer password and group data\\nii pastebinit 1.6.2-1 all command-line pastebin client\\nii patch 2.7.6-7build3 amd64 Apply a diff file to an original\\nii pci.ids 0.0~2024.03.31-1 all PCI ID Repository\\nii pciutils 1:3.10.0-2build1 amd64 PCI utilities\\nii pcmciautils 018-14build1 amd64 PCMCIA utilities for Linux 2.6\\nii perl 5.38.2-3.2build2 amd64 Larry Wall\'s Practical Extraction and Report Language\\nii perl-base 5.38.2-3.2build2 amd64 minimal Perl system\\nii perl-modules-5.38 5.38.2-3.2build2 all Core Perl modules\\nii perl-openssl-defaults:amd64 7build3 amd64 version compatibility baseline for Perl OpenSSL packages\\nii pigz 2.8-1 amd64 Parallel Implementation of GZip\\nii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG\\nii pinentry-gnome3 1.2.1-3ubuntu5 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG\\nii pipewire:amd64 1.0.5-1ubuntu1 amd64 audio and video processing engine multimedia server\\nii pipewire-alsa:amd64 1.0.5-1ubuntu1 amd64 PipeWire ALSA plugin, for ALSA applications to output via PipeWire\\nii pipewire-audio 1.0.5-1ubuntu1 all recommended set of PipeWire packages for a standard audio desktop use\\nii pipewire-bin 1.0.5-1ubuntu1 amd64 PipeWire multimedia server - programs\\nrc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire\\nii pipewire-pulse 1.0.5-1ubuntu1 amd64 PipeWire PulseAudio daemon\\nii pkexec 124-2ubuntu1 amd64 run commands as another user with polkit authorization\\nii pkgconf:amd64 1.8.1-2build1 amd64 manage compile and link flags for libraries\\nii pkgconf-bin 1.8.1-2build1 amd64 manage compile and link flags for libraries (binaries)\\nii plymouth 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer\\nii plymouth-label 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - label control\\nii plymouth-theme-spinner 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - spinner theme\\nii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme\\nii policykit-1 124-2ubuntu1 amd64 transitional package for polkitd and pkexec\\nii policykit-desktop-privileges 0.22 all run common desktop actions without password\\nii polkitd 124-2ubuntu1 amd64 framework for managing administrative policies and privileges\\nii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library\\nii poppler-utils 24.02.0-1ubuntu9.1 amd64 PDF utilities (based on Poppler)\\nii power-profiles-daemon 0.21-1 amd64 Makes power profiles handling available over D-Bus.\\nii powermgmt-base 1.37 all common utils for power management\\nii powertop 2.15-3build1 amd64 diagnose issues with power consumption and management\\nii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon\\nii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client\\nii printer-driver-brlaser 6-3build2 amd64 printer driver for (some) Brother laser printers\\nii printer-driver-c2esp 27-11ubuntu7 amd64 printer driver for Kodak ESP AiO color inkjet Series\\nii printer-driver-foo2zjs 20200505dfsg0-2ubuntu6 amd64 printer driver for ZjStream-based printers\\nii printer-driver-foo2zjs-common 20200505dfsg0-2ubuntu6 all printer driver for ZjStream-based printers - common files\\nii printer-driver-hpcups 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)\\nii printer-driver-m2300w 0.51-15build2 amd64 printer driver for Minolta magicolor 2300W/2400W color laser printers\\nii printer-driver-min12xxw 0.0.9-11build3 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW\\nii printer-driver-pnm2ppa 1.13+nondbs-0ubuntu10 amd64 printer driver for HP-GDI printers\\nii printer-driver-postscript-hp 3.23.12+dfsg0-0ubuntu5 amd64 HP Printers PostScript Descriptions\\nii printer-driver-ptouch 1.7-1build2 amd64 printer driver Brother P-touch label printers\\nii printer-driver-pxljr 1.4+repack0-6build2 amd64 printer driver for HP Color LaserJet 35xx/36xx\\nii printer-driver-sag-gdi 0.1-8 all printer driver for Ricoh Aficio SP 1000s/SP 1100s\\nii printer-driver-splix 2.0.0+svn315-7fakesync1ubuntu1 amd64 Driver for Samsung and Xerox SPL2 and SPLc laser printers\\nii procps 2:4.0.4-4ubuntu3 amd64 /proc file system utilities\\nii psmisc 23.7-1build1 amd64 utilities that use the proc file system\\nii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes\\nrc pulseaudio 1:15.99.1+dfsg1-1ubuntu2.2 amd64 PulseAudio sound server\\nii python-apt-common 2.7.7ubuntu3 all Python interface to libapt-pkg (locales)\\nii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files\\nii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii python3-apport 2.28.1-0ubuntu3.1 all Python 3 library for Apport crash report handling\\nii python3-apt 2.7.7ubuntu3 amd64 Python 3 interface to libapt-pkg\\nii python3-aptdaemon 1.1.1+bzr982-0ubuntu44 all Python 3 module for the server and client of aptdaemon\\nii python3-aptdaemon.gtk3widgets 1.1.1+bzr982-0ubuntu44 all Python 3 GTK+ 3 widgets to run an aptdaemon client\\nii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)\\nii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x\\nii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)\\nii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)\\nii python3-brlapi:amd64 6.6-4ubuntu5 amd64 Braille display access via BRLTTY - Python3 bindings\\nii python3-cairo 1.25.1-2build2 amd64 Python3 bindings for the Cairo vector graphics library\\nii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)\\nii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime\\nii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)\\nii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x\\nii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x\\nii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.\\nii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3\\nii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)\\nii python3-cups:amd64 2.0.1-5build6 amd64 Python3 bindings for CUPS\\nii python3-cupshelpers 1.5.18-1ubuntu9 all Python utility modules around the CUPS printing system\\nii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module\\nii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)\\nii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3\\nii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats\\nii python3-defer 1.0.6-2.1ubuntu1 all Small framework for asynchronous programming (Python 3)\\nii python3-dev 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii python3-distro 1.9.0-1 all Linux OS platform information API\\nii python3-distro-info 1.7build1 all information about distributions\' releases (Python 3 module)\\nii python3-distupgrade 1:24.04.23 all manage release upgrades\\nii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x\\nii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries\\nii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3\\nii python3-ibus-1.0 1.5.29-2 all Intelligent Input Bus - introspection overrides for Python (Python 3)\\nii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)\\nii python3-importlib-metadata 4.12.0-1 all library to access the metadata for a Python package - Python 3.x\\nii python3-jinja2 3.1.2-1ubuntu1.1 all small but fast and easy to use stand-alone template engine\\nii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x\\nii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x\\nii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)\\nii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token\\nii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)\\nii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)\\nii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs\\nii python3-louis 3.29.0-1build1 all Python bindings for liblouis\\nii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins\\nii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library\\nii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package\\nii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)\\nii python3-more-itertools 10.2.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)\\nii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)\\nii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x\\nii python3-netplan 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration Python bindings\\nii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3\\nii python3-olefile 0.46-3 all Python module to read/write MS OLE2 files\\nii python3-packaging 24.0-1 all core utilities for python3 packages\\nii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications\\nii python3-pil:amd64 10.2.0-1ubuntu1 amd64 Python Imaging Library (Python3)\\nii python3-pip 24.0+dfsg-1ubuntu1 all Python package installer\\nii python3-pip-whl 24.0+dfsg-1ubuntu1 all Python package installer (pip wheel)\\nii python3-pkg-resources 68.1.2-2ubuntu1 all Package Discovery and Resource Access using pkg_resources\\nii python3-problem-report 2.28.1-0ubuntu3.1 all Python 3 library to handle problem reports\\nii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3\\nii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3\\nii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x\\nii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python\\nii python3-requests 2.31.0+dfsg-1ubuntu1 all elegant and simple HTTP library for Python3, built for human beings\\nii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more\\nii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port\\nii python3-setuptools 68.1.2-2ubuntu1 all Python3 Distutils Enhancements\\nii python3-setuptools-whl 68.1.2-2ubuntu1 all Python Distutils Enhancements (wheel package)\\nii python3-six 1.16.0-4 all Python 2 and 3 compatibility library\\nii python3-software-properties 0.99.48 all manage the repositories that you install software from\\nii python3-speechd 0.12.0~rc2-2build3 all Python interface to Speech Dispatcher\\nii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd\\nii python3-tz 2024.1-2 all Python3 version of the Olson timezone database\\nii python3-uno 4:24.2.5-0ubuntu0.24.04.2 amd64 Python-UNO bridge\\nii python3-update-manager 1:24.04.6 all Python 3.x module for update-manager\\nii python3-urllib3 2.0.7-1 all HTTP library with thread-safe connection pooling for Python3\\nii python3-venv 3.12.3-0ubuntu2 amd64 venv module for python3 (default python3 version)\\nii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files\\nii python3-wheel 0.42.0-2 all built-package format for Python\\nii python3-xdg 0.28-2 all Python 3 library to access freedesktop.org standards\\nii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)\\nii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3\\nii python3-zipp 1.0.0-6ubuntu0.1 all pathlib-compatible Zipfile object wrapper - Python 3.x\\nrc python3.10-venv 3.10.12-1~22.04.5 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.10)\\nii python3.12 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (version 3.12)\\nii python3.12-dev 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii python3.12-minimal 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii python3.12-venv 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.12)\\nii readline-common 8.2-4build1 all GNU readline and history libraries, common files\\nii rfkill 2.39.3-9ubuntu6.1 amd64 tool for enabling and disabling wireless devices\\nii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions\\nii rsync 3.2.7-1ubuntu1 amd64 fast, versatile, remote (and local) file-copying tool\\nii rsyslog 8.2312.0-3ubuntu9 amd64 reliable system and kernel logging daemon\\nii rtkit 0.13-5build1 amd64 Realtime Policy and Watchdog Daemon\\nii rygel 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services\\nii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba core libraries\\nii sane-airscan 0.99.29-0ubuntu4 amd64 SANE backend for AirScan (eSCL) and WSD document scanner\\nii sane-utils 1.2.1-7build4 amd64 API library for scanners -- utilities\\nii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers\\nii seahorse 43.0-3build2 amd64 GNOME front end for GnuPG\\nii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX\\nii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text\\nii sensible-utils 0.0.22 all Utilities for sensible alternative selection\\nii session-migration 0.3.9build1 amd64 Tool to migrate in user session settings\\nii sgml-base 1.31 all SGML infrastructure and SGML catalog file support\\nii sgml-data 2.0.11+nmu1 all common SGML and XML data\\nii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec\\nii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)\\nii slirp4netns 1.2.1-1build2 amd64 User-mode networking for unprivileged network namespaces\\nii snapd 2.63.1+24.04 amd64 Daemon and tooling that enable snap packages\\nii software-properties-common 0.99.48 all manage the repositories that you install software from (common)\\nii software-properties-gtk 0.99.48 all manage the repositories that you install software from (gtk)\\nii sound-icons 0.1-8 all Sounds for speech enabled applications\\nii sound-theme-freedesktop 0.8-2ubuntu1 all freedesktop.org sound theme\\nii speech-dispatcher 0.12.0~rc2-2build3 amd64 Common interface to speech synthesizers\\nii speech-dispatcher-audio-plugins:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Audio output plugins\\nii speech-dispatcher-espeak-ng 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Espeak-ng output module\\nii spice-vdagent 0.22.1-4build3 amd64 Spice agent for Linux\\nii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems\\nii ssh-import-id 5.11-0ubuntu2 all securely retrieve an SSH public key and install it locally\\nii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL\\nii strace 6.8-0ubuntu2 amd64 System call tracer\\nii stress-ng 0.17.06-1build1 amd64 tool to load and stress a computer\\nii sudo 1.9.15p5-3ubuntu5 amd64 Provide limited super user privileges to specific users\\nii switcheroo-control 2.6-2build2 amd64 D-Bus service to check the availability of dual-GPU\\nii sysbench 1.0.20+ds-6build2 amd64 multi-threaded benchmark tool for database systems\\nii sysbox-ce 0.6.4.linux amd64 Sysbox Community Edition (CE) is a next-generation container runtime,\\nii syslinux-common 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 all collection of bootloaders (common)\\nii sysstat 12.6.1-2 amd64 system performance tools for Linux\\nii system-config-printer-common 1.5.18-1ubuntu9 all backend and the translation files for system-config-printer\\nii system-config-printer-udev 1.5.18-1ubuntu9 amd64 Utilities to detect and configure printers automatically\\nii systemd 255.4-1ubuntu8.4 amd64 system and service manager\\nii systemd-dev 255.4-1ubuntu8.4 all systemd development files\\nii systemd-hwe-hwdb 255.1.3 all udev rules for hardware enablement (HWE)\\nii systemd-oomd 255.4-1ubuntu8.4 amd64 userspace out-of-memory (OOM) killer\\nii systemd-resolved 255.4-1ubuntu8.4 amd64 systemd DNS resolver\\nii systemd-sysv 255.4-1ubuntu8.4 amd64 system and service manager - SysV compatibility symlinks\\nii systemd-timesyncd 255.4-1ubuntu8.4 amd64 minimalistic service to synchronize local time with NTP servers\\nii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities\\nii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility\\nii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell\\nii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell\\nii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer\\nii tecla 46.0-1build1 amd64 keyboard layout viewer for the GNOME desktop\\nii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch\\nii thermald 2.5.6-2build2 amd64 Thermal monitoring and controlling daemon\\nii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage\\nii tinyproxy 1.11.1-3 all Lightweight, non-caching, optionally anonymizing HTTP proxy\\nii tinyproxy-bin 1.11.1-3 amd64 Lightweight, non-caching, optionally anonymizing HTTP proxy (executable only)\\nii tnftp 20230507-2build3 amd64 enhanced ftp client\\nii tpm-udev 0.6ubuntu1 all udev rules for TPM modules\\nii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel\\nii tracker 3.7.1-1build1 amd64 metadata database, indexer and search tool\\nii tracker-extract 3.7.1-1build1 amd64 metadata database, indexer and search tool - metadata extractors\\nii tracker-miner-fs 3.7.1-1build1 amd64 metadata database, indexer and search tool - filesystem indexer\\nii tzdata 2024a-3ubuntu1.1 all time zone and daylight-saving time data\\nii ubuntu-advantage-desktop-daemon 1.11 amd64 Daemon to allow access to ubuntu-advantage via D-Bus\\nii ubuntu-desktop 1.539.1 amd64 Ubuntu desktop system\\nii ubuntu-desktop-minimal 1.539.1 amd64 Ubuntu desktop minimal system\\nii ubuntu-docs 24.04.2 all Ubuntu Desktop Guide\\nii ubuntu-drivers-common 1:0.9.7.6ubuntu3.1 amd64 Detect and install additional Ubuntu driver packages\\nii ubuntu-kernel-accessories 1.539.1 amd64 packages useful to install by default on systems with kernels\\nii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive\\nii ubuntu-minimal 1.539.1 amd64 Minimal core of Ubuntu\\nii ubuntu-mono 24.04-0ubuntu1 all Ubuntu Mono Icon theme\\nii ubuntu-pro-client 33.2~24.04.1 amd64 Management tools for Ubuntu Pro\\nii ubuntu-pro-client-l10n 33.2~24.04.1 amd64 Translations for Ubuntu Pro Client\\nii ubuntu-release-upgrader-core 1:24.04.23 all manage release upgrades\\nii ubuntu-release-upgrader-gtk 1:24.04.23 all manage release upgrades\\nii ubuntu-report 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics\\nii ubuntu-session 46.0-1ubuntu4 all Ubuntu session with GNOME Shell\\nii ubuntu-settings 24.04.4 all default settings for the Ubuntu desktop\\nii ubuntu-standard 1.539.1 amd64 Ubuntu standard system\\nii ubuntu-wallpapers 24.04.2 all Ubuntu Wallpapers\\nii ubuntu-wallpapers-noble 24.04.2 all Ubuntu 24.04 Wallpapers\\nii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files\\nii udev 255.4-1ubuntu8.4 amd64 /dev/ and hotplug management daemon\\nii udisks2 2.10.1-6build1 amd64 D-Bus service to access and manipulate storage devices\\nii ufw 0.36.2-6 all program for managing a Netfilter firewall\\nii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades\\nii unifi 8.1.127-25320-1 all Ubiquiti UniFi server\\nii uno-libs-private 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- private libraries used by public ones\\nii unzip 6.0-28ubuntu4 amd64 De-archiver for .zip files\\nii update-inetd 4.53 all inetd configuration file updater\\nii update-manager 1:24.04.6 all GNOME application that manages apt updates\\nii update-manager-core 1:24.04.6 all manage release upgrades\\nii update-notifier 3.192.68build3 amd64 Daemon which notifies about package updates\\nii update-notifier-common 3.192.68build3 all Files shared between update-notifier and other packages\\nii upower 1.90.3-1 amd64 abstraction for power management\\nii ure 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment\\nii usb-creator-common 0.3.17 all create a startup disk using a CD or disc image (common files)\\nii usb-creator-gtk 0.3.17 all create a startup disk using a CD or disc image (for GNOME)\\nii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling \\"flip flop\\" USB devices\\nii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch\\nii usb.ids 2024.03.18-1 all USB ID Repository\\nii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices\\nii usbutils 1:017-3build1 amd64 Linux USB utilities\\nii util-linux 2.39.3-9ubuntu6.1 amd64 miscellaneous system utilities\\nii uuid-dev:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library - headers and static libraries\\nii uuid-runtime 2.39.3-9ubuntu6.1 amd64 runtime components for the Universally Unique ID library\\nii vim-common 2:9.1.0016-1ubuntu7.2 all Vi IMproved - Common files\\nii vim-tiny 2:9.1.0016-1ubuntu7.2 amd64 Vi IMproved - enhanced vi editor - compact version\\nii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict\\nii wbritish 2020.12.07-2 all British English dictionary words for /usr/share/dict\\nii webp-pixbuf-loader:amd64 0.2.4-2build2 amd64 WebP Image format GdkPixbuf loader\\nii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web\\nii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts\\nii whoopsie 0.2.77build3 amd64 Ubuntu error tracker submission\\nii whoopsie-preferences 23build3 amd64 System preferences for error reporting\\nii wireless-regdb 2022.06.06-0ubuntu2 all wireless regulatory database\\nii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions\\nii wireplumber 0.4.17-1ubuntu4 amd64 modular session / policy manager for PipeWire\\nii wngerman 20161207-12 all New German orthography wordlist\\nii wogerman 1:2-39 all Traditional German wordlist\\nii wpasupplicant 2:2.10-21ubuntu0.1 amd64 client support for WPA and WPA2 (IEEE 802.11i)\\nii wswiss 20161207-12 all Swiss (German) orthography wordlist\\nii x11-apps 7.7+11build3 amd64 X applications\\nii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure\\nii x11-session-utils 7.7+6build2 amd64 X session utilities\\nii x11-utils 7.7+6build2 amd64 X11 utilities\\nii x11-xkb-utils 7.7+8build2 amd64 X11 XKB utilities\\nii x11-xserver-utils 7.7+10build2 amd64 X server utilities\\nii xauth 1:1.1.2-1build1 amd64 X authentication utility\\nii xbitmaps 1.1.1-2.2 all Base X bitmaps\\nii xbrlapi 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display - xbrlapi\\nii xcursor-themes 1.0.6-0ubuntu1 all Base X cursor themes\\nii xcvt 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator\\nii xdg-dbus-proxy 0.1.5-1build2 amd64 filtering D-Bus proxy\\nii xdg-desktop-portal 1.18.4-1ubuntu2 amd64 desktop integration portal for Flatpak and Snap\\nii xdg-desktop-portal-gnome 46.2-0ubuntu1 amd64 GNOME portal backend for xdg-desktop-portal\\nii xdg-desktop-portal-gtk 1.15.1-1build2 amd64 GTK+/GNOME portal backend for xdg-desktop-portal\\nii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories\\nii xdg-user-dirs-gtk 0.11-1build2 amd64 tool to manage well known user directories (Gtk extension)\\nii xdg-utils 1.1.3-4.1ubuntu3 all desktop integration utilities from freedesktop.org\\nii xfonts-base 1:1.0.5+nmu1 all standard fonts for X\\nii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts\\nii xfonts-scalable 1:1.0.3-1.3 all scalable fonts for X\\nii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs\\nii xinit 1.4.1-0ubuntu5 amd64 X server initialisation tool\\nii xinput 1.6.4-1build1 amd64 Runtime configuration and test of XInput devices\\nii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data\\nii xml-core 0.19 all XML infrastructure and XML catalog file support\\nii xorg 1:7.7+23ubuntu3 amd64 X.Org X Window System\\nii xorg-docs-core 1:1.7.1-1.2 all Core documentation for the X.org X Window System\\nii xorriso 1:1.5.6-1.1ubuntu3 amd64 command line ISO-9660 and Rock Ridge manipulation tool\\nii xserver-common 2:21.1.12-1ubuntu1 all common files used by various X servers\\nii xserver-xephyr 2:21.1.12-1ubuntu1 amd64 nested X server\\nii xserver-xorg 1:7.7+23ubuntu3 amd64 X.Org X server\\nii xserver-xorg-core 2:21.1.12-1ubuntu1 amd64 Xorg X server - core server\\nii xserver-xorg-input-all 1:7.7+23ubuntu3 amd64 X.Org X server -- input driver metapackage\\nii xserver-xorg-input-libinput 1.4.0-1build1 amd64 X.Org X server -- libinput input driver\\nii xserver-xorg-input-wacom 1:1.2.0-1ubuntu2 amd64 X.Org X server -- Wacom input driver\\nii xserver-xorg-legacy 2:21.1.12-1ubuntu1 amd64 setuid root Xorg server wrapper\\nii xserver-xorg-video-all 1:7.7+23ubuntu3 amd64 X.Org X server -- output driver metapackage\\nii xserver-xorg-video-amdgpu 23.0.0-1build1 amd64 X.Org X server -- AMDGPU display driver\\nii xserver-xorg-video-ati 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI display driver wrapper\\nii xserver-xorg-video-fbdev 1:0.5.0-2build2 amd64 X.Org X server -- fbdev display driver\\nii xserver-xorg-video-intel 2:2.99.917+git20210115-1build1 amd64 X.Org X server -- Intel i8xx, i9xx display driver\\nii xserver-xorg-video-nouveau 1:1.0.17-2build1 amd64 X.Org X server -- Nouveau display driver\\nii xserver-xorg-video-qxl 0.1.6-1build1 amd64 X.Org X server -- QXL display driver\\nii xserver-xorg-video-radeon 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI Radeon display driver\\nii xserver-xorg-video-vesa 1:2.6.0-1 amd64 X.Org X server -- VESA display driver\\nii xserver-xorg-video-vmware 1:13.4.0-1build1 amd64 X.Org X server -- VMware display driver\\nii xwayland 2:23.2.6-1 amd64 X server for running X clients under Wayland\\nii xxd 2:9.1.0016-1ubuntu7.2 amd64 tool to make (or reverse) a hex dump\\nii xz-utils 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression utilities\\nii yaru-theme-gnome-shell 24.04.2-0ubuntu1 all Yaru GNOME Shell desktop theme from the Ubuntu Community\\nii yaru-theme-gtk 24.04.2-0ubuntu1 all Yaru GTK theme from the Ubuntu Community\\nii yaru-theme-icon 24.04.2-0ubuntu1 all Yaru icon theme from the Ubuntu Community\\nii yaru-theme-sound 24.04.2-0ubuntu1 all Yaru sound theme from the Ubuntu Community\\nii yelp 42.2-1build2 amd64 Help browser for GNOME\\nii yelp-xsl 42.1-2 all XSL stylesheets for the yelp help browser\\nii zenity 4.0.1-1build3 amd64 Display graphical dialog boxes from shell scripts\\nii zenity-common 4.0.1-1build3 all Display graphical dialog boxes from shell scripts (common files)\\nii zip 3.0-13build1 amd64 Archiver for .zip files\\nii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime\\nii zlib1g-dev:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - development\\nii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool\\n", "Turbo Boost (Legacy non intel_pstate)": "File not found"}',E'{"uri": "/home/arne/Sites/green-coding/example-applications/", "uri_type": "folder", "name": "Stress Test #5", "filename": "stress/usage_scenario.yml", "branch": null, "debug_mode": false, "allow_unsafe": false, "skip_system_checks": false, "skip_unsafe": true, "verbose_provider_boot": false, "full_docker_prune": false, "dev_no_sleeps": false, "dev_no_build": true, "dev_no_metrics": false, "dev_flow_timetravel": false, "dev_no_optimizations": false, "docker_prune": false, "job_id": null}',1,E'64134395e83e6e57cf6247a2b0ec11b562d1fa95',E'{"sci": {"I": 436, "EL": 4, "RS": 1, "TE": 181000}, "measurement": {"boot": {"wait_time_dependencies": 60}, "idle-duration": 5, "pre-test-sleep": 5, "total-duration": 3600, "post-test-sleep": 5, "metric-providers": {"linux": {"network.io.cgroup.container.provider.NetworkIoCgroupContainerProvider": {"resolution": 99}, "cpu.energy.rapl.msr.component.provider.CpuEnergyRaplMsrComponentProvider": {"resolution": 99}, "cpu.utilization.procfs.system.provider.CpuUtilizationProcfsSystemProvider": {"resolution": 99}, "memory.total.cgroup.container.provider.MemoryTotalCgroupContainerProvider": {"resolution": 99}, "psu.energy.dc.rapl.msr.machine.provider.PsuEnergyDcRaplMsrMachineProvider": {"resolution": 99}, "cpu.utilization.cgroup.container.provider.CpuUtilizationCgroupContainerProvider": {"resolution": 99}}, "macos": {"powermetrics.provider.PowermetricsProvider": {"resolution": 99}, "cpu.utilization.mach.system.provider.CpuUtilizationMachSystemProvider": {"resolution": 99}}, "common": {"network.connections.proxy.container.provider.NetworkConnectionsProxyContainerProvider": null}}, "baseline-duration": 5, "flow-process-duration": 1800, "phase-transition-time": 1, "system_check_threshold": 3}}',NULL,NULL,NULL,NULL,NULL,FALSE,E'2024-09-12 17:00:58.98517+00',E'2024-09-12 17:01:02.265489+00'); +(E'a416057b-235f-41d8-9fb8-9bcc70a308e7',NULL,E'Stress Test #1',E'/home/arne/Sites/green-coding/example-applications/',E'main',E'58c7a5002c684f41f8d7a355f3ede641d8e45ddc',E'2024-07-10 13:48:46+00',E'manual',NULL,E'{"name": "Stress Container One Core 5 Seconds", "author": "Arne Tarara <arne@green-coding.berlin>", "description": "A simple 5 seconds stress on the system with one core. Expected display result is a rectangle shaped load.", "flow": [{"name": "Stress", "container": "gcb-alpine-stress", "commands": [{"type": "console", "command": "stress-ng -c 1 -t 5 -q", "note": "Starting Stress"}]}], "version": "2", "services": {"gcb-alpine-stress": {"container_name": "gcb-alpine-stress", "image": "gcb_alpine_stress", "build": "."}}}',E'stress/usage_scenario.yml',E'{"SGX": "This CPU does not support Intel SGX", "Uptime": " 18:42:54 up 6 min, 3 users, load average: 1.10, 0.73, 0.38", "Cpu Info": "11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz", "Platform": "Linux", "Processes": "USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\\nroot 1 0.9 0.0 23440 14188 ? Ss 18:36 0:03 /sbin/init splash\\nroot 2 0.0 0.0 0 0 ? S 18:36 0:00 [kthreadd]\\nroot 3 0.0 0.0 0 0 ? S 18:36 0:00 [pool_workqueue_release]\\nroot 4 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_g]\\nroot 5 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_p]\\nroot 6 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-slub_]\\nroot 7 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-netns]\\nroot 8 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:0-events]\\nroot 9 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:0H-events_highpri]\\nroot 10 0.1 0.0 0 0 ? I 18:36 0:00 [kworker/0:1-pm]\\nroot 12 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mm_pe]\\nroot 13 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_kthread]\\nroot 14 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_rude_kthread]\\nroot 15 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_trace_kthread]\\nroot 16 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/0]\\nroot 17 0.1 0.0 0 0 ? I 18:36 0:00 [rcu_preempt]\\nroot 18 0.0 0.0 0 0 ? S 18:36 0:00 [migration/0]\\nroot 19 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/0]\\nroot 20 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/0]\\nroot 21 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/1]\\nroot 22 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/1]\\nroot 23 0.0 0.0 0 0 ? S 18:36 0:00 [migration/1]\\nroot 24 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/1]\\nroot 26 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:0H-events_highpri]\\nroot 27 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/2]\\nroot 28 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/2]\\nroot 29 0.0 0.0 0 0 ? S 18:36 0:00 [migration/2]\\nroot 30 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/2]\\nroot 31 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:0-pm]\\nroot 32 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:0H-events_highpri]\\nroot 33 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/3]\\nroot 34 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/3]\\nroot 35 0.0 0.0 0 0 ? S 18:36 0:00 [migration/3]\\nroot 36 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/3]\\nroot 37 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:0-events]\\nroot 38 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:0H-events_highpri]\\nroot 39 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/4]\\nroot 40 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/4]\\nroot 41 0.0 0.0 0 0 ? S 18:36 0:00 [migration/4]\\nroot 42 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/4]\\nroot 43 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:0-mm_percpu_wq]\\nroot 44 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:0H-events_highpri]\\nroot 45 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/5]\\nroot 46 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/5]\\nroot 47 0.0 0.0 0 0 ? S 18:36 0:00 [migration/5]\\nroot 48 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/5]\\nroot 49 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:0-cgroup_destroy]\\nroot 50 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:0H-events_highpri]\\nroot 51 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/6]\\nroot 52 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/6]\\nroot 53 0.0 0.0 0 0 ? S 18:36 0:00 [migration/6]\\nroot 54 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/6]\\nroot 56 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:0H-kblockd]\\nroot 57 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/7]\\nroot 58 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/7]\\nroot 59 0.0 0.0 0 0 ? S 18:36 0:00 [migration/7]\\nroot 60 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/7]\\nroot 62 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:0H-kblockd]\\nroot 63 0.0 0.0 0 0 ? S 18:36 0:00 [kdevtmpfs]\\nroot 64 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-inet_]\\nroot 65 0.0 0.0 0 0 ? S 18:36 0:00 [kauditd]\\nroot 67 0.0 0.0 0 0 ? S 18:36 0:00 [khungtaskd]\\nroot 68 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:2-flush-259:0]\\nroot 69 0.0 0.0 0 0 ? S 18:36 0:00 [oom_reaper]\\nroot 70 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-write]\\nroot 71 0.0 0.0 0 0 ? S 18:36 0:00 [kcompactd0]\\nroot 72 0.0 0.0 0 0 ? SN 18:36 0:00 [ksmd]\\nroot 73 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:1-pm]\\nroot 74 0.0 0.0 0 0 ? SN 18:36 0:00 [khugepaged]\\nroot 75 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kinte]\\nroot 76 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kbloc]\\nroot 77 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-blkcg]\\nroot 79 0.0 0.0 0 0 ? S 18:36 0:00 [irq/9-acpi]\\nroot 80 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:1-events]\\nroot 81 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:1-events]\\nroot 82 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tpm_d]\\nroot 83 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ata_s]\\nroot 84 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md]\\nroot 85 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md_bi]\\nroot 86 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-edac-]\\nroot 87 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-devfr]\\nroot 88 0.0 0.0 0 0 ? S 18:36 0:00 [watchdogd]\\nroot 89 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:1-events]\\nroot 90 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:1H-kblockd]\\nroot 91 0.0 0.0 0 0 ? S 18:36 0:00 [kswapd0]\\nroot 92 0.0 0.0 0 0 ? S 18:36 0:00 [ecryptfs-kthread]\\nroot 93 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kthro]\\nroot 94 0.0 0.0 0 0 ? S 18:36 0:00 [irq/127-pciehp]\\nroot 95 0.0 0.0 0 0 ? S 18:36 0:00 [irq/128-pciehp]\\nroot 96 0.0 0.0 0 0 ? S 18:36 0:00 [irq/129-pciehp]\\nroot 97 0.0 0.0 0 0 ? S 18:36 0:00 [irq/130-pciehp]\\nroot 98 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:1-events]\\nroot 99 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:1-events]\\nroot 100 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-acpi_]\\nroot 101 0.0 0.0 0 0 ? S 18:36 0:00 [hwrng]\\nroot 102 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:2-events]\\nroot 103 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mld]\\nroot 104 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:1H]\\nroot 105 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipv6_]\\nroot 112 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kstrp]\\nroot 114 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:0-hci0]\\nroot 128 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-charg]\\nroot 129 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:3-events]\\nroot 153 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:1H-kblockd]\\nroot 157 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:1H-kblockd]\\nroot 185 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:1H-kblockd]\\nroot 186 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:1H]\\nroot 194 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:1H-kblockd]\\nroot 195 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:1H-kblockd]\\nroot 196 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:2-rcu_gp]\\nroot 217 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:2-pm]\\nroot 218 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 219 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 220 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 221 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 223 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:3-events]\\nroot 224 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:2-pm]\\nroot 225 0.0 0.0 0 0 ? S 18:36 0:00 [irq/173-FRMW0001:00]\\nroot 226 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:2-events]\\nroot 227 0.0 0.0 0 0 ? S 18:36 0:00 [irq/174-PIXA3854:00]\\nroot 264 0.0 0.0 0 0 ? S 18:36 0:00 [jbd2/nvme0n1p5-8]\\nroot 265 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ext4-]\\nroot 315 0.1 0.0 67096 17436 ? S<s 18:36 0:00 /usr/lib/systemd/systemd-journald\\nroot 349 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:4-events]\\nroot 351 0.2 0.0 30832 8576 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-udevd\\nroot 395 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 423 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:5-events_unbound]\\nroot 449 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:6-flush-259:0]\\nroot 450 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:7-events_unbound]\\nroot 451 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:8-flush-259:0]\\nroot 452 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:9-flush-259:0]\\nroot 468 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:2-events]\\nroot 514 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cfg80]\\nroot 520 0.0 0.0 0 0 ? S 18:36 0:00 [irq/191-mei_me]\\nroot 531 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-crypt]\\nroot 534 0.3 0.0 0 0 ? S 18:36 0:01 [irq/192-iwlwifi:default_queue]\\nroot 535 0.0 0.0 0 0 ? S 18:36 0:00 [irq/193-iwlwifi:queue_1]\\nroot 536 0.0 0.0 0 0 ? S 18:36 0:00 [irq/194-iwlwifi:queue_2]\\nroot 538 0.7 0.0 0 0 ? S 18:36 0:03 [irq/195-iwlwifi:queue_3]\\nroot 539 0.0 0.0 0 0 ? S 18:36 0:00 [irq/196-iwlwifi:queue_4]\\nroot 540 0.0 0.0 0 0 ? S 18:36 0:00 [irq/197-iwlwifi:queue_5]\\nroot 541 0.0 0.0 0 0 ? S 18:36 0:00 [irq/198-iwlwifi:queue_6]\\nroot 542 0.0 0.0 0 0 ? S 18:36 0:00 [irq/199-iwlwifi:queue_7]\\nroot 543 0.0 0.0 0 0 ? S 18:36 0:00 [irq/200-iwlwifi:queue_8]\\nroot 544 0.0 0.0 0 0 ? S 18:36 0:00 [irq/201-iwlwifi:exception]\\nroot 576 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ttm]\\nroot 583 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cros_]\\nroot 586 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc0]\\nroot 587 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc1]\\nroot 588 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc2]\\nroot 589 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc3]\\nroot 640 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:3-events]\\nsystemd+ 660 0.1 0.0 17728 7680 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-oomd\\nsystemd+ 665 0.0 0.0 21584 12800 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-resolved\\nsystemd+ 671 0.0 0.0 91044 7680 ? Ssl 18:36 0:00 /usr/lib/systemd/systemd-timesyncd\\nroot 754 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:3-pm]\\nroot 785 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:3-hci0]\\nroot 790 0.0 0.0 314260 8124 ? Ssl 18:36 0:00 /usr/libexec/accounts-daemon\\navahi 793 0.1 0.0 8780 3840 ? Ss 18:36 0:00 avahi-daemon: running [framebook.local]\\nroot 794 0.0 0.0 13684 6528 ? Ss 18:36 0:00 /usr/libexec/bluetooth/bluetoothd\\nroot 795 0.0 0.0 9804 2816 ? Ss 18:36 0:00 /usr/sbin/cron -f -P\\nmessage+ 796 0.8 0.0 11992 6528 ? Ss 18:36 0:03 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngnome-r+ 800 0.0 0.0 439064 16176 ? Ssl 18:36 0:00 /usr/libexec/gnome-remote-desktop-daemon --system\\nroot 804 0.1 0.0 314320 7808 ? Ssl 18:36 0:00 /usr/libexec/iio-sensor-proxy\\npolkitd 812 0.2 0.0 384348 10120 ? Ssl 18:36 0:00 /usr/lib/polkit-1/polkitd --no-debug\\nroot 815 0.0 0.0 314180 7856 ? Ssl 18:36 0:00 /usr/libexec/power-profiles-daemon\\nroot 831 0.4 0.1 2287584 35108 ? Ssl 18:36 0:01 /usr/lib/snapd/snapd\\nroot 836 0.0 0.0 310432 6912 ? Ssl 18:36 0:00 /usr/libexec/switcheroo-control\\nroot 838 0.8 0.0 725084 13012 ? Ssl 18:36 0:03 /usr/bin/sysbox-mgr\\nroot 842 0.3 0.0 18136 9220 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-logind\\nroot 844 0.1 0.0 425420 10368 ? Ssl 18:36 0:00 /usr/sbin/thermald --systemd --dbus-enable --adaptive\\nroot 845 0.0 0.0 469148 13116 ? Ssl 18:36 0:00 /usr/libexec/udisks2/udisksd\\navahi 893 0.0 0.0 8420 1284 ? S 18:36 0:00 avahi-daemon: chroot helper\\nroot 898 0.3 0.0 338968 21172 ? Ssl 18:36 0:01 /usr/sbin/NetworkManager --no-daemon\\nroot 901 0.0 0.0 18400 11264 ? Ss 18:36 0:00 /usr/sbin/wpa_supplicant -u -s -O DIR=/run/wpa_supplicant GROUP=netdev\\nroot 913 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipmi-]\\nsyslog 919 0.0 0.0 222508 6016 ? Ssl 18:36 0:00 /usr/sbin/rsyslogd -n -iNONE\\nroot 971 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:3-events]\\nroot 1073 0.0 0.0 392104 12664 ? Ssl 18:36 0:00 /usr/sbin/ModemManager\\nroot 1085 0.0 0.0 314184 8224 ? Ssl 18:36 0:00 /usr/libexec/boltd\\nroot 1086 0.0 0.0 317632 9472 ? Ssl 18:36 0:00 /usr/libexec/upowerd\\nroot 1113 0.0 0.0 1166524 11008 ? Ssl 18:36 0:00 /usr/bin/sysbox-fs\\nroot 1121 0.0 0.0 2800 1664 ? Ss 18:36 0:00 /bin/sh -c /usr/bin/sysbox-runc --version && /usr/bin/sysbox-mgr --version && /usr/bin/sysbox-fs --version && /bin/sleep infinity\\nroot 1149 0.0 0.0 9076 2176 ? S 18:36 0:00 /bin/sleep infinity\\nroot 1430 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 1439 0.0 0.0 38488 11392 ? Ss 18:36 0:00 /usr/sbin/cupsd -l\\nroot 1447 0.3 0.2 2249812 65304 ? Ssl 18:36 0:01 /usr/bin/containerd\\nroot 1469 0.0 0.0 315384 9472 ? Ssl 18:36 0:00 /usr/sbin/gdm3\\nroot 1492 0.0 0.0 242664 9856 ? Sl 18:36 0:00 gdm-session-worker [pam/gdm-launch-environment]\\ngdm 1499 0.3 0.0 20988 11904 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\ngdm 1500 0.0 0.0 21400 3600 ? S 18:36 0:00 (sd-pam)\\ngdm 1512 0.0 0.0 114056 12032 ? S<sl 18:36 0:00 /usr/bin/pipewire\\ngdm 1513 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\ngdm 1515 0.0 0.0 407672 18944 ? S<sl 18:36 0:00 /usr/bin/wireplumber\\ngdm 1516 0.0 0.0 110484 11008 ? S<sl 18:36 0:00 /usr/bin/pipewire-pulse\\ngdm 1517 0.0 0.0 236396 6272 tty1 Ssl+ 18:36 0:00 /usr/libexec/gdm-wayland-session dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\ngdm 1525 0.0 0.0 9420 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngdm 1533 0.0 0.0 6500 2432 tty1 S+ 18:36 0:00 dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\nrtkit 1535 0.0 0.0 22940 3456 ? SNsl 18:36 0:00 /usr/libexec/rtkit-daemon\\ngdm 1537 0.0 0.0 9856 5120 tty1 S+ 18:36 0:00 dbus-daemon --nofork --print-address 4 --session\\ngdm 1546 0.0 0.0 521532 18048 tty1 Sl+ 18:36 0:00 /usr/libexec/gnome-session-binary --autostart /usr/share/gdm/greeter/autostart\\ngdm 1548 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\ngdm 1557 0.0 0.0 310008 6400 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 1564 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/128/doc\\ngdm 1590 2.8 0.6 4424672 205668 tty1 Sl+ 18:36 0:10 /usr/bin/gnome-shell\\nroot 1621 0.0 0.0 0 0 ? S< 18:36 0:00 [krfcommd]\\ncups-br+ 1656 0.0 0.0 268504 19712 ? Ssl 18:36 0:00 /usr/sbin/cups-browsed\\nroot 1657 0.4 0.2 3317612 93860 ? Ssl 18:36 0:01 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock\\nkernoops 1659 0.0 0.0 12744 2184 ? Ss 18:36 0:00 /usr/sbin/kerneloops --test\\nkernoops 1662 0.0 0.0 12744 2188 ? Ss 18:36 0:00 /usr/sbin/kerneloops\\nroot 1702 0.0 0.0 12020 8064 ? Ss 18:36 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups\\nroot 2398 0.0 0.0 1238168 13672 ? Sl 18:36 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928 -address /run/containerd/containerd.sock\\nroot 2511 0.0 0.0 1136 512 ? Ss 18:36 0:00 /sbin/docker-init -- buildkitd --allow-insecure-entitlement=network.host\\nroot 2717 0.0 0.1 1271012 34000 ? Sl 18:36 0:00 buildkitd --allow-insecure-entitlement=network.host\\nroot 2728 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:3-inet_frag_wq]\\nroot 2863 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tls-s]\\nroot 2998 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:4-pm]\\nroot 2999 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:5-kacpi_notify]\\nroot 3000 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:6-events]\\nroot 3001 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:7-kacpi_notify]\\ngdm 3022 0.0 0.0 383120 7680 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi-bus-launcher\\ngdm 3028 0.0 0.0 9420 4992 tty1 S+ 18:36 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/128/at-spi/bus\\ngdm 3030 0.0 0.2 529220 73856 tty1 Sl+ 18:36 0:00 /usr/bin/Xwayland :1024 -rootless -noreset -accessx -core -auth /run/user/128/.mutter-Xwaylandauth.4R00T2 -listenfd 4 -listenfd 5 -displayfd 6 -initfd 7 -byteswappedclients\\ngdm 3034 0.0 0.0 236068 7296 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session\\ncolord 3035 0.0 0.0 320904 14776 ? Ssl 18:36 0:00 /usr/libexec/colord\\ngdm 3069 0.0 0.0 310008 6400 tty1 Sl+ 18:36 0:00 /usr/libexec/xdg-permission-store\\ngdm 3078 0.0 0.0 2663384 26852 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.Shell.Notifications\\ngdm 3080 0.0 0.0 544408 13440 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sharing\\ngdm 3091 0.1 0.0 487204 19200 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-wacom\\ngdm 3095 0.0 0.0 414336 19904 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-color\\ngdm 3100 0.0 0.0 412624 19204 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-keyboard\\ngdm 3109 0.0 0.0 324188 11520 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-print-notifications\\ngdm 3114 0.0 0.0 458120 7040 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-rfkill\\ngdm 3119 0.0 0.0 386768 8192 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-smartcard\\ngdm 3129 0.0 0.0 432620 12416 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-datetime\\ngdm 3146 0.0 0.0 595396 24488 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-media-keys\\ngdm 3149 0.0 0.0 310116 6528 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-screensaver-proxy\\ngdm 3155 0.0 0.0 394584 9984 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sound\\ngdm 3163 0.0 0.0 384468 6912 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-a11y-settings\\ngdm 3169 0.0 0.0 459824 8320 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-housekeeping\\ngdm 3172 0.2 0.0 524880 23336 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-power\\ngdm 3290 0.0 0.0 416764 15232 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-printer\\ngdm 3333 0.0 0.0 2794456 27380 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.ScreenSaver\\ngdm 3345 0.0 0.2 992124 77664 tty1 Sl+ 18:36 0:00 /usr/libexec/mutter-x11-frames\\ngdm 3346 0.0 0.0 389372 12224 tty1 Sl 18:36 0:00 ibus-daemon --panel disable -r --xim\\ngdm 3360 0.0 0.0 311020 7296 tty1 Sl 18:36 0:00 /usr/libexec/ibus-dconf\\ngdm 3362 0.0 0.2 610420 66612 tty1 Sl 18:36 0:00 /usr/libexec/ibus-x11 --kill-daemon\\ngdm 3364 0.0 0.0 310984 7424 tty1 Sl+ 18:36 0:00 /usr/libexec/ibus-portal\\ngdm 3378 0.0 0.0 237196 7424 tty1 Sl 18:36 0:00 /usr/libexec/ibus-engine-simple\\nroot 3437 0.0 0.0 15116 8048 ? Ss 18:36 0:00 sshd: arne [priv]\\narne 3449 0.1 0.0 21024 12288 ? Ss 18:36 0:00 /usr/lib/systemd/systemd --user\\narne 3453 0.0 0.0 21396 3596 ? S 18:36 0:00 (sd-pam)\\narne 3464 0.0 0.0 109524 8576 ? Ssl 18:36 0:00 /usr/bin/pipewire\\narne 3465 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\narne 3468 0.0 0.0 39000 11776 ? Ss 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3472 0.0 0.0 405708 16000 ? Ssl 18:36 0:00 /usr/bin/wireplumber\\narne 3475 0.0 0.0 109904 10496 ? Ssl 18:36 0:00 /usr/bin/pipewire-pulse\\narne 3501 0.0 0.0 9444 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\narne 3542 0.0 0.0 15276 7108 ? S 18:36 0:00 sshd: arne@pts/0\\narne 3544 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\narne 3549 0.0 0.0 309864 6272 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 3556 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc\\narne 3594 0.0 0.0 353012 21644 ? Sl 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3599 0.0 0.0 11980 5632 pts/0 Ss 18:36 0:00 -bash\\nroot 3669 0.0 0.0 15116 8176 ? Ss 18:37 0:00 sshd: arne [priv]\\narne 3711 0.9 0.0 15276 7108 ? S 18:37 0:03 sshd: arne@pts/1\\narne 3712 0.0 0.0 11980 5632 pts/1 Ss 18:37 0:00 -bash\\nroot 3755 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/7:3-events]\\nroot 3759 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:8-kacpi_notify]\\nroot 3760 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:9-kacpi_notify]\\nroot 3801 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:10-kacpi_notify]\\nroot 3834 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:11-kacpi_notify]\\nroot 3835 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:12-pm]\\nroot 3878 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:13-kacpi_notify]\\nroot 3879 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:14-events]\\nroot 3880 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:15-kacpi_notify]\\nroot 4401 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:5-pm]\\nroot 4402 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:6]\\nroot 4403 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/3:4]\\ngdm 4737 0.0 0.0 0 0 tty1 Z+ 18:40 0:00 [dbus-daemon] <defunct>\\ngdm 4742 0.0 0.0 317072 9856 ? Ssl 18:40 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/128/keyring\\nroot 4828 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/4:3-events]\\nroot 4875 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/0:16-i915-unordered]\\nroot 4983 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/6:0-events]\\nroot 5020 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:0-cgroup_destroy]\\nroot 5028 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/7:0]\\narne 5100 0.7 0.0 2068224 25984 pts/0 Sl+ 18:42 0:00 docker compose up\\narne 5122 1.2 0.1 2169824 45696 pts/0 Sl+ 18:42 0:00 /usr/libexec/docker/cli-plugins/docker-compose compose up\\nroot 5207 0.0 0.0 1745288 4352 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5214 0.0 0.0 1745032 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5235 0.0 0.0 1238168 13440 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45 -address /run/containerd/containerd.sock\\nroot 5262 0.0 0.0 1237912 13056 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2 -address /run/containerd/containerd.sock\\n999 5282 3.0 0.0 37240 8448 ? Ssl 18:42 0:00 redis-server *:6379\\n999 5289 0.5 0.0 219720 29824 ? Ss 18:42 0:00 postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key -c work_mem=16MB -p 9573\\nroot 5393 0.0 0.0 1745288 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5405 0.0 0.0 1597568 4096 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5419 0.0 0.0 1237912 13056 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7 -address /run/containerd/containerd.sock\\nroot 5450 0.0 0.0 1238168 13184 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf -address /run/containerd/containerd.sock\\nroot 5471 0.1 0.0 1136 512 ? Ss 18:42 0:00 /sbin/docker-init -- /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5479 0.1 0.0 12120 7984 ? Ss 18:42 0:00 nginx: master process nginx -g daemon off;\\nroot 5535 0.0 0.0 4344 3200 ? S 18:42 0:00 /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5536 3.5 0.0 37560 31352 ? S 18:42 0:00 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5560 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5561 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5562 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5563 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5564 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5565 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5566 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5567 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5570 47.2 0.4 877040 139272 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5571 45.2 0.4 877044 139136 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5572 46.2 0.4 877032 139256 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5573 44.7 0.4 876924 139588 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5574 43.2 0.4 877056 139432 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5575 44.4 0.4 877048 139480 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5576 42.6 0.4 877044 139776 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5577 39.2 0.4 877048 139524 ? Sl 18:42 0:02 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\n999 5620 0.0 0.0 219720 5912 ? Ss 18:42 0:00 postgres: checkpointer \\n999 5621 0.0 0.0 219720 5784 ? Ss 18:42 0:00 postgres: background writer \\n999 5623 0.0 0.0 219720 5656 ? Ss 18:42 0:00 postgres: walwriter \\n999 5624 0.0 0.0 221312 8984 ? Ss 18:42 0:00 postgres: autovacuum launcher \\n999 5625 0.0 0.0 221288 8088 ? Ss 18:42 0:00 postgres: logical replication launcher \\narne 5725 81.1 0.3 928140 129952 pts/1 Sl+ 18:42 0:01 python3 runner.py --uri /home/arne/Sites/green-coding/example-applications/ --filename stress/usage_scenario.yml --name Stress Test #1 --dev-no-build --skip-unsafe\\n999 5732 0.0 0.0 222408 17432 ? Ss 18:42 0:00 postgres: postgres green-coding 172.25.0.1(50810) idle\\n999 5733 0.0 0.0 222620 20120 ? Ss 18:42 0:00 postgres: postgres green-coding 172.25.0.1(50826) idle\\nroot 5864 6.8 0.0 17276 7552 ? Ss 18:42 0:00 /usr/lib/systemd/systemd-hostnamed\\narne 5954 0.0 0.0 2800 1664 pts/1 S+ 18:42 0:00 /bin/sh -c /usr/bin/ps -aux\\narne 5955 700 0.0 15512 5376 pts/1 R+ 18:42 0:00 /usr/bin/ps -aux\\n", "Disk Usage": 323008147456, "Docker Info": "Client: Docker Engine - Community\\n Version: 27.2.1\\n Context: default\\n Debug Mode: false\\n Plugins:\\n buildx: Docker Buildx (Docker Inc.)\\n Version: v0.16.2\\n Path: /usr/libexec/docker/cli-plugins/docker-buildx\\n compose: Docker Compose (Docker Inc.)\\n Version: v2.29.2\\n Path: /usr/libexec/docker/cli-plugins/docker-compose\\n\\nServer:\\n Containers: 5\\n Running: 5\\n Paused: 0\\n Stopped: 0\\n Images: 13\\n Server Version: 27.2.1\\n Storage Driver: overlayfs\\n driver-type: io.containerd.snapshotter.v1\\n Logging Driver: json-file\\n Cgroup Driver: systemd\\n Cgroup Version: 2\\n Plugins:\\n Volume: local\\n Network: bridge host ipvlan macvlan null overlay\\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\\n Swarm: inactive\\n Runtimes: io.containerd.runc.v2 runc sysbox-runc\\n Default Runtime: runc\\n Init Binary: docker-init\\n containerd version: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc version: v1.1.13-0-g58aa920\\n init version: de40ad0\\n Security Options:\\n apparmor\\n seccomp\\n Profile: builtin\\n cgroupns\\n Kernel Version: 6.8.0-44-generic\\n Operating System: Ubuntu 24.04.1 LTS\\n OSType: linux\\n Architecture: x86_64\\n CPUs: 8\\n Total Memory: 31.13GiB\\n Name: framebook\\n ID: 492c90f2-99f1-437f-a14b-9f1e5d514ca9\\n Docker Root Dir: /var/lib/docker\\n Debug Mode: false\\n Username: greencoding\\n Experimental: false\\n Insecure Registries:\\n 127.0.0.0/8\\n Live Restore Enabled: false\\n Default Address Pools:\\n Base: 172.25.0.0/16, Size: 24\\n\\n", "Free Memory": 31183421440, "Turbo Boost": "0", "Architecture": "x86-64", "Memory Total": "32646584 kB", "Power Limits": {"/sys/devices/virtual/powercap/intel-rapl/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/name": "package-0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/name": "psys\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj": "1258504102\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/energy_uj": "2759136491\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_name": "peak_power\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/name": "core\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/name": "uncore\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/energy_uj": "452269350\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/energy_uj": "6799237\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_max_power_uw": "28000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_power_limit_uw": "200000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_time_window_us": "31981568\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_power_limit_uw": "64000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_time_window_us": "2440\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_power_limit_uw": "121000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_time_window_us": "27983872\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_suspended_time": "0\\n"}, "IO Scheduling": "File not found", "Linux Version": "Linux 6.8.0-44-generic", "CPU Scheduling": {"/sys/kernel/debug/sched/debug": "Sched Debug Version: v0.11, 6.8.0-44-generic #44-Ubuntu\\nktime : 393085.884646\\nsched_clk : 393151.538847\\ncpu_clk : 393107.097746\\njiffies : 4295060222\\nsched_clock_stable() : 1\\n\\nsysctl_sched\\n .sysctl_sched_base_slice : 3.000000\\n .sysctl_sched_features : 6237751\\n .sysctl_sched_tunable_scaling : 1 (logarithmic)\\n\\ncpu#0, 2400.000 MHz\\n .nr_running : 1\\n .nr_switches : 124655\\n .nr_uninterruptible : -58\\n .next_balance : 4295.060254\\n .curr->pid : 5965\\n .clock : 393107.214598\\n .clock_task : 393107.214598\\n .avg_idle : 854472\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[0]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2409.412629\\n .avg_vruntime : 2409.412629\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 1048576\\n .load_avg : 1024\\n .runnable_avg : 703\\n .util_avg : 703\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1024\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393107.214598\\n .se->vruntime : 7079.901237\\n .se->sum_exec_runtime : 2527.534152\\n .se->load.weight : 773589\\n .se->avg.load_avg : 755\\n .se->avg.util_avg : 703\\n .se->avg.runnable_avg : 703\\n\\ncfs_rq[0]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7079.901237\\n .avg_vruntime : 7079.901237\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 773589\\n .load_avg : 755\\n .runnable_avg : 703\\n .util_avg : 703\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 748\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393107.214598\\n .se->vruntime : 14173.383046\\n .se->sum_exec_runtime : 2784.577673\\n .se->load.weight : 921623\\n .se->avg.load_avg : 900\\n .se->avg.util_avg : 703\\n .se->avg.runnable_avg : 703\\n\\ncfs_rq[0]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2881.626559\\n .avg_vruntime : 2881.626559\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392911.264450\\n .se->vruntime : 66449.414674\\n .se->sum_exec_runtime : 3499.026124\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 31.473934\\n .avg_vruntime : 31.473934\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392943.457601\\n .se->vruntime : 66449.742441\\n .se->sum_exec_runtime : 32.582834\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 66449.742441\\n .avg_vruntime : 66449.742441\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392943.457601\\n .se->vruntime : 100025.397886\\n .se->sum_exec_runtime : 15215.859066\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 14173.383046\\n .avg_vruntime : 14173.383046\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 921623\\n .load_avg : 900\\n .runnable_avg : 703\\n .util_avg : 703\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 884\\n .tg_load_avg : 988\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393107.214598\\n .se->vruntime : 100174.567815\\n .se->sum_exec_runtime : 5575.142792\\n .se->load.weight : 939958\\n .se->avg.load_avg : 917\\n .se->avg.util_avg : 703\\n .se->avg.runnable_avg : 703\\n\\ncfs_rq[0]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 100174.567815\\n .avg_vruntime : 100174.567815\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 939958\\n .load_avg : 917\\n .runnable_avg : 703\\n .util_avg : 703\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[0]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[0]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n Spool_workqueue_ 3 50.484081 E 53.473963 3.000000 0.010118 3 120 0.000000 0.010118 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_g 4 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_p 5 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-slub_ 6 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-netns 7 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n I kworker/0:0 8 59814.143606 E 59817.054498 3.000000 291.283992 683 120 0.000000 291.283992 0.000000 0.000000 0 0 /\\n I kworker/0:0H 9 61.484472 E 61.518998 3.000000 0.013159 4 100 0.000000 0.013159 0.000000 0.000000 0 0 /\\n I kworker/0:1 10 59908.657542 E 59908.689814 3.000000 415.856871 1332 120 0.000000 415.856871 0.000000 0.000000 0 0 /\\n Ikworker/R-mm_pe 12 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_kthre 13 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_rude_ 14 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_trace 15 429.940627 E 432.911629 3.000000 0.267245 7 120 0.000000 0.267245 0.000000 0.000000 0 0 /\\n S ksoftirqd/0 16 100015.781474 E 100018.595188 3.000000 58.152090 2665 120 0.000000 58.152090 0.000000 0.000000 0 0 /\\n S migration/0 18 0.626525 E 0.123004 0.750000 6.249231 158 0 0.000000 6.249231 0.000000 0.000000 0 0 /\\n S idle_inject/0 19 0.467865 E 0.280188 0.750000 0.005407 3 49 0.000000 0.005407 0.000000 0.000000 0 0 /\\n S cpuhp/0 20 8335.382094 E 8338.316225 3.000000 1.150907 26 120 0.000000 1.150907 0.000000 0.000000 0 0 /\\n Ikworker/R-charg 128 50.473963 E 50.508549 3.000000 0.093293 2 100 0.000000 0.093293 0.000000 0.000000 0 0 /\\n I kworker/0:1H 157 98537.111847 E 98537.146224 3.000000 7.464054 385 100 0.000000 7.464054 0.000000 0.000000 0 0 /\\n I kworker/0:2 224 59855.306472 E 59858.281775 3.000000 287.732084 1020 120 0.000000 287.732084 0.000000 0.000000 0 0 /\\n Sirq/193-iwlwifi 535 3646.117837 E 3649.116436 3.000000 1.136464 10 49 0.000000 1.136464 0.000000 0.000000 0 0 /\\n Ikworker/R-cros_ 583 4098.545142 E 4098.579743 3.000000 0.004733 2 100 0.000000 0.004733 0.000000 0.000000 0 0 /\\n S card1-crtc0 586 4105.692415 E 4108.689897 3.000000 0.071775 4 49 0.000000 0.071775 0.000000 0.000000 0 0 /\\n S card1-crtc1 587 4105.694050 E 4108.692415 3.000000 0.002284 2 49 0.000000 0.002284 0.000000 0.000000 0 0 /\\n S card1-crtc2 588 4105.695887 E 4108.694050 3.000000 0.002459 2 49 0.000000 0.002459 0.000000 0.000000 0 0 /\\n S card1-crtc3 589 4105.697510 E 4108.695887 3.000000 0.002237 2 49 0.000000 0.002237 0.000000 0.000000 0 0 /\\n Ssystemd-resolve 665 94.023824 E 96.587403 3.000000 347.899690 653 120 0.000000 347.899690 0.000000 0.000000 0 0 /system.slice/systemd-resolved.service\\n S sd-resolve 762 2.805469 E 4.473698 3.000000 3.300131 16 120 0.000000 3.300131 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n I kworker/0:3 754 59896.284999 E 59899.276119 3.000000 276.999270 566 120 0.000000 276.999270 0.000000 0.000000 0 0 /\\n Saccounts-daemon 790 14.253092 E 16.355003 3.000000 133.580546 272 120 0.000000 133.580546 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 936 13.969662 E 16.117388 3.000000 134.487699 479 120 0.000000 134.487699 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S gmain 1041 0.924491 E 2.068097 3.000000 0.059449 2 120 0.000000 0.059449 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S cleanup 1103 7.256534 E 10.181598 3.000000 0.315513 4 120 0.000000 0.315513 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S avahi-daemon 893 0.811987 E 2.186352 3.000000 0.137179 4 120 0.000000 0.137179 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S gdbus 939 290.951030 E 293.874150 3.000000 355.090802 2636 120 0.000000 355.090802 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S gdbus 1098 5.410405 E 7.152417 3.000000 21.180934 75 120 0.000000 21.180934 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1473 286.621373 E 288.922576 3.000000 103.343935 2905 120 0.000000 103.343935 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1475 0.003081 E 2.997094 3.000000 0.496009 16 120 0.000000 0.496009 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gmain 1483 3.022894 E 5.996257 3.000000 0.026637 1 120 0.000000 0.026637 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pw-data-loop 1534 8.779134 E 11.773129 3.000000 0.034056 3 79 0.000000 0.034056 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1569 1880.003146 E 1881.958162 3.000000 41.683534 431 120 0.000000 41.683534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1554 9.640752 E 12.603939 3.000000 0.065887 2 120 0.000000 0.065887 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1556 10.631341 E 13.583311 3.000000 0.917172 22 120 0.000000 0.917172 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fusermount3 1564 9.813596 E 12.812048 3.000000 0.930269 5 120 0.000000 0.930269 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1601 1978.943679 E 1981.813692 3.000000 574.870023 1893 120 0.000000 574.870023 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1604 1990.208063 E 1993.129109 3.000000 15.725349 76 120 0.000000 15.725349 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1664 417.934080 E 420.931118 3.000000 227.274311 18272 120 0.000000 227.274311 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1674 417.842975 E 420.840740 3.000000 46.313348 1295 120 0.000000 46.313348 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1699 414.799823 E 416.807189 3.000000 153.013311 4244 120 0.000000 153.013311 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2416 374.234438 E 377.219668 3.000000 35.780266 1608 120 0.000000 35.780266 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2764 1.744663 E 4.534142 3.000000 18.647716 174 120 0.000000 18.647716 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/0:4 2998 59771.957357 E 59774.932526 3.000000 271.888982 1142 120 0.000000 271.888982 0.000000 0.000000 0 0 /\\n I kworker/0:5 2999 59772.125702 E 59775.104333 3.000000 138.814812 467 120 0.000000 138.814812 0.000000 0.000000 0 0 /\\n I kworker/0:6 3000 100025.070119 E 100027.974416 3.000000 273.367608 1103 120 0.000000 273.367608 0.000000 0.000000 0 0 /\\n I kworker/0:7 3001 59757.114051 E 59760.069565 3.000000 105.172095 199 120 0.000000 105.172095 0.000000 0.000000 0 0 /\\n S Xwayland 3030 823.312878 E 826.243091 3.000000 73.675981 404 120 0.000000 73.675981 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:sh0 3265 798.437067 E 801.432850 3.000000 0.043697 5 120 0.000000 0.043697 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3082 846.693163 E 849.149172 3.000000 0.987458 8 120 0.000000 0.987458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3105 850.647701 E 853.480247 3.000000 0.288156 7 120 0.000000 0.288156 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3117 753.415062 E 755.693222 3.000000 0.802525 2 120 0.000000 0.802525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3122 46.671710 E 49.646140 3.000000 0.025570 1 120 0.000000 0.025570 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3133 795.342480 E 798.312721 3.000000 2.282013 41 120 0.000000 2.282013 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3128 789.541948 E 792.521534 3.000000 0.623284 13 120 0.000000 0.623284 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-print-notif 3109 794.936793 E 797.917349 3.000000 26.108835 70 120 0.000000 26.108835 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-rfkill 3114 1978.025984 E 1980.999437 3.000000 14.213238 168 120 0.000000 14.213238 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3157 53.427679 E 56.401651 3.000000 0.026028 1 120 0.000000 0.026028 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-a11y-settin 3163 794.888778 E 797.870455 3.000000 6.166578 47 120 0.000000 6.166578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3176 794.880654 E 797.815559 3.000000 5.039055 51 120 0.000000 5.039055 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3340 1927.697033 E 1927.760897 3.000000 47.743714 9 120 0.000000 47.743714 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3349 808.794366 E 811.794366 3.000000 10.264307 5 120 0.000000 10.264307 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x11:sh0 3377 816.300810 E 819.286174 3.000000 0.014636 1 120 0.000000 0.014636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter:traceq0 3381 817.363254 E 1021.171202 3.000000 0.084925 1 139 0.000000 0.084925 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3386 818.412051 E 821.351989 3.000000 0.093107 2 120 0.000000 0.093107 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3387 817.414689 E 820.396299 3.000000 0.018390 1 120 0.000000 0.018390 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3389 818.351989 E 821.340314 3.000000 0.199289 7 120 0.000000 0.199289 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3366 811.073812 E 814.040000 3.000000 0.033812 1 120 0.000000 0.033812 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3393 819.206920 E 822.175436 3.000000 0.075475 3 120 0.000000 0.075475 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-portal 3364 1145.005144 E 1147.991028 3.000000 3.568203 23 120 0.000000 3.568203 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3465 4.873835 E 7.857378 3.000000 12.993458 14 120 0.000000 12.993458 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3507 5.151991 E 8.096082 3.000000 0.172631 6 120 0.000000 0.172631 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3506 5.696636 E 8.662738 3.000000 0.223461 7 120 0.000000 0.223461 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-permission- 3549 8.115189 E 11.087827 3.000000 4.193195 7 120 0.000000 4.193195 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/0:8 3759 59756.400082 E 59759.380811 3.000000 1.022501 23 120 0.000000 1.022501 0.000000 0.000000 0 0 /\\n I kworker/0:9 3760 59770.205205 E 59773.169769 3.000000 1.596805 44 120 0.000000 1.596805 0.000000 0.000000 0 0 /\\n I kworker/0:10 3801 59771.969076 E 59774.937321 3.000000 0.905114 21 120 0.000000 0.905114 0.000000 0.000000 0 0 /\\n I kworker/0:11 3834 59756.809577 E 59759.790531 3.000000 0.552745 12 120 0.000000 0.552745 0.000000 0.000000 0 0 /\\n I kworker/0:12 3835 59839.201252 E 59842.114881 3.000000 147.613339 247 120 0.000000 147.613339 0.000000 0.000000 0 0 /\\n I kworker/0:13 3878 59770.675693 E 59773.644782 3.000000 0.401815 9 120 0.000000 0.401815 0.000000 0.000000 0 0 /\\n I kworker/0:14 3879 59838.813777 E 59841.697927 3.000000 118.760857 459 120 0.000000 118.760857 0.000000 0.000000 0 0 /\\n I kworker/0:15 3880 59757.553220 E 59760.501134 3.000000 0.251809 8 120 0.000000 0.251809 0.000000 0.000000 0 0 /\\n I kworker/0:16 4875 100023.503880 E 100026.479323 3.000000 47.921673 547 120 0.000000 47.921673 0.000000 0.000000 0 0 /\\n S docker 5108 142.053576 E 144.677977 3.000000 0.445408 2 120 0.000000 0.445408 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5125 145.841713 E 148.838155 3.000000 2.587746 33 120 0.000000 2.587746 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5129 152.087877 E 154.959185 3.000000 9.272384 285 120 0.000000 9.272384 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5138 147.883780 E 150.508821 3.000000 3.072613 60 120 0.000000 3.072613 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5207 380.169185 E 383.159727 3.000000 1.776241 5 120 0.000000 1.776241 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5209 380.159727 E 383.144516 3.000000 0.125477 4 120 0.000000 0.125477 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5265 317.900081 E 320.886003 3.000000 0.088538 5 120 0.000000 0.088538 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_close_file 5371 0.996541 E 1.988580 3.000000 0.014879 1 120 0.000000 0.014879 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S bio_lazy_free 5373 0.971337 E 2.003459 3.000000 0.025204 2 120 0.000000 0.025204 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5402 391.629910 E 394.593552 3.000000 0.036358 1 120 0.000000 0.036358 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5426 321.885108 E 324.879367 3.000000 0.005741 1 120 0.000000 0.005741 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5459 331.501159 E 334.467439 3.000000 1.138122 31 120 0.000000 1.138122 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 5471 2878.507045 E 2881.480713 3.000000 17.131175 37 120 0.000000 17.131175 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S bash 5535 0.374091 E 2.004330 3.000000 1.369761 2 120 0.000000 1.369761 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5564 1.297811 E 3.915473 3.000000 0.382338 1 120 0.000000 0.382338 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5598 1096.827304 E 1099.827304 3.000000 67.403138 16 120 0.000000 67.403138 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5664 1810.667125 E 1813.659738 3.000000 48.028793 19 120 0.000000 48.028793 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5613 1154.546552 E 1157.489793 3.000000 50.490838 17 120 0.000000 50.490838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5688 1886.290395 E 1889.290395 3.000000 33.583605 11 120 0.000000 33.583605 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5689 1886.727601 E 1889.716108 3.000000 34.006642 14 120 0.000000 34.006642 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5691 1887.153050 E 1890.141066 3.000000 34.415056 12 120 0.000000 34.415056 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5605 1128.699724 E 1130.733412 3.000000 59.322321 20 120 0.000000 59.322321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5674 1837.950616 E 1840.941193 3.000000 34.976674 14 120 0.000000 34.976674 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5676 1842.845926 E 1842.887818 3.000000 39.859633 14 120 0.000000 39.859633 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5645 1691.475316 E 1694.467524 3.000000 28.433086 12 120 0.000000 28.433086 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5646 1692.040496 E 1695.034677 3.000000 28.990755 9 120 0.000000 28.990755 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5639 1491.853459 E 1492.774908 3.000000 56.154692 21 120 0.000000 56.154692 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5706 1914.066082 E 1916.114488 3.000000 31.948839 9 120 0.000000 31.948839 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5708 1917.130715 E 1920.121651 3.000000 35.002311 12 120 0.000000 35.002311 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5626 1181.663383 E 1181.681283 3.000000 50.832084 14 120 0.000000 50.832084 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5655 1726.481090 E 1729.473436 3.000000 36.998391 11 120 0.000000 36.998391 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5717 1958.888518 E 1961.882843 3.000000 34.652408 11 120 0.000000 34.652408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5724 1963.859694 E 1966.846384 3.000000 63.747694 20 120 0.000000 63.747694 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S python3 5729 2142.968478 E 2145.953667 3.000000 0.121147 5 120 0.000000 0.121147 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 5820 2261.003741 E 2262.892048 3.000000 109.730455 8 120 0.000000 109.730455 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n>R python3 5965 2409.412629 E 2409.412865 3.000000 91.873085 0 120 0.000000 91.873085 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#1, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 114213\\n .nr_uninterruptible : 53\\n .next_balance : 4295.060226\\n .curr->pid : 0\\n .clock : 393107.302448\\n .clock_task : 393107.302448\\n .avg_idle : 999854\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[1]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2904.964722\\n .avg_vruntime : 2904.964722\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 156\\n .runnable_avg : 78\\n .util_avg : 78\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 156\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.644953\\n .se->vruntime : 7990.275993\\n .se->sum_exec_runtime : 2908.567763\\n .se->load.weight : 329302\\n .se->avg.load_avg : 48\\n .se->avg.util_avg : 78\\n .se->avg.runnable_avg : 78\\n\\ncfs_rq[1]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7990.275993\\n .avg_vruntime : 7990.275993\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 48\\n .runnable_avg : 78\\n .util_avg : 78\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 48\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.644953\\n .se->vruntime : 21019.344867\\n .se->sum_exec_runtime : 3135.696375\\n .se->load.weight : 263803\\n .se->avg.load_avg : 39\\n .se->avg.util_avg : 78\\n .se->avg.runnable_avg : 78\\n\\ncfs_rq[1]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2889.038549\\n .avg_vruntime : 2889.038549\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393075.466508\\n .se->vruntime : 66754.752066\\n .se->sum_exec_runtime : 3427.594415\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 554.030490\\n .avg_vruntime : 554.030490\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.221460\\n .se->vruntime : 66754.780889\\n .se->sum_exec_runtime : 556.405676\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/systemd-oomd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10.612623\\n .avg_vruntime : 10.612623\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392727.506596\\n .se->vruntime : 66746.558300\\n .se->sum_exec_runtime : 11.661199\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 29.774085\\n .avg_vruntime : 29.774085\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.068357\\n .se->vruntime : 66752.731098\\n .se->sum_exec_runtime : 32.012279\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 66754.780889\\n .avg_vruntime : 66754.780889\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.221460\\n .se->vruntime : 99399.973904\\n .se->sum_exec_runtime : 15895.246836\\n .se->load.weight : 524288\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 21019.344867\\n .avg_vruntime : 21019.344867\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 39\\n .runnable_avg : 78\\n .util_avg : 78\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 39\\n .tg_load_avg : 988\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.644953\\n .se->vruntime : 99397.343056\\n .se->sum_exec_runtime : 8314.741484\\n .se->load.weight : 162798\\n .se->avg.load_avg : 24\\n .se->avg.util_avg : 78\\n .se->avg.runnable_avg : 78\\n\\ncfs_rq[1]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 99399.990782\\n .avg_vruntime : 99399.990782\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 25\\n .runnable_avg : 79\\n .util_avg : 79\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[1]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[1]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n I rcu_preempt 17 99399.990782 E 99402.973904 3.000000 448.282523 12571 120 0.000000 448.282523 0.000000 0.000000 0 0 /\\n S cpuhp/1 21 7932.094818 E 7935.015583 3.000000 0.356355 26 120 0.000000 0.356355 0.000000 0.000000 0 0 /\\n S idle_inject/1 22 -1.046696 E 0.298424 0.750000 0.006020 3 49 0.000000 0.006020 0.000000 0.000000 0 0 /\\n S migration/1 23 0.056269 E 0.693236 0.750000 168.733936 144 0 0.000000 168.733936 0.000000 0.000000 0 0 /\\n S ksoftirqd/1 24 99378.227318 E 99381.224792 3.000000 26.449480 639 120 0.000000 26.449480 0.000000 0.000000 0 0 /\\n I kworker/1:0H 26 21.947051 E 21.981566 3.000000 0.017963 4 100 0.000000 0.017963 0.000000 0.000000 0 0 /\\n Ikworker/R-write 70 -1.034874 E -1.000265 3.000000 0.000849 2 100 0.000000 0.000849 0.000000 0.000000 0 0 /\\n S kcompactd0 71 99392.630447 E 99395.583237 3.000000 39.723385 781 120 0.000000 39.723385 0.000000 0.000000 0 0 /\\n S ksmd 72 -1.034874 E 8.135275 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/9-acpi 79 0.888458 E 2.110113 3.000000 25.161109 85 49 0.000000 25.161109 0.000000 0.000000 0 0 /\\n I kworker/1:1 89 99394.624322 E 99397.582597 3.000000 49.770377 1020 120 0.000000 49.770377 0.000000 0.000000 0 0 /\\n I kworker/1:1H 185 68118.228461 E 68118.263016 3.000000 3.985873 361 100 0.000000 3.985873 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 221 392.789305 E 392.823904 3.000000 0.005027 2 100 0.000000 0.005027 0.000000 0.000000 0 0 /\\n Ikworker/R-crypt 531 2507.555715 E 2507.590316 3.000000 0.005940 2 100 0.000000 0.005940 0.000000 0.000000 0 0 /\\n Sirq/194-iwlwifi 536 3740.895044 E 3743.891071 3.000000 3.564647 19 49 0.000000 3.564647 0.000000 0.000000 0 0 /\\n S systemd-oomd 660 10.612623 E 11.352128 3.000000 513.192437 568 120 0.000000 513.192437 0.000000 0.000000 0 0 /system.slice/systemd-oomd.service\\n S gmain 910 0.472046 E 3.459363 3.000000 0.047699 2 120 0.000000 0.047699 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S gmain 923 3.433860 E 6.421449 3.000000 0.067212 2 120 0.000000 0.067212 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S gdbus 924 7.269924 E 9.126327 3.000000 20.415944 94 120 0.000000 20.415944 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 2920 249.457236 E 252.377785 3.000000 66.288564 191 120 0.000000 66.288564 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2924 248.955894 E 251.818007 3.000000 91.527058 125 120 0.000000 91.527058 0.000000 0.000000 0 0 /system.slice/snapd.service\\n Sswitcheroo-cont 836 7.518062 E 10.434047 3.000000 44.143872 152 120 0.000000 44.143872 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 856 2.227776 E 5.225721 3.000000 94.523149 368 120 0.000000 94.523149 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 950 554.030490 E 557.001667 3.000000 362.610146 4367 120 0.000000 362.610146 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S in:imklog 955 27.842022 E 30.802978 3.000000 11.743761 119 120 0.000000 11.743761 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S rs:main Q:Reg 956 29.774085 E 32.746770 3.000000 114.013264 2520 120 0.000000 114.013264 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n I kworker/1:3 971 67490.494884 E 67493.491180 3.000000 86.722041 896 120 0.000000 86.722041 0.000000 0.000000 0 0 /\\n S boltd 1085 53.530464 E 56.447824 3.000000 203.866525 1065 120 0.000000 203.866525 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S pool-spawner 1106 14.206991 E 17.144135 3.000000 0.125154 3 120 0.000000 0.125154 0.000000 0.000000 0 0 /system.slice/upower.service\\n S gmain 1107 14.144135 E 17.122581 3.000000 0.021554 1 120 0.000000 0.021554 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1118 0.488564 E 2.489338 3.000000 0.204262 22 120 0.000000 0.204262 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S cupsd 1439 4.468166 E 6.566988 3.000000 22.666250 96 120 0.000000 22.666250 0.000000 0.000000 0 0 /system.slice/cups.service\\n S containerd 1477 297.968262 E 300.180796 3.000000 106.772942 2835 120 0.000000 106.772942 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdm3 1469 28.866371 E 31.777617 3.000000 29.629979 80 120 0.000000 29.629979 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S systemd 1499 140.347026 E 140.388047 3.000000 1381.353523 583 120 0.000000 1381.353523 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pipewire 1512 16.254098 E 16.510392 3.000000 32.093335 224 109 0.000000 32.093335 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1527 11.267137 E 14.210616 3.000000 0.188517 6 120 0.000000 0.188517 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1541 11.066776 E 14.063472 3.000000 0.112549 13 79 0.000000 0.112549 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1551 11.210616 E 14.180555 3.000000 0.056827 2 120 0.000000 0.056827 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1553 14.775624 E 17.722860 3.000000 0.661282 10 120 0.000000 0.661282 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1526 0.567104 E 2.363017 3.000000 0.680927 15 120 0.000000 0.680927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgnome-session-b 1546 4026.427161 E 4028.816499 3.000000 72.220451 386 120 0.000000 72.220451 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1555 11.411258 E 14.381068 3.000000 0.030190 1 120 0.000000 0.030190 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1559 11.464077 E 14.455527 3.000000 0.052819 2 120 0.000000 0.052819 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dconf worker 1602 241.182424 E 244.164119 3.000000 1.813576 72 120 0.000000 1.813576 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S KMS thread 1618 4040.643096 E 4043.470042 3.000000 312.191032 825 79 0.000000 312.191032 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-s:disk$0 3004 8.656514 E 213.116341 3.000000 0.090177 1 139 0.000000 0.090177 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3014 167.316606 E 170.276345 3.000000 71.365629 133 120 0.000000 71.365629 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1670 304.900140 E 305.802357 3.000000 107.084760 2032 120 0.000000 107.084760 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1672 144.769731 E 147.755909 3.000000 0.723957 32 120 0.000000 0.723957 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2526 305.308381 E 307.900140 3.000000 3.053644 65 120 0.000000 3.053644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2527 290.625017 E 293.618099 3.000000 99.602375 2905 120 0.000000 99.602375 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2528 329.056485 E 332.025261 3.000000 109.946964 3261 120 0.000000 109.946964 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2422 236.246820 E 239.032989 3.000000 27.504299 105 120 0.000000 27.504299 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2814 0.304479 E 2.637087 3.000000 0.714735 5 120 0.000000 0.714735 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3024 60.304780 E 63.271147 3.000000 0.033633 1 120 0.000000 0.033633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:gdrv0 3269 566.947492 E 569.942158 3.000000 0.048510 3 120 0.000000 0.048510 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3038 563.666293 E 566.641667 3.000000 4.306399 54 120 0.000000 4.306399 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3081 645.782212 E 648.340009 3.000000 0.896962 8 120 0.000000 0.896962 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3085 646.371136 E 648.782212 3.000000 1.123443 8 120 0.000000 1.123443 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-wacom 3091 644.537177 E 647.284944 3.000000 366.045403 439 120 0.000000 366.045403 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3118 160.094256 E 163.069340 3.000000 0.024916 1 120 0.000000 0.024916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-color 3095 4040.852590 E 4043.643096 3.000000 129.064970 56 120 0.000000 129.064970 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-keyboard 3100 648.247208 E 651.166836 3.000000 121.441087 43 120 0.000000 121.441087 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3123 160.645856 E 163.586872 3.000000 0.058984 1 120 0.000000 0.058984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-smartcard 3119 563.386800 E 566.368384 3.000000 7.380501 47 120 0.000000 7.380501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3141 163.322124 E 166.295023 3.000000 0.027101 1 120 0.000000 0.027101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3152 563.387981 E 566.317884 3.000000 5.186420 57 120 0.000000 5.186420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-datetime 3129 563.405186 E 566.383009 3.000000 11.094354 49 120 0.000000 11.094354 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3201 553.536426 E 556.465699 3.000000 0.162455 3 120 0.000000 0.162455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3219 184.113084 E 187.101602 3.000000 0.087152 2 120 0.000000 0.087152 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3292 378.083610 E 380.401752 3.000000 0.681858 1 120 0.000000 0.681858 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3342 4042.206196 E 4044.992366 3.000000 1.492101 12 120 0.000000 1.492101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3345 634.080030 E 637.037078 3.000000 79.580450 171 120 0.000000 79.580450 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-:disk$0 3376 606.974571 E 811.460271 3.000000 0.041875 2 139 0.000000 0.041875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x:gdrv0 3383 611.246200 E 614.198837 3.000000 0.047363 1 120 0.000000 0.047363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3382 611.727160 E 614.717547 3.000000 0.569298 17 120 0.000000 0.569298 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S sshd 3437 7.898835 E 10.142566 3.000000 77.928271 33 120 0.000000 77.928271 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S systemd 3449 104.615801 E 107.615801 3.000000 642.546970 421 120 0.000000 642.546970 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S pipewire-pulse 3475 5.257457 E 8.249472 3.000000 16.156993 25 120 0.000000 16.156993 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/1:0 5020 99311.660408 E 99314.635408 3.000000 0.833825 16 120 0.000000 0.833825 0.000000 0.000000 0 0 /\\n S docker 5111 76.881186 E 79.675463 3.000000 2.727325 5 120 0.000000 2.727325 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5208 326.829238 E 329.826339 3.000000 0.481812 79 120 0.000000 0.481812 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5213 312.682584 E 315.605437 3.000000 0.185163 4 120 0.000000 0.185163 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5244 293.714388 E 296.674780 3.000000 1.356377 26 120 0.000000 1.356377 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5528 290.121910 E 293.092020 3.000000 0.588842 12 120 0.000000 0.588842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5600 849.366916 E 852.353840 3.000000 39.919317 22 120 0.000000 39.919317 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5665 1661.043325 E 1661.083812 3.000000 55.912313 17 120 0.000000 55.912313 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5616 882.220441 E 885.175429 3.000000 29.865267 12 120 0.000000 29.865267 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5618 881.421942 E 884.354331 3.000000 29.053625 11 120 0.000000 29.053625 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5687 1785.074279 E 1788.064636 3.000000 41.826708 13 120 0.000000 41.826708 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5572 2887.762615 E 2890.130610 3.000000 3014.384838 375 120 0.000000 3014.384838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5573 2888.413203 E 2890.762615 3.000000 2997.817014 484 120 0.000000 2997.817014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5697 1797.414029 E 1798.448640 3.000000 30.959422 9 120 0.000000 30.959422 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5700 1798.495212 E 1801.486113 3.000000 32.018896 11 120 0.000000 32.018896 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5633 1752.220599 E 1755.211488 3.000000 57.584088 17 120 0.000000 57.584088 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5576 2889.038549 E 2891.413203 3.000000 2621.036613 383 120 0.000000 2621.036613 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5715 1835.502622 E 1838.493962 3.000000 42.959724 13 120 0.000000 42.959724 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5620 102.625658 E 105.242092 3.000000 0.383566 1 120 0.000000 0.383566 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 5817 2898.779232 E 2900.729455 3.000000 110.719986 5 120 0.000000 110.719986 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 5964 2904.964722 E 2907.956378 3.000000 0.274732 2 120 0.000000 0.274732 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#2, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 141217\\n .nr_uninterruptible : -223\\n .next_balance : 4295.060221\\n .curr->pid : 0\\n .clock : 393102.257528\\n .clock_task : 393102.257528\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[2]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1699.516330\\n .avg_vruntime : 1699.516330\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 173\\n .runnable_avg : 93\\n .util_avg : 93\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 173\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.356916\\n .se->vruntime : 6448.598627\\n .se->sum_exec_runtime : 1705.925623\\n .se->load.weight : 331299\\n .se->avg.load_avg : 54\\n .se->avg.util_avg : 93\\n .se->avg.runnable_avg : 93\\n\\ncfs_rq[2]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6448.598627\\n .avg_vruntime : 6448.598627\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 54\\n .runnable_avg : 93\\n .util_avg : 93\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 54\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.356916\\n .se->vruntime : 12415.064626\\n .se->sum_exec_runtime : 1977.386696\\n .se->load.weight : 388227\\n .se->avg.load_avg : 64\\n .se->avg.util_avg : 93\\n .se->avg.runnable_avg : 93\\n\\ncfs_rq[2]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 494.262613\\n .avg_vruntime : 494.262613\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.113355\\n .se->vruntime : 74596.340256\\n .se->sum_exec_runtime : 496.849646\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 266.762867\\n .avg_vruntime : 266.762867\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393066.531683\\n .se->vruntime : 74596.283557\\n .se->sum_exec_runtime : 280.765418\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 74596.340256\\n .avg_vruntime : 74596.340256\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.113355\\n .se->vruntime : 104848.731983\\n .se->sum_exec_runtime : 18892.062600\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12415.064626\\n .avg_vruntime : 12415.064626\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 64\\n .runnable_avg : 93\\n .util_avg : 93\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 64\\n .tg_load_avg : 1004\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.356916\\n .se->vruntime : 104848.162109\\n .se->sum_exec_runtime : 3697.241780\\n .se->load.weight : 361016\\n .se->avg.load_avg : 59\\n .se->avg.util_avg : 93\\n .se->avg.runnable_avg : 93\\n\\ncfs_rq[2]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 104848.731983\\n .avg_vruntime : 104848.731983\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 59\\n .runnable_avg : 92\\n .util_avg : 91\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[2]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[2]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S kthreadd 2 70080.832175 E 70083.804906 3.000000 6.722786 200 120 0.000000 6.722786 0.000000 0.000000 0 0 /\\n S cpuhp/2 27 10232.512266 E 10235.476962 3.000000 0.310145 26 120 0.000000 0.310145 0.000000 0.000000 0 0 /\\n S idle_inject/2 28 -1.048574 E 0.451426 1.500000 0.000962 3 49 0.000000 0.000962 0.000000 0.000000 0 0 /\\n S migration/2 29 0.100700 E 0.850203 0.750000 168.992254 161 0 0.000000 168.992254 0.000000 0.000000 0 0 /\\n S ksoftirqd/2 30 104821.550878 E 104824.548624 3.000000 23.406848 897 120 0.000000 23.406848 0.000000 0.000000 0 0 /\\n I kworker/2:0 31 62457.803260 E 62460.735327 3.000000 8.218140 34 120 0.000000 8.218140 0.000000 0.000000 0 0 /\\n I kworker/2:0H 32 103.304456 E 103.338997 3.000000 0.014834 5 100 0.000000 0.014834 0.000000 0.000000 0 0 /\\n S oom_reaper 69 -1.013776 E 1.986224 3.000000 0.000042 2 120 0.000000 0.000042 0.000000 0.000000 0 0 /\\n I kworker/2:1 80 70398.312521 E 70401.309035 3.000000 309.899117 4609 120 0.000000 309.899117 0.000000 0.000000 0 0 /\\n I kworker/2:1H 195 103835.246054 E 103835.280598 3.000000 3.825501 246 100 0.000000 3.825501 0.000000 0.000000 0 0 /\\n I kworker/2:2 217 62482.814010 E 62485.785163 3.000000 119.011817 1706 120 0.000000 119.011817 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 218 470.398502 E 470.433104 3.000000 0.005099 2 100 0.000000 0.005099 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 219 470.401038 E 470.435644 3.000000 0.002850 2 100 0.000000 0.002850 0.000000 0.000000 0 0 /\\n I kworker/2:3 223 104839.847034 E 104842.816848 3.000000 55.969995 614 120 0.000000 55.969995 0.000000 0.000000 0 0 /\\n I kworker/2:4 349 62418.902108 E 62421.893366 3.000000 2.337037 7 120 0.000000 2.337037 0.000000 0.000000 0 0 /\\n I kworker/u16:5 423 104710.863763 E 104713.857348 3.000000 305.964990 5932 120 0.000000 305.964990 0.000000 0.000000 0 0 /\\n I kworker/u16:6 449 70345.909251 E 70348.888907 3.000000 21.403819 413 120 0.000000 21.403819 0.000000 0.000000 0 0 /\\n S irq/191-mei_me 520 2425.538335 E 2428.535129 3.000000 1.457719 39 49 0.000000 1.457719 0.000000 0.000000 0 0 /\\n Sirq/195-iwlwifi 538 3925.397830 E 3928.395543 3.000000 3002.292555 15134 49 0.000000 3002.292555 0.000000 0.000000 0 0 /\\n S dbus-daemon 796 404.558628 E 407.343972 3.000000 3188.252220 5900 120 0.000000 3188.252220 0.000000 0.000000 0 0 /system.slice/dbus.service\\n S snapd 854 181.532524 E 181.847161 3.000000 74.669991 322 120 0.000000 74.669991 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1046 192.710502 E 195.658241 3.000000 208.756430 741 120 0.000000 208.756430 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 951 494.262613 E 497.233562 3.000000 1190.287567 13598 120 0.000000 1190.287567 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 844 9.292970 E 12.244309 3.000000 34.677213 354 120 0.000000 34.677213 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S pool-spawner 876 1.965147 E 4.922053 3.000000 0.074621 2 120 0.000000 0.074621 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gmain 935 122.707237 E 125.392725 3.000000 19.534449 99 120 0.000000 19.534449 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n Ikworker/R-ipmi- 913 6961.772658 E 6961.807253 3.000000 0.015936 2 100 0.000000 0.015936 0.000000 0.000000 0 0 /\\n S rsyslogd 919 33.759388 E 36.497758 3.000000 30.430189 90 120 0.000000 30.430189 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S pool-spawner 1100 6.890317 E 9.858408 3.000000 0.106301 5 120 0.000000 0.106301 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1116 2.347087 E 5.294553 3.000000 0.174658 34 120 0.000000 0.174658 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sh 1121 12.505172 E 15.381318 3.000000 5.274342 15 120 0.000000 5.274342 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1458 266.762867 E 269.520576 3.000000 133.499147 4208 120 0.000000 133.499147 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1461 0.881565 E 2.097726 3.000000 0.020709 1 120 0.000000 0.020709 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sgdm-session-wor 1492 0.021664 E 2.378098 3.000000 7.685172 93 120 0.000000 7.685172 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 1500 0.906613 E 1.951424 3.000000 0.141963 1 120 0.000000 0.141963 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pw-data-loop 1536 3.469723 E 6.464575 3.000000 0.024781 3 79 0.000000 0.024781 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sgdm-wayland-ses 1517 0.890985 E 3.860521 3.000000 4.316422 18 120 0.000000 4.316422 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1565 410.548304 E 413.512933 3.000000 0.246882 6 120 0.000000 0.246882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1603 982.670086 E 985.660534 3.000000 8.083763 84 120 0.000000 8.083763 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1607 982.859239 E 985.854252 3.000000 104.953855 79 120 0.000000 104.953855 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1608 982.673549 E 985.667581 3.000000 9.212166 106 120 0.000000 9.212166 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shel:sh0 3005 31.707816 E 34.581346 3.000000 0.126470 1 120 0.000000 0.126470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3012 33.382173 E 238.030347 3.000000 0.007470 1 139 0.000000 0.007470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3013 33.387365 E 36.382173 3.000000 0.005192 1 120 0.000000 0.005192 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3276 121.709419 E 124.678683 3.000000 0.030736 1 120 0.000000 0.030736 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1666 392.441719 E 395.424069 3.000000 85.574576 1861 120 0.000000 85.574576 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2691 406.464354 E 409.452757 3.000000 188.718072 4181 120 0.000000 188.718072 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2721 3.789525 E 6.746778 3.000000 3.386001 226 120 0.000000 3.386001 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2722 1.991100 E 4.985710 3.000000 0.640714 24 120 0.000000 0.640714 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Ikworker/R-tls-s 2863 22769.817423 E 22769.852008 3.000000 0.015449 2 100 0.000000 0.015449 0.000000 0.000000 0 0 /\\n S dconf worker 3025 46.149564 E 49.142692 3.000000 0.447278 11 120 0.000000 0.447278 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S colord 3035 21.580781 E 24.092855 3.000000 92.765102 187 120 0.000000 92.765102 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gmain 3041 0.737224 E 2.242460 3.000000 0.155686 2 120 0.000000 0.155686 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gjs 3078 487.170160 E 488.823207 3.000000 59.101805 83 120 0.000000 59.101805 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sharing 3080 982.295052 E 985.260841 3.000000 99.767366 722 120 0.000000 99.767366 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3107 982.274099 E 985.154193 3.000000 173.208263 571 120 0.000000 173.208263 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3130 407.533407 E 410.525336 3.000000 0.766318 14 120 0.000000 0.766318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3187 98.848084 E 101.823175 3.000000 0.095370 2 120 0.000000 0.095370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-media-keys 3146 953.008761 E 955.920109 3.000000 135.098877 137 120 0.000000 135.098877 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3202 99.517382 E 102.480455 3.000000 0.036927 1 120 0.000000 0.036927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3344 968.712808 E 971.613739 3.000000 1.076193 11 120 0.000000 1.076193 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3354 424.550236 E 427.529183 3.000000 0.083867 3 120 0.000000 0.083867 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3369 435.646524 E 438.628102 3.000000 0.253340 7 120 0.000000 0.253340 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3372 951.549863 E 954.493145 3.000000 1.167382 16 120 0.000000 1.167382 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3379 436.877871 E 439.851438 3.000000 0.116796 2 120 0.000000 0.116796 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Ssnapd-desktop-i 3468 39.501067 E 42.224366 3.000000 18.969394 43 120 0.000000 18.969394 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/2:5 4401 62457.735327 E 62460.617124 3.000000 6.696486 19 120 0.000000 6.696486 0.000000 0.000000 0 0 /\\n I kworker/2:6 4402 62417.302767 E 62420.302240 3.000000 0.074093 2 120 0.000000 0.074093 0.000000 0.000000 0 0 /\\n Sgnome-keyring-d 4742 1.991437 E 4.850036 3.000000 7.097364 24 120 0.000000 7.097364 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5101 186.762125 E 189.758840 3.000000 5.800217 128 120 0.000000 5.800217 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5107 171.690383 E 174.331107 3.000000 0.500947 6 120 0.000000 0.500947 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5124 193.061150 E 195.671496 3.000000 8.594148 49 120 0.000000 8.594148 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5126 193.996527 E 196.991799 3.000000 3.299204 35 120 0.000000 3.299204 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5236 257.947795 E 260.913958 3.000000 0.854425 194 120 0.000000 0.854425 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5269 242.628672 E 245.294223 3.000000 1.525218 21 120 0.000000 1.525218 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S postgres 5289 42.804248 E 45.213043 3.000000 55.944731 112 120 0.000000 55.944731 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S docker-proxy 5404 390.436303 E 393.428902 3.000000 0.054038 2 120 0.000000 0.054038 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5408 390.450618 E 393.442277 3.000000 0.052751 3 120 0.000000 0.052751 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5539 256.857973 E 259.854978 3.000000 0.509160 10 120 0.000000 0.509160 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5536 3240.175780 E 3243.052665 3.000000 294.174585 82 120 0.000000 294.174585 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5565 19.562267 E 22.179766 3.000000 0.382501 1 120 0.000000 0.382501 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5599 1243.917125 E 1246.899112 3.000000 28.626410 23 120 0.000000 28.626410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5602 1243.759704 E 1246.752160 3.000000 26.340665 20 120 0.000000 26.340665 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5603 1244.273695 E 1246.859634 3.000000 28.925019 24 120 0.000000 28.925019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5667 2030.812810 E 2033.802093 3.000000 56.273299 24 120 0.000000 56.273299 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5615 1308.530001 E 1309.304684 3.000000 24.830628 15 120 0.000000 24.830628 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5643 1834.821469 E 1835.836851 3.000000 61.193099 20 120 0.000000 61.193099 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5634 1604.905533 E 1607.825141 3.000000 53.244457 20 120 0.000000 53.244457 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5704 2161.079209 E 2164.073284 3.000000 28.505268 11 120 0.000000 28.505268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5705 2161.257548 E 2162.782519 3.000000 28.668075 12 120 0.000000 28.668075 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5710 2162.173294 E 2164.602104 3.000000 29.547294 16 120 0.000000 29.547294 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5630 1334.192609 E 1335.792534 3.000000 36.310197 11 120 0.000000 36.310197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5680 2127.508196 E 2130.499659 3.000000 35.630276 19 120 0.000000 35.630276 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5685 2131.985144 E 2134.985144 3.000000 40.053783 21 120 0.000000 40.053783 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5656 1932.156392 E 1935.156392 3.000000 101.676739 50 120 0.000000 101.676739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S python3 5730 1538.282953 E 1541.234756 3.000000 6.853157 215 120 0.000000 6.853157 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 5819 1662.977050 E 1664.882381 3.000000 108.550024 18 120 0.000000 108.550024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 5733 44.217168 E 47.160345 3.000000 6.031359 44 120 0.000000 6.031359 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S sudo 5963 1699.516330 E 1702.509878 3.000000 3.739744 2 120 0.000000 3.739744 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#3, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 130900\\n .nr_uninterruptible : 6\\n .next_balance : 4295.060210\\n .curr->pid : 0\\n .clock : 393096.264990\\n .clock_task : 393096.264990\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1699.806436\\n .avg_vruntime : 1699.806436\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 35\\n .runnable_avg : 35\\n .util_avg : 35\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 35\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393011.521659\\n .se->vruntime : 7038.157193\\n .se->sum_exec_runtime : 1702.766699\\n .se->load.weight : 87659\\n .se->avg.load_avg : 2\\n .se->avg.util_avg : 35\\n .se->avg.runnable_avg : 35\\n\\ncfs_rq[3]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7038.157193\\n .avg_vruntime : 7038.157193\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 2\\n .runnable_avg : 35\\n .util_avg : 35\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 2\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393011.521659\\n .se->vruntime : 13069.927444\\n .se->sum_exec_runtime : 2296.845876\\n .se->load.weight : 42167\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 35\\n .se->avg.runnable_avg : 35\\n\\ncfs_rq[3]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2642.808822\\n .avg_vruntime : 2642.808822\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393034.011162\\n .se->vruntime : 72504.209380\\n .se->sum_exec_runtime : 3007.733650\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 886.199030\\n .avg_vruntime : 886.199030\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392977.777256\\n .se->vruntime : 72503.439612\\n .se->sum_exec_runtime : 887.361604\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/systemd-logind.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 122.764829\\n .avg_vruntime : 122.764829\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393014.683988\\n .se->vruntime : 72503.548834\\n .se->sum_exec_runtime : 123.951698\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69.947779\\n .avg_vruntime : 69.947779\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393044.434857\\n .se->vruntime : 72505.000490\\n .se->sum_exec_runtime : 71.246555\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 72505.000490\\n .avg_vruntime : 72505.000490\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393044.434857\\n .se->vruntime : 92307.113646\\n .se->sum_exec_runtime : 16502.209474\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13069.927444\\n .avg_vruntime : 13069.927444\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 35\\n .util_avg : 35\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1004\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393011.521659\\n .se->vruntime : 92305.553087\\n .se->sum_exec_runtime : 3794.270888\\n .se->load.weight : 17311\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 35\\n .se->avg.runnable_avg : 35\\n\\ncfs_rq[3]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 92307.113646\\n .avg_vruntime : 92307.113646\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 36\\n .util_avg : 36\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[3]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[3]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/3 33 7886.138537 E 7889.102720 3.000000 0.348500 26 120 0.000000 0.348500 0.000000 0.000000 0 0 /\\n S idle_inject/3 34 -1.048518 E 0.451482 1.500000 0.001036 3 49 0.000000 0.001036 0.000000 0.000000 0 0 /\\n S migration/3 35 0.198781 E 0.948241 0.750000 169.158475 162 0 0.000000 169.158475 0.000000 0.000000 0 0 /\\n S ksoftirqd/3 36 92011.077067 E 92014.068854 3.000000 24.617549 971 120 0.000000 24.617549 0.000000 0.000000 0 0 /\\n I kworker/3:0 37 92304.729640 E 92307.656203 3.000000 85.975435 730 120 0.000000 85.975435 0.000000 0.000000 0 0 /\\n I kworker/3:0H 38 6.472894 E 6.507461 3.000000 0.011946 4 100 0.000000 0.011946 0.000000 0.000000 0 0 /\\n Ikworker/R-inet_ 64 -1.038883 E -1.004274 3.000000 0.009635 2 100 0.000000 0.009635 0.000000 0.000000 0 0 /\\n S kauditd 65 46475.465473 E 46478.440242 3.000000 2.812791 141 120 0.000000 2.812791 0.000000 0.000000 0 0 /\\n S khungtaskd 67 59242.973736 E 59245.502616 3.000000 1.045812 5 120 0.000000 1.045812 0.000000 0.000000 0 0 /\\n I kworker/u16:2 68 56980.817664 E 56983.774705 3.000000 96.571025 3119 120 0.000000 96.571025 0.000000 0.000000 0 0 /\\n I kworker/3:1 73 56564.399450 E 56567.067307 3.000000 140.577357 1080 120 0.000000 140.577357 0.000000 0.000000 0 0 /\\n Ikworker/R-kinte 75 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-kbloc 76 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-blkcg 77 0.992084 E 0.957475 3.000000 0.000070 2 100 0.000000 0.000070 0.000000 0.000000 0 0 /\\n Ikworker/R-tpm_d 82 0.481367 E 0.446758 3.000000 0.000111 2 100 0.000000 0.000111 0.000000 0.000000 0 0 /\\n I kworker/R-md 84 0.480619 E 0.446010 3.000000 0.000748 2 100 0.000000 0.000748 0.000000 0.000000 0 0 /\\n Ikworker/R-edac- 86 0.479971 E 0.445362 3.000000 0.000648 2 100 0.000000 0.000648 0.000000 0.000000 0 0 /\\n S watchdogd 88 0.469682 E 2.529619 3.000000 0.000699 2 49 0.000000 0.000699 0.000000 0.000000 0 0 /\\n Ikworker/R-kthro 93 0.358457 E 0.323888 3.000000 0.021180 2 100 0.000000 0.021180 0.000000 0.000000 0 0 /\\n S irq/127-pciehp 94 0.342701 E 2.655906 3.000000 0.020513 2 49 0.000000 0.020513 0.000000 0.000000 0 0 /\\n I kworker/u17:0 114 59020.770974 E 59020.805494 3.000000 170.119960 4180 100 0.000000 170.119960 0.000000 0.000000 0 0 /\\n I kworker/3:1H 153 91907.967372 E 91908.001901 3.000000 23.328620 1616 100 0.000000 23.328620 0.000000 0.000000 0 0 /\\n I kworker/3:2 226 61986.510646 E 61989.509779 3.000000 40.706086 370 120 0.000000 40.706086 0.000000 0.000000 0 0 /\\n Sirq/192-iwlwifi 534 4059.665296 E 4062.645526 3.000000 1419.662569 11768 49 0.000000 1419.662569 0.000000 0.000000 0 0 /\\n Sirq/196-iwlwifi 539 3926.018591 E 3929.015940 3.000000 17.328437 95 49 0.000000 17.328437 0.000000 0.000000 0 0 /\\n I kworker/R-ttm 576 4266.892470 E 4266.927070 3.000000 0.005129 2 100 0.000000 0.005129 0.000000 0.000000 0 0 /\\n S gdbus 938 6.914745 E 9.332271 3.000000 25.658172 104 120 0.000000 25.658172 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S avahi-daemon 793 69.947779 E 72.156669 3.000000 520.077214 1738 120 0.000000 520.077214 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S cron 795 4.180098 E 7.085365 3.000000 5.303827 15 120 0.000000 5.303827 0.000000 0.000000 0 0 /system.slice/cron.service\\n Sgnome-remote-de 800 6.461804 E 9.080981 3.000000 30.145068 265 120 0.000000 30.145068 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 922 3.894639 E 6.842135 3.000000 0.090432 2 120 0.000000 0.090432 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 831 206.525041 E 209.519124 3.000000 30.118582 233 120 0.000000 30.118582 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 852 310.199492 E 310.516321 3.000000 174.131223 492 120 0.000000 174.131223 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 853 2.078318 E 5.068150 3.000000 0.396308 18 120 0.000000 0.396308 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 859 -1.009569 E 1.951424 3.000000 0.039007 1 120 0.000000 0.039007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S systemd-logind 842 122.764829 E 125.655926 3.000000 1414.429650 5387 120 0.000000 1414.429650 0.000000 0.000000 0 0 /system.slice/systemd-logind.service\\n S gdbus 888 16.413333 E 18.362122 3.000000 17.064715 94 120 0.000000 17.064715 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S NetworkManager 898 112.727469 E 115.670594 3.000000 892.587183 1508 120 0.000000 892.587183 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S sysbox-fs 1117 -1.009201 E 1.951424 3.000000 0.039375 1 120 0.000000 0.039375 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1476 345.111473 E 348.034063 3.000000 90.399371 3414 120 0.000000 90.399371 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1482 0.012894 E 2.894979 3.000000 0.583316 4 120 0.000000 0.583316 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gdbus 1496 0.233532 E 2.720526 3.000000 1.188965 22 120 0.000000 1.188965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S wireplumber 1515 9.144716 E 9.344452 3.000000 112.045348 651 109 0.000000 112.045348 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1528 7.387174 E 10.325290 3.000000 0.194691 7 120 0.000000 0.194691 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1538 7.325290 E 10.316534 3.000000 0.041734 2 120 0.000000 0.041734 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1518 2.669021 E 5.657668 3.000000 0.061989 3 120 0.000000 0.061989 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1568 8.156596 E 11.144147 3.000000 0.100728 3 120 0.000000 0.100728 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1561 8.265857 E 11.247889 3.000000 0.366731 9 120 0.000000 0.366731 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1599 718.298860 E 720.993996 3.000000 19.681002 118 120 0.000000 19.681002 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3008 5.879336 E 210.308511 3.000000 0.040484 1 139 0.000000 0.040484 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3009 5.885425 E 8.879336 3.000000 0.006089 1 120 0.000000 0.006089 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1681 0.987359 E 2.007769 3.000000 0.061217 2 120 0.000000 0.061217 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 2442 200.802238 E 203.083797 3.000000 2.686930 84 120 0.000000 2.686930 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2677 450.876485 E 452.877072 3.000000 2.701387 24 120 0.000000 2.701387 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 3726 259.475969 E 262.460947 3.000000 28.801533 50 120 0.000000 28.801533 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2723 0.432282 E 2.528786 3.000000 3.337825 71 120 0.000000 3.337825 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2727 0.657300 E 2.325290 3.000000 0.078513 3 120 0.000000 0.078513 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/3:3 2728 59963.684944 E 59966.680285 3.000000 40.128014 350 120 0.000000 40.128014 0.000000 0.000000 0 0 /\\n S Xwaylan:disk$0 3264 278.898908 E 483.348085 3.000000 0.083880 3 139 0.000000 0.083880 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sat-spi2-registr 3034 320.892867 E 323.863419 3.000000 9.827853 77 120 0.000000 9.827853 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3084 396.608166 E 398.928697 3.000000 1.378050 9 120 0.000000 1.378050 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3104 50.860674 E 53.826398 3.000000 0.155648 6 120 0.000000 0.155648 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3161 51.477948 E 54.430767 3.000000 0.086363 2 120 0.000000 0.086363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3165 265.319650 E 268.242694 3.000000 4.804589 50 120 0.000000 4.804589 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sound 3155 264.524415 E 267.507911 3.000000 10.096889 65 120 0.000000 10.096889 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3200 264.748433 E 267.666962 3.000000 4.545875 44 120 0.000000 4.545875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3173 52.876485 E 55.844305 3.000000 0.094693 4 120 0.000000 0.094693 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3195 53.525055 E 56.511106 3.000000 0.140273 3 120 0.000000 0.140273 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3212 262.457088 E 265.449831 3.000000 0.389984 12 120 0.000000 0.389984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-printer 3290 687.615620 E 690.465261 3.000000 187.874291 30 120 0.000000 187.874291 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3339 700.168791 E 703.029139 3.000000 0.936467 13 120 0.000000 0.936467 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3351 699.316593 E 701.734734 3.000000 3.194350 33 120 0.000000 3.194350 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3355 311.731393 E 314.671777 3.000000 0.146965 3 120 0.000000 0.146965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3356 408.298560 E 411.135610 3.000000 9.785534 67 120 0.000000 9.785534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-dconf 3360 312.231880 E 315.209559 3.000000 3.710779 6 120 0.000000 3.710779 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3365 311.671777 E 314.666437 3.000000 0.056426 2 120 0.000000 0.056426 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3368 312.703029 E 315.657097 3.000000 0.439195 10 120 0.000000 0.439195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3509 -1.026522 E 1.969433 3.000000 0.022054 3 120 0.000000 0.022054 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3511 3.665450 E 6.655609 3.000000 0.052600 3 120 0.000000 0.052600 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3551 9.844973 E 12.792466 3.000000 0.052507 1 120 0.000000 0.052507 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3599 197.020590 E 197.487604 3.000000 67.673866 80 120 0.000000 67.673866 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S sshd 3669 24.119215 E 26.352417 3.000000 60.985253 32 120 0.000000 60.985253 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n I kworker/3:4 4403 56560.146387 E 56563.133575 3.000000 0.175468 2 120 0.000000 0.175468 0.000000 0.000000 0 0 /\\n S pool-spawner 4748 11.609030 E 14.551046 3.000000 0.057984 1 120 0.000000 0.057984 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5100 224.686053 E 227.677039 3.000000 61.547451 14 120 0.000000 61.547451 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5110 268.721718 E 271.652332 3.000000 1.698855 16 120 0.000000 1.698855 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5127 268.080230 E 270.854937 3.000000 0.225293 1 120 0.000000 0.225293 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5237 325.360029 E 328.357053 3.000000 0.681974 21 120 0.000000 0.681974 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5262 307.365255 E 310.358223 3.000000 2.509248 7 120 0.000000 2.509248 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5263 336.088945 E 339.079904 3.000000 2.286725 426 120 0.000000 2.286725 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5393 441.075088 E 444.057442 3.000000 1.906891 4 120 0.000000 1.906891 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5396 441.032949 E 444.019394 3.000000 0.116762 6 120 0.000000 0.116762 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5397 441.007142 E 443.951633 3.000000 0.134457 6 120 0.000000 0.134457 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5455 329.155687 E 332.140177 3.000000 0.106899 6 120 0.000000 0.106899 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5666 1455.901773 E 1455.931322 3.000000 52.537643 16 120 0.000000 52.537643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5692 1542.872428 E 1545.867503 3.000000 39.486389 14 120 0.000000 39.486389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5607 675.005069 E 677.994134 3.000000 108.505409 56 120 0.000000 108.505409 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5675 1497.517568 E 1500.507764 3.000000 53.995739 18 120 0.000000 53.995739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5642 1261.164512 E 1264.157881 3.000000 21.195408 8 120 0.000000 21.195408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5701 1573.282016 E 1576.275123 3.000000 54.439900 15 120 0.000000 54.439900 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5575 2642.808822 E 2645.148276 3.000000 2837.405857 714 120 0.000000 2837.405857 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5631 796.046325 E 798.991768 3.000000 40.045155 23 120 0.000000 40.045155 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5681 1527.879182 E 1529.909057 3.000000 33.967325 14 120 0.000000 33.967325 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5684 1530.679057 E 1533.672041 3.000000 36.744957 12 120 0.000000 36.744957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5711 1596.022219 E 1599.010783 3.000000 26.922198 10 120 0.000000 26.922198 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5712 1598.317683 E 1601.311774 3.000000 27.952471 10 120 0.000000 27.952471 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5713 1598.100775 E 1601.093750 3.000000 28.977268 10 120 0.000000 28.977268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5716 1603.713181 E 1606.705277 3.000000 27.988249 8 120 0.000000 27.988249 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5648 1264.334911 E 1267.326576 3.000000 21.039304 8 120 0.000000 21.039304 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5649 1267.119289 E 1270.110336 3.000000 23.813972 11 120 0.000000 23.813972 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5652 1267.460598 E 1270.456344 3.000000 24.138886 11 120 0.000000 24.138886 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5718 1603.710384 E 1606.705277 3.000000 34.052954 13 120 0.000000 34.052954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5621 886.199030 E 889.074134 3.000000 3.905005 36 120 0.000000 3.905005 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 5624 877.264846 E 879.486096 3.000000 0.778750 3 120 0.000000 0.778750 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 5725 1699.806436 E 1702.782983 3.000000 917.607322 583 120 0.000000 917.607322 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 5728 1253.094404 E 1255.910197 3.000000 7.903658 284 120 0.000000 7.903658 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 5814 1383.831365 E 1386.831365 3.000000 100.491194 15 120 0.000000 100.491194 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 5732 886.034780 E 888.962267 3.000000 5.827845 49 120 0.000000 5.827845 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n\\ncpu#4, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 105495\\n .nr_uninterruptible : 187\\n .next_balance : 4295.060212\\n .curr->pid : 0\\n .clock : 393096.266690\\n .clock_task : 393096.266690\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[4]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 96.479506\\n .avg_vruntime : 96.479506\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392780.134418\\n .se->vruntime : 72340.211015\\n .se->sum_exec_runtime : 97.578408\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3122.676165\\n .avg_vruntime : 3122.676165\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393094.433376\\n .se->vruntime : 72363.491098\\n .se->sum_exec_runtime : 3490.771960\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 122.583099\\n .avg_vruntime : 122.583099\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 8\\n .runnable_avg : 8\\n .util_avg : 8\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 8\\n .tg_load_avg : 8\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393091.372829\\n .se->vruntime : 72362.688351\\n .se->sum_exec_runtime : 123.631675\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/accounts-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4.323638\\n .avg_vruntime : 4.323638\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.087482\\n .se->vruntime : 72353.889466\\n .se->sum_exec_runtime : 5.800746\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 277.637077\\n .avg_vruntime : 277.637077\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393066.862136\\n .se->vruntime : 72354.494923\\n .se->sum_exec_runtime : 308.088342\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 72363.491098\\n .avg_vruntime : 72363.491098\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 9\\n .util_avg : 9\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393094.433376\\n .se->vruntime : 97649.133169\\n .se->sum_exec_runtime : 15596.907238\\n .se->load.weight : 524288\\n .se->avg.load_avg : 5\\n .se->avg.util_avg : 9\\n .se->avg.runnable_avg : 9\\n\\ncfs_rq[4]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 199.894066\\n .avg_vruntime : 199.894066\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392734.754287\\n .se->vruntime : 97619.513861\\n .se->sum_exec_runtime : 203.671629\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 97649.133169\\n .avg_vruntime : 97649.133169\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 8\\n .runnable_avg : 9\\n .util_avg : 9\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[4]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[4]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S systemd 1 199.894066 E 202.615886 3.000000 3779.594954 4212 120 0.000000 3779.594954 0.000000 0.000000 0 0 /init.scope\\n S cpuhp/4 39 8611.189859 E 8614.138975 3.000000 0.358588 26 120 0.000000 0.358588 0.000000 0.000000 0 0 /\\n S idle_inject/4 40 -1.048576 E 1.201424 2.250000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S migration/4 41 1.176891 E 3.426891 2.250000 168.905912 157 0 0.000000 168.905912 0.000000 0.000000 0 0 /\\n S ksoftirqd/4 42 97590.580738 E 97593.576740 3.000000 19.055908 830 120 0.000000 19.055908 0.000000 0.000000 0 0 /\\n I kworker/4:0 43 61401.841050 E 61404.803367 3.000000 21.633006 342 120 0.000000 21.633006 0.000000 0.000000 0 0 /\\n I kworker/4:0H 44 132.163682 E 132.198197 3.000000 0.019668 4 100 0.000000 0.019668 0.000000 0.000000 0 0 /\\n I kworker/4:1 81 97632.963891 E 97635.871192 3.000000 160.737573 1592 120 0.000000 160.737573 0.000000 0.000000 0 0 /\\n Ikworker/R-ata_s 83 5.270300 E 5.304909 3.000000 0.000746 2 100 0.000000 0.000746 0.000000 0.000000 0 0 /\\n Ikworker/R-md_bi 85 5.270300 E 5.304909 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-devfr 87 5.273628 E 5.308237 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/128-pciehp 95 0.339759 E 2.659354 3.000000 0.006738 3 49 0.000000 0.006738 0.000000 0.000000 0 0 /\\n S hwrng 101 58931.261616 E 58933.909568 3.000000 28.701997 115 120 0.000000 28.701997 0.000000 0.000000 0 0 /\\n I kworker/4:1H 194 72635.715107 E 72635.749681 3.000000 8.188472 837 100 0.000000 8.188472 0.000000 0.000000 0 0 /\\n S systemd-udevd 351 621.779862 E 624.710209 3.000000 1118.035220 2337 120 0.000000 1118.035220 0.000000 0.000000 0 0 /system.slice/systemd-udevd.service\\n I kworker/u16:7 450 97603.357864 E 97606.212620 3.000000 170.237828 3017 120 0.000000 170.237828 0.000000 0.000000 0 0 /\\n I kworker/4:2 468 57914.251469 E 57917.233388 3.000000 0.155689 16 120 0.000000 0.155689 0.000000 0.000000 0 0 /\\n Ikworker/R-cfg80 514 3339.240577 E 3339.275140 3.000000 0.012808 2 100 0.000000 0.012808 0.000000 0.000000 0 0 /\\n Sirq/197-iwlwifi 540 3926.376252 E 3929.374115 3.000000 15.384867 53 49 0.000000 15.384867 0.000000 0.000000 0 0 /\\n Sirq/201-iwlwifi 544 3926.622118 E 3929.620867 3.000000 0.136252 5 49 0.000000 0.136252 0.000000 0.000000 0 0 /\\n I kworker/u17:3 785 97639.462812 E 97639.497109 3.000000 253.155041 6308 100 0.000000 253.155041 0.000000 0.000000 0 0 /\\n S pool-spawner 929 0.427240 E 3.421670 3.000000 0.182155 7 120 0.000000 0.182155 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gmain 930 4.323638 E 7.310059 3.000000 71.943570 779 120 0.000000 71.943570 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 918 4.224344 E 6.070337 3.000000 17.705503 95 120 0.000000 17.705503 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 1042 1.501824 E 4.479627 3.000000 0.055072 2 120 0.000000 0.055072 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S gdbus 1047 122.776037 E 125.593669 3.000000 194.042441 864 120 0.000000 194.042441 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 849 124.980146 E 127.976037 3.000000 327.764821 15683 120 0.000000 327.764821 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 925 123.595855 E 126.586312 3.000000 184.517409 557 120 0.000000 184.517409 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 838 328.342136 E 331.287501 3.000000 403.460051 5461 120 0.000000 403.460051 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gmain 1094 3.946236 E 6.930995 3.000000 0.050521 2 120 0.000000 0.050521 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gmain 1093 3.276503 E 6.269558 3.000000 0.066470 2 120 0.000000 0.066470 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1457 277.637077 E 280.579072 3.000000 71.291256 9872 120 0.000000 71.291256 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1474 276.266197 E 279.251240 3.000000 97.919106 4117 120 0.000000 97.919106 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1505 276.167391 E 278.431216 3.000000 171.997025 4757 120 0.000000 171.997025 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 5141 262.874316 E 265.861714 3.000000 21.962081 857 120 0.000000 21.962081 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1532 0.548481 E 3.506291 3.000000 0.195304 7 120 0.000000 0.195304 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1547 0.212741 E 3.208152 3.000000 0.019168 3 79 0.000000 0.019168 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1519 -1.009572 E 1.951424 3.000000 0.039004 1 120 0.000000 0.039004 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1535 10.910098 E 14.575757 3.000000 65.949337 133 121 0.000000 65.949337 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S dbus-daemon 1537 987.024860 E 989.861226 3.000000 127.794876 742 120 0.000000 127.794876 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1563 0.636104 E 3.602310 3.000000 0.327847 4 120 0.000000 0.327847 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1598 986.861226 E 989.816013 3.000000 0.444583 12 120 0.000000 0.444583 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1605 1014.248669 E 1017.245328 3.000000 9.157520 84 120 0.000000 9.157520 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1606 1014.317008 E 1017.290480 3.000000 8.267746 76 120 0.000000 8.267746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1609 1014.290480 E 1017.282584 3.000000 8.530813 76 120 0.000000 8.530813 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1682 -1.007916 E 1.951424 3.000000 0.040660 1 120 0.000000 0.040660 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1700 295.680439 E 298.486174 3.000000 10.233894 150 120 0.000000 10.233894 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2443 284.936640 E 287.916427 3.000000 35.663598 1701 120 0.000000 35.663598 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2525 305.244890 E 307.101730 3.000000 72.504908 2572 120 0.000000 72.504908 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2718 308.564055 E 311.559657 3.000000 20.920573 1507 120 0.000000 20.920573 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2402 44.216112 E 47.201754 3.000000 0.083347 6 120 0.000000 0.083347 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2404 203.451517 E 206.182657 3.000000 29.828064 69 120 0.000000 29.828064 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2420 44.291955 E 47.265037 3.000000 1.429798 32 120 0.000000 1.429798 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 3027 494.594461 E 497.580076 3.000000 1.096695 37 120 0.000000 1.096695 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dbus-daemon 3028 871.982914 E 874.971379 3.000000 8.820633 75 120 0.000000 8.820633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3040 23.893471 E 26.854493 3.000000 0.075685 2 120 0.000000 0.075685 0.000000 0.000000 0 0 /system.slice/colord.service\\n S pool-spawner 3070 84.801335 E 87.763845 3.000000 0.076250 2 120 0.000000 0.076250 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3071 84.763845 E 87.725839 3.000000 0.038006 1 120 0.000000 0.038006 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3086 585.187130 E 587.886236 3.000000 0.803427 9 120 0.000000 0.803427 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3113 121.997580 E 124.912918 3.000000 1.251295 53 120 0.000000 1.251295 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3120 104.510615 E 107.420360 3.000000 0.090255 1 120 0.000000 0.090255 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3132 104.942110 E 107.902899 3.000000 0.039211 1 120 0.000000 0.039211 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3147 432.291787 E 435.215403 3.000000 15.128436 45 120 0.000000 15.128436 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-housekeepin 3169 1012.623666 E 1014.388604 3.000000 160.348216 115 120 0.000000 160.348216 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3199 432.208898 E 435.123843 3.000000 4.825108 55 120 0.000000 4.825108 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-power 3172 934.048735 E 936.983961 3.000000 531.922828 648 120 0.000000 531.922828 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gjs 3333 961.492427 E 962.754198 3.000000 64.931215 51 120 0.000000 64.931215 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3388 494.502646 E 497.479395 3.000000 0.383639 13 120 0.000000 0.383639 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x1:disk$0 3384 493.429311 E 698.009560 3.000000 0.064318 1 139 0.000000 0.064318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3391 494.823326 E 497.820442 3.000000 0.047210 2 120 0.000000 0.047210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 3453 0.638992 E 1.951424 3.000000 0.409584 1 120 0.000000 0.409584 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S module-rt 3508 16.982589 E 19.952500 3.000000 0.177132 8 120 0.000000 0.177132 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3512 16.731938 E 19.727789 3.000000 0.017591 3 120 0.000000 0.017591 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3519 17.278259 E 20.249377 3.000000 0.054962 2 120 0.000000 0.054962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S dbus-daemon 3501 17.501364 E 20.425841 3.000000 9.308695 60 120 0.000000 9.308695 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3547 17.425841 E 20.278259 3.000000 0.147582 1 120 0.000000 0.147582 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3596 0.171413 E 2.703804 3.000000 0.124783 1 120 0.000000 0.124783 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S sshd 3711 1468.412754 E 1471.337149 3.000000 3428.784832 9821 120 0.000000 3428.784832 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S gdbus 4750 0.089371 E 2.823358 3.000000 0.503147 15 120 0.000000 0.503147 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S timer 4751 0.479745 E 2.495817 3.000000 0.024438 1 120 0.000000 0.024438 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/4:3 4828 57914.289385 E 57917.286600 3.000000 0.108756 5 120 0.000000 0.108756 0.000000 0.000000 0 0 /\\n S docker 5109 152.126586 E 155.068735 3.000000 0.361652 5 120 0.000000 0.361652 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5122 196.344791 E 199.329849 3.000000 63.034858 39 120 0.000000 63.034858 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5139 200.932316 E 203.298156 3.000000 7.404452 209 120 0.000000 7.404452 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5215 284.992862 E 287.986956 3.000000 0.127867 20 120 0.000000 0.127867 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5242 260.021354 E 262.990538 3.000000 1.439470 33 120 0.000000 1.439470 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5267 249.428702 E 252.410406 3.000000 0.050853 2 120 0.000000 0.050853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S redis-server 5282 122.583099 E 124.435788 3.000000 290.505834 146 120 0.000000 290.505834 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Sjemalloc_bg_thd 5375 0.560167 E 2.423287 3.000000 0.016546 1 120 0.000000 0.016546 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5403 291.028122 E 293.997164 3.000000 0.030958 1 120 0.000000 0.030958 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5406 292.459248 E 295.452352 3.000000 0.116114 17 120 0.000000 0.116114 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5407 291.517519 E 294.508545 3.000000 0.110756 6 120 0.000000 0.110756 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5423 267.622964 E 270.575220 3.000000 4.810706 69 120 0.000000 4.810706 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5428 264.775703 E 267.763855 3.000000 0.397285 12 120 0.000000 0.397285 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5429 264.863296 E 267.855265 3.000000 1.306934 28 120 0.000000 1.306934 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5460 267.679435 E 270.622964 3.000000 1.838611 58 120 0.000000 1.838611 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5479 5.910874 E 8.239062 3.000000 24.294118 29 120 0.000000 24.294118 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5693 2182.334914 E 2185.327152 3.000000 38.955454 14 120 0.000000 38.955454 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5670 2131.268004 E 2134.260351 3.000000 36.996673 11 120 0.000000 36.996673 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5671 2135.196688 E 2138.196688 3.000000 40.909890 14 120 0.000000 40.909890 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5640 1921.565079 E 1924.559625 3.000000 28.984572 12 120 0.000000 28.984572 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5644 1921.963150 E 1922.987767 3.000000 52.350338 20 120 0.000000 52.350338 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5696 2197.393849 E 2200.390282 3.000000 31.127998 15 120 0.000000 31.127998 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5699 2197.192376 E 2200.184357 3.000000 30.902525 11 120 0.000000 30.902525 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5632 1326.785621 E 1326.892101 3.000000 100.083757 4 120 0.000000 100.083757 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5658 1985.657062 E 1988.647654 3.000000 37.909073 12 120 0.000000 37.909073 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5660 1989.692299 E 1989.732082 3.000000 55.543120 15 120 0.000000 55.543120 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5577 3122.676165 E 3124.874201 3.000000 2476.997591 712 120 0.000000 2476.997591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5719 2242.781412 E 2242.811558 3.000000 49.489219 18 120 0.000000 49.489219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S python3 5815 1435.246725 E 1436.210260 3.000000 110.739555 5 120 0.000000 110.739555 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#5, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 114216\\n .nr_uninterruptible : -11\\n .next_balance : 4295.060210\\n .curr->pid : 0\\n .clock : 393096.267839\\n .clock_task : 393096.267839\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[5]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1296.288246\\n .avg_vruntime : 1296.288246\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392769.602803\\n .se->vruntime : 4239.617357\\n .se->sum_exec_runtime : 1312.144705\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6460.931364\\n .avg_vruntime : 6460.931364\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393011.131020\\n .se->vruntime : 13880.824831\\n .se->sum_exec_runtime : 2326.932309\\n .se->load.weight : 144141\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3104.253151\\n .avg_vruntime : 3104.253151\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392732.502429\\n .se->vruntime : 66089.067988\\n .se->sum_exec_runtime : 3678.851011\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 349.148904\\n .avg_vruntime : 349.148904\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393066.732865\\n .se->vruntime : 66089.235913\\n .se->sum_exec_runtime : 366.066270\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 66089.235913\\n .avg_vruntime : 66089.235913\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393066.732865\\n .se->vruntime : 93120.494766\\n .se->sum_exec_runtime : 16270.265276\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4239.617357\\n .avg_vruntime : 4239.617357\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392769.602803\\n .se->vruntime : 13654.664678\\n .se->sum_exec_runtime : 1447.404396\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13880.824831\\n .avg_vruntime : 13880.824831\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1004\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393011.131020\\n .se->vruntime : 93120.206021\\n .se->sum_exec_runtime : 4313.720362\\n .se->load.weight : 44198\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 93120.494766\\n .avg_vruntime : 93120.494766\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[5]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[5]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/5 45 6999.749005 E 7002.677723 3.000000 0.271587 26 120 0.000000 0.271587 0.000000 0.000000 0 0 /\\n S idle_inject/5 46 -1.043636 E 1.204967 2.250000 0.004272 3 49 0.000000 0.004272 0.000000 0.000000 0 0 /\\n S migration/5 47 3.168235 E 5.417506 2.250000 169.977717 157 0 0.000000 169.977717 0.000000 0.000000 0 0 /\\n S ksoftirqd/5 48 92860.327758 E 92863.324088 3.000000 31.833476 1349 120 0.000000 31.833476 0.000000 0.000000 0 0 /\\n I kworker/5:0 49 59905.629123 E 59908.604272 3.000000 215.049326 2902 120 0.000000 215.049326 0.000000 0.000000 0 0 /\\n I kworker/5:0H 50 785.846494 E 785.880922 3.000000 0.029057 4 100 0.000000 0.029057 0.000000 0.000000 0 0 /\\n I kworker/5:1H 90 91110.258234 E 91110.292767 3.000000 7.599350 371 100 0.000000 7.599350 0.000000 0.000000 0 0 /\\n S irq/129-pciehp 96 0.336759 E 2.662268 3.000000 0.006014 3 49 0.000000 0.006014 0.000000 0.000000 0 0 /\\n Ikworker/R-acpi_ 100 803.615043 E 803.649645 3.000000 0.003136 2 100 0.000000 0.003136 0.000000 0.000000 0 0 /\\n I kworker/5:2 102 58304.487734 E 58307.474531 3.000000 6.779451 136 120 0.000000 6.779451 0.000000 0.000000 0 0 /\\n I kworker/R-mld 103 822.822143 E 822.856734 3.000000 0.020268 2 100 0.000000 0.020268 0.000000 0.000000 0 0 /\\n Ikworker/R-ipv6_ 105 822.824530 E 822.859136 3.000000 0.002654 2 100 0.000000 0.002654 0.000000 0.000000 0 0 /\\n Ikworker/R-kstrp 112 825.212532 E 825.247134 3.000000 0.002925 2 100 0.000000 0.002925 0.000000 0.000000 0 0 /\\n I kworker/5:3 129 93120.327004 E 93123.228167 3.000000 92.940669 689 120 0.000000 92.940669 0.000000 0.000000 0 0 /\\n Sirq/173-FRMW000 225 1210.147450 E 1213.127987 3.000000 0.350809 4 49 0.000000 0.350809 0.000000 0.000000 0 0 /\\n Sirq/174-PIXA385 227 1218.791465 E 1221.760797 3.000000 0.479717 4 49 0.000000 0.479717 0.000000 0.000000 0 0 /\\n Sjbd2/nvme0n1p5- 264 91110.344298 E 91113.329858 3.000000 73.986134 1288 120 0.000000 73.986134 0.000000 0.000000 0 0 /\\n S psimon 395 1769.940955 E 1772.934339 3.000000 0.031393 2 98 0.000000 0.031393 0.000000 0.000000 0 0 /\\n Sirq/198-iwlwifi 541 3741.717084 E 3744.716044 3.000000 7.818490 34 49 0.000000 7.818490 0.000000 0.000000 0 0 /\\n S pool-spawner 917 0.598568 E 2.374275 3.000000 0.139307 3 120 0.000000 0.139307 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S snapd 2921 150.000733 E 153.000733 3.000000 139.295594 243 120 0.000000 139.295594 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gmain 953 0.274092 E 3.243919 3.000000 0.030173 1 120 0.000000 0.030173 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 855 215.924722 E 218.764853 3.000000 2.720858 28 120 0.000000 2.720858 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 858 3.421352 E 6.394871 3.000000 1.493133 34 120 0.000000 1.493133 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S pool-spawner 877 0.968110 E 1.951424 3.000000 0.080466 1 120 0.000000 0.080466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S thermald 1119 266.200189 E 268.347026 3.000000 419.469173 219 120 0.000000 419.469173 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gmain 875 20.949796 E 23.699655 3.000000 16.477443 105 120 0.000000 16.477443 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S ModemManager 1073 9.236856 E 12.162608 3.000000 72.371170 359 120 0.000000 72.371170 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S pool-spawner 1096 5.835716 E 8.797854 3.000000 0.070490 2 120 0.000000 0.070490 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1108 16.766113 E 19.664757 3.000000 20.652107 119 120 0.000000 20.652107 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1113 1.961790 E 4.958126 3.000000 10.058361 153 120 0.000000 10.058361 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1114 3.303236 E 6.264028 3.000000 1.542075 72 120 0.000000 1.542075 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1115 1.948170 E 4.912969 3.000000 0.190242 20 120 0.000000 0.190242 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1447 2.681121 E 5.678513 3.000000 22.987360 343 120 0.000000 22.987360 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1460 349.148904 E 351.981142 3.000000 185.580185 4258 120 0.000000 185.580185 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 1485 3.989182 E 6.948338 3.000000 16.521431 131 120 0.000000 16.521431 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gmain 1494 2.779321 E 5.771975 3.000000 0.065744 3 120 0.000000 0.065744 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire-pulse 1516 26.233418 E 26.485480 3.000000 19.482467 71 109 0.000000 19.482467 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S rtkit-daemon 1549 3.425483 E 6.383611 3.000000 4.740092 69 120 0.000000 4.740092 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n Sxdg-permission- 1557 26.114410 E 28.921546 3.000000 4.480217 9 120 0.000000 4.480217 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1610 1294.109263 E 1297.102150 3.000000 9.820128 82 120 0.000000 9.820128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Spool-gnome-shel 5072 1288.447011 E 1291.283384 3.000000 0.184487 2 120 0.000000 0.184487 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 1683 12.272781 E 15.207527 3.000000 26.792875 230 120 0.000000 26.792875 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1657 171.907138 E 174.896341 3.000000 206.971759 2083 120 0.000000 206.971759 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1669 344.620239 E 347.584650 3.000000 69.767271 2073 120 0.000000 69.767271 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2394 356.668054 E 359.629743 3.000000 47.946204 1790 120 0.000000 47.946204 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2817 0.969895 E 2.006035 3.000000 0.078681 2 120 0.000000 0.078681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S pool-spawner 3023 33.403610 E 36.375096 3.000000 0.062687 2 120 0.000000 0.062687 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3036 49.145973 E 52.105602 3.000000 0.040371 1 120 0.000000 0.040371 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 3069 409.720330 E 411.795486 3.000000 3.645960 9 120 0.000000 3.645960 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3087 923.987178 E 926.920563 3.000000 0.691954 9 120 0.000000 0.691954 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3102 260.315442 E 263.308450 3.000000 0.043178 2 120 0.000000 0.043178 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3125 271.161595 E 274.095199 3.000000 0.721540 8 120 0.000000 0.721540 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3134 695.253497 E 698.160802 3.000000 18.015111 51 120 0.000000 18.015111 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3142 271.415232 E 274.408854 3.000000 0.052239 2 120 0.000000 0.052239 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3144 283.234823 E 286.195976 3.000000 0.156948 5 120 0.000000 0.156948 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3148 1293.987297 E 1296.915420 3.000000 21.922822 185 120 0.000000 21.922822 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3160 274.593574 E 277.561112 3.000000 0.032462 1 120 0.000000 0.032462 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3205 694.073828 E 697.059396 3.000000 0.539966 11 120 0.000000 0.539966 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3190 291.047172 E 294.041558 3.000000 0.069455 3 120 0.000000 0.069455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3191 291.082083 E 294.047172 3.000000 0.064373 2 120 0.000000 0.064373 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3171 277.903854 E 280.871361 3.000000 0.032493 1 120 0.000000 0.032493 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3208 289.768671 E 292.723596 3.000000 0.045075 1 120 0.000000 0.045075 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3341 1268.500237 E 1271.417686 3.000000 1.040132 11 120 0.000000 1.040132 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3347 710.823685 E 713.793865 3.000000 0.043738 2 120 0.000000 0.043738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3348 710.793865 E 713.767416 3.000000 0.026449 1 120 0.000000 0.026449 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-daemon 3346 949.332769 E 952.288245 3.000000 42.959636 73 120 0.000000 42.959636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11 3362 923.587585 E 926.310829 3.000000 45.522706 130 120 0.000000 45.522706 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3371 726.850047 E 729.799574 3.000000 0.076524 2 120 0.000000 0.076524 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sibus-engine-sim 3378 728.885393 E 731.863437 3.000000 4.625539 14 120 0.000000 4.625539 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3513 1.729229 E 4.725188 3.000000 0.034825 5 120 0.000000 0.034825 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S wireplumber 3472 11.462644 E 13.755284 3.000000 40.504423 63 120 0.000000 40.504423 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3555 8.358478 E 11.299358 3.000000 0.319715 3 120 0.000000 0.319715 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3550 7.088145 E 10.059456 3.000000 0.088092 2 120 0.000000 0.088092 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3553 7.326957 E 10.315957 3.000000 0.238812 7 120 0.000000 0.238812 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fusermount3 3556 8.289925 E 10.425022 3.000000 0.864903 1 120 0.000000 0.864903 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Ssnapd-desktop-i 3594 12.810910 E 15.645251 3.000000 16.524009 26 120 0.000000 16.524009 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gmain 3597 12.645251 E 15.600431 3.000000 0.044820 1 120 0.000000 0.044820 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S docker 5103 77.367826 E 80.361952 3.000000 2.654622 20 120 0.000000 2.654622 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5104 76.789473 E 79.661122 3.000000 0.935648 8 120 0.000000 0.935648 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5105 76.471056 E 79.122576 3.000000 0.348480 1 120 0.000000 0.348480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5123 85.194946 E 88.145423 3.000000 9.164365 606 120 0.000000 9.164365 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5131 80.563750 E 83.192223 3.000000 1.136131 12 120 0.000000 1.136131 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5211 363.927505 E 366.863433 3.000000 0.320824 5 120 0.000000 0.320824 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5212 345.929760 E 348.904077 3.000000 0.025683 1 120 0.000000 0.025683 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5221 346.057686 E 349.014905 3.000000 0.042781 1 120 0.000000 0.042781 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5239 318.088842 E 321.070226 3.000000 0.081546 6 120 0.000000 0.081546 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5241 318.149557 E 321.145361 3.000000 0.910349 25 120 0.000000 0.910349 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5268 318.304054 E 321.172323 3.000000 0.568834 24 120 0.000000 0.568834 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5270 335.667711 E 338.653822 3.000000 0.530675 18 120 0.000000 0.530675 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5395 356.863763 E 359.858058 3.000000 0.199092 41 120 0.000000 0.199092 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5405 356.859342 E 359.855343 3.000000 1.795184 14 120 0.000000 1.795184 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5409 356.858058 E 359.853277 3.000000 0.086967 4 120 0.000000 0.086967 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5410 356.739028 E 359.714574 3.000000 0.024454 1 120 0.000000 0.024454 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5419 323.414770 E 326.408620 3.000000 2.963462 8 120 0.000000 2.963462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5420 336.202080 E 339.191468 3.000000 1.984346 250 120 0.000000 1.984346 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5421 323.427369 E 326.411167 3.000000 0.463860 15 120 0.000000 0.463860 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5427 334.340607 E 337.316221 3.000000 0.771423 36 120 0.000000 0.771423 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5452 336.451109 E 339.441719 3.000000 0.854701 197 120 0.000000 0.854701 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5453 335.433992 E 338.295542 3.000000 0.951924 39 120 0.000000 0.951924 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5454 327.251540 E 330.239598 3.000000 0.078194 9 120 0.000000 0.078194 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5458 335.282536 E 338.277972 3.000000 1.356184 21 120 0.000000 1.356184 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5560 0.187048 E 2.804336 3.000000 0.487394 4 120 0.000000 0.487394 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5561 0.191741 E 2.799050 3.000000 0.438479 4 120 0.000000 0.438479 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5562 0.191017 E 2.796361 3.000000 0.389659 2 120 0.000000 0.389659 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5563 0.185087 E 2.809828 3.000000 0.432417 2 120 0.000000 0.432417 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5614 1204.439296 E 1207.439296 3.000000 25.601066 7 120 0.000000 25.601066 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5617 1206.891768 E 1209.822325 3.000000 28.034014 9 120 0.000000 28.034014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5619 1208.780352 E 1210.861964 3.000000 29.914255 9 120 0.000000 29.914255 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5608 1185.932477 E 1188.922565 3.000000 37.946501 14 120 0.000000 37.946501 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5672 1995.255322 E 1995.274003 3.000000 73.850813 20 120 0.000000 73.850813 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5641 1768.202285 E 1771.193258 3.000000 54.929183 14 120 0.000000 54.929183 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5695 2071.651562 E 2071.688139 3.000000 32.936801 11 120 0.000000 32.936801 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5637 1539.174198 E 1540.010364 3.000000 38.326835 12 120 0.000000 38.326835 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5638 1538.793722 E 1540.152260 3.000000 37.736919 12 120 0.000000 37.736919 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5709 2084.464804 E 2087.450225 3.000000 29.991031 9 120 0.000000 29.991031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5654 2046.336174 E 2049.326048 3.000000 38.012486 12 120 0.000000 38.012486 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5657 1803.954929 E 1805.989704 3.000000 38.959841 12 120 0.000000 38.959841 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5659 1807.015254 E 1809.026693 3.000000 42.007189 11 120 0.000000 42.007189 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5714 2109.823685 E 2109.851682 3.000000 36.490008 12 120 0.000000 36.490008 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5625 10.233587 E 12.608430 3.000000 0.625157 1 120 0.000000 0.625157 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 5727 1264.146640 E 1267.136524 3.000000 0.133475 3 120 0.000000 0.133475 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Ssystemd-hostnam 5864 5.762152 E 6.777177 3.000000 61.327485 36 120 0.000000 61.327485 0.000000 0.000000 0 0 /system.slice/systemd-hostnamed.service\\n\\ncpu#6, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 109545\\n .nr_uninterruptible : 107\\n .next_balance : 4295.060210\\n .curr->pid : 0\\n .clock : 393096.268688\\n .clock_task : 393096.268688\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[6]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 622.833378\\n .avg_vruntime : 622.833378\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393071.434070\\n .se->vruntime : 2033.070607\\n .se->sum_exec_runtime : 656.481962\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1741.829874\\n .avg_vruntime : 1741.829874\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392787.793539\\n .se->vruntime : 6221.397238\\n .se->sum_exec_runtime : 1744.656140\\n .se->load.weight : 1039117\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6221.397238\\n .avg_vruntime : 6221.397238\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392787.793539\\n .se->vruntime : 12356.818789\\n .se->sum_exec_runtime : 1858.879022\\n .se->load.weight : 1047201\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 24.226484\\n .avg_vruntime : 24.226484\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 392980.473542\\n .se->vruntime : 69512.100853\\n .se->sum_exec_runtime : 25.374410\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 63.636189\\n .avg_vruntime : 63.636189\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.043117\\n .se->vruntime : 69512.515169\\n .se->sum_exec_runtime : 80.822825\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69512.515169\\n .avg_vruntime : 69512.515169\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.043117\\n .se->vruntime : 92482.167096\\n .se->sum_exec_runtime : 15829.895259\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2033.070607\\n .avg_vruntime : 2033.070607\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393071.434070\\n .se->vruntime : 12358.136914\\n .se->sum_exec_runtime : 721.099810\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12358.136914\\n .avg_vruntime : 12358.136914\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1004\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393071.434070\\n .se->vruntime : 92483.138637\\n .se->sum_exec_runtime : 2956.070315\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 92483.138637\\n .avg_vruntime : 92483.138637\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[6]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[6]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/6 51 8615.222785 E 8618.158454 3.000000 0.252486 26 120 0.000000 0.252486 0.000000 0.000000 0 0 /\\n S idle_inject/6 52 -1.048596 E 1.201404 2.250000 0.001435 3 49 0.000000 0.001435 0.000000 0.000000 0 0 /\\n S migration/6 53 3.285100 E 5.534388 2.250000 170.339339 165 0 0.000000 170.339339 0.000000 0.000000 0 0 /\\n S ksoftirqd/6 54 92230.155656 E 92233.145059 3.000000 21.324817 705 120 0.000000 21.324817 0.000000 0.000000 0 0 /\\n I kworker/6:0H 56 70074.340105 E 70074.374600 3.000000 3.828398 271 100 0.000000 3.828398 0.000000 0.000000 0 0 /\\n S irq/130-pciehp 97 0.333820 E 2.665268 3.000000 0.005759 3 49 0.000000 0.005759 0.000000 0.000000 0 0 /\\n I kworker/6:1 98 60740.281329 E 60743.270214 3.000000 14.034021 228 120 0.000000 14.034021 0.000000 0.000000 0 0 /\\n I kworker/6:1H 104 0.901750 E 0.936338 3.000000 0.024295 2 100 0.000000 0.024295 0.000000 0.000000 0 0 /\\n Ikworker/R-ext4- 265 715.149068 E 715.183650 3.000000 0.016782 2 100 0.000000 0.016782 0.000000 0.000000 0 0 /\\n Ssystemd-journal 315 63.636189 E 65.922516 3.000000 661.629658 1712 119 0.000000 661.629658 0.000000 0.000000 0 0 /system.slice/systemd-journald.service\\n Sirq/199-iwlwifi 542 3741.720024 E 3744.718960 3.000000 1.427748 24 49 0.000000 1.427748 0.000000 0.000000 0 0 /\\n I kworker/6:3 640 60933.614473 E 60936.605479 3.000000 111.455429 1692 120 0.000000 111.455429 0.000000 0.000000 0 0 /\\n Siio-sensor-prox 804 51.794222 E 54.650306 3.000000 342.582748 667 120 0.000000 342.582748 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S pool-spawner 931 3.995045 E 6.943176 3.000000 0.051869 1 120 0.000000 0.051869 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S polkitd 812 141.405613 E 144.360479 3.000000 675.978687 1179 120 0.000000 675.978687 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 1045 246.848037 E 249.653279 3.000000 94.409312 356 120 0.000000 94.409312 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2922 361.812146 E 364.803584 3.000000 106.436659 92 120 0.000000 106.436659 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 3003 365.186450 E 367.965805 3.000000 105.540123 120 120 0.000000 105.540123 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 958 9.238449 E 12.208952 3.000000 0.475075 10 120 0.000000 0.475075 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 949 3.796978 E 6.673936 3.000000 0.123042 1 120 0.000000 0.123042 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 1112 5.262021 E 8.244316 3.000000 0.017705 1 120 0.000000 0.017705 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S udisksd 845 26.324328 E 28.950017 3.000000 125.595959 363 120 0.000000 125.595959 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S probing-thread 1075 6.567609 E 9.544668 3.000000 0.022941 1 120 0.000000 0.022941 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 937 1.153308 E 4.086953 3.000000 0.098542 2 120 0.000000 0.098542 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S psimon 1430 9260.147662 E 9263.146878 3.000000 0.006730 2 98 0.000000 0.006730 0.000000 0.000000 0 0 /\\n S containerd 1459 318.576239 E 321.566386 3.000000 83.667697 3623 120 0.000000 83.667697 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1490 315.439892 E 317.745998 3.000000 101.729747 1820 120 0.000000 101.729747 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1530 2.618657 E 5.543553 3.000000 0.223127 6 120 0.000000 0.223127 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sdbus-run-sessio 1533 0.258773 E 2.587285 3.000000 1.487986 5 120 0.000000 1.487986 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1550 -1.032441 E 2.697765 3.000000 3.144663 53 0 0.000000 3.144663 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S gmain 1566 17.297077 E 20.277928 3.000000 0.097746 7 120 0.000000 0.097746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1570 17.355420 E 20.297077 3.000000 0.588370 21 120 0.000000 0.588370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 1590 622.833378 E 625.305861 3.000000 9359.382733 4466 120 0.000000 9359.382733 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3029 275.589042 E 276.659165 3.000000 15.079471 7 120 0.000000 15.079471 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S krfcommd 1621 10074.755342 E 10075.075292 3.000000 0.065550 2 110 0.000000 0.065550 0.000000 0.000000 0 0 /\\n S cups-browsed 1656 7.174703 E 10.099095 3.000000 104.739756 600 120 0.000000 104.739756 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1667 360.733205 E 363.572264 3.000000 44.912651 1440 120 0.000000 44.912651 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1668 10.959996 E 13.909631 3.000000 0.136753 4 120 0.000000 0.136753 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1671 376.622448 E 379.612498 3.000000 35.314543 1107 120 0.000000 35.314543 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1659 0.061295 E 3.028724 3.000000 1.514592 13 120 0.000000 1.514592 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S sshd 1702 74.518561 E 77.246586 3.000000 11.486317 11 120 0.000000 11.486317 0.000000 0.000000 0 0 /system.slice/ssh.service\\n Scontainerd-shim 2398 30.228595 E 33.220919 3.000000 3.863503 51 120 0.000000 3.863503 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2400 215.785696 E 218.742407 3.000000 5.591508 345 120 0.000000 5.591508 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2417 28.278836 E 31.246599 3.000000 0.032237 1 120 0.000000 0.032237 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2418 30.220839 E 33.148343 3.000000 0.624572 15 120 0.000000 0.624572 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 2511 29.041477 E 31.909107 3.000000 42.913269 436 120 0.000000 42.913269 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2717 7.476168 E 10.461486 3.000000 28.234681 817 120 0.000000 28.234681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2724 8.330328 E 11.312981 3.000000 0.730104 41 120 0.000000 0.730104 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2729 0.009183 E 2.987065 3.000000 0.474507 16 120 0.000000 0.474507 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2763 28.885776 E 31.856462 3.000000 5.264668 92 120 0.000000 5.264668 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3037 69.004645 E 71.977650 3.000000 0.026995 1 120 0.000000 0.026995 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3083 288.025683 E 289.715393 3.000000 1.607031 8 120 0.000000 1.607031 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3088 286.715393 E 289.284690 3.000000 1.401843 9 120 0.000000 1.401843 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3124 87.455847 E 90.416578 3.000000 0.039269 1 120 0.000000 0.039269 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3131 302.640897 E 305.308430 3.000000 2.994609 50 120 0.000000 2.994609 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3158 93.881548 E 96.817284 3.000000 0.064264 1 120 0.000000 0.064264 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3182 109.126031 E 111.562635 3.000000 0.591888 2 120 0.000000 0.591888 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3184 108.724420 E 111.678855 3.000000 0.093578 2 120 0.000000 0.093578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3216 109.368449 E 112.350997 3.000000 0.217820 14 120 0.000000 0.217820 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3213 602.863968 E 605.510516 3.000000 272.558231 744 120 0.000000 272.558231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3293 586.573053 E 589.290637 3.000000 24.862703 32 120 0.000000 24.862703 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3337 606.691952 E 609.593211 3.000000 1.370128 13 120 0.000000 1.370128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3338 606.814834 E 609.691952 3.000000 1.139504 13 120 0.000000 1.139504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S module-rt 3510 4.969118 E 7.891565 3.000000 0.240480 6 120 0.000000 0.240480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3523 5.394138 E 8.306091 3.000000 0.426467 6 120 0.000000 0.426467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3546 5.427172 E 8.394138 3.000000 0.089890 2 120 0.000000 0.089890 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3548 5.547188 E 8.427172 3.000000 0.773129 24 120 0.000000 0.773129 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3712 1420.598707 E 1422.937836 3.000000 248.416563 467 120 0.000000 248.416563 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Z dbus-daemon 4737 542.262424 E 544.949586 3.000000 0.530265 2 120 0.000000 0.530265 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 4749 16.047752 E 18.987863 3.000000 0.059889 1 120 0.000000 0.059889 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/6:0 4983 92481.267886 E 92484.177704 3.000000 3.431925 116 120 0.000000 3.431925 0.000000 0.000000 0 0 /\\n S docker 5106 50.986184 E 53.966096 3.000000 2.021095 12 120 0.000000 2.021095 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5128 59.883439 E 62.878961 3.000000 8.541157 259 120 0.000000 8.541157 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5140 54.263056 E 57.253692 3.000000 4.202288 102 120 0.000000 4.202288 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5731 385.459503 E 388.438040 3.000000 0.212807 10 120 0.000000 0.212807 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5240 265.802650 E 268.788465 3.000000 0.020995 2 120 0.000000 0.020995 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5243 266.286329 E 269.275178 3.000000 0.261505 4 120 0.000000 0.261505 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5264 273.123925 E 276.097681 3.000000 1.821770 25 120 0.000000 1.821770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5266 267.028584 E 270.019464 3.000000 0.210716 13 120 0.000000 0.210716 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5339 306.279057 E 309.240480 3.000000 4.007150 120 120 0.000000 4.007150 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5401 369.867980 E 372.833332 3.000000 0.034648 1 120 0.000000 0.034648 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5422 300.933996 E 303.801630 3.000000 0.270055 15 120 0.000000 0.270055 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5450 279.103396 E 282.098400 3.000000 2.396339 8 120 0.000000 2.396339 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5566 1.448927 E 4.109470 3.000000 0.339457 1 120 0.000000 0.339457 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5604 954.763097 E 957.751202 3.000000 28.240943 116 120 0.000000 28.240943 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5663 1792.640288 E 1795.640288 3.000000 38.952545 12 120 0.000000 38.952545 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5668 1789.732642 E 1791.724291 3.000000 35.988177 10 120 0.000000 35.988177 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5606 969.507874 E 972.497742 3.000000 25.491566 11 120 0.000000 25.491566 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5609 971.056429 E 974.046014 3.000000 27.020193 26 120 0.000000 27.020193 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5610 971.458654 E 974.453476 3.000000 27.417031 12 120 0.000000 27.417031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5707 1930.771185 E 1933.761817 3.000000 30.988047 9 120 0.000000 30.988047 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5628 1001.868572 E 1004.809337 3.000000 27.930046 12 120 0.000000 27.930046 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5629 1002.170072 E 1005.109190 3.000000 33.107018 10 120 0.000000 33.107018 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5679 1895.668218 E 1898.660660 3.000000 32.971433 10 120 0.000000 32.971433 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5683 1896.759957 E 1898.798855 3.000000 34.012241 10 120 0.000000 34.012241 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5720 1943.308345 E 1946.308345 3.000000 26.777888 7 120 0.000000 26.777888 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5723 1942.666364 E 1944.688960 3.000000 26.120826 8 120 0.000000 26.120826 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5623 24.226484 E 27.116136 3.000000 3.011211 36 120 0.000000 3.011211 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 5816 1545.664101 E 1547.633092 3.000000 110.151870 8 120 0.000000 110.151870 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Sjemalloc_bg_thd 5821 1546.597766 E 1548.664101 3.000000 0.933665 1 120 0.000000 0.933665 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#7, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 113366\\n .nr_uninterruptible : -61\\n .next_balance : 4295.060210\\n .curr->pid : 0\\n .clock : 393102.008563\\n .clock_task : 393102.008563\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[7]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2985.164036\\n .avg_vruntime : 2985.164036\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1388\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393009.551536\\n .se->vruntime : 7495.841359\\n .se->sum_exec_runtime : 2988.735844\\n .se->load.weight : 481067\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[7]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7495.841359\\n .avg_vruntime : 7495.841359\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 852\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393009.551536\\n .se->vruntime : 16678.000128\\n .se->sum_exec_runtime : 3105.225800\\n .se->load.weight : 991496\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[7]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 395.184093\\n .avg_vruntime : 395.184093\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.008563\\n .se->vruntime : 63782.828851\\n .se->sum_exec_runtime : 396.580525\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2842.536604\\n .avg_vruntime : 2842.536604\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393095.529027\\n .se->vruntime : 63782.813820\\n .se->sum_exec_runtime : 3483.301890\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 22.943258\\n .avg_vruntime : 22.943258\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393015.037443\\n .se->vruntime : 63781.110004\\n .se->sum_exec_runtime : 24.450408\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/kerneloops.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19.099682\\n .avg_vruntime : 19.099682\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393021.359334\\n .se->vruntime : 63781.136249\\n .se->sum_exec_runtime : 20.148258\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 63782.828851\\n .avg_vruntime : 63782.828851\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393102.008563\\n .se->vruntime : 100220.830655\\n .se->sum_exec_runtime : 14515.243197\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[7]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 16678.000128\\n .avg_vruntime : 16678.000128\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1004\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 393009.551536\\n .se->vruntime : 100218.976466\\n .se->sum_exec_runtime : 7032.412347\\n .se->load.weight : 890369\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[7]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 100220.830655\\n .avg_vruntime : 100220.830655\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[7]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[7]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/7 57 8699.309454 E 8702.275668 3.000000 0.282413 26 120 0.000000 0.282413 0.000000 0.000000 0 0 /\\n S idle_inject/7 58 -1.048578 E 1.201422 2.250000 0.001352 3 49 0.000000 0.001352 0.000000 0.000000 0 0 /\\n S migration/7 59 3.384442 E 5.633801 2.250000 170.188226 158 0 0.000000 170.188226 0.000000 0.000000 0 0 /\\n S ksoftirqd/7 60 100213.931603 E 100216.925702 3.000000 16.722944 426 120 0.000000 16.722944 0.000000 0.000000 0 0 /\\n I kworker/7:0H 62 74560.993197 E 74561.027703 3.000000 8.755298 246 100 0.000000 8.755298 0.000000 0.000000 0 0 /\\n S kdevtmpfs 63 9325.916585 E 9328.878568 3.000000 8.686237 285 120 0.000000 8.686237 0.000000 0.000000 0 0 /\\n S khugepaged 74 65982.617128 E 66178.658241 3.000000 4.803397 105 139 0.000000 4.803397 0.000000 0.000000 0 0 /\\n S kswapd0 91 0.799409 E 2.181565 3.000000 0.034879 3 120 0.000000 0.034879 0.000000 0.000000 0 0 /\\n Secryptfs-kthrea 92 -1.016388 E 1.982554 3.000000 0.003235 2 120 0.000000 0.003235 0.000000 0.000000 0 0 /\\n I kworker/7:1 99 100219.110372 E 100222.104130 3.000000 237.924525 1870 120 0.000000 237.924525 0.000000 0.000000 0 0 /\\n I kworker/7:1H 186 54.192213 E 54.226778 3.000000 0.130453 2 100 0.000000 0.130453 0.000000 0.000000 0 0 /\\n I kworker/7:2 196 64826.238662 E 64829.224947 3.000000 133.597384 774 120 0.000000 133.597384 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 220 260.331222 E 260.365822 3.000000 0.004276 2 100 0.000000 0.004276 0.000000 0.000000 0 0 /\\n I kworker/u16:8 451 64907.053293 E 64910.025534 3.000000 155.258188 1804 120 0.000000 155.258188 0.000000 0.000000 0 0 /\\n I kworker/u16:9 452 65030.294948 E 65033.293612 3.000000 189.797515 2595 120 0.000000 189.797515 0.000000 0.000000 0 0 /\\n Sirq/200-iwlwifi 543 3741.722959 E 3744.721790 3.000000 188.113954 985 49 0.000000 188.113954 0.000000 0.000000 0 0 /\\n Ssystemd-timesyn 671 10.179520 E 12.899695 3.000000 64.977743 81 120 0.000000 64.977743 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n S bluetoothd 794 19.209153 E 22.142239 3.000000 94.656079 389 120 0.000000 94.656079 0.000000 0.000000 0 0 /system.slice/bluetooth.service\\n S gmain 932 5.984093 E 8.944402 3.000000 0.039691 1 120 0.000000 0.039691 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n Spower-profiles- 815 6.306037 E 8.958709 3.000000 42.592465 217 120 0.000000 42.592465 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 926 294.461091 E 297.453915 3.000000 114.552421 451 120 0.000000 114.552421 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S pool-spawner 952 0.552605 E 2.408198 3.000000 0.084044 2 120 0.000000 0.084044 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 851 395.184093 E 398.169062 3.000000 1162.444639 15781 120 0.000000 1162.444639 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gmain 874 8.807278 E 11.798542 3.000000 0.044986 2 120 0.000000 0.044986 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gdbus 906 99.365358 E 102.183068 3.000000 62.063308 260 120 0.000000 62.063308 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S wpa_supplicant 901 0.266437 E 2.301144 3.000000 309.193961 417 120 0.000000 309.193961 0.000000 0.000000 0 0 /system.slice/wpa_supplicant.service\\n S in:imuxsock 954 22.943258 E 25.918729 3.000000 92.571221 2588 120 0.000000 92.571221 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S gdbus 1104 37.768442 E 39.540502 3.000000 25.778299 96 120 0.000000 25.778299 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S upowerd 1086 26.539836 E 27.714095 3.000000 123.213656 176 120 0.000000 123.213656 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1120 -1.040991 E 1.951424 3.000000 0.113711 2 120 0.000000 0.113711 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sleep 1149 39.073787 E 39.604681 3.000000 7.280071 3 120 0.000000 7.280071 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S pool-spawner 1493 0.604404 E 2.386227 3.000000 0.063206 3 120 0.000000 0.063206 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 1513 11.763534 E 14.743230 3.000000 12.527238 32 120 0.000000 12.527238 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1525 22.920219 E 25.873281 3.000000 11.380453 155 120 0.000000 11.380453 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sxdg-document-po 1548 22.929418 E 25.920219 3.000000 6.358220 29 120 0.000000 6.358220 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fuse mainloop 1567 19.595470 E 22.587394 3.000000 0.137316 5 120 0.000000 0.137316 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1558 18.304433 E 21.267038 3.000000 0.111080 2 120 0.000000 0.111080 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dockerd 1665 387.715999 E 390.699088 3.000000 82.085644 1953 120 0.000000 82.085644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1673 0.023012 E 2.973127 3.000000 0.586838 20 120 0.000000 0.586838 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1703 404.236973 E 407.207709 3.000000 45.206785 1218 120 0.000000 45.206785 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2406 426.740205 E 429.731187 3.000000 34.872112 1123 120 0.000000 34.872112 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2524 423.215549 E 426.201238 3.000000 104.535424 3308 120 0.000000 104.535424 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1662 19.099682 E 22.073437 3.000000 0.997298 13 120 0.000000 0.997298 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n Scontainerd-shim 2401 229.088824 E 232.035962 3.000000 16.445830 75 120 0.000000 16.445830 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2419 229.035962 E 232.027394 3.000000 17.642231 77 120 0.000000 17.642231 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2818 12.382322 E 15.360201 3.000000 12.568123 31 120 0.000000 12.568123 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Sat-spi-bus-laun 3022 424.559544 E 427.521167 3.000000 3.389602 32 120 0.000000 3.389602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayla:traceq0 3268 365.997005 E 570.481954 3.000000 0.077355 4 139 0.000000 0.077355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3043 57.661466 E 60.641092 3.000000 4.306383 153 120 0.000000 4.306383 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gdbus 3073 207.807359 E 210.334322 3.000000 2.467237 14 120 0.000000 2.467237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3110 30.677526 E 33.625817 3.000000 0.075552 2 120 0.000000 0.075552 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3111 30.630162 E 33.591988 3.000000 0.038174 1 120 0.000000 0.038174 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3135 50.522322 E 53.477690 3.000000 0.080793 3 120 0.000000 0.080793 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3143 51.324937 E 54.279106 3.000000 0.083157 2 120 0.000000 0.083157 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3189 52.566712 E 55.538836 3.000000 0.112926 2 120 0.000000 0.112926 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3211 1467.846211 E 1470.663093 3.000000 19.246036 145 120 0.000000 19.246036 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-screensaver 3149 357.671192 E 360.642427 3.000000 5.256014 42 120 0.000000 5.256014 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3164 357.647615 E 360.580773 3.000000 4.749683 47 120 0.000000 4.749683 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3207 353.954110 E 356.900350 3.000000 0.139738 3 120 0.000000 0.139738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3291 223.408768 E 226.036502 3.000000 1.806394 7 120 0.000000 1.806394 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3343 3092.494350 E 3095.348483 3.000000 1.291563 13 120 0.000000 1.291563 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11:sh0 3385 419.506573 E 422.481074 3.000000 0.025499 1 120 0.000000 0.025499 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3392 424.607454 E 427.559544 3.000000 0.047910 1 120 0.000000 0.047910 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3370 394.943027 E 397.936848 3.000000 0.039410 2 120 0.000000 0.039410 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3380 419.140487 E 422.107152 3.000000 0.033335 1 120 0.000000 0.033335 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3464 22.074172 E 25.016557 3.000000 16.001058 53 120 0.000000 16.001058 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3517 12.573708 E 15.568099 3.000000 0.023024 3 120 0.000000 0.023024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S sshd 3542 38.086262 E 41.067580 3.000000 196.637990 746 120 0.000000 196.637990 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Sxdg-document-po 3544 22.100524 E 25.096416 3.000000 5.893123 20 120 0.000000 5.893123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3557 22.144924 E 25.141339 3.000000 0.142775 5 120 0.000000 0.142775 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3558 22.141339 E 25.132316 3.000000 0.068673 3 120 0.000000 0.068673 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3598 3.360579 E 6.033303 3.000000 11.821224 56 120 0.000000 11.821224 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/7:3 3755 64888.299318 E 64891.284413 3.000000 16.625453 98 120 0.000000 16.625453 0.000000 0.000000 0 0 /\\n I kworker/7:0 5028 64826.231853 E 64829.229716 3.000000 0.008146 2 120 0.000000 0.008146 0.000000 0.000000 0 0 /\\n S docker 5102 27.814553 E 30.440931 3.000000 2.687934 20 120 0.000000 2.687934 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5130 32.710798 E 35.321772 3.000000 4.743828 75 120 0.000000 4.743828 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5210 419.053099 E 422.030314 3.000000 1.005859 38 120 0.000000 1.005859 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5214 396.628965 E 399.619883 3.000000 1.632861 6 120 0.000000 1.632861 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5216 396.205006 E 399.151410 3.000000 0.149899 4 120 0.000000 0.149899 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5217 396.329416 E 399.319519 3.000000 0.046450 2 120 0.000000 0.046450 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5218 396.450772 E 399.445603 3.000000 0.020033 2 120 0.000000 0.020033 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5219 396.731794 E 399.686069 3.000000 0.045725 1 120 0.000000 0.045725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5222 396.826857 E 399.811763 3.000000 0.015094 1 120 0.000000 0.015094 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5235 270.215607 E 273.195321 3.000000 2.769908 8 120 0.000000 2.769908 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5238 282.987972 E 285.879101 3.000000 0.850366 33 120 0.000000 0.850366 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_aof 5372 6.171250 E 9.150339 3.000000 0.020911 1 120 0.000000 0.020911 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Sjemalloc_bg_thd 5374 6.185442 E 9.157914 3.000000 0.027528 1 120 0.000000 0.027528 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Scontainerd-shim 5457 284.338260 E 287.332839 3.000000 0.005421 1 120 0.000000 0.005421 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5567 0.289699 E 2.872177 3.000000 0.417522 2 120 0.000000 0.417522 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5570 2841.099580 E 2844.036691 3.000000 3211.682646 1395 120 0.000000 3211.682646 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5601 910.364125 E 913.358635 3.000000 41.347394 21 120 0.000000 41.347394 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5662 1681.165612 E 1681.188384 3.000000 52.890599 17 120 0.000000 52.890599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5571 2841.780849 E 2844.099580 3.000000 3144.706716 984 120 0.000000 3144.706716 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5690 1759.655576 E 1761.689682 3.000000 32.986562 10 120 0.000000 32.986562 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5611 927.013891 E 930.004534 3.000000 30.958221 12 120 0.000000 30.958221 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5673 1716.676043 E 1719.667802 3.000000 47.953219 14 120 0.000000 47.953219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5698 1774.551283 E 1776.580995 3.000000 33.736341 12 120 0.000000 33.736341 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5574 2842.536604 E 2844.780849 3.000000 2828.261512 897 120 0.000000 2828.261512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5635 1287.816586 E 1288.577374 3.000000 38.206043 11 120 0.000000 38.206043 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5636 1287.895610 E 1290.746600 3.000000 38.107591 11 120 0.000000 38.107591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5627 989.132258 E 992.064464 3.000000 56.892128 21 120 0.000000 56.892128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5682 1750.007994 E 1752.998981 3.000000 35.980149 10 120 0.000000 35.980149 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5647 1753.844207 E 1756.837808 3.000000 23.001512 8 120 0.000000 23.001512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5650 1495.354451 E 1498.348112 3.000000 23.003437 7 120 0.000000 23.003437 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5651 1498.355809 E 1501.345904 3.000000 25.997880 8 120 0.000000 25.997880 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5653 1499.385527 E 1502.375556 3.000000 27.015431 8 120 0.000000 27.015431 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5721 1803.013378 E 1806.006859 3.000000 29.898894 9 120 0.000000 29.898894 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5722 1807.064009 E 1810.054337 3.000000 33.945514 12 120 0.000000 33.945514 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S python3 5818 2825.151139 E 2827.081400 3.000000 110.860492 4 120 0.000000 110.860492 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\n"}, "Docker Version": "Client: Docker Engine - Community\\n Version: 27.2.1\\n API version: 1.47\\n Go version: go1.22.7\\n Git commit: 9e34c9b\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Context: default\\n\\nServer: Docker Engine - Community\\n Engine:\\n Version: 27.2.1\\n API version: 1.47 (minimum version 1.24)\\n Go version: go1.22.7\\n Git commit: 8b539b8\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Experimental: false\\n containerd:\\n Version: 1.7.21\\n GitCommit: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc:\\n Version: 1.1.13\\n GitCommit: v1.1.13-0-g58aa920\\n docker-init:\\n Version: 0.19.0\\n GitCommit: de40ad0\\n", "Hardware Model": "Laptop", "Virtualization": "Unknown", "CPU Utilization": 1.2, "Hardware Vendor": "Framework", "Hyper Threading": "1", "Hardware Details": "framebook\\n description: Notebook\\n product: Laptop (FRANBMCP0A)\\n vendor: Framework\\n version: AA\\n serial: FRANBMCPAA1484005R\\n width: 64 bits\\n capabilities: smbios-3.3.0 dmi-3.3.0 smp vsyscall32\\n configuration: administrator_password=disabled boot=normal chassis=notebook family=FRANBMCP power-on_password=disabled sku=FRANBMCP0A uuid=1cd24d0f-5c53-ec11-810d-283616200463\\n *-core\\n description: Motherboard\\n product: FRANBMCP0A\\n vendor: Framework\\n physical id: 0\\n version: AA\\n serial: FRANBMCPAA1484005R\\n slot: *\\n *-firmware\\n description: BIOS\\n vendor: INSYDE Corp.\\n physical id: 0\\n version: 03.19\\n date: 05/29/2023\\n size: 128KiB\\n capacity: 12MiB\\n capabilities: pci upgrade shadowing cdboot bootselect int9keyboard int10video acpi usb biosbootspecification uefi\\n *-cpu\\n description: CPU\\n product: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\\n vendor: Intel Corp.\\n physical id: 4\\n bus info: cpu@0\\n version: 6.140.1\\n serial: To Be Filled By O.E.M.\\n slot: U3E1\\n size: 4162MHz\\n capacity: 4200MHz\\n width: 64 bits\\n clock: 100MHz\\n capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect md_clear ibt flush_l1d arch_capabilities cpufreq\\n configuration: cores=4 enabledcores=4 microcode=184 threads=8\\n *-cache:0\\n description: L1 cache\\n physical id: 6\\n slot: L1 Cache\\n size: 128KiB\\n capacity: 128KiB\\n capabilities: synchronous internal write-back instruction\\n configuration: level=1\\n *-cache:1\\n description: L2 cache\\n physical id: 7\\n slot: L2 Cache\\n size: 5MiB\\n capacity: 5MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=2\\n *-cache:2\\n description: L3 cache\\n physical id: 8\\n slot: L3 Cache\\n size: 8MiB\\n capacity: 8MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=3\\n *-cache\\n description: L1 cache\\n physical id: 5\\n slot: L1 Cache\\n size: 192KiB\\n capacity: 192KiB\\n capabilities: synchronous internal write-back data\\n configuration: level=1\\n *-memory\\n description: System Memory\\n physical id: 14\\n slot: System board or motherboard\\n size: 32GiB\\n *-bank:0\\n description: [empty]\\n physical id: 0\\n slot: Controller0-ChannelA-DIMM0\\n *-bank:1\\n description: SODIMM DDR4 Synchronous 3200 MHz (0.3 ns)\\n product: CT32G4SFD832A.M16FF\\n vendor: Crucial Technology\\n physical id: 1\\n serial: E63FE743\\n slot: Controller1-ChannelA-DIMM0\\n size: 32GiB\\n width: 64 bits\\n clock: 3200MHz (0.3ns)\\n *-pci\\n description: Host bridge\\n product: 11th Gen Core Processor Host Bridge/DRAM Registers\\n vendor: Intel Corporation\\n physical id: 100\\n bus info: pci@0000:00:00.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n *-display\\n description: VGA compatible controller\\n product: TigerLake-LP GT2 [Iris Xe Graphics]\\n vendor: Intel Corporation\\n physical id: 2\\n bus info: pci@0000:00:02.0\\n logical name: /dev/fb0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb\\n configuration: depth=32 driver=i915 latency=0 mode=2256x1504 resolution=2256,1504 visual=truecolor xres=2256 yres=1504\\n resources: iomemory:600-5ff iomemory:400-3ff irq:204 memory:605c000000-605cffffff memory:4000000000-400fffffff ioport:3000(size=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff\\n *-generic:0\\n description: Signal processing controller\\n product: TigerLake-LP Dynamic Tuning Processor Participant\\n vendor: Intel Corporation\\n physical id: 4\\n bus info: pci@0000:00:04.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: driver=proc_thermal latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d180000-605d19ffff\\n *-pci:0\\n description: PCI bridge\\n product: 11th Gen Core Processor PCIe Controller\\n vendor: Intel Corporation\\n physical id: 6\\n bus info: pci@0000:00:06.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:126 memory:7a300000-7a3fffff\\n *-nvme\\n description: NVMe device\\n product: WDS100T1X0E-00AFY0\\n vendor: Sandisk Corp\\n physical id: 0\\n bus info: pci@0000:01:00.0\\n logical name: /dev/nvme0\\n version: 614900WD\\n serial: 22047A801405\\n width: 64 bits\\n clock: 33MHz\\n capabilities: nvme pm msi msix pciexpress nvm_express bus_master cap_list\\n configuration: driver=nvme latency=0 nqn=nqn.2018-01.com.wdc:nguid:E8238FA6BF53-0001-001B448B45A2BCF6 state=live\\n resources: irq:16 memory:7a300000-7a303fff\\n *-namespace:0\\n description: NVMe disk\\n physical id: 0\\n logical name: hwmon2\\n *-namespace:1\\n description: NVMe disk\\n physical id: 2\\n logical name: /dev/ng0n1\\n *-namespace:2\\n description: NVMe disk\\n physical id: 1\\n bus info: nvme@0:1\\n logical name: /dev/nvme0n1\\n size: 931GiB (1TB)\\n capabilities: gpt-1.00 partitioned partitioned:gpt\\n configuration: guid=45dd4e4e-5082-4f7b-926f-7bfbac3490ba logicalsectorsize=512 sectorsize=512 wwid=eui.e8238fa6bf530001001b448b45a2bcf6\\n *-volume:0 UNCLAIMED\\n description: Windows FAT volume\\n vendor: MSDOS5.0\\n physical id: 1\\n bus info: nvme@0:1,1\\n version: FAT32\\n serial: 74bd-e763\\n size: 95MiB\\n capacity: 99MiB\\n capabilities: boot fat initialized\\n configuration: FATs=2 filesystem=fat name=EFI system partition\\n *-volume:1\\n description: reserved partition\\n vendor: Windows\\n physical id: 2\\n bus info: nvme@0:1,2\\n logical name: /dev/nvme0n1p2\\n serial: 0ea6d81a-270e-4676-b42f-41e3e89d8733\\n capacity: 15MiB\\n capabilities: nofs\\n configuration: name=Microsoft reserved partition\\n *-volume:2\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 3\\n bus info: nvme@0:1,3\\n logical name: /dev/nvme0n1p3\\n version: 3.1\\n serial: c851c6e2-393b-f34f-a874-3f47e3b4d22a\\n size: 465GiB\\n capacity: 465GiB\\n capabilities: ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:22:01 filesystem=ntfs name=Basic data partition state=clean\\n *-volume:3\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 4\\n bus info: nvme@0:1,4\\n logical name: /dev/nvme0n1p4\\n version: 3.1\\n serial: 4c29-9ee3\\n size: 523MiB\\n capacity: 523MiB\\n capabilities: boot precious ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:25:01 filesystem=ntfs state=clean\\n *-volume:4\\n description: EXT4 volume\\n vendor: Linux\\n physical id: 5\\n bus info: nvme@0:1,5\\n logical name: /dev/nvme0n1p5\\n logical name: /\\n logical name: /var/snap/firefox/common/host-hunspell\\n version: 1.0\\n serial: c6c4e62b-4240-443a-8feb-6001a7f1b7b5\\n size: 465GiB\\n capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized\\n configuration: created=2024-03-22 19:59:07 filesystem=ext4 lastmountpoint=/ modified=2024-09-12 18:36:24 mount.fstype=ext4 mount.options=ro,noexec,noatime,errors=remount-ro mounted=2024-09-12 18:36:25 state=mounted\\n *-pci:1\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0\\n vendor: Intel Corporation\\n physical id: 7\\n bus info: pci@0000:00:07.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:127 ioport:4000(size=4096) memory:7c000000-881fffff ioport:6000000000(size=469762048)\\n *-pci:2\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1\\n vendor: Intel Corporation\\n physical id: 7.1\\n bus info: pci@0000:00:07.1\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:128 ioport:5000(size=4096) memory:6e000000-7a1fffff ioport:6020000000(size=469762048)\\n *-pci:3\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2\\n vendor: Intel Corporation\\n physical id: 7.2\\n bus info: pci@0000:00:07.2\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:129 ioport:6000(size=4096) memory:60000000-6c1fffff ioport:6040000000(size=469762048)\\n *-pci:4\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3\\n vendor: Intel Corporation\\n physical id: 7.3\\n bus info: pci@0000:00:07.3\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:130 ioport:7000(size=4096) memory:52000000-5e1fffff ioport:6060000000(size=469762048)\\n *-generic:1 UNCLAIMED\\n description: System peripheral\\n product: GNA Scoring Accelerator module\\n vendor: Intel Corporation\\n physical id: 8\\n bus info: pci@0000:00:08.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff memory:605d1d8000-605d1d8fff\\n *-generic:2\\n description: Signal processing controller\\n product: Tigerlake Telemetry Aggregator Driver\\n vendor: Intel Corporation\\n physical id: a\\n bus info: pci@0000:00:0a.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress pm cap_list\\n configuration: driver=intel_vsec latency=0\\n resources: iomemory:600-5ff irq:0 memory:605d1c0000-605d1c7fff\\n *-usb:0\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 USB Controller\\n vendor: Intel Corporation\\n physical id: d\\n bus info: pci@0000:00:0d.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: iomemory:600-5ff irq:148 memory:605d1b0000-605d1bffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@1\\n logical name: usb1\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=1 speed=480Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@2\\n logical name: usb2\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-usb:1\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #0\\n vendor: Intel Corporation\\n physical id: d.2\\n bus info: pci@0000:00:0d.2\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d140000-605d17ffff memory:605d1d7000-605d1d7fff\\n *-usb:2\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #1\\n vendor: Intel Corporation\\n physical id: d.3\\n bus info: pci@0000:00:0d.3\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d100000-605d13ffff memory:605d1d6000-605d1d6fff\\n *-communication:0\\n description: Serial controller\\n product: Tiger Lake-LP Integrated Sensor Hub\\n vendor: Intel Corporation\\n physical id: 12\\n bus info: pci@0000:00:12.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm 8250 bus_master cap_list\\n configuration: driver=intel_ish_ipc latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1a0000-605d1affff\\n *-usb:3\\n description: USB controller\\n product: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller\\n vendor: Intel Corporation\\n physical id: 14\\n bus info: pci@0000:00:14.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: irq:156 memory:7a400000-7a40ffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@3\\n logical name: usb3\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=12 speed=480Mbit/s\\n *-usb:0\\n description: Human interface device\\n product: HDMI Expansion Card\\n vendor: Framework\\n physical id: 1\\n bus info: usb@3:1\\n version: 0.00\\n serial: 11AD1D0001DB3E1540120B00\\n capabilities: usb-2.01\\n configuration: driver=usbhid maxpower=100mA speed=12Mbit/s\\n *-usb:1\\n description: Video\\n product: Laptop Camera\\n vendor: Generic\\n physical id: 7\\n bus info: usb@3:7\\n version: 0.21\\n serial: 200901010001\\n capabilities: usb-2.01\\n configuration: driver=uvcvideo maxpower=300mA speed=480Mbit/s\\n *-usb:2 UNCLAIMED\\n description: Generic USB device\\n product: Goodix USB2.0 MISC\\n vendor: Goodix Technology Co., Ltd.\\n physical id: 9\\n bus info: usb@3:9\\n version: 1.00\\n serial: UID7D62CCAE_XXXX_MOC_B0\\n capabilities: usb-2.00\\n configuration: maxpower=100mA speed=12Mbit/s\\n *-usb:3\\n description: Bluetooth wireless interface\\n product: AX210 Bluetooth\\n vendor: Intel Corp.\\n physical id: a\\n bus info: usb@3:a\\n version: 0.00\\n capabilities: bluetooth usb-2.01\\n configuration: driver=btusb maxpower=100mA speed=12Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@4\\n logical name: usb4\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-memory UNCLAIMED\\n description: RAM memory\\n product: Tiger Lake-LP Shared SRAM\\n vendor: Intel Corporation\\n physical id: 14.2\\n bus info: pci@0000:00:14.2\\n version: 20\\n width: 64 bits\\n clock: 33MHz (30.3ns)\\n capabilities: pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff memory:605d1cc000-605d1cffff memory:605d1d5000-605d1d5fff\\n *-serial:0\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #0\\n vendor: Intel Corporation\\n physical id: 15\\n bus info: pci@0000:00:15.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:27 memory:4017000000-4017000fff\\n *-serial:1\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #1\\n vendor: Intel Corporation\\n physical id: 15.1\\n bus info: pci@0000:00:15.1\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:40 memory:4017001000-4017001fff\\n *-serial:2\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #3\\n vendor: Intel Corporation\\n physical id: 15.3\\n bus info: pci@0000:00:15.3\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:30 memory:4017002000-4017002fff\\n *-communication:1\\n description: Communication controller\\n product: Tiger Lake-LP Management Engine Interface\\n vendor: Intel Corporation\\n physical id: 16\\n bus info: pci@0000:00:16.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=mei_me latency=0\\n resources: iomemory:600-5ff irq:191 memory:605d1d1000-605d1d1fff\\n *-pci:5\\n description: PCI bridge\\n product: Tiger Lake-LP PCI Express Root Port #10\\n vendor: Intel Corporation\\n physical id: 1d\\n bus info: pci@0000:00:1d.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:131 memory:7a200000-7a2fffff\\n *-network\\n description: Wireless interface\\n product: Wi-Fi 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak]\\n vendor: Intel Corporation\\n physical id: 0\\n bus info: pci@0000:aa:00.0\\n logical name: wlp170s0\\n version: 1a\\n serial: 00:93:37:96:a0:14\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\\n configuration: broadcast=yes driver=iwlwifi driverversion=6.8.0-44-generic firmware=86.fb5c9aeb.0 ty-a0-gf-a0-86.uc ip=192.168.179.3 latency=0 link=yes multicast=yes wireless=IEEE 802.11\\n resources: irq:17 memory:7a200000-7a203fff\\n *-isa\\n description: ISA bridge\\n product: Tiger Lake-LP LPC Controller\\n vendor: Intel Corporation\\n physical id: 1f\\n bus info: pci@0000:00:1f.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: isa bus_master\\n configuration: latency=0\\n *-pnp00:00\\n product: PnP device PNP0303\\n physical id: 0\\n capabilities: pnp\\n configuration: driver=i8042 kbd\\n *-pnp00:01\\n product: PnP device PNP0f03\\n physical id: 1\\n capabilities: pnp\\n configuration: driver=i8042 aux\\n *-pnp00:02\\n product: PnP device PNP0c02\\n physical id: 2\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:03\\n product: PnP device PNP0c02\\n physical id: 3\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:04\\n product: PnP device PNP0c02\\n physical id: 4\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:05\\n product: PnP device PNP0c02\\n physical id: 5\\n capabilities: pnp\\n configuration: driver=system\\n *-multimedia\\n description: Audio device\\n product: Tiger Lake-LP Smart Sound Technology Audio Controller\\n vendor: Intel Corporation\\n physical id: 1f.3\\n bus info: pci@0000:00:1f.3\\n logical name: card0\\n logical name: /dev/snd/controlC0\\n logical name: /dev/snd/hwC0D0\\n logical name: /dev/snd/hwC0D2\\n logical name: /dev/snd/pcmC0D0c\\n logical name: /dev/snd/pcmC0D0p\\n logical name: /dev/snd/pcmC0D3p\\n logical name: /dev/snd/pcmC0D7p\\n logical name: /dev/snd/pcmC0D8p\\n logical name: /dev/snd/pcmC0D9p\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=snd_hda_intel latency=32\\n resources: iomemory:600-5ff iomemory:600-5ff irq:205 memory:605d1c8000-605d1cbfff memory:605d000000-605d0fffff\\n *-input:0\\n product: HDA Intel PCH Mic\\n physical id: 0\\n logical name: input12\\n logical name: /dev/input/event9\\n *-input:1\\n product: HDA Intel PCH Headphone\\n physical id: 1\\n logical name: input13\\n logical name: /dev/input/event10\\n *-input:2\\n product: HDA Intel PCH HDMI/DP,pcm=3\\n physical id: 2\\n logical name: input14\\n logical name: /dev/input/event11\\n *-input:3\\n product: HDA Intel PCH HDMI/DP,pcm=7\\n physical id: 3\\n logical name: input15\\n logical name: /dev/input/event12\\n *-input:4\\n product: HDA Intel PCH HDMI/DP,pcm=8\\n physical id: 4\\n logical name: input16\\n logical name: /dev/input/event13\\n *-input:5\\n product: HDA Intel PCH HDMI/DP,pcm=9\\n physical id: 5\\n logical name: input17\\n logical name: /dev/input/event14\\n *-serial:3\\n description: SMBus\\n product: Tiger Lake-LP SMBus Controller\\n vendor: Intel Corporation\\n physical id: 1f.4\\n bus info: pci@0000:00:1f.4\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n configuration: driver=i801_smbus latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1d0000-605d1d00ff ioport:efa0(size=32)\\n *-serial:4\\n description: Serial bus controller\\n product: Tiger Lake-LP SPI Controller\\n vendor: Intel Corporation\\n physical id: 1f.5\\n bus info: pci@0000:00:1f.5\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: bus_master\\n configuration: driver=intel-spi latency=0\\n resources: irq:0 memory:50400000-50400fff\\n *-battery\\n description: Lithium Ion Battery\\n product: FRANBBAT\\n vendor: FRANBBATA112610BG3\\n physical id: 1\\n version: 2021/7/5\\n serial: 0194\\n slot: Front\\n configuration: voltage=0.0V\\n *-power UNCLAIMED\\n description: OEM Define 1\\n product: OEM Define 5\\n vendor: OEM Define 2\\n physical id: 2\\n version: OEM Define 6\\n serial: OEM Define 3\\n capacity: 75mWh\\n *-input:0\\n product: Lid Switch\\n physical id: 3\\n logical name: input0\\n logical name: /dev/input/event0\\n capabilities: platform\\n *-input:1\\n product: Power Button\\n physical id: 4\\n logical name: input1\\n logical name: /dev/input/event1\\n capabilities: platform\\n *-input:2\\n product: PIXA3854:00 093A:0274 Touchpad\\n physical id: 5\\n logical name: input10\\n logical name: /dev/input/event6\\n logical name: /dev/input/mouse1\\n capabilities: i2c\\n *-input:3\\n product: Video Bus\\n physical id: 6\\n logical name: input11\\n logical name: /dev/input/event8\\n capabilities: platform\\n *-input:4\\n product: AT Translated Set 2 keyboard\\n physical id: 7\\n logical name: input2\\n logical name: /dev/input/event2\\n logical name: input2::capslock\\n logical name: input2::numlock\\n logical name: input2::scrolllock\\n capabilities: i8042\\n *-input:5\\n product: ImExPS/2 Generic Explorer Mouse\\n physical id: 8\\n logical name: input4\\n logical name: /dev/input/event7\\n logical name: /dev/input/mouse2\\n capabilities: i8042\\n *-input:6\\n product: FRMW0001:00 32AC:0006 Wireless Radio Control\\n physical id: 9\\n logical name: input5\\n logical name: /dev/input/event3\\n capabilities: i2c\\n *-input:7\\n product: FRMW0001:00 32AC:0006 Consumer Control\\n physical id: a\\n logical name: input6\\n logical name: /dev/input/event4\\n capabilities: i2c\\n *-input:8\\n product: PIXA3854:00 093A:0274 Mouse\\n physical id: b\\n logical name: input9\\n logical name: /dev/input/event5\\n logical name: /dev/input/mouse0\\n capabilities: i2c\\n", "Operating System": "Ubuntu 24.04.1 LTS", "Scaling Governor": "powersave", "CPU Complete Dump": {"/sys/devices/system/cpu/online": "0-7\\n", "/sys/devices/system/cpu/uevent": "", "/sys/devices/system/cpu/offline": "\\n", "/sys/devices/system/cpu/present": "0-7\\n", "/sys/devices/system/cpu/isolated": "\\n", "/sys/devices/system/cpu/modalias": "cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n", "/sys/devices/system/cpu/possible": "0-7\\n", "/sys/devices/system/cpu/nohz_full": " (null)\\n", "/sys/devices/system/cpu/kernel_max": "8191\\n", "/sys/devices/system/cpu/smt/active": "1\\n", "/sys/devices/system/cpu/cpu0/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu1/online": "1\\n", "/sys/devices/system/cpu/cpu1/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu2/online": "1\\n", "/sys/devices/system/cpu/cpu2/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu3/online": "1\\n", "/sys/devices/system/cpu/cpu3/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu4/online": "1\\n", "/sys/devices/system/cpu/cpu4/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu5/online": "1\\n", "/sys/devices/system/cpu/cpu5/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu6/online": "1\\n", "/sys/devices/system/cpu/cpu6/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu7/online": "1\\n", "/sys/devices/system/cpu/cpu7/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/power/async": "disabled\\n", "/sys/devices/system/cpu/smt/control": "on\\n", "/sys/devices/system/cpu/power/control": "auto\\n", "/sys/devices/system/cpu/hotplug/states": " 0: offline\\n 1: threads:prepare\\n 2: perf:prepare\\n 3: perf/x86:prepare\\n 8: x86/mce:dead\\n 9: virtio/net:dead\\n 11: slub:dead\\n 13: mm/writeback:dead\\n 14: mm/vmstat:dead\\n 15: softirq:dead\\n 20: irq_poll:dead\\n 21: block/softirq:dead\\n 22: block/bio:dead\\n 23: acpi/cpu-drv:dead\\n 25: block/mq:dead\\n 26: fs/buffer:dead\\n 27: printk:dead\\n 28: mm/memctrl:dead\\n 29: lib/percpu_cnt:dead\\n 30: lib/radix:dead\\n 31: mm/page_alloc:pcp\\n 32: net/dev:dead\\n 34: iommu/iova:dead\\n 36: padata:dead\\n 38: random:prepare\\n 39: workqueue:prepare\\n 41: hrtimers:prepare\\n 43: x86/x2apic:prepare\\n 44: smpcfd:prepare\\n 45: relay:prepare\\n 47: RCU/tree:prepare\\n 55: base/topology:prepare\\n 58: trace/RB:prepare\\n 59: mm/zsmalloc:prepare\\n 63: timers:prepare\\n 65: fork:vm_stack_cache\\n 66: crash/cpuhp\\n 86: cpu:kick_ap\\n 87: cpu:bringup\\n 88: idle:dead\\n 89: ap:offline\\n 90: x86/cachectrl:starting\\n 91: sched:starting\\n 92: RCU/tree:dying\\n104: perf/x86:starting\\n106: perf/x86/cstate:starting\\n137: smpcfd:dying\\n138: hrtimers:dying\\n141: ap:online\\n142: cpu:teardown\\n145: kvm/cpu:online\\n146: sched:waitempty\\n147: smpboot/threads:online\\n148: irq/affinity:online\\n149: block/mq:online\\n151: x86/intel/epb:online\\n152: perf:online\\n153: perf/x86:online\\n154: perf/x86/intel/uncore:online\\n157: perf/x86/rapl:online\\n158: perf/x86/cstate:online\\n184: lockup_detector:online\\n185: workqueue:online\\n186: random:online\\n187: RCU/tree:online\\n188: base/cacheinfo:online\\n189: x86/splitlock\\n190: mm/writeback:online\\n191: mm/vmstat:online\\n192: padata:online\\n193: mm/compaction:online\\n194: io-wq/online\\n195: lib/percpu_cnt:online\\n196: idle/intel:online\\n197: acpi/cpu-drv:online\\n198: virtio/net:online\\n199: x86/therm:online\\n200: cpufreq:online\\n201: leds/trigger:starting\\n202: x86/mce:online\\n203: x86/microcode:online\\n204: x86/resctrl/cat:online:\\n205: printk:online\\n206: trace/hwlat:online\\n207: trace/osnoise:online\\n208: swap_slots_cache\\n209: x86/msr:online\\n210: powercap/rapl:online\\n211: perf/x86/intel/i915:online\\n212: powercap/rapl:online\\n213: hwmon/coretemp:online\\n214: thermal/x86_pkg:online\\n215: platform/x86/uncore-freq:online\\n232: sched:active\\n233: online\\n", "/sys/devices/system/cpu/cpu0/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu1/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu2/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu3/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu4/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu5/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu6/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu7/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu0/cache/uevent": "", "/sys/devices/system/cpu/cpu0/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu1/cache/uevent": "", "/sys/devices/system/cpu/cpu1/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu2/cache/uevent": "", "/sys/devices/system/cpu/cpu2/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu3/cache/uevent": "", "/sys/devices/system/cpu/cpu3/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu4/cache/uevent": "", "/sys/devices/system/cpu/cpu4/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu5/cache/uevent": "", "/sys/devices/system/cpu/cpu5/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu6/cache/uevent": "", "/sys/devices/system/cpu/cpu6/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu7/cache/uevent": "", "/sys/devices/system/cpu/cpu7/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu0/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu0/power/control": "auto\\n", "/sys/devices/system/cpu/cpu1/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu1/power/control": "auto\\n", "/sys/devices/system/cpu/cpu2/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu2/power/control": "auto\\n", "/sys/devices/system/cpu/cpu3/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu3/power/control": "auto\\n", "/sys/devices/system/cpu/cpu4/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu4/power/control": "auto\\n", "/sys/devices/system/cpu/cpu5/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu5/power/control": "auto\\n", "/sys/devices/system/cpu/cpu6/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu6/power/control": "auto\\n", "/sys/devices/system/cpu/cpu7/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu7/power/control": "auto\\n", "/sys/devices/system/cpu/cpu0/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu1/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu2/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu3/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu4/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu5/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu6/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu7/hotplug/target": "233\\n", "/sys/devices/system/cpu/intel_pstate/status": "active\\n", "/sys/devices/system/cpu/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/vulnerabilities/mds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu0/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu2/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu3/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu4/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu6/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu7/topology/die_id": "0\\n", "/sys/devices/system/cpu/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/vulnerabilities/l1tf": "Not affected\\n", "/sys/devices/system/cpu/cpu0/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu2/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu3/topology/core_id": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu6/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu7/topology/core_id": "3\\n", "/sys/devices/system/cpu/intel_pstate/no_turbo": "0\\n", "/sys/devices/system/cpu/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/vulnerabilities/srbds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu0/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu0/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu0/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu0/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu0/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu0/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu1/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu1/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu1/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu1/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu1/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu1/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu2/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu2/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu2/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu2/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu2/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu2/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu3/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu3/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu3/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu3/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu3/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu3/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu4/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu4/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu4/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu4/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu4/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu4/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu5/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu5/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu5/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu5/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu5/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu5/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu6/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu6/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu6/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu6/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu6/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu6/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu7/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu7/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu7/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu7/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu7/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu7/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpuidle/current_driver": "intel_idle\\n", "/sys/devices/system/cpu/intel_pstate/turbo_pct": "47\\n", "/sys/devices/system/cpu/cpu0/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu0/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu1/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu1/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu2/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu3/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu3/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu4/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu4/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu5/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu5/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu6/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu7/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu7/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu0/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu0/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/time": "44956\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/time": "14783965\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/time": "17306567\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/time": "328852776\\n", "/sys/devices/system/cpu/cpu0/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu1/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/time": "50239\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/time": "10026841\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/time": "8768906\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/time": "343295126\\n", "/sys/devices/system/cpu/cpu1/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu2/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/time": "43155\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/time": "11199921\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/time": "14086757\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/time": "334506876\\n", "/sys/devices/system/cpu/cpu2/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu3/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu3/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/time": "54747\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/time": "8573509\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/time": "8081701\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/time": "348733987\\n", "/sys/devices/system/cpu/cpu3/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpu4/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu4/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/time": "38596\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/time": "7230257\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/time": "5986197\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/time": "355545369\\n", "/sys/devices/system/cpu/cpu4/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu5/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/time": "47641\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/time": "8475652\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/time": "7591741\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/time": "351422896\\n", "/sys/devices/system/cpu/cpu5/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu6/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/time": "38429\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/time": "7938276\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/time": "6909290\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/time": "354402195\\n", "/sys/devices/system/cpu/cpu6/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu7/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu7/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/time": "51404\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/time": "8458201\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/time": "7012880\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/time": "350131635\\n", "/sys/devices/system/cpu/cpu7/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpuidle/current_governor": "menu\\n", "/sys/devices/system/cpu/intel_pstate/num_pstates": "39\\n", "/sys/devices/system/cpu/vulnerabilities/meltdown": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/retbleed": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/below": "992\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/usage": "1131\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/above": "1156\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/below": "9755\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/usage": "50025\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/above": "1374\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/below": "10\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/usage": "18955\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/above": "25610\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/usage": "46415\\n", "/sys/devices/system/cpu/cpu0/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/below": "1357\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/usage": "1468\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/above": "1093\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/below": "5356\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/usage": "44355\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/above": "965\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/below": "7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/usage": "9689\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/above": "9799\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/usage": "24348\\n", "/sys/devices/system/cpu/cpu1/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/below": "927\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/usage": "1005\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/above": "1638\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/below": "5696\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/usage": "48805\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/above": "1717\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/below": "9\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/usage": "15454\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/above": "8317\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/usage": "32458\\n", "/sys/devices/system/cpu/cpu2/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/below": "1219\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/usage": "1333\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/above": "1790\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/below": "4535\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/usage": "40740\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/above": "1176\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/below": "28\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/usage": "8815\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/above": "7041\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/usage": "23471\\n", "/sys/devices/system/cpu/cpu3/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/below": "1319\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/usage": "1550\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/above": "948\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/below": "3995\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/usage": "36931\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/above": "725\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/below": "10\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/usage": "6553\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/above": "3847\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/usage": "15394\\n", "/sys/devices/system/cpu/cpu4/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/below": "1148\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/usage": "1243\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/above": "1068\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/below": "4607\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/usage": "41197\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/above": "1010\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/below": "32\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/usage": "8222\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/above": "5003\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/usage": "16141\\n", "/sys/devices/system/cpu/cpu5/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/below": "930\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/usage": "979\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/above": "1543\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/below": "4396\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/usage": "39676\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/above": "852\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/below": "11\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/usage": "7528\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/above": "3875\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/usage": "16211\\n", "/sys/devices/system/cpu/cpu6/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/below": "1292\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/usage": "1501\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/above": "1702\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/below": "4492\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/usage": "41035\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/above": "886\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/below": "12\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/usage": "7637\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/above": "4596\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/usage": "17104\\n", "/sys/devices/system/cpu/cpu7/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/intel_pstate/max_perf_pct": "100\\n", "/sys/devices/system/cpu/intel_pstate/min_perf_pct": "9\\n", "/sys/devices/system/cpu/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu0/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu1/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu2/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu3/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu4/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu5/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu6/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu7/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v1": "Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v2": "Mitigation: Enhanced / Automatic IBRS; IBPB: conditional; RSB filling; PBRSB-eIBRS: SW sequence; BHI: SW loop, KVM: SW loop\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu0/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu1/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu2/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu3/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu4/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu5/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu6/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu7/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpuidle/available_governors": "ladder menu teo \\n", "/sys/devices/system/cpu/cpuidle/current_governor_ro": "menu\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/feedback_ctrs": "ref:116939617056 del:71666074683\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/feedback_ctrs": "ref:72209082360 del:41945238947\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/feedback_ctrs": "ref:78354839784 del:45019014381\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/feedback_ctrs": "ref:64000311504 del:36354979896\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/feedback_ctrs": "ref:55856099616 del:33066047923\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/feedback_ctrs": "ref:60624348984 del:35474704479\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/feedback_ctrs": "ref:54727875216 del:34535246022\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/feedback_ctrs": "ref:63098074872 del:40635820959\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpufreq/policy0/related_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/related_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/related_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/related_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/related_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/related_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/related_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/related_cpus": "7\\n", "/sys/devices/system/cpu/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpufreq/policy0/affected_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/affected_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/affected_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/affected_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/affected_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/affected_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/affected_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/affected_cpus": "7\\n", "/sys/devices/system/cpu/vulnerabilities/itlb_multihit": "Not affected\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu0/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu1/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu2/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu3/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu4/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu5/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu6/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu7/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy1/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy2/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy3/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy4/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy5/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy6/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy7/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/vulnerabilities/mmio_stale_data": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/tsx_async_abort": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq": "200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_cur_freq": "199998\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_cur_freq": "200038\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_cur_freq": "200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_cur_freq": "200037\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu0/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/vulnerabilities/spec_store_bypass": "Mitigation: Speculative Store Bypass disabled via prctl\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu1/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu2/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu3/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu4/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu5/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu6/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu7/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_nonlinear_perf": "15\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_nonlinear_perf": "15\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_nonlinear_perf": "15\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_nonlinear_perf": "15\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_nonlinear_perf": "15\\n", "/sys/devices/system/cpu/vulnerabilities/gather_data_sampling": "Mitigation: Microcode\\n", "/sys/devices/system/cpu/vulnerabilities/spec_rstack_overflow": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/vulnerabilities/reg_file_data_sampling": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us": "48373747\\n", "/sys/devices/system/cpu/cpu0/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us": "15846041\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/min_freq_khz": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_min_freq_khz": "400000\\n"}, "Docker Containers": "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES", "Network Interfaces": "2: wlp170s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1456 qdisc noqueue state UP group default qlen 1000\\n link/ether 00:93:37:96:a0:14 brd ff:ff:ff:ff:ff:ff\\n--\\n4: br-5358121b016d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:31:4c:7c:39 brd ff:ff:ff:ff:ff:ff\\n--\\n5: br-6e0ae77042d6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:29:4c:03:1e brd ff:ff:ff:ff:ff:ff\\n--\\n6: br-7688b5ca7e2d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:e5:22:19:30 brd ff:ff:ff:ff:ff:ff\\n--\\n7: br-9ba2a39b0b1e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:f5:74:c1:66 brd ff:ff:ff:ff:ff:ff\\n--\\n8: br-ce560083466a: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:a4:f4:58:34 brd ff:ff:ff:ff:ff:ff\\n--\\n9: br-17d7b4ff19e9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:40:0a:a9:6e brd ff:ff:ff:ff:ff:ff\\n--\\n10: br-b8fe670a4cd7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:15:10:5f:b5 brd ff:ff:ff:ff:ff:ff\\n--\\n11: br-c26dcd3569f9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:53:0c:b7:f6 brd ff:ff:ff:ff:ff:ff\\n--\\n13: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:2f:19:92:44 brd ff:ff:ff:ff:ff:ff\\n--\\n15: veth4b2531f@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default \\n link/ether 16:4d:d1:07:e9:34 brd ff:ff:ff:ff:ff:ff link-netnsid 0\\n--\\n27: br-cd08359ec224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:cb:56:8d:7d brd ff:ff:ff:ff:ff:ff\\n--\\n29: veth4f67909@if28: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether c2:8b:74:ce:4b:f2 brd ff:ff:ff:ff:ff:ff link-netnsid 2\\n--\\n31: veth3d72cc1@if30: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 56:6f:f8:d3:95:47 brd ff:ff:ff:ff:ff:ff link-netnsid 1\\n--\\n33: veth888843b@if32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 72:81:21:75:96:2a brd ff:ff:ff:ff:ff:ff link-netnsid 3\\n--\\n35: veth0c4fb2f@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 1e:1a:b4:b7:47:13 brd ff:ff:ff:ff:ff:ff link-netnsid 4\\n", "Current Clocksource": "tsc", "RAPL Energy Filtering": "0\\n", "Installed Python Packages": "aiohappyeyeballs==2.4.0\\naiohttp==3.10.3\\naiosignal==1.3.1\\nalembic==1.13.2\\nannotated-types==0.7.0\\nanybadge==1.14.0\\nanyio==4.4.0\\nattrs==24.2.0\\ncertifi==2024.8.30\\ncharset-normalizer==3.3.2\\nclick==8.1.7\\ncolorlog==6.8.2\\ndeepdiff==7.0.1\\ndnspython==2.6.1\\ndocker==7.1.0\\nemail_validator==2.2.0\\nfastapi==0.112.0\\nfastapi-cli==0.0.5\\nfrozenlist==1.4.1\\ngreenlet==3.1.0\\ngunicorn==23.0.0\\nh11==0.14.0\\nhiredis==3.0.0\\nhttpcore==1.0.5\\nhttptools==0.6.1\\nhttpx==0.27.2\\nidna==3.8\\nJinja2==3.1.4\\njoblib==1.4.2\\nMako==1.3.5\\nmarkdown-it-py==3.0.0\\nMarkupSafe==2.1.5\\nmdurl==0.1.2\\nmultidict==6.1.0\\nnumpy==2.0.1\\nnvidia-nccl-cu12==2.22.3\\noptuna==3.6.1\\nordered-set==4.1.0\\norjson==3.10.7\\npackaging==24.1\\npandas==2.2.2\\nplotext==5.2.8\\npsutil==6.0.0\\npsycopg==3.2.1\\npsycopg-binary==3.2.1\\npsycopg-pool==3.2.2\\npyarrow==17.0.0\\npydantic==2.9.1\\npydantic_core==2.23.3\\nPygments==2.18.0\\npyserial==3.5\\npython-dateutil==2.9.0.post0\\npython-dotenv==1.0.1\\npython-multipart==0.0.9\\npytz==2024.2\\nPyYAML==6.0.2\\nredis==5.0.8\\nrequests==2.32.3\\nrich==13.8.1\\nschema==0.7.7\\nscikit-learn==1.5.1\\nscipy==1.14.0\\nshellingham==1.5.4\\nsix==1.16.0\\nsniffio==1.3.1\\nSQLAlchemy==2.0.34\\nstarlette==0.37.2\\nthreadpoolctl==3.5.0\\ntqdm==4.66.5\\ntyper==0.12.5\\ntyping_extensions==4.12.2\\ntzdata==2024.1\\nurllib3==2.2.2\\nuvicorn==0.30.6\\nuvicorn-worker==0.2.0\\nuvloop==0.20.0\\nwatchfiles==0.24.0\\nwebsockets==13.0.1\\nxgboost==2.1.0\\nyarl==1.11.1\\n", "Installed System Packages": "Desired=Unknown/Install/Remove/Purge/Hold\\n| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend\\n|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\\n||/ Name Version Architecture Description\\n+++-=============================================-==========================================-============-===================================================================================\\nii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information\\nii acl 2.3.2-1build1 amd64 access control list - utilities\\nii adduser 3.137ubuntu1 all add and remove users and groups\\nii adwaita-icon-theme 46.0-1 all default icon theme of GNOME\\nii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files\\nii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files\\nii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files\\nii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA\\nii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs\\nii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn\'t go by time\\nii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version\\nii apparmor 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 user-space parser utility for AppArmor\\nii apport 2.28.1-0ubuntu3.1 all automatically generate crash reports for debugging\\nii apport-core-dump-handler 2.28.1-0ubuntu3.1 all Kernel core dump handler for Apport\\nii apport-gtk 2.28.1-0ubuntu3.1 all GTK+ frontend for the apport crash report system\\nii apport-symptoms 0.25 all symptom scripts for apport\\nii appstream 1.0.2-1build6 amd64 Software component metadata management\\nii apt 2.7.14build2 amd64 commandline package manager\\nii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads\\nii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads\\nii apt-utils 2.7.14build2 amd64 package management related utility programs\\nii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service\\nii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients\\nii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker\\nii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell\\nii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)\\nii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)\\nii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon\\nii baobab 46.0-1build1 amd64 GNOME disk usage analyzer\\nii base-files 13ubuntu10.1 amd64 Debian base system miscellaneous files\\nii base-passwd 3.6.3build1 amd64 Debian base system master password and group files\\nii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell\\nii bash-completion 1:2.11-8 all programmable completion for the bash shell\\nii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language\\nii bind9-dnsutils 1:9.18.28-0ubuntu0.24.04.1 amd64 Clients provided with BIND 9\\nii bind9-host 1:9.18.28-0ubuntu0.24.04.1 amd64 DNS Lookup Utility\\nii bind9-libs:amd64 1:9.18.28-0ubuntu0.24.04.1 amd64 Shared Libraries used by BIND 9\\nii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities\\nii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities\\nii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target\\nii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons\\nii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS\\nii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon\\nii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices\\nii boot-repair 4ppa2081 all Graphical tool to repair boot problems\\nii boot-sav 4ppa2081 all Librairies for Boot-Info, OS-uninstaller and Boot-repair\\nii boot-sav-extra 4ppa2081 all Extra librairies for OS-uninstaller and Boot-repair\\nii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)\\nii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF\\nii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display\\nii bsdextrautils 2.39.3-9ubuntu6.1 amd64 extra utilities from 4.4BSD-Lite\\nii bsdutils 1:2.39.3-9ubuntu6.1 amd64 basic utilities from 4.4BSD-Lite\\nii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation\\nii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages\\nii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs\\nii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities\\nii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities\\nii ca-certificates 20240203 all Common CA certificates\\nii ca-certificates-java 20240118 all Common CA certificates (JKS keystore)\\nii cloud-guest-utils 0.33-1 all cloud guest utilities\\nii cloud-init 24.2-0ubuntu1~24.04.2 all initialization and customization tool for cloud instances\\nii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon\\nii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files\\nii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions\\nii console-setup 1.226ubuntu1 all console font and keymap setup program\\nii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup\\nii containerd.io 1.7.21-1 amd64 An open and reliable container runtime\\nii coreutils 9.4-3ubuntu6 amd64 GNU core utilities\\nii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files\\nii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)\\nii cpp-11 11.4.0-9ubuntu1 amd64 GNU C preprocessor\\nii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor\\nii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu\\nii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture\\nii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2\\nii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon\\nii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon\'s configuration files\\nii cups 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface\\nii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed\\nii cups-bsd 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - BSD commands\\nii cups-client 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - client programs (SysV)\\nii cups-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - common files\\nii cups-core-drivers 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - driverless printing\\nii cups-daemon 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - daemon\\nii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package\\nii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing\\nii cups-ipp-utils 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities\\nii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges\\nii cups-ppdc 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities\\nii cups-server-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - server common files\\nii curl 8.5.0-2ubuntu10.3 amd64 command line tool for transferring data with URL syntax\\nii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell\\nii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)\\nii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)\\nii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)\\nii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)\\nii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)\\nii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)\\nii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator\\nii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities\\nii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end\\nii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service\\nii debconf 1.5.86ubuntu1 all Debian configuration management system\\nii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf\\nii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian\\nii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files\\nii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)\\nii dictionaries-common 1.29.7 all spelling dictionaries - common utilities\\nii diffutils 1:3.10-1build1 amd64 File comparison utilities\\nii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service\\nii distro-info 1.7build1 amd64 provides information about the distributions\' releases\\nii distro-info-data 0.60ubuntu0.1 all information about the distributions\' releases (data files)\\nii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder\\nii dmsetup 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme\\nii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key\\nii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable\\nii docbook-xml 4.5-12 all standard XML documentation system for software and systems\\nii docker-buildx-plugin 0.16.2-1~ubuntu.22.04~jammy amd64 Docker Buildx cli plugin.\\nii docker-ce 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker: the open-source application container engine\\nii docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine\\nii docker-ce-rootless-extras 5:27.2.1-1~ubuntu.22.04~jammy amd64 Rootless support for Docker.\\nii docker-compose-plugin 2.29.2-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.\\nii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems\\nii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system\\nii dpkg-dev 1.22.6ubuntu6.1 all Debian package development tools\\nii dracut-install 060+5-1ubuntu3.2 amd64 dracut is an event driven initramfs infrastructure (dracut-install)\\nii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities\\nii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends\\nii ed 1.20.1-1 amd64 classic UNIX line editor\\nii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager\\nii eject 2.39.3-9ubuntu6.1 amd64 ejects CDs and operates CD-Changers under Linux\\nii emacsen-common 3.0.5 all Common facilities for all emacsen\\nii enchant-2 2.3.3-2build2 amd64 Wrapper for various spell checker engines (binary programs)\\nii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program\\nii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files\\nii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings\\nii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer\\nii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files\\nii evolution-data-server 3.52.3-0ubuntu1 amd64 evolution database backend server\\nii evolution-data-server-common 3.52.3-0ubuntu1 all architecture independent files for Evolution Data Server\\nii fakeroot 1.33-1 amd64 tool for simulating superuser privileges\\nii fdisk 2.39.3-9ubuntu6.1 amd64 collection of partitioning utilities\\nii file 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers\\nii file-roller 44.3-0ubuntu1 amd64 archive manager for GNOME\\nii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs\\nii firefox 1:1snap1-0ubuntu5 amd64 Transitional package - firefox -> firefox snap\\nii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed\\nii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries\\nii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration\\nii fonts-beng 2:1.3 all Metapackage to install Bengali and Assamese fonts\\nii fonts-beng-extra 3.3.1-2 all TrueType fonts for Bengali language\\nii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters\\nii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters\\nii fonts-deva 2:1.4 all Meta package to install all Devanagari fonts\\nii fonts-deva-extra 3.0-6 all Free fonts for Devanagari script\\nii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)\\nii fonts-freefont-ttf 20211204+svn4273-2 all Freefont Serif, Sans and Mono Truetype fonts\\nii fonts-gargi 2.0-6 all OpenType Devanagari font\\nii fonts-gubbi 1.3-7 all Gubbi free font for Kannada script\\nii fonts-gujr 2:1.5 all Meta package to install all Gujarati fonts\\nii fonts-gujr-extra 1.0.1-2 all Free fonts for Gujarati script\\nii fonts-guru 2:1.3 all Meta package to install all Punjabi fonts\\nii fonts-guru-extra 2.0-5 all Free fonts for Punjabi language\\nii fonts-indic 2:1.4 all Meta package to install all Indian language fonts\\nii fonts-kalapi 1.0-5 all Kalapi Gujarati Unicode font\\nii fonts-knda 2:1.3 all Meta package for Kannada fonts\\nii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier\\nii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow\\nii fonts-lohit-beng-assamese 2.91.5-2 all Lohit TrueType font for Assamese Language\\nii fonts-lohit-beng-bengali 2.91.5-3 all Lohit TrueType font for Bengali Language\\nii fonts-lohit-deva 2.95.4-5 all Lohit TrueType font for Devanagari script\\nii fonts-lohit-gujr 2.92.4-4 all Lohit TrueType font for Gujarati Language\\nii fonts-lohit-guru 2.91.2-3 all Lohit TrueType font for Punjabi Language\\nii fonts-lohit-knda 2.5.4-3 all Lohit TrueType font for Kannada Language\\nii fonts-lohit-mlym 2.92.2-2 all Lohit TrueType font for Malayalam Language\\nii fonts-lohit-orya 2.91.2-2 all Lohit TrueType font for Oriya Language\\nii fonts-lohit-taml 2.91.3-2 all Lohit TrueType font for Tamil Language\\nii fonts-lohit-taml-classical 2.5.4-2 all Lohit Tamil TrueType fonts for Tamil script\\nii fonts-lohit-telu 2.5.5-2build1 all Lohit TrueType font for Telugu Language\\nii fonts-mlym 2:1.3 all Meta package to install all Malayalam fonts\\nii fonts-nakula 1.0-4 all Free Unicode compliant Devanagari font\\nii fonts-navilu 1.2-4 all Handwriting font for Kannada\\nii fonts-noto-cjk 1:20230817+repack1-3 all \\"No Tofu\\" font families with large Unicode coverage (CJK regular and bold)\\nii fonts-noto-color-emoji 2.042-1 all color emoji font from Google\\nii fonts-noto-core 20201225-2 all \\"No Tofu\\" font families with large Unicode coverage (core)\\nii fonts-noto-mono 20201225-2 all \\"No Tofu\\" monospaced font family with large Unicode coverage\\nii fonts-opensymbol 4:102.12+LibO24.2.5-0ubuntu0.24.04.2 all OpenSymbol TrueType font\\nii fonts-orya 2:1.3 all Meta package to install all Odia fonts\\nii fonts-orya-extra 2.0-6 all Free fonts for Odia script\\nii fonts-pagul 1.0-9 all Free TrueType font for the Sourashtra language\\nii fonts-sahadeva 1.0-5 all Free Unicode compliant Devanagari font\\nii fonts-samyak-deva 1.2.2-6 all Samyak TrueType font for Devanagari script\\nii fonts-samyak-gujr 1.2.2-6 all Samyak TrueType font for Gujarati language\\nii fonts-samyak-mlym 1.2.2-6 all Samyak TrueType font for Malayalam language\\nii fonts-samyak-taml 1.2.2-6 all Samyak TrueType font for Tamil language\\nii fonts-sarai 1.0-3 all truetype font for devanagari script\\nii fonts-sil-annapurna 2.000-2 all smart font for languages using Devanagari script\\nii fonts-smc 1:7.5 all Metapackage for various TrueType fonts for Malayalam Language\\nii fonts-smc-anjalioldlipi 7.1.2-2 all AnjaliOldLipi malayalam font\\nii fonts-smc-chilanka 1.540-2 all Chilanka malayalam font\\nii fonts-smc-dyuthi 3.0.2-2 all Dyuthi malayalam font\\nii fonts-smc-gayathri 1.200-1 all Gayathri Malayalam font\\nii fonts-smc-karumbi 1.1.2-2 all Karumbi malayalam font\\nii fonts-smc-keraleeyam 3.0.2-2 all Keraleeyam malayalam font\\nii fonts-smc-manjari 2.200-1 all Manjari malayalam font\\nii fonts-smc-meera 7.0.3-1 all Meera malayalam font\\nii fonts-smc-rachana 7.0.2-1build1 all Rachana malayalam font\\nii fonts-smc-raghumalayalamsans 2.2.1-1 all RaghuMalayalamSans malayalam font\\nii fonts-smc-suruma 3.2.3-1 all Suruma malayalam font\\nii fonts-smc-uroob 2.0.2-1 all Uroob malayalam font\\nii fonts-taml 2:1.4 all Meta package to install all Tamil fonts\\nii fonts-telu 2:1.3 all Meta package to install all Telugu fonts\\nii fonts-telu-extra 2.0-6 all Free fonts for Telugu script\\nii fonts-teluguvijayam 2.1-1 all TrueType fonts for Telugu script (te)\\nii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu\\nii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts\\nii fonts-yrsa-rasa 2.005-1 all Open-source, libre fonts for Latin + Gujarati\\nii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database\\nii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access\\nii freeipmi-common 1.6.13-3 all GNU implementation of the IPMI protocol - common files\\nii freeipmi-tools 1.6.13-3 amd64 GNU implementation of the IPMI protocol - tools\\nii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly\\nii ftp 20230507-2build3 all dummy transitional package for tnftp\\nii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)\\nii fwupd 1.9.24-1~24.04.1 amd64 Firmware update daemon\\nii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary\\nii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler\\nii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler\\nii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture\\nii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture\\nii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand\\nii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)\\nii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler\\nii gcc-11 11.4.0-9ubuntu1 amd64 GNU C compiler\\nii gcc-11-base:amd64 11.4.0-9ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler\\nii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture\\nii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture\\nii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)\\nii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)\\nii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger\\nii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool\\nii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager\\nii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service\\nii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library\\nii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system\\nii ghostscript 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF\\nii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService\\nii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita\\nii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)\\nii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)\\nii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4\\nii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library\\nii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components\\nii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library\\nii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library\\nii gir1.2-gdesktopenums-3.0:amd64 46.1-0ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas\\nii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library - GObject-Introspection\\nii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager\\nii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)\\nii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library\\nii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule\\nii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library\\nii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar\\nii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)\\nii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth\\nii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)\\nii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)\\nii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)\\nii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library\\nii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data\\nii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library\\nii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy\\nii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)\\nii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data\\nii gir1.2-javascriptcoregtk-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-javascriptcoregtk-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-mutter-14:amd64 46.2-1ubuntu0.24.04.1 amd64 GObject introspection data for Mutter\\nii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library\\nii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4\\nii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)\\nii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library\\nii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings\\nii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)\\nii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit\\nii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files\\nii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)\\nii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1\\nii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library\\nii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data\\nii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library\\nii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower\\nii gir1.2-vte-2.91:amd64 0.76.0-1ubuntu0.1 amd64 GObject introspection data for the VTE library\\nii gir1.2-webkit-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-webkit2-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library\\nii git 1:2.43.0-1ubuntu7.1 amd64 fast, scalable, distributed revision control system\\nii git-man 1:2.43.0-1ubuntu7.1 all fast, scalable, distributed revision control system (manual pages)\\nii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)\\nii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd\\nii glade2script 3.2.4~ppa23 all Glade interface engine for scripts\\nii glade2script-python3 3.2.4~ppa23 all Glade interface engine for scripts (Python3 version)\\nii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib\\nii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files\\nii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services\\nii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons\\nii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files\\nii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app\\nii gnome-calculator 1:46.1-1ubuntu1~24.04.1 amd64 GNOME desktop calculator\\nii gnome-characters 46.0-1build1 amd64 character map application\\nii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support\\nii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop\\nii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files\\nii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images\\nii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps\\nii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media\\nii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME\\nii gnome-initial-setup 46.2-1ubuntu0.24.04.1 amd64 Initial GNOME system setup helper\\nii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)\\nii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library\\nii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal\\nii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii gnome-online-accounts 3.50.4-0ubuntu2 amd64 service to manage online accounts for the GNOME desktop\\nii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop\\nii gnome-remote-desktop 46.3-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire\\nii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime\\nii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events\\nii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files\\nii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings\\nii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files\\nii gnome-shell 46.0-0ubuntu6~24.04.4 amd64 graphical shell for the GNOME desktop\\nii gnome-shell-common 46.0-0ubuntu6~24.04.4 all common files for the GNOME graphical shell\\nii gnome-shell-extension-appindicator 58-1 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell\\nii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell\\nii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell\\nii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1.1 all extension which adds a Windows-like snap assist to GNOME Shell\\nii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam\\nii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME\\nii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME\\nii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application\\nii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator\\nii gnome-text-editor 46.3-0ubuntu2 amd64 simple text editor for GNOME\\nii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine\\nii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files\\nii gnome-user-docs 46.0-1ubuntu1 all GNOME Help\\nii gnome-user-docs-de 46.0-1ubuntu1 all GNOME Help (German)\\nii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement\\nii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files\\nii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs\\nii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations\\nii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent\\nii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client\\nii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities\\nii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version\\nii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool\\nii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep\\nii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)\\nii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)\\nii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)\\nii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)\\nii grub-gfxpayload-lists 0.7build2 amd64 GRUB gfxpayload blacklist\\nii grub-pc 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)\\nii grub-pc-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)\\nii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)\\nii gsettings-desktop-schemas 46.1-0ubuntu1 all GSettings desktop-wide schemas\\nii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu\\nii gstreamer1.0-alsa:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugin for ALSA\\nii gstreamer1.0-gl:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for GL\\nii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)\\nii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit\\nii gstreamer1.0-pipewire:amd64 1.0.5-1ubuntu1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server\\nii gstreamer1.0-plugins-base:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins from the \\"base\\" set\\nii gstreamer1.0-plugins-base-apps 1.24.2-1ubuntu0.1 amd64 GStreamer helper programs from the \\"base\\" set\\nii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the \\"good\\" set\\nii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer\\nii gstreamer1.0-x:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for X11 and Pango\\nii gtk-update-icon-cache 3.24.41-4ubuntu1.1 amd64 icon theme caching utility\\nii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine\\nii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1.1 amd64 pixbuf-based theme for GTK 2\\nii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module\\nii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends\\nii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files\\nii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers\\nii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server\\nii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries\\nii gzip 1.12-1ubuntu3 amd64 GNU compression utilities\\nii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance\\nii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader\\nii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer\\nii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes\\nii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name\\nii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)\\nii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files\\nii humanity-icon-theme 0.6.16 all Humanity Icon theme\\nii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell\\nii hwdata 0.379-1 all hardware identification / configuration data\\nii ibus 1.5.29-2 amd64 Intelligent Input Bus - core\\nii ibus-data 1.5.29-2 all Intelligent Input Bus - data files\\nii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support\\nii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support\\nii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support\\nii ibus-table 1.17.4-2 all table engine for IBus\\nii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs\\nii ieee-data 20220827.1 all OUI and IAB listings\\nii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy\\nii im-config 0.57-2 all Input method configuration framework\\nii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client\\nii info 7.1-3build2 amd64 Standalone GNU Info documentation browser\\nii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed\\nii init-system-helpers 1.66ubuntu1 all helper tools for all init systems\\nii initramfs-tools 0.142ubuntu25.2 all generic modular initramfs generator (automation)\\nii initramfs-tools-bin 0.142ubuntu25.2 amd64 binaries used by initramfs-tools\\nii initramfs-tools-core 0.142ubuntu25.2 all generic modular initramfs generator (core tools)\\nii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem\\nii install-info 7.1-3build2 amd64 Manage installed documentation in info format\\nii intel-microcode 3.20240813.0ubuntu0.24.04.2 amd64 Processor microcode firmware for Intel CPUs\\nii ipmitool 1.8.19-7build2 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)\\nii ipp-usb 0.9.24-0ubuntu3.1 amd64 Daemon for IPP over USB printer support\\nii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools\\nii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT\\nii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts\\nii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host\\nii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations\\nii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool\\nii java-common 0.75+exp1 all Base package for Java runtimes\\nii javascript-common 11+nmu1 all Base support for JavaScript library packages\\nii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor\\nii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities\\nii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker\\nii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences\\nii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service\\nii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot\\nii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules\\nii language-pack-de 1:24.04+20240817 all translation updates for language German\\nii language-pack-de-base 1:24.04+20240817 all translations for language German\\nii language-pack-en 1:24.04+20240817 all translation updates for language English\\nii language-pack-en-base 1:24.04+20240817 all translations for language English\\nii language-pack-gnome-de 1:24.04+20240817 all GNOME translation updates for language German\\nii language-pack-gnome-de-base 1:24.04+20240817 all GNOME translations for language German\\nii language-pack-gnome-en 1:24.04+20240817 all GNOME translation updates for language English\\nii language-pack-gnome-en-base 1:24.04+20240817 all GNOME translations for language English\\nii language-selector-common 0.225 all Language selector for Ubuntu\\nii language-selector-gnome 0.225 all Language selector frontend for Ubuntu\\nii laptop-detect 0.16 all system chassis type checker\\nii less 590-2ubuntu2.1 amd64 pager program similar to more\\nii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library\\nii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library\\nii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries\\nii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library\\nii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones\\nii libaio1t64:amd64 0.3.113-6build1 amd64 Linux kernel AIO access library - shared library\\nii libalgorithm-diff-perl 1.201-1 all module to find differences between files\\nii libalgorithm-diff-xs-perl:amd64 0.04-8build3 amd64 module to find differences between files (XS accelerated)\\nii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data\\nii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)\\nii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library\\nii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library\\nii libapparmor1:amd64 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 changehat AppArmor library\\nii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services\\nii libapr1-dev 1.7.2-3.1build2 amd64 Apache Portable Runtime Library - Development Headers\\nii libapr1t64:amd64 1.7.2-3.1build2 amd64 Apache Portable Runtime Library\\nii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library\\nii libarchive13t64:amd64 3.7.2-2ubuntu0.1 amd64 Multi-format archive and compression library (shared library)\\nii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library\\nii libasan6:amd64 11.4.0-9ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers\\nii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications\\nii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library\\nii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components\\nii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library\\nii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library\\nii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge\\nii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library\\nii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit\\nii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)\\nii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions\\nii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions\\nii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library\\nii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library\\nii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files\\nii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing\\nii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework\\nii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library\\nii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files\\nii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library\\nii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi\'s embeddable mDNS/DNS-SD library\\nii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library\\nii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices\\nii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)\\nii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators\\nii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)\\nii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries\\nii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)\\nii libblkid-dev:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library - headers\\nii libblkid1:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library\\nii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev\\nii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev\\nii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev\\nii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev\\nii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev\\nii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev\\nii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev\\nii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev\\nii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices\\nii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack\\nii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library\\nii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization\\nii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading\\nii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)\\nii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)\\nii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library\\nii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)\\nii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library\\nii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions\\nii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations\\nii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes\\nii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime\\nii libc-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Binaries\\nii libc-dev-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Development binaries\\nii libc-devtools 2.39-0ubuntu8.3 amd64 GNU C Library: Development tools\\nii libc6:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Shared libraries\\nii libc6-dbg:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: detached debugging symbols\\nii libc6-dev:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Development Libraries and Header Files\\nii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library\\nii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl\\nii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)\\nii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library\\nii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)\\nii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library\\nii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)\\nii libcamel-1.2-64t64:amd64 3.52.3-0ubuntu1 amd64 Evolution MIME message handling library\\nii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library\\nii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra\\nii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds\\nii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra\\nii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds\\nii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library\\nii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)\\nii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)\\nii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)\\nii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB\\nii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs\\nii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction\\nii libcdio19t64:amd64 2.1.0-4.1ubuntu1.2 amd64 library to read and control CD-ROM\\nii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)\\nii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library\\nii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library\\nii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes\\nii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)\\nii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)\\nii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord\\nii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime\\nii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime\\nii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library\\nii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library\\nii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files\\nii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library\\nii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.1 amd64 disk encryption support - shared library\\nii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)\\nii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)\\nii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library\\nii libcups2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Core library\\nii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files\\nii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library\\nii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Raster image library\\nii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)\\nii libcurl4t64:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)\\nii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library\\nii libdata-dump-perl 1.25-1 all Perl module to help dump data structures\\nii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library\\nii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]\\nii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)\\nii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC\\nii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus\\nii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version\\nii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library\\nii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation\\nii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)\\nii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server\\nii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)\\nii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library\\nii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK\\nii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib\\nii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression\\nii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre\\nii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format\\nii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files\\nii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules\\nii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime\\nii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files\\nii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime\\nii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime\\nii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime\\nii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime\\nii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library\\nii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)\\nii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information\\nii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library\\nii libebackend-1.2-11t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libebook-1.2-21t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution address books\\nii libebook-contacts-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution contacts books\\nii libecal-2.0-3:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution calendars\\nii libedata-book-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution address books\\nii libedata-cal-2.0-2t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution calendars\\nii libedataserver-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedataserverui-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries\\nii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library\\nii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libegl-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library\\nii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support\\nii libei1:amd64 1.2.1-1 amd64 Emulated Input client library\\nii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library\\nii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files\\nii libenchant-2-2:amd64 2.3.3-2build2 amd64 Wrapper library for various spell checker engines (runtime libs)\\nii libencode-locale-perl 1.05-3 all utility to determine the locale encoding\\nii libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files\\nii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library\\nii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way\\nii libespeak-ng1:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: shared library\\nii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)\\nii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices\\nii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library\\nii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets\\nii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)\\nii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files\\nii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library\\nii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library\\nii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit\\nii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries\\nii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library\\nii libexttextcat-data 3.4.7-1build1 all Language detection library - data files\\nii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions\\nii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries\\nii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C\\nii libfdisk1:amd64 2.39.3-9ubuntu6.1 amd64 fdisk partitioning library\\nii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)\\nii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime\\nii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision\\nii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects\\nii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification\\nii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files\\nii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)\\nii libfile-listing-perl 6.16-1 all module to parse directory listings\\nii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types\\nii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library\\nii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library\\nii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files\\nii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime\\nii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library\\nii libfprint-2-2 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, shared libraries\\nii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, drivers shared libraries\\nii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX\\nii libfreeipmi17 1.6.13-3 amd64 GNU IPMI - libraries\\nii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)\\nii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)\\nii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files\\nii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm\\nii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers\\nii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)\\nii libfwupd2:amd64 1.9.24-1~24.04.1 amd64 Firmware update daemon library\\nii libgail-common:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- common modules\\nii libgail18t64:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- shared libraries\\nii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)\\nii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)\\nii libgbm1:amd64 24.0.9-0ubuntu0.1 amd64 generic buffer management API -- runtime\\nii libgcc-11-dev:amd64 11.4.0-9ubuntu1 amd64 GCC support library (development files)\\nii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)\\nii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library\\nii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks\\nii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks\\nii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks\\nii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library\\nii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library\\nii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files\\nii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries\\nii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version) \\nii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version) \\nii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library\\nii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library (thumbnailer)\\nii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 all GDK Pixbuf library - data files\\nii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)\\nii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library\\nii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service\\nii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim\\nii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library\\nii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)\\nii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)\\nii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data\\nii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform\\nii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support\\nii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules\\nii libgl1-mesa-dri:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules\\nii libglapi-mesa:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the GL API -- shared library\\nii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support\\nii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries\\nii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries\\nrc libglib2.0-0:amd64 2.72.4-0ubuntu2.3 amd64 GLib library of C routines\\nii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines\\nii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library\\nii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library\\nii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library\\nii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library\\nii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)\\nii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)\\nii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library\\nii libglx-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library\\nii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support\\nii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library\\nii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME\\nii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files\\nii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library\\nii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library\\nii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version\\nii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files\\nii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files\\nii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files\\nii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library\\nii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.2 amd64 GNU TLS library - main runtime library\\nii libgoa-1.0-0b:amd64 3.50.4-0ubuntu2 amd64 library for GNOME Online Accounts\\nii libgoa-1.0-common 3.50.4-0ubuntu2 all library for GNOME Online Accounts - common files\\nii libgoa-backend-1.0-2:amd64 3.50.4-0ubuntu2 amd64 backend library for GNOME Online Accounts\\nii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library\\nii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library\\nii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)\\nii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME\\nii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library\\nii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages\\nii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library\\nii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library\\nii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)\\nii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types\\nii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library\\nii libgs-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - ICC profiles\\nii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF - Library\\nii libgs10-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - common files\\nii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version\\nii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files\\nii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds\\nii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications\\nii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files\\nii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism\\nii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP\\nii libgstreamer-gl1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer GL libraries\\nii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer libraries from the \\"base\\" set\\nii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the \\"good\\" set\\nii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements\\nrc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library\\nii libgtk-3-0t64:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library\\nii libgtk-3-bin 3.24.41-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk-3-common 3.24.41-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library\\nii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library\\nii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library\\nii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library\\nrc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-bin 2.24.33-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk2.0-common 2.24.33-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library\\nii libgtkmm-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)\\nii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget\\nii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget\\nii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)\\nii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)\\nii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev\\nii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP\\nii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP\\nii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP\\nii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1\\nii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library\\nii libgweather-4-common 4.4.2-1build1 all GWeather common files\\nii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)\\nii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones\\nii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)\\nii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend\\nii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)\\nii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin\\nii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin\\nii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin\\nii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library\\nii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)\\nii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries\\nii libhtml-form-perl 6.11-1 all module that represents an HTML form element\\nii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats\\nii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents\\nii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML\\nii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees\\nii libhttp-cookies-perl 6.11-1 all HTTP cookie jars\\nii libhttp-daemon-perl 6.16-1 all simple http server class\\nii libhttp-date-perl 6.06-1 all module of date conversion routines\\nii libhttp-message-perl 6.45-1ubuntu1 all perl interface to HTTP style messages\\nii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation\\nii libhunspell-1.7-0:amd64 1.7.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)\\nii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library\\nii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library\\nii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)\\nii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)\\nii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library\\nii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode\\nii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications\\nii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library\\nii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)\\nii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access\\nii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library\\nii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library\\nii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices\\nii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser\\nii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks\\nii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library\\nii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection\\nii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets\\nii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)\\nii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library\\nii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library\\nii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics\\nii libipmiconsole2 1.6.13-3 amd64 GNU IPMI - Serial-over-Lan library\\nii libipmidetect0 1.6.13-3 amd64 GNU IPMI - IPMI node detection library\\nii libipsec-mb1 1.5-1build1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library\\nii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library\\nii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints\\nii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems\\nii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images\\nii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library\\nii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library\\nii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data\\nii libjavascriptcoregtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjavascriptcoregtk-6.0-1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries\\nii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries\\nii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library\\nii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library\\nii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group\'s JPEG runtime library (dependency package)\\nii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library\\nii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications\\nii libjs-sphinxdoc 7.2.6-6 all JavaScript support for Sphinx documentation\\nii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript\'s functional programming helper library\\nii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library\\nii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library\\nii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)\\nii libjudydebian1 1.0.5-5.1build1 amd64 C library for creating and accessing dynamic arrays\\nii libk5crypto3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Crypto Library\\nii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)\\nii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs\\nii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library\\nii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)\\nii libkrb5-3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries\\nii libkrb5support0:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Support library\\nii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library\\nii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data\\nii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages\\nii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)\\nii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library\\nii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)\\nii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)\\nii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)\\nii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries\\nii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries\\nii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library\\nii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library\\nii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library\\nii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl\\nii liblouis-data 3.29.0-1build1 all Braille translation library - data\\nii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs\\nii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities\\nii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data\\nii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs\\nii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)\\nii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool\\nii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)\\nii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)\\nii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)\\nii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4\\nii libluajit-5.1-2:amd64 2.1.0+git20231223.c525bcb+dfsg-1 amd64 Just in time compiler for Lua - library version\\nii libluajit-5.1-common 2.1.0+git20231223.c525bcb+dfsg-1 all Just in time compiler for Lua - common files\\nii liblwp-mediatypes-perl 6.04-2 all module to guess media type for a file or a URL\\nii liblwp-protocol-https-perl 6.13-1 all HTTPS driver for LWP::UserAgent\\nii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime\\nii liblzma5:amd64 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression library\\nii liblzo2-2:amd64 2.10-2build4 amd64 data compression library\\nii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using \\"magic\\" numbers (compiled magic file)\\nrc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs\\nii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library\\nii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library\\nii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol\\nii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports\\nii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line\\nii libmd0:amd64 1.1.0-2build1 amd64 message digest functions from BSD systems - shared library\\nii libmediaart-2.0-0:amd64 1.9.6-1build2 amd64 media art extraction and cache management library\\nii libmhash2:amd64 0.9.9.9-9build3 amd64 Library for cryptographic hashing and message authentication\\nii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries\\nii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library\\nii libmount-dev:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library - headers\\nii libmount1:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library\\nii libmozjs-115-0t64:amd64 115.10.0-1 amd64 SpiderMonkey JavaScript library\\nii libmp3lame0:amd64 3.100-6build1 amd64 MP3 encoding library\\nii libmpc3:amd64 1.3.1-1build1 amd64 multiple precision complex floating-point library\\nii libmpfr6:amd64 4.2.1-1build1 amd64 multiple precision floating-point computation\\nii libmpg123-0t64:amd64 1.32.5-1ubuntu1 amd64 MPEG layer 1/2/3 audio decoder (shared library)\\nii libmsgraph-0-1:amd64 0.2.1-0ubuntu3 amd64 library for accessing the Microsoft Graph API\\nii libmtdev1t64:amd64 1.1.6-1.1build1 amd64 Multitouch Protocol Translation Library - shared library\\nii libmtp-common 1.1.21-3.1build1 all Media Transfer Protocol (MTP) common files\\nii libmtp-runtime 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) runtime tools\\nii libmtp9t64:amd64 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) library\\nii libmutter-14-0:amd64 46.2-1ubuntu0.24.04.1 amd64 window manager library from the Mutter window manager\\nii libmysqlclient21:amd64 8.0.39-0ubuntu0.24.04.2 amd64 MySQL database client library\\nii libmythes-1.2-0:amd64 2:1.2.5-1build1 amd64 simple thesaurus library\\nii libnautilus-extension4:amd64 1:46.2-0ubuntu0.2 amd64 libraries for nautilus components - runtime version\\nii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling\\nii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)\\nii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol\\nii libnet-dbus-perl 1.2.0-2build3 amd64 Perl extension for the DBus bindings\\nii libnet-http-perl 6.23-1 all module providing low-level HTTP connection client\\nii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP\\nii libnet-ssleay-perl:amd64 1.94-1build4 amd64 Perl module for Secure Sockets Layer (SSL)\\nii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library\\nii libnetplan1:amd64 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration runtime library\\nii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)\\nii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik\'s Windowing Toolkit - text mode windowing with slang\\nii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library\\nii libnfs14:amd64 5.0.2-1build1 amd64 NFS client library (shared library)\\nii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library\\nii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library\\nii libnghttp2-14:amd64 1.59.0-1ubuntu0.1 amd64 library implementing HTTP/2 protocol (shared library)\\nii libnl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets\\nii libnl-genl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - generic netlink\\nii libnl-route-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - route interface\\nii libnm0:amd64 1.46.0-1ubuntu2 amd64 GObject-based client library for NetworkManager\\nii libnma-common 1.10.6-3build2 all NetworkManager GUI library - translations\\nii libnma-gtk4-0:amd64 1.10.6-3build2 amd64 NetworkManager GUI GTK4 library\\nii libnma0:amd64 1.10.6-3build2 amd64 NetworkManager GUI library\\nii libnotify-bin 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Utilities)\\nii libnotify4:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon\\nii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads\\nii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library\\nii libnss-mdns:amd64 0.15.1-4build1 amd64 NSS module for Multicast DNS name resolution\\nii libnss-systemd:amd64 255.4-1ubuntu8.4 amd64 nss module providing dynamic user and group name resolution\\nii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries\\nii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)\\nii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy\\nii libnvme1t64 1.8-3build1 amd64 NVMe management library (library)\\nii libogg0:amd64 1.3.5-3build1 amd64 Ogg bitstream library\\nii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library\\nii libopengl0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- OpenGL support\\nii libopenipmi0t64 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface - runtime\\nii libopenjp2-7:amd64 2.5.0-2build3 amd64 JPEG 2000 image compression/decompression library\\nii libopus0:amd64 1.4-1build1 amd64 Opus codec runtime library\\nii liborc-0.4-0t64:amd64 1:0.4.38-1ubuntu0.1 amd64 Library of Optimized Inner Loops Runtime Compiler\\nii liborcus-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents\\nii liborcus-parser-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents - parser library\\nii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime\\nii libpackagekit-glib2-18:amd64 1.2.8-2build3 amd64 Library for accessing PackageKit using GLib\\nii libpam-cap:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (PAM module)\\nii libpam-fprintd:amd64 1.94.3-1 amd64 PAM module for fingerprint authentication through fprintd\\nii libpam-gnome-keyring:amd64 46.1-2build1 amd64 PAM module to unlock the GNOME keyring upon login\\nii libpam-modules:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM\\nii libpam-modules-bin 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM - helper binaries\\nii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength\\nii libpam-runtime 1.5.3-5ubuntu5.1 all Runtime support for the PAM library\\nii libpam-sss:amd64 2.9.4-1.1ubuntu6.1 amd64 Pam module for the System Security Services Daemon\\nii libpam-systemd:amd64 255.4-1ubuntu8.4 amd64 system and service manager - PAM module\\nii libpam0g:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules library\\nii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangomm-2.48-1t64:amd64 2.52.0-1build1 amd64 C++ Wrapper for pango (shared libraries)\\nii libpangoxft-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)\\nii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics\\nii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library\\nii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture\\nii libpcaudio0:amd64 1.2-2build3 amd64 C API to different audio devices - shared library\\nii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)\\nii libpciaccess0:amd64 0.17-3build1 amd64 Generic PCI access library for X\\nii libpcre2-16-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files\\nii libpcre2-32-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 32 bit runtime files\\nii libpcre2-8-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files\\nii libpcre2-dev:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - development files\\nii libpcre2-posix3:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files\\nii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)\\nii libpeas-1.0-0:amd64 1.36.0-3build4 amd64 Application plugin library\\nii libpeas-common 1.36.0-3build4 all Application plugin library (common files)\\nii libperl5.38t64:amd64 5.38.2-3.2build2 amd64 shared Perl library\\nii libphonenumber8:amd64 8.12.57+ds-4.2build3 amd64 parsing/formatting/validating phone numbers\\nii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library\\nii libpipewire-0.3-0t64:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server\\nii libpipewire-0.3-common 1.0.5-1ubuntu1 all libraries for the PipeWire multimedia server - common files\\nii libpipewire-0.3-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - modules\\nii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo\\nii libpkcs11-helper1t64:amd64 1.29.0-2.1build2 amd64 library that simplifies the interaction with PKCS#11\\nii libpkgconf3:amd64 1.8.1-2build1 amd64 shared library for pkgconf\\nii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists\\nii libplymouth5:amd64 24.004.60-1ubuntu7 amd64 graphical boot animation and logger - shared libraries\\nii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)\\nii libpolkit-agent-1-0:amd64 124-2ubuntu1 amd64 polkit Authentication Agent API\\nii libpolkit-gobject-1-0:amd64 124-2ubuntu1 amd64 polkit Authorization API\\nii libpoppler-cpp0t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (CPP shared library)\\nii libpoppler-glib8t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (GLib-based shared library)\\nii libpoppler134:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library\\nii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters\\nii libportal-gtk4-1:amd64 0.7.1-5build5 amd64 Flatpak portal library for GTK 4 GUIs\\nii libportal1:amd64 0.7.1-5build5 amd64 Flatpak portal library - non-GUI part\\nii libppd2:amd64 2:2.0.0-0ubuntu4 amd64 OpenPrinting libppd - Shared library\\nii libppd2-common 2:2.0.0-0ubuntu4 all OpenPrinting libppd - Auxiliary files\\nii libpq5:amd64 16.4-0ubuntu0.24.04.2 amd64 PostgreSQL C client library\\nii libproc2-0:amd64 2:4.0.4-4ubuntu3 amd64 library for accessing process information from /proc\\nii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)\\nii libprotobuf32t64:amd64 3.21.12-8.2build1 amd64 protocol buffers C++ library\\nii libproxy1-plugin-gsettings:amd64 0.5.4-4build1 amd64 transitional package for libproxy GSettings plugin\\nii libproxy1-plugin-networkmanager:amd64 0.5.4-4build1 amd64 transitional package for libproxy NetworkManager plugin\\nii libproxy1v5:amd64 0.5.4-4build1 amd64 automatic proxy configuration management library (shared)\\nii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)\\nii libpulse-mainloop-glib0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries (glib support)\\nii libpulse0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries\\nii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)\\nii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation\\nii libpython3-dev:amd64 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii libpython3.12-dev:amd64 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (standard library, version 3.12)\\nii libpython3.12t64:amd64 3.12.3-1ubuntu0.1 amd64 Shared Python runtime library (version 3.12)\\nii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol\\nii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports\\nii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line\\nii libqpdf29t64:amd64 11.9.0-1.1build1 amd64 runtime library for PDF transformation/inspection software\\nii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol\\nii libquadmath0:amd64 14-20240412-0ubuntu1 amd64 GCC Quad-Precision Math Library\\nii libraptor2-0:amd64 2.0.16-3build3 amd64 Raptor 2 RDF syntax library\\nii libraqm0:amd64 0.10.1-1build1 amd64 Library for complex text layout\\nii librasqal3t64:amd64 0.9.33-2.1build1 amd64 Rasqal RDF query library\\nii libraw1394-11:amd64 2.1.2-2build3 amd64 library for direct access to IEEE 1394 bus (aka FireWire)\\nii librdf0t64:amd64 1.0.17-3.1ubuntu3 amd64 Redland Resource Description Framework (RDF) library\\nii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries\\nii libreoffice-common 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- arch-independent files\\nii libreoffice-core 4:24.2.5-0ubuntu0.24.04.2 amd64 office productivity suite -- arch-dependent files\\nii libreoffice-style-colibre 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- colibre symbol style\\nii libreoffice-style-yaru 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- Yaru symbol style\\nii libreoffice-uiconfig-common 4:24.2.5-0ubuntu0.24.04.2 all UI data (\\"config\\") for LibreOffice (\\"common\\" set)\\nii librest-1.0-0:amd64 0.9.1-6build3 amd64 REST service access library\\nii librevenge-0.0-0:amd64 0.0.5-3build1 amd64 Base Library for writing document interface filters\\nii libroc0.3:amd64 0.3.0+dfsg-7ubuntu2 amd64 real-time audio streaming over the network (shared library)\\nii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)\\nii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)\\nii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)\\nii librygel-core-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - core library\\nii librygel-db-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - db library\\nii librygel-renderer-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - renderer library\\nii librygel-server-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - server library\\nii libsamplerate0:amd64 0.2.2-4build1 amd64 Audio sample rate conversion library\\nii libsane-common 1.2.1-7build4 all API library for scanners -- documentation and support files\\nii libsane-hpaio:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP SANE backend for multi-function peripherals\\nii libsane1:amd64 1.2.1-7build4 amd64 API library for scanners\\nii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library\\nii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules\\nii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)\\nii libsbc1:amd64 2.0-1build1 amd64 Sub Band CODEC library - runtime\\nii libsctp-dev:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - development files\\nii libsctp1:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - shared library\\nii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter\\nii libsecret-1-0:amd64 0.21.4-1build3 amd64 Secret store\\nii libsecret-common 0.21.4-1build3 all Secret store (common files)\\nii libselinux1:amd64 3.5-2ubuntu2 amd64 SELinux runtime shared libraries\\nii libselinux1-dev:amd64 3.5-2ubuntu2 amd64 SELinux development headers\\nii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries\\nii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library\\nii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files\\nii libsensors-dev:amd64 1:3.6.0-9build1 amd64 lm-sensors development kit\\nii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors\\nii libsepol-dev:amd64 3.5-2build1 amd64 SELinux binary policy manipulation library and development files\\nii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies\\nii libsframe1:amd64 2.42-4ubuntu2 amd64 Library to handle the SFrame format (runtime library)\\nii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion\\nii libshout3:amd64 2.4.6-1build2 amd64 MP3/Ogg Vorbis broadcast streaming library\\nii libsigc++-3.0-0:amd64 3.6.0-2 amd64 type-safe Signal Framework for C++ - runtime\\nii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version\\nii libslirp0:amd64 4.7.0-1ubuntu3 amd64 General purpose TCP-IP emulator library\\nii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library\\nii libsmartcols1:amd64 2.39.3-9ubuntu6.1 amd64 smart column output alignment library\\nii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 shared library for communication with SMB/CIFS servers\\nii libsnapd-glib-2-1:amd64 1.64-0ubuntu5 amd64 GLib snapd library\\nii libsndfile1:amd64 1.2.2-1ubuntu5 amd64 Library for reading/writing audio files\\nii libsnmp-base 5.9.4+dfsg-1.1ubuntu3 all SNMP configuration script, MIBs and documentation\\nii libsnmp40t64:amd64 5.9.4+dfsg-1.1ubuntu3 amd64 SNMP (Simple Network Management Protocol) library\\nii libsonic0:amd64 0.2.0-13build1 amd64 Simple library to speed up or slow down speech\\nii libsoup-2.4-1:amd64 2.74.3-6ubuntu1 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-0:amd64 3.4.4-5build2 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-common 3.4.4-5build2 all HTTP library implementation in C -- Common files\\nii libsoup2.4-common 2.74.3-6ubuntu1 all HTTP library implementation in C -- Common files\\nii libsource-highlight-common 3.1.9-4.3build1 all architecture-independent files for source highlighting library\\nii libsource-highlight4t64:amd64 3.1.9-4.3build1 amd64 source highlighting library\\nii libspa-0.2-bluetooth:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - bluetooth plugins\\nii libspa-0.2-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server Simple Plugin API - modules\\nii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents\\nii libspeechd2:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Shared libraries\\nii libspeex1:amd64 1.2.1-2ubuntu2 amd64 The Speex codec runtime library\\nii libspeexdsp1:amd64 1.2.1-1ubuntu3 amd64 DSP library derived from speex\\nii libsqlite3-0:amd64 3.45.1-1ubuntu2 amd64 SQLite 3 shared library\\nii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library\\nii libssh-4:amd64 0.10.6-2build2 amd64 tiny C SSH library (OpenSSL flavor)\\nrc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libssl3t64:amd64 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libstartup-notification0:amd64 0.12-6build3 amd64 library for program launch feedback (shared library)\\nii libstdc++-13-dev:amd64 13.2.0-23ubuntu4 amd64 GNU Standard C++ Library v3 (development files)\\nii libstdc++6:amd64 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3\\nii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval\\nii libsynctex2:amd64 2023.20230311.66589-9build3 amd64 TeX Live: SyncTeX parser library\\nii libsysmetrics1:amd64 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics - shared lib\\nii libsystemd-shared:amd64 255.4-1ubuntu8.4 amd64 systemd shared private library\\nii libsystemd0:amd64 255.4-1ubuntu8.4 amd64 systemd utility library\\nii libtag1v5:amd64 1.13.1-1build1 amd64 audio meta-data library\\nii libtag1v5-vanilla:amd64 1.13.1-1build1 amd64 audio meta-data library - vanilla flavour\\nii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator\\nii libtasn1-6:amd64 4.19.0-3build1 amd64 Manage ASN.1 structures (runtime)\\nii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files\\nii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library\\nii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process\\nii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library\\nii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal\\nii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl\\nii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap\\nii libthai-data 0.1.29-2build1 all Data files for Thai language support library\\nii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library\\nii libtheora0:amd64 1.1.1+dfsg.1-16.1build3 amd64 Theora Video Compression Codec\\nii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays\\nii libtiff6:amd64 4.5.1+git230720-4ubuntu2.2 amd64 Tag Image File Format (TIFF) library\\nii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information\\nii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling\\nii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files\\nii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library\\nii libtotem-plparser-common 3.26.6-1build5 all Totem Playlist Parser library - common files\\nii libtotem-plparser18:amd64 3.26.6-1build5 amd64 Totem Playlist Parser library - runtime files\\nii libtraceevent1:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (shared library)\\nii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (plugins)\\nii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)\\nii libtracker-sparql-3.0-0:amd64 3.7.1-1build1 amd64 metadata database, indexer and search tool - library\\nii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch\\nii libtsan0:amd64 11.4.0-9ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtsan2:amd64 14-20240412-0ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-rc0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-libtpms0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-spi-helper0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tctildr0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtwolame0:amd64 0.4.0-2build3 amd64 MPEG Audio Layer 2 encoding library\\nii libu2f-udev 1.1.10-3build3 all Universal 2nd Factor (U2F) — transitional package\\nii libubsan1:amd64 14-20240412-0ubuntu1 amd64 UBSan -- undefined behaviour sanitizer (runtime)\\nii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library\\nii libudev1:amd64 255.4-1ubuntu8.4 amd64 libudev shared library\\nii libudisks2-0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2\\nii libunistring5:amd64 1.1-2build1 amd64 Unicode string library for C\\nii libunity-protocol-private0:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - private library\\nii libunity-scopes-json-def-desktop 7.1.4+19.04.20190319-6build4 all binding to get places into the launcher - desktop def file\\nii libunity9:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - shared library\\nii libuno-cppu3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU public library\\nii libuno-cppuhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU helper library\\nii libuno-purpenvhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- \\"purpose environment\\" helper\\nii libuno-sal3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL public library\\nii libuno-salhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library\\nii libunwind8:amd64 1.6.2-3build1 amd64 library to determine the call-chain of a program - runtime\\nii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library\\nii liburi-perl 5.27-1 all module to manipulate and access URI strings\\nii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library\\nii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library\\nii libuuid1:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library\\nii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library\\nii libv4l-0t64:amd64 1.26.1-4build3 amd64 Collection of video4linux support libraries\\nii libv4lconvert0t64:amd64 1.26.1-4build3 amd64 Video4linux frame format conversion library\\nii libvisual-0.4-0:amd64 0.4.2-2build1 amd64 audio visualization framework\\nii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases\\nii libvorbis0a:amd64 1.3.7-1build3 amd64 decoder library for Vorbis General Audio Compression Codec\\nii libvorbisenc2:amd64 1.3.7-1build3 amd64 encoder library for Vorbis General Audio Compression Codec\\nii libvorbisfile3:amd64 1.3.7-1build3 amd64 high-level API for Vorbis General Audio Compression Codec\\nii libvpx9:amd64 1.14.0-1ubuntu2.1 amd64 VP8 and VP9 video codec (shared library)\\nii libvte-2.91-0:amd64 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime files\\nii libvte-2.91-common 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - common files\\nii libvulkan1:amd64 1.3.275.0-1build1 amd64 Vulkan loader library\\nii libwacom-common 2.10.0-2 all Wacom model feature query library (common files)\\nii libwacom9:amd64 2.10.0-2 amd64 Wacom model feature query library\\nii libwavpack1:amd64 5.6.0-1build1 amd64 audio codec (lossy and lossless) - library\\nii libwayland-client0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - client library\\nii libwayland-cursor0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - cursor library\\nii libwayland-egl1:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - EGL library\\nii libwayland-server0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - server library\\nii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba winbind client library\\nii libwebkit2gtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebkitgtk-6.0-4:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.\\nii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebrtc-audio-processing1:amd64 0.3.1-0ubuntu6 amd64 AudioProcessing module from the WebRTC project.\\nii libwhoopsie-preferences0 23build3 amd64 Ubuntu error tracker submission settings - shared library\\nii libwhoopsie0:amd64 0.2.77build3 amd64 Ubuntu error tracker submission - shared library\\nii libwinpr3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Windows Portable Runtime library\\nii libwireplumber-0.4-0:amd64 0.4.17-1ubuntu4 amd64 Shared libraries for WirePlumber\\nii libwmf-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion library\\nii libwmf-0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin\\nii libwmf0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin - transitional package\\nii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library\\nii libwnck-3-0:amd64 43.0-3build4 amd64 Window Navigator Construction Kit - runtime files\\nii libwnck-3-common 43.0-3build4 all Window Navigator Construction Kit - common files\\nii libwoff1:amd64 1.0.2-2build1 amd64 library for converting fonts to WOFF 2.0\\nii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema\'s TCP wrappers library\\nii libwww-perl 6.76-1 all simple and consistent interface to the world-wide web\\nii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions\\nii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library\\nii libx11-data 2:1.8.7-1build1 all X11 client-side library\\nii libx11-protocol-perl 0.56-9 all Perl module for the X Window System Protocol, version 11\\nii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library\\nii libxatracker2:amd64 24.0.9-0ubuntu0.1 amd64 X acceleration library -- runtime\\nii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library\\nii libxaw7:amd64 2:1.0.14-1build2 amd64 X11 Athena Widget library\\nii libxcb-damage0:amd64 1.15-1ubuntu2 amd64 X C Binding, damage extension\\nii libxcb-dri2-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri2 extension\\nii libxcb-dri3-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri3 extension\\nii libxcb-glx0:amd64 1.15-1ubuntu2 amd64 X C Binding, glx extension\\nii libxcb-icccm4:amd64 0.4.1-1.1build3 amd64 utility libraries for X C Binding -- icccm\\nii libxcb-image0:amd64 0.4.0-2build1 amd64 utility libraries for X C Binding -- image\\nii libxcb-keysyms1:amd64 0.4.0-1build4 amd64 utility libraries for X C Binding -- keysyms\\nii libxcb-present0:amd64 1.15-1ubuntu2 amd64 X C Binding, present extension\\nii libxcb-randr0:amd64 1.15-1ubuntu2 amd64 X C Binding, randr extension\\nii libxcb-render-util0:amd64 0.3.9-1build4 amd64 utility libraries for X C Binding -- render-util\\nii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension\\nii libxcb-res0:amd64 1.15-1ubuntu2 amd64 X C Binding, res extension\\nii libxcb-shape0:amd64 1.15-1ubuntu2 amd64 X C Binding, shape extension\\nii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension\\nii libxcb-sync1:amd64 1.15-1ubuntu2 amd64 X C Binding, sync extension\\nii libxcb-util1:amd64 0.4.0-1build3 amd64 utility libraries for X C Binding -- atom, aux and event\\nii libxcb-xfixes0:amd64 1.15-1ubuntu2 amd64 X C Binding, xfixes extension\\nii libxcb-xkb1:amd64 1.15-1ubuntu2 amd64 X C Binding, XKEYBOARD extension\\nii libxcb-xv0:amd64 1.15-1ubuntu2 amd64 X C Binding, xv extension\\nii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding\\nii libxcomposite1:amd64 1:0.4.5-1build3 amd64 X11 Composite extension library\\nii libxcursor1:amd64 1:1.2.1-1build1 amd64 X cursor management library\\nii libxcvt0:amd64 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator -- shared library\\nii libxdamage1:amd64 1:1.1.6-1build1 amd64 X11 damaged region extension library\\nii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library\\nii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library\\nii libxfixes3:amd64 1:6.0.0-2build1 amd64 X11 miscellaneous \'fixes\' extension library\\nii libxfont2:amd64 1:2.0.6-1build1 amd64 X11 font rasterisation library\\nii libxft2:amd64 2.3.6-1build1 amd64 FreeType-based font drawing library for X\\nii libxi6:amd64 2:1.8.1-1build1 amd64 X11 Input extension library\\nii libxinerama1:amd64 2:1.1.4-3build1 amd64 X11 Xinerama extension library\\nii libxkbcommon-x11-0:amd64 1.6.0-1build1 amd64 library to create keymaps with the XKB X11 protocol\\nii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library\\nii libxkbfile1:amd64 1:1.1.0-1build4 amd64 X11 keyboard file manipulation library\\nii libxkbregistry0:amd64 1.6.0-1build1 amd64 library to query available RMLVO\\nii libxklavier16:amd64 5.4-5build2 amd64 X Keyboard Extension high-level API\\nii libxml-parser-perl 2.47-1build3 amd64 Perl module for parsing XML files\\nii libxml-twig-perl 1:3.52-2 all Perl module for processing huge XML documents in tree mode\\nii libxml-xpathengine-perl 0.14-2 all re-usable XPath engine for DOM-like trees\\nii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3 amd64 GNOME XML library\\nii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library\\nii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library\\nii libxmlsec1t64-nss:amd64 1.2.39-5build2 amd64 Nss engine for the XML security library\\nii libxmu6:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous utility library\\nii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library\\nii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library\\nii libxrandr2:amd64 2:1.5.2-2build1 amd64 X11 RandR extension library\\nii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library\\nii libxres1:amd64 2:1.2.1-1build1 amd64 X11 Resource extension library\\nii libxshmfence1:amd64 1.3-1build5 amd64 X shared memory fences - shared library\\nii libxslt1.1:amd64 1.1.39-0exp1build1 amd64 XSLT 1.0 processing library - runtime library\\nii libxss1:amd64 1:1.2.3-1build3 amd64 X11 Screen Saver extension library\\nii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library\\nii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library\\nii libxtst6:amd64 2:1.2.3-1.1build1 amd64 X11 Testing -- Record extension library\\nii libxv1:amd64 2:1.0.11-1.1build1 amd64 X11 Video extension library\\nii libxvmc1:amd64 2:1.0.12-2build3 amd64 X11 Video extension library\\nii libxxf86dga1:amd64 2:1.1.5-1build1 amd64 X11 Direct Graphics Access extension library\\nii libxxf86vm1:amd64 1:1.1.4-1build4 amd64 X11 XFree86 video mode extension library\\nii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash\\nii libyajl2:amd64 2.1.0-5build1 amd64 Yet Another JSON Library\\nii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library\\nii libyelp0:amd64 42.2-1build2 amd64 Library for the GNOME help browser\\nii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm\\nii linux-base 4.5ubuntu9 all Linux image base package\\nii linux-firmware 20240318.git3b128b60-0ubuntu2.3 amd64 Firmware for Linux kernel drivers\\nii linux-generic 6.8.0-44.44 amd64 Complete Generic Linux kernel and headers\\nii linux-headers-6.8.0-40 6.8.0-40.40 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-6.8.0-44 6.8.0-44.44 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-generic 6.8.0-44.44 amd64 Generic Linux kernel headers\\nrc linux-image-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Signed kernel image generic\\nii linux-image-6.8.0-40-generic 6.8.0-40.40 amd64 Signed kernel image generic\\nii linux-image-6.8.0-44-generic 6.8.0-44.44 amd64 Signed kernel image generic\\nii linux-image-generic 6.8.0-44.44 amd64 Generic Linux kernel image\\nii linux-libc-dev:amd64 6.8.0-44.44 amd64 Linux Kernel Headers for development\\nrc linux-modules-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-sound-base 1.0.25+dfsg-0ubuntu7 all base package for ALSA and OSS sound systems\\nii linux-tools-6.8.0-40 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-44 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-common 6.8.0-44.44 all Linux kernel version specific tools for version 6.8.0\\nii lm-sensors 1:3.6.0-9build1 amd64 utilities to read temperature/voltage/fan sensors\\nii locales 2.39-0ubuntu8.3 all GNU C Library: National Language (locale) data [support]\\nii login 1:4.13+dfsg1-4ubuntu3 amd64 system login tools\\nii logrotate 3.21.0-2build1 amd64 Log rotation utility\\nii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file\\nii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality\\nii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)\\nii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration\\nii lsof 4.95.0-1build3 amd64 utility to list open files\\nii lto-disabled-list 47 all list of packages not to build with LTO\\nii mailcap 3.70+nmu1ubuntu1 all Debian\'s mailcap system, and support programs\\nii make 4.3-4.1build2 amd64 utility for directing compilation\\nii man-db 2.12.0-4build2 amd64 tools for reading manual pages\\nii manpages 6.7-2 all Manual pages about using a GNU/Linux system\\nii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development\\nii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language\\nii media-types 10.1.0 all List of standard media types and their usual file extension\\nii memtest86+ 7.00-1build1 amd64 stand-alone memory tester for x86 and x86-64\\nii mesa-vulkan-drivers:amd64 24.0.9-0ubuntu0.1 amd64 Mesa Vulkan graphics drivers\\nii mobile-broadband-provider-info 20230416-1 all database of mobile broadband service providers\\nii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems\\nii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys\\nii mongodb-database-tools 100.9.4 amd64 mongodb-database-tools package provides tools for working with the MongoDB server: \\nii mongodb-org-database-tools-extra 7.0.9 amd64 Extra MongoDB database tools\\nii mongodb-org-server 7.0.9 amd64 MongoDB database server\\nii mongodb-org-shell 7.0.9 amd64 MongoDB shell client\\nii mongodb-org-tools 7.0.9 amd64 MongoDB tools\\nii mount 2.39.3-9ubuntu6.1 amd64 tools for mounting and manipulating filesystems\\nii mousetweaks 3.32.0-4build2 amd64 mouse accessibility enhancements for the GNOME desktop\\nii mscompress 0.4-10build1 amd64 Microsoft \\"compress.exe/expand.exe\\" compatible (de)compressor\\nii msr-tools 1.3-5build1 amd64 Utilities for modifying MSRs from userspace\\nii mtr-tiny 0.95-1.1build2 amd64 Full screen ncurses traceroute tool\\nii mutter-common 46.2-1ubuntu0.24.04.1 all shared files for the Mutter window manager\\nii mutter-common-bin 46.2-1ubuntu0.24.04.1 amd64 shared programs for the Mutter window manager\\nii mysql-common 5.8+1.1.0build1 all MySQL database common files, e.g. /etc/mysql/my.cnf\\nii nano 7.2-2build1 amd64 small, friendly text editor inspired by Pico\\nii nautilus 1:46.2-0ubuntu0.2 amd64 file manager and graphical shell for GNOME\\nii nautilus-data 1:46.2-0ubuntu0.2 all data files for nautilus\\nii nautilus-extension-gnome-terminal:amd64 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application - Nautilus extension\\nii nautilus-sendto 3.8.6-7build2 amd64 easily send files via email from within Nautilus\\nii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions\\nii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages\\nii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions\\nii net-tools 2.10-0.1ubuntu4 amd64 NET-3 networking toolkit\\nii netbase 6.4 all Basic TCP/IP networking system\\nii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife\\nii netplan-generator 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration systemd-generator\\nii netplan.io 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration for various backends\\nii network-manager 1.46.0-1ubuntu2 amd64 network management framework (daemon and userspace tools)\\nii network-manager-config-connectivity-ubuntu 1.46.0-1ubuntu2 all NetworkManager configuration to enable connectivity checking\\nii network-manager-gnome 1.34.0-1ubuntu3 amd64 network management framework (GNOME frontend)\\nii network-manager-openvpn 1.10.2-4build2 amd64 network management framework (OpenVPN plugin core)\\nii network-manager-openvpn-gnome 1.10.2-4build2 amd64 network management framework (OpenVPN plugin GNOME GUI)\\nii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)\\nii network-manager-pptp-gnome 1.2.12-3build2 amd64 network management framework (PPTP plugin GNOME GUI)\\nii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes\\nii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project\\nii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE\\nii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool\\nii openipmi 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface (for servers)\\nii openjdk-17-jre-headless:amd64 17.0.12+7-1ubuntu2~24.04 amd64 OpenJDK Java runtime, using Hotspot JIT (headless)\\nii openprinting-ppds 20230202-1 all OpenPrinting printer support - PostScript PPD files\\nii openssh-client 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) client, for secure access to remote machines\\nii openssh-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) server, for secure access from remote machines\\nii openssh-sftp-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines\\nii openssl 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - cryptographic utility\\nii openvpn 2.6.9-1ubuntu4.1 amd64 virtual private network daemon\\nii orca 46.1-1ubuntu1 all Scriptable screen reader\\nii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives\\nii p11-kit 0.25.3-4ubuntu2.1 amd64 p11-glue utilities\\nii p11-kit-modules:amd64 0.25.3-4ubuntu2.1 amd64 p11-glue proxy and trust modules\\nii packagekit 1.2.8-2build3 amd64 Provides a package management service\\nii packagekit-tools 1.2.8-2build3 amd64 Provides PackageKit command-line tools\\nii parted 3.6-4build1 amd64 disk partition manipulator\\nii passwd 1:4.13+dfsg1-4ubuntu3 amd64 change and administer password and group data\\nii pastebinit 1.6.2-1 all command-line pastebin client\\nii patch 2.7.6-7build3 amd64 Apply a diff file to an original\\nii pci.ids 0.0~2024.03.31-1 all PCI ID Repository\\nii pciutils 1:3.10.0-2build1 amd64 PCI utilities\\nii pcmciautils 018-14build1 amd64 PCMCIA utilities for Linux 2.6\\nii perl 5.38.2-3.2build2 amd64 Larry Wall\'s Practical Extraction and Report Language\\nii perl-base 5.38.2-3.2build2 amd64 minimal Perl system\\nii perl-modules-5.38 5.38.2-3.2build2 all Core Perl modules\\nii perl-openssl-defaults:amd64 7build3 amd64 version compatibility baseline for Perl OpenSSL packages\\nii pigz 2.8-1 amd64 Parallel Implementation of GZip\\nii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG\\nii pinentry-gnome3 1.2.1-3ubuntu5 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG\\nii pipewire:amd64 1.0.5-1ubuntu1 amd64 audio and video processing engine multimedia server\\nii pipewire-alsa:amd64 1.0.5-1ubuntu1 amd64 PipeWire ALSA plugin, for ALSA applications to output via PipeWire\\nii pipewire-audio 1.0.5-1ubuntu1 all recommended set of PipeWire packages for a standard audio desktop use\\nii pipewire-bin 1.0.5-1ubuntu1 amd64 PipeWire multimedia server - programs\\nrc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire\\nii pipewire-pulse 1.0.5-1ubuntu1 amd64 PipeWire PulseAudio daemon\\nii pkexec 124-2ubuntu1 amd64 run commands as another user with polkit authorization\\nii pkgconf:amd64 1.8.1-2build1 amd64 manage compile and link flags for libraries\\nii pkgconf-bin 1.8.1-2build1 amd64 manage compile and link flags for libraries (binaries)\\nii plymouth 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer\\nii plymouth-label 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - label control\\nii plymouth-theme-spinner 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - spinner theme\\nii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme\\nii policykit-1 124-2ubuntu1 amd64 transitional package for polkitd and pkexec\\nii policykit-desktop-privileges 0.22 all run common desktop actions without password\\nii polkitd 124-2ubuntu1 amd64 framework for managing administrative policies and privileges\\nii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library\\nii poppler-utils 24.02.0-1ubuntu9.1 amd64 PDF utilities (based on Poppler)\\nii power-profiles-daemon 0.21-1 amd64 Makes power profiles handling available over D-Bus.\\nii powermgmt-base 1.37 all common utils for power management\\nii powertop 2.15-3build1 amd64 diagnose issues with power consumption and management\\nii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon\\nii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client\\nii printer-driver-brlaser 6-3build2 amd64 printer driver for (some) Brother laser printers\\nii printer-driver-c2esp 27-11ubuntu7 amd64 printer driver for Kodak ESP AiO color inkjet Series\\nii printer-driver-foo2zjs 20200505dfsg0-2ubuntu6 amd64 printer driver for ZjStream-based printers\\nii printer-driver-foo2zjs-common 20200505dfsg0-2ubuntu6 all printer driver for ZjStream-based printers - common files\\nii printer-driver-hpcups 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)\\nii printer-driver-m2300w 0.51-15build2 amd64 printer driver for Minolta magicolor 2300W/2400W color laser printers\\nii printer-driver-min12xxw 0.0.9-11build3 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW\\nii printer-driver-pnm2ppa 1.13+nondbs-0ubuntu10 amd64 printer driver for HP-GDI printers\\nii printer-driver-postscript-hp 3.23.12+dfsg0-0ubuntu5 amd64 HP Printers PostScript Descriptions\\nii printer-driver-ptouch 1.7-1build2 amd64 printer driver Brother P-touch label printers\\nii printer-driver-pxljr 1.4+repack0-6build2 amd64 printer driver for HP Color LaserJet 35xx/36xx\\nii printer-driver-sag-gdi 0.1-8 all printer driver for Ricoh Aficio SP 1000s/SP 1100s\\nii printer-driver-splix 2.0.0+svn315-7fakesync1ubuntu1 amd64 Driver for Samsung and Xerox SPL2 and SPLc laser printers\\nii procps 2:4.0.4-4ubuntu3 amd64 /proc file system utilities\\nii psmisc 23.7-1build1 amd64 utilities that use the proc file system\\nii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes\\nrc pulseaudio 1:15.99.1+dfsg1-1ubuntu2.2 amd64 PulseAudio sound server\\nii python-apt-common 2.7.7ubuntu3 all Python interface to libapt-pkg (locales)\\nii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files\\nii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii python3-apport 2.28.1-0ubuntu3.1 all Python 3 library for Apport crash report handling\\nii python3-apt 2.7.7ubuntu3 amd64 Python 3 interface to libapt-pkg\\nii python3-aptdaemon 1.1.1+bzr982-0ubuntu44 all Python 3 module for the server and client of aptdaemon\\nii python3-aptdaemon.gtk3widgets 1.1.1+bzr982-0ubuntu44 all Python 3 GTK+ 3 widgets to run an aptdaemon client\\nii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)\\nii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x\\nii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)\\nii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)\\nii python3-brlapi:amd64 6.6-4ubuntu5 amd64 Braille display access via BRLTTY - Python3 bindings\\nii python3-cairo 1.25.1-2build2 amd64 Python3 bindings for the Cairo vector graphics library\\nii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)\\nii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime\\nii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)\\nii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x\\nii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x\\nii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.\\nii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3\\nii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)\\nii python3-cups:amd64 2.0.1-5build6 amd64 Python3 bindings for CUPS\\nii python3-cupshelpers 1.5.18-1ubuntu9 all Python utility modules around the CUPS printing system\\nii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module\\nii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)\\nii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3\\nii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats\\nii python3-defer 1.0.6-2.1ubuntu1 all Small framework for asynchronous programming (Python 3)\\nii python3-dev 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii python3-distro 1.9.0-1 all Linux OS platform information API\\nii python3-distro-info 1.7build1 all information about distributions\' releases (Python 3 module)\\nii python3-distupgrade 1:24.04.23 all manage release upgrades\\nii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x\\nii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries\\nii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3\\nii python3-ibus-1.0 1.5.29-2 all Intelligent Input Bus - introspection overrides for Python (Python 3)\\nii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)\\nii python3-importlib-metadata 4.12.0-1 all library to access the metadata for a Python package - Python 3.x\\nii python3-jinja2 3.1.2-1ubuntu1.1 all small but fast and easy to use stand-alone template engine\\nii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x\\nii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x\\nii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)\\nii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token\\nii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)\\nii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)\\nii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs\\nii python3-louis 3.29.0-1build1 all Python bindings for liblouis\\nii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins\\nii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library\\nii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package\\nii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)\\nii python3-more-itertools 10.2.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)\\nii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)\\nii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x\\nii python3-netplan 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration Python bindings\\nii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3\\nii python3-olefile 0.46-3 all Python module to read/write MS OLE2 files\\nii python3-packaging 24.0-1 all core utilities for python3 packages\\nii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications\\nii python3-pil:amd64 10.2.0-1ubuntu1 amd64 Python Imaging Library (Python3)\\nii python3-pip 24.0+dfsg-1ubuntu1 all Python package installer\\nii python3-pip-whl 24.0+dfsg-1ubuntu1 all Python package installer (pip wheel)\\nii python3-pkg-resources 68.1.2-2ubuntu1 all Package Discovery and Resource Access using pkg_resources\\nii python3-problem-report 2.28.1-0ubuntu3.1 all Python 3 library to handle problem reports\\nii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3\\nii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3\\nii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x\\nii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python\\nii python3-requests 2.31.0+dfsg-1ubuntu1 all elegant and simple HTTP library for Python3, built for human beings\\nii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more\\nii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port\\nii python3-setuptools 68.1.2-2ubuntu1 all Python3 Distutils Enhancements\\nii python3-setuptools-whl 68.1.2-2ubuntu1 all Python Distutils Enhancements (wheel package)\\nii python3-six 1.16.0-4 all Python 2 and 3 compatibility library\\nii python3-software-properties 0.99.48 all manage the repositories that you install software from\\nii python3-speechd 0.12.0~rc2-2build3 all Python interface to Speech Dispatcher\\nii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd\\nii python3-tz 2024.1-2 all Python3 version of the Olson timezone database\\nii python3-uno 4:24.2.5-0ubuntu0.24.04.2 amd64 Python-UNO bridge\\nii python3-update-manager 1:24.04.6 all Python 3.x module for update-manager\\nii python3-urllib3 2.0.7-1 all HTTP library with thread-safe connection pooling for Python3\\nii python3-venv 3.12.3-0ubuntu2 amd64 venv module for python3 (default python3 version)\\nii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files\\nii python3-wheel 0.42.0-2 all built-package format for Python\\nii python3-xdg 0.28-2 all Python 3 library to access freedesktop.org standards\\nii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)\\nii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3\\nii python3-zipp 1.0.0-6ubuntu0.1 all pathlib-compatible Zipfile object wrapper - Python 3.x\\nrc python3.10-venv 3.10.12-1~22.04.5 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.10)\\nii python3.12 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (version 3.12)\\nii python3.12-dev 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii python3.12-minimal 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii python3.12-venv 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.12)\\nii readline-common 8.2-4build1 all GNU readline and history libraries, common files\\nii rfkill 2.39.3-9ubuntu6.1 amd64 tool for enabling and disabling wireless devices\\nii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions\\nii rsync 3.2.7-1ubuntu1 amd64 fast, versatile, remote (and local) file-copying tool\\nii rsyslog 8.2312.0-3ubuntu9 amd64 reliable system and kernel logging daemon\\nii rtkit 0.13-5build1 amd64 Realtime Policy and Watchdog Daemon\\nii rygel 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services\\nii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba core libraries\\nii sane-airscan 0.99.29-0ubuntu4 amd64 SANE backend for AirScan (eSCL) and WSD document scanner\\nii sane-utils 1.2.1-7build4 amd64 API library for scanners -- utilities\\nii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers\\nii seahorse 43.0-3build2 amd64 GNOME front end for GnuPG\\nii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX\\nii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text\\nii sensible-utils 0.0.22 all Utilities for sensible alternative selection\\nii session-migration 0.3.9build1 amd64 Tool to migrate in user session settings\\nii sgml-base 1.31 all SGML infrastructure and SGML catalog file support\\nii sgml-data 2.0.11+nmu1 all common SGML and XML data\\nii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec\\nii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)\\nii slirp4netns 1.2.1-1build2 amd64 User-mode networking for unprivileged network namespaces\\nii snapd 2.63.1+24.04 amd64 Daemon and tooling that enable snap packages\\nii software-properties-common 0.99.48 all manage the repositories that you install software from (common)\\nii software-properties-gtk 0.99.48 all manage the repositories that you install software from (gtk)\\nii sound-icons 0.1-8 all Sounds for speech enabled applications\\nii sound-theme-freedesktop 0.8-2ubuntu1 all freedesktop.org sound theme\\nii speech-dispatcher 0.12.0~rc2-2build3 amd64 Common interface to speech synthesizers\\nii speech-dispatcher-audio-plugins:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Audio output plugins\\nii speech-dispatcher-espeak-ng 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Espeak-ng output module\\nii spice-vdagent 0.22.1-4build3 amd64 Spice agent for Linux\\nii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems\\nii ssh-import-id 5.11-0ubuntu2 all securely retrieve an SSH public key and install it locally\\nii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL\\nii strace 6.8-0ubuntu2 amd64 System call tracer\\nii stress-ng 0.17.06-1build1 amd64 tool to load and stress a computer\\nii sudo 1.9.15p5-3ubuntu5 amd64 Provide limited super user privileges to specific users\\nii switcheroo-control 2.6-2build2 amd64 D-Bus service to check the availability of dual-GPU\\nii sysbench 1.0.20+ds-6build2 amd64 multi-threaded benchmark tool for database systems\\nii sysbox-ce 0.6.4.linux amd64 Sysbox Community Edition (CE) is a next-generation container runtime,\\nii syslinux-common 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 all collection of bootloaders (common)\\nii sysstat 12.6.1-2 amd64 system performance tools for Linux\\nii system-config-printer-common 1.5.18-1ubuntu9 all backend and the translation files for system-config-printer\\nii system-config-printer-udev 1.5.18-1ubuntu9 amd64 Utilities to detect and configure printers automatically\\nii systemd 255.4-1ubuntu8.4 amd64 system and service manager\\nii systemd-dev 255.4-1ubuntu8.4 all systemd development files\\nii systemd-hwe-hwdb 255.1.3 all udev rules for hardware enablement (HWE)\\nii systemd-oomd 255.4-1ubuntu8.4 amd64 userspace out-of-memory (OOM) killer\\nii systemd-resolved 255.4-1ubuntu8.4 amd64 systemd DNS resolver\\nii systemd-sysv 255.4-1ubuntu8.4 amd64 system and service manager - SysV compatibility symlinks\\nii systemd-timesyncd 255.4-1ubuntu8.4 amd64 minimalistic service to synchronize local time with NTP servers\\nii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities\\nii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility\\nii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell\\nii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell\\nii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer\\nii tecla 46.0-1build1 amd64 keyboard layout viewer for the GNOME desktop\\nii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch\\nii thermald 2.5.6-2build2 amd64 Thermal monitoring and controlling daemon\\nii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage\\nii tinyproxy 1.11.1-3 all Lightweight, non-caching, optionally anonymizing HTTP proxy\\nii tinyproxy-bin 1.11.1-3 amd64 Lightweight, non-caching, optionally anonymizing HTTP proxy (executable only)\\nii tnftp 20230507-2build3 amd64 enhanced ftp client\\nii tpm-udev 0.6ubuntu1 all udev rules for TPM modules\\nii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel\\nii tracker 3.7.1-1build1 amd64 metadata database, indexer and search tool\\nii tracker-extract 3.7.1-1build1 amd64 metadata database, indexer and search tool - metadata extractors\\nii tracker-miner-fs 3.7.1-1build1 amd64 metadata database, indexer and search tool - filesystem indexer\\nii tzdata 2024a-3ubuntu1.1 all time zone and daylight-saving time data\\nii ubuntu-advantage-desktop-daemon 1.11 amd64 Daemon to allow access to ubuntu-advantage via D-Bus\\nii ubuntu-desktop 1.539.1 amd64 Ubuntu desktop system\\nii ubuntu-desktop-minimal 1.539.1 amd64 Ubuntu desktop minimal system\\nii ubuntu-docs 24.04.2 all Ubuntu Desktop Guide\\nii ubuntu-drivers-common 1:0.9.7.6ubuntu3.1 amd64 Detect and install additional Ubuntu driver packages\\nii ubuntu-kernel-accessories 1.539.1 amd64 packages useful to install by default on systems with kernels\\nii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive\\nii ubuntu-minimal 1.539.1 amd64 Minimal core of Ubuntu\\nii ubuntu-mono 24.04-0ubuntu1 all Ubuntu Mono Icon theme\\nii ubuntu-pro-client 33.2~24.04.1 amd64 Management tools for Ubuntu Pro\\nii ubuntu-pro-client-l10n 33.2~24.04.1 amd64 Translations for Ubuntu Pro Client\\nii ubuntu-release-upgrader-core 1:24.04.23 all manage release upgrades\\nii ubuntu-release-upgrader-gtk 1:24.04.23 all manage release upgrades\\nii ubuntu-report 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics\\nii ubuntu-session 46.0-1ubuntu4 all Ubuntu session with GNOME Shell\\nii ubuntu-settings 24.04.4 all default settings for the Ubuntu desktop\\nii ubuntu-standard 1.539.1 amd64 Ubuntu standard system\\nii ubuntu-wallpapers 24.04.2 all Ubuntu Wallpapers\\nii ubuntu-wallpapers-noble 24.04.2 all Ubuntu 24.04 Wallpapers\\nii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files\\nii udev 255.4-1ubuntu8.4 amd64 /dev/ and hotplug management daemon\\nii udisks2 2.10.1-6build1 amd64 D-Bus service to access and manipulate storage devices\\nii ufw 0.36.2-6 all program for managing a Netfilter firewall\\nii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades\\nii unifi 8.1.127-25320-1 all Ubiquiti UniFi server\\nii uno-libs-private 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- private libraries used by public ones\\nii unzip 6.0-28ubuntu4 amd64 De-archiver for .zip files\\nii update-inetd 4.53 all inetd configuration file updater\\nii update-manager 1:24.04.6 all GNOME application that manages apt updates\\nii update-manager-core 1:24.04.6 all manage release upgrades\\nii update-notifier 3.192.68build3 amd64 Daemon which notifies about package updates\\nii update-notifier-common 3.192.68build3 all Files shared between update-notifier and other packages\\nii upower 1.90.3-1 amd64 abstraction for power management\\nii ure 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment\\nii usb-creator-common 0.3.17 all create a startup disk using a CD or disc image (common files)\\nii usb-creator-gtk 0.3.17 all create a startup disk using a CD or disc image (for GNOME)\\nii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling \\"flip flop\\" USB devices\\nii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch\\nii usb.ids 2024.03.18-1 all USB ID Repository\\nii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices\\nii usbutils 1:017-3build1 amd64 Linux USB utilities\\nii util-linux 2.39.3-9ubuntu6.1 amd64 miscellaneous system utilities\\nii uuid-dev:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library - headers and static libraries\\nii uuid-runtime 2.39.3-9ubuntu6.1 amd64 runtime components for the Universally Unique ID library\\nii vim-common 2:9.1.0016-1ubuntu7.2 all Vi IMproved - Common files\\nii vim-tiny 2:9.1.0016-1ubuntu7.2 amd64 Vi IMproved - enhanced vi editor - compact version\\nii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict\\nii wbritish 2020.12.07-2 all British English dictionary words for /usr/share/dict\\nii webp-pixbuf-loader:amd64 0.2.4-2build2 amd64 WebP Image format GdkPixbuf loader\\nii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web\\nii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts\\nii whoopsie 0.2.77build3 amd64 Ubuntu error tracker submission\\nii whoopsie-preferences 23build3 amd64 System preferences for error reporting\\nii wireless-regdb 2022.06.06-0ubuntu2 all wireless regulatory database\\nii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions\\nii wireplumber 0.4.17-1ubuntu4 amd64 modular session / policy manager for PipeWire\\nii wngerman 20161207-12 all New German orthography wordlist\\nii wogerman 1:2-39 all Traditional German wordlist\\nii wpasupplicant 2:2.10-21ubuntu0.1 amd64 client support for WPA and WPA2 (IEEE 802.11i)\\nii wswiss 20161207-12 all Swiss (German) orthography wordlist\\nii x11-apps 7.7+11build3 amd64 X applications\\nii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure\\nii x11-session-utils 7.7+6build2 amd64 X session utilities\\nii x11-utils 7.7+6build2 amd64 X11 utilities\\nii x11-xkb-utils 7.7+8build2 amd64 X11 XKB utilities\\nii x11-xserver-utils 7.7+10build2 amd64 X server utilities\\nii xauth 1:1.1.2-1build1 amd64 X authentication utility\\nii xbitmaps 1.1.1-2.2 all Base X bitmaps\\nii xbrlapi 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display - xbrlapi\\nii xcursor-themes 1.0.6-0ubuntu1 all Base X cursor themes\\nii xcvt 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator\\nii xdg-dbus-proxy 0.1.5-1build2 amd64 filtering D-Bus proxy\\nii xdg-desktop-portal 1.18.4-1ubuntu2 amd64 desktop integration portal for Flatpak and Snap\\nii xdg-desktop-portal-gnome 46.2-0ubuntu1 amd64 GNOME portal backend for xdg-desktop-portal\\nii xdg-desktop-portal-gtk 1.15.1-1build2 amd64 GTK+/GNOME portal backend for xdg-desktop-portal\\nii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories\\nii xdg-user-dirs-gtk 0.11-1build2 amd64 tool to manage well known user directories (Gtk extension)\\nii xdg-utils 1.1.3-4.1ubuntu3 all desktop integration utilities from freedesktop.org\\nii xfonts-base 1:1.0.5+nmu1 all standard fonts for X\\nii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts\\nii xfonts-scalable 1:1.0.3-1.3 all scalable fonts for X\\nii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs\\nii xinit 1.4.1-0ubuntu5 amd64 X server initialisation tool\\nii xinput 1.6.4-1build1 amd64 Runtime configuration and test of XInput devices\\nii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data\\nii xml-core 0.19 all XML infrastructure and XML catalog file support\\nii xorg 1:7.7+23ubuntu3 amd64 X.Org X Window System\\nii xorg-docs-core 1:1.7.1-1.2 all Core documentation for the X.org X Window System\\nii xorriso 1:1.5.6-1.1ubuntu3 amd64 command line ISO-9660 and Rock Ridge manipulation tool\\nii xserver-common 2:21.1.12-1ubuntu1 all common files used by various X servers\\nii xserver-xephyr 2:21.1.12-1ubuntu1 amd64 nested X server\\nii xserver-xorg 1:7.7+23ubuntu3 amd64 X.Org X server\\nii xserver-xorg-core 2:21.1.12-1ubuntu1 amd64 Xorg X server - core server\\nii xserver-xorg-input-all 1:7.7+23ubuntu3 amd64 X.Org X server -- input driver metapackage\\nii xserver-xorg-input-libinput 1.4.0-1build1 amd64 X.Org X server -- libinput input driver\\nii xserver-xorg-input-wacom 1:1.2.0-1ubuntu2 amd64 X.Org X server -- Wacom input driver\\nii xserver-xorg-legacy 2:21.1.12-1ubuntu1 amd64 setuid root Xorg server wrapper\\nii xserver-xorg-video-all 1:7.7+23ubuntu3 amd64 X.Org X server -- output driver metapackage\\nii xserver-xorg-video-amdgpu 23.0.0-1build1 amd64 X.Org X server -- AMDGPU display driver\\nii xserver-xorg-video-ati 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI display driver wrapper\\nii xserver-xorg-video-fbdev 1:0.5.0-2build2 amd64 X.Org X server -- fbdev display driver\\nii xserver-xorg-video-intel 2:2.99.917+git20210115-1build1 amd64 X.Org X server -- Intel i8xx, i9xx display driver\\nii xserver-xorg-video-nouveau 1:1.0.17-2build1 amd64 X.Org X server -- Nouveau display driver\\nii xserver-xorg-video-qxl 0.1.6-1build1 amd64 X.Org X server -- QXL display driver\\nii xserver-xorg-video-radeon 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI Radeon display driver\\nii xserver-xorg-video-vesa 1:2.6.0-1 amd64 X.Org X server -- VESA display driver\\nii xserver-xorg-video-vmware 1:13.4.0-1build1 amd64 X.Org X server -- VMware display driver\\nii xwayland 2:23.2.6-1 amd64 X server for running X clients under Wayland\\nii xxd 2:9.1.0016-1ubuntu7.2 amd64 tool to make (or reverse) a hex dump\\nii xz-utils 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression utilities\\nii yaru-theme-gnome-shell 24.04.2-0ubuntu1 all Yaru GNOME Shell desktop theme from the Ubuntu Community\\nii yaru-theme-gtk 24.04.2-0ubuntu1 all Yaru GTK theme from the Ubuntu Community\\nii yaru-theme-icon 24.04.2-0ubuntu1 all Yaru icon theme from the Ubuntu Community\\nii yaru-theme-sound 24.04.2-0ubuntu1 all Yaru sound theme from the Ubuntu Community\\nii yelp 42.2-1build2 amd64 Help browser for GNOME\\nii yelp-xsl 42.1-2 all XSL stylesheets for the yelp help browser\\nii zenity 4.0.1-1build3 amd64 Display graphical dialog boxes from shell scripts\\nii zenity-common 4.0.1-1build3 all Display graphical dialog boxes from shell scripts (common files)\\nii zip 3.0-13build1 amd64 Archiver for .zip files\\nii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime\\nii zlib1g-dev:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - development\\nii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool\\n", "Turbo Boost (Legacy non intel_pstate)": "File not found"}',E'{"uri": "/home/arne/Sites/green-coding/example-applications/", "uri_type": "folder", "name": "Stress Test #1", "filename": "stress/usage_scenario.yml", "branch": null, "debug_mode": false, "allow_unsafe": false, "skip_system_checks": false, "skip_unsafe": true, "verbose_provider_boot": false, "full_docker_prune": false, "dev_no_sleeps": false, "dev_no_build": true, "dev_no_metrics": false, "dev_flow_timetravel": false, "dev_no_optimizations": false, "docker_prune": false, "job_id": null}',1,E'64134395e83e6e57cf6247a2b0ec11b562d1fa95',E'{"sci": {"I": 436, "EL": 4, "RS": 1, "TE": 181000}, "measurement": {"boot": {"wait_time_dependencies": 60}, "idle-duration": 5, "pre-test-sleep": 5, "total-duration": 3600, "post-test-sleep": 5, "metric-providers": {"linux": {"network.io.cgroup.container.provider.NetworkIoCgroupContainerProvider": {"resolution": 99}, "cpu.energy.rapl.msr.component.provider.CpuEnergyRaplMsrComponentProvider": {"resolution": 99}, "cpu.utilization.procfs.system.provider.CpuUtilizationProcfsSystemProvider": {"resolution": 99}, "memory.total.cgroup.container.provider.MemoryTotalCgroupContainerProvider": {"resolution": 99}, "psu.energy.dc.rapl.msr.machine.provider.PsuEnergyDcRaplMsrMachineProvider": {"resolution": 99}, "cpu.utilization.cgroup.container.provider.CpuUtilizationCgroupContainerProvider": {"resolution": 99}}, "macos": {"powermetrics.provider.PowermetricsProvider": {"resolution": 99}, "cpu.utilization.mach.system.provider.CpuUtilizationMachSystemProvider": {"resolution": 99}}, "common": {"network.connections.proxy.container.provider.NetworkConnectionsProxyContainerProvider": null}}, "baseline-duration": 5, "flow-process-duration": 1800, "phase-transition-time": 1, "system_check_threshold": 3}}',1726159383800734,1726159408350943,E'[{"start": 1726159384801197, "name": "[BASELINE]", "end": 1726159389801798}, {"start": 1726159390802634, "name": "[INSTALLATION]", "end": 1726159390820174}, {"start": 1726159391820339, "name": "[BOOT]", "end": 1726159392134384}, {"start": 1726159395144879, "name": "[IDLE]", "end": 1726159400145654}, {"start": 1726159401146215, "name": "[RUNTIME]", "end": 1726159406350123}, {"start": 1726159401147192, "name": "Stress", "end": 1726159406350081}, {"start": 1726159407350245, "name": "[REMOVE]", "end": 1726159408350827}]',NULL,NULL,FALSE,E'2024-09-11 16:42:53.208695+00',E'2024-09-12 16:43:33.365064+00', 1), +(E'f6167993-260e-41db-ab72-d9c3832f211d',NULL,E'Stress Test #2',E'/home/arne/Sites/green-coding/example-applications/',E'main',E'58c7a5002c684f41f8d7a355f3ede641d8e45ddc',E'2024-07-10 13:48:46+00',E'manual',NULL,E'{"name": "Stress Container One Core 5 Seconds", "author": "Arne Tarara <arne@green-coding.berlin>", "description": "A simple 5 seconds stress on the system with one core. Expected display result is a rectangle shaped load.", "flow": [{"name": "Stress", "container": "gcb-alpine-stress", "commands": [{"type": "console", "command": "stress-ng -c 1 -t 5 -q", "note": "Starting Stress"}]}], "version": "2", "services": {"gcb-alpine-stress": {"container_name": "gcb-alpine-stress", "image": "gcb_alpine_stress", "build": "."}}}',E'stress/usage_scenario.yml',E'{"SGX": "This CPU does not support Intel SGX", "Uptime": " 18:43:52 up 7 min, 3 users, load average: 1.16, 0.76, 0.41", "Cpu Info": "11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz", "Platform": "Linux", "Processes": "USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\\nroot 1 0.8 0.0 23440 14188 ? Ss 18:36 0:03 /sbin/init splash\\nroot 2 0.0 0.0 0 0 ? S 18:36 0:00 [kthreadd]\\nroot 3 0.0 0.0 0 0 ? S 18:36 0:00 [pool_workqueue_release]\\nroot 4 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_g]\\nroot 5 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_p]\\nroot 6 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-slub_]\\nroot 7 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-netns]\\nroot 8 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:0-events]\\nroot 9 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:0H-events_highpri]\\nroot 10 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:1-events]\\nroot 12 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mm_pe]\\nroot 13 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_kthread]\\nroot 14 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_rude_kthread]\\nroot 15 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_trace_kthread]\\nroot 16 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/0]\\nroot 17 0.1 0.0 0 0 ? I 18:36 0:00 [rcu_preempt]\\nroot 18 0.0 0.0 0 0 ? S 18:36 0:00 [migration/0]\\nroot 19 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/0]\\nroot 20 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/0]\\nroot 21 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/1]\\nroot 22 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/1]\\nroot 23 0.0 0.0 0 0 ? S 18:36 0:00 [migration/1]\\nroot 24 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/1]\\nroot 26 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:0H-events_highpri]\\nroot 27 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/2]\\nroot 28 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/2]\\nroot 29 0.0 0.0 0 0 ? S 18:36 0:00 [migration/2]\\nroot 30 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/2]\\nroot 31 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:0-pm]\\nroot 32 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:0H-events_highpri]\\nroot 33 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/3]\\nroot 34 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/3]\\nroot 35 0.0 0.0 0 0 ? S 18:36 0:00 [migration/3]\\nroot 36 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/3]\\nroot 37 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:0-events]\\nroot 38 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:0H-events_highpri]\\nroot 39 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/4]\\nroot 40 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/4]\\nroot 41 0.0 0.0 0 0 ? S 18:36 0:00 [migration/4]\\nroot 42 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/4]\\nroot 43 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:0-mm_percpu_wq]\\nroot 44 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:0H-events_highpri]\\nroot 45 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/5]\\nroot 46 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/5]\\nroot 47 0.0 0.0 0 0 ? S 18:36 0:00 [migration/5]\\nroot 48 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/5]\\nroot 49 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:0-events]\\nroot 50 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:0H-events_highpri]\\nroot 51 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/6]\\nroot 52 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/6]\\nroot 53 0.0 0.0 0 0 ? S 18:36 0:00 [migration/6]\\nroot 54 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/6]\\nroot 56 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:0H-kblockd]\\nroot 57 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/7]\\nroot 58 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/7]\\nroot 59 0.0 0.0 0 0 ? S 18:36 0:00 [migration/7]\\nroot 60 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/7]\\nroot 62 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:0H-kblockd]\\nroot 63 0.0 0.0 0 0 ? S 18:36 0:00 [kdevtmpfs]\\nroot 64 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-inet_]\\nroot 65 0.0 0.0 0 0 ? S 18:36 0:00 [kauditd]\\nroot 67 0.0 0.0 0 0 ? S 18:36 0:00 [khungtaskd]\\nroot 68 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:2-flush-259:0]\\nroot 69 0.0 0.0 0 0 ? S 18:36 0:00 [oom_reaper]\\nroot 70 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-write]\\nroot 71 0.0 0.0 0 0 ? S 18:36 0:00 [kcompactd0]\\nroot 72 0.0 0.0 0 0 ? SN 18:36 0:00 [ksmd]\\nroot 73 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:1-pm]\\nroot 74 0.0 0.0 0 0 ? SN 18:36 0:00 [khugepaged]\\nroot 75 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kinte]\\nroot 76 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kbloc]\\nroot 77 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-blkcg]\\nroot 79 0.0 0.0 0 0 ? S 18:36 0:00 [irq/9-acpi]\\nroot 80 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:1-events]\\nroot 81 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:1-events]\\nroot 82 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tpm_d]\\nroot 83 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ata_s]\\nroot 84 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md]\\nroot 85 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md_bi]\\nroot 86 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-edac-]\\nroot 87 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-devfr]\\nroot 88 0.0 0.0 0 0 ? S 18:36 0:00 [watchdogd]\\nroot 89 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:1-rcu_gp]\\nroot 90 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:1H-kblockd]\\nroot 91 0.0 0.0 0 0 ? S 18:36 0:00 [kswapd0]\\nroot 92 0.0 0.0 0 0 ? S 18:36 0:00 [ecryptfs-kthread]\\nroot 93 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kthro]\\nroot 94 0.0 0.0 0 0 ? S 18:36 0:00 [irq/127-pciehp]\\nroot 95 0.0 0.0 0 0 ? S 18:36 0:00 [irq/128-pciehp]\\nroot 96 0.0 0.0 0 0 ? S 18:36 0:00 [irq/129-pciehp]\\nroot 97 0.0 0.0 0 0 ? S 18:36 0:00 [irq/130-pciehp]\\nroot 98 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:1-events]\\nroot 99 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:1-events]\\nroot 100 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-acpi_]\\nroot 101 0.0 0.0 0 0 ? S 18:36 0:00 [hwrng]\\nroot 102 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:2-events]\\nroot 103 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mld]\\nroot 104 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:1H]\\nroot 105 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipv6_]\\nroot 112 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kstrp]\\nroot 114 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:0-hci0]\\nroot 128 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-charg]\\nroot 129 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:3-events]\\nroot 153 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:1H-kblockd]\\nroot 157 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:1H-kblockd]\\nroot 185 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:1H-kblockd]\\nroot 186 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:1H]\\nroot 194 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:1H-kblockd]\\nroot 195 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:1H-kblockd]\\nroot 196 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:2-rcu_gp]\\nroot 217 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:2-pm]\\nroot 218 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 219 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 220 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 221 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 223 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:3-events]\\nroot 224 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:2-pm]\\nroot 225 0.0 0.0 0 0 ? S 18:36 0:00 [irq/173-FRMW0001:00]\\nroot 226 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:2-events]\\nroot 227 0.0 0.0 0 0 ? S 18:36 0:00 [irq/174-PIXA3854:00]\\nroot 264 0.0 0.0 0 0 ? S 18:36 0:00 [jbd2/nvme0n1p5-8]\\nroot 265 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ext4-]\\nroot 315 0.1 0.0 67096 17564 ? S<s 18:36 0:00 /usr/lib/systemd/systemd-journald\\nroot 349 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:4-events]\\nroot 351 0.2 0.0 30832 8576 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-udevd\\nroot 395 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 423 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:5-flush-259:0]\\nroot 449 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:6-flush-259:0]\\nroot 450 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:7-events_power_efficient]\\nroot 451 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:8-flush-259:0]\\nroot 452 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:9-events_unbound]\\nroot 468 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:2-events]\\nroot 514 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cfg80]\\nroot 520 0.0 0.0 0 0 ? S 18:36 0:00 [irq/191-mei_me]\\nroot 531 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-crypt]\\nroot 534 0.3 0.0 0 0 ? S 18:36 0:01 [irq/192-iwlwifi:default_queue]\\nroot 535 0.0 0.0 0 0 ? S 18:36 0:00 [irq/193-iwlwifi:queue_1]\\nroot 536 0.0 0.0 0 0 ? S 18:36 0:00 [irq/194-iwlwifi:queue_2]\\nroot 538 0.6 0.0 0 0 ? S 18:36 0:03 [irq/195-iwlwifi:queue_3]\\nroot 539 0.0 0.0 0 0 ? S 18:36 0:00 [irq/196-iwlwifi:queue_4]\\nroot 540 0.0 0.0 0 0 ? S 18:36 0:00 [irq/197-iwlwifi:queue_5]\\nroot 541 0.0 0.0 0 0 ? S 18:36 0:00 [irq/198-iwlwifi:queue_6]\\nroot 542 0.0 0.0 0 0 ? S 18:36 0:00 [irq/199-iwlwifi:queue_7]\\nroot 543 0.0 0.0 0 0 ? S 18:36 0:00 [irq/200-iwlwifi:queue_8]\\nroot 544 0.0 0.0 0 0 ? S 18:36 0:00 [irq/201-iwlwifi:exception]\\nroot 576 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ttm]\\nroot 583 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cros_]\\nroot 586 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc0]\\nroot 587 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc1]\\nroot 588 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc2]\\nroot 589 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc3]\\nroot 640 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:3-events]\\nsystemd+ 660 0.1 0.0 17728 7680 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-oomd\\nsystemd+ 665 0.1 0.0 21584 12800 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-resolved\\nsystemd+ 671 0.0 0.0 91044 7680 ? Ssl 18:36 0:00 /usr/lib/systemd/systemd-timesyncd\\nroot 754 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:3-cgroup_destroy]\\nroot 785 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:3-hci0]\\nroot 790 0.0 0.0 314260 8124 ? Ssl 18:36 0:00 /usr/libexec/accounts-daemon\\navahi 793 0.1 0.0 8780 3840 ? Ss 18:36 0:00 avahi-daemon: running [framebook.local]\\nroot 794 0.0 0.0 13684 6528 ? Ss 18:36 0:00 /usr/libexec/bluetooth/bluetoothd\\nroot 795 0.0 0.0 9804 2816 ? Ss 18:36 0:00 /usr/sbin/cron -f -P\\nmessage+ 796 0.7 0.0 11992 6528 ? Ss 18:36 0:03 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngnome-r+ 800 0.0 0.0 439064 16176 ? Ssl 18:36 0:00 /usr/libexec/gnome-remote-desktop-daemon --system\\nroot 804 0.1 0.0 314320 7808 ? Ssl 18:36 0:00 /usr/libexec/iio-sensor-proxy\\npolkitd 812 0.1 0.0 384348 10120 ? Ssl 18:36 0:00 /usr/lib/polkit-1/polkitd --no-debug\\nroot 815 0.0 0.0 314180 7856 ? Ssl 18:36 0:00 /usr/libexec/power-profiles-daemon\\nroot 831 0.3 0.1 2287584 35108 ? Ssl 18:36 0:01 /usr/lib/snapd/snapd\\nroot 836 0.0 0.0 310432 6912 ? Ssl 18:36 0:00 /usr/libexec/switcheroo-control\\nroot 838 0.8 0.0 725084 13012 ? Ssl 18:36 0:03 /usr/bin/sysbox-mgr\\nroot 842 0.3 0.0 18136 9220 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-logind\\nroot 844 0.1 0.0 425420 10368 ? Ssl 18:36 0:00 /usr/sbin/thermald --systemd --dbus-enable --adaptive\\nroot 845 0.0 0.0 469148 13116 ? Ssl 18:36 0:00 /usr/libexec/udisks2/udisksd\\navahi 893 0.0 0.0 8420 1284 ? S 18:36 0:00 avahi-daemon: chroot helper\\nroot 898 0.3 0.0 338968 21172 ? Ssl 18:36 0:01 /usr/sbin/NetworkManager --no-daemon\\nroot 901 0.0 0.0 18400 11264 ? Ss 18:36 0:00 /usr/sbin/wpa_supplicant -u -s -O DIR=/run/wpa_supplicant GROUP=netdev\\nroot 913 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipmi-]\\nsyslog 919 0.0 0.0 222508 6016 ? Ssl 18:36 0:00 /usr/sbin/rsyslogd -n -iNONE\\nroot 971 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:3-pm]\\nroot 1073 0.0 0.0 392104 12664 ? Ssl 18:36 0:00 /usr/sbin/ModemManager\\nroot 1085 0.0 0.0 314184 8224 ? Ssl 18:36 0:00 /usr/libexec/boltd\\nroot 1086 0.0 0.0 317632 9472 ? Ssl 18:36 0:00 /usr/libexec/upowerd\\nroot 1113 0.0 0.0 1166524 11008 ? Ssl 18:36 0:00 /usr/bin/sysbox-fs\\nroot 1121 0.0 0.0 2800 1664 ? Ss 18:36 0:00 /bin/sh -c /usr/bin/sysbox-runc --version && /usr/bin/sysbox-mgr --version && /usr/bin/sysbox-fs --version && /bin/sleep infinity\\nroot 1149 0.0 0.0 9076 2176 ? S 18:36 0:00 /bin/sleep infinity\\nroot 1430 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 1439 0.0 0.0 38488 11392 ? Ss 18:36 0:00 /usr/sbin/cupsd -l\\nroot 1447 0.3 0.1 2249812 63008 ? Ssl 18:36 0:01 /usr/bin/containerd\\nroot 1469 0.0 0.0 315384 9472 ? Ssl 18:36 0:00 /usr/sbin/gdm3\\nroot 1492 0.0 0.0 242664 9856 ? Sl 18:36 0:00 gdm-session-worker [pam/gdm-launch-environment]\\ngdm 1499 0.3 0.0 20988 11904 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\ngdm 1500 0.0 0.0 21400 3600 ? S 18:36 0:00 (sd-pam)\\ngdm 1512 0.0 0.0 114056 12032 ? S<sl 18:36 0:00 /usr/bin/pipewire\\ngdm 1513 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\ngdm 1515 0.0 0.0 407672 18944 ? S<sl 18:36 0:00 /usr/bin/wireplumber\\ngdm 1516 0.0 0.0 110484 11008 ? S<sl 18:36 0:00 /usr/bin/pipewire-pulse\\ngdm 1517 0.0 0.0 236396 6272 tty1 Ssl+ 18:36 0:00 /usr/libexec/gdm-wayland-session dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\ngdm 1525 0.0 0.0 9420 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngdm 1533 0.0 0.0 6500 2432 tty1 S+ 18:36 0:00 dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\nrtkit 1535 0.0 0.0 22940 3456 ? SNsl 18:36 0:00 /usr/libexec/rtkit-daemon\\ngdm 1537 0.0 0.0 9856 5120 tty1 S+ 18:36 0:00 dbus-daemon --nofork --print-address 4 --session\\ngdm 1546 0.0 0.0 521532 18048 tty1 Sl+ 18:36 0:00 /usr/libexec/gnome-session-binary --autostart /usr/share/gdm/greeter/autostart\\ngdm 1548 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\ngdm 1557 0.0 0.0 310008 6400 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 1564 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/128/doc\\ngdm 1590 2.5 0.6 4424672 205668 tty1 Sl+ 18:36 0:11 /usr/bin/gnome-shell\\nroot 1621 0.0 0.0 0 0 ? S< 18:36 0:00 [krfcommd]\\ncups-br+ 1656 0.0 0.0 268504 19840 ? Ssl 18:36 0:00 /usr/sbin/cups-browsed\\nroot 1657 0.4 0.2 3317612 95268 ? Ssl 18:36 0:02 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock\\nkernoops 1659 0.0 0.0 12744 2184 ? Ss 18:36 0:00 /usr/sbin/kerneloops --test\\nkernoops 1662 0.0 0.0 12744 2188 ? Ss 18:36 0:00 /usr/sbin/kerneloops\\nroot 1702 0.0 0.0 12020 8064 ? Ss 18:36 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups\\nroot 2398 0.0 0.0 1238168 13672 ? Sl 18:36 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928 -address /run/containerd/containerd.sock\\nroot 2511 0.0 0.0 1136 512 ? Ss 18:36 0:00 /sbin/docker-init -- buildkitd --allow-insecure-entitlement=network.host\\nroot 2717 0.0 0.1 1271012 34000 ? Sl 18:36 0:00 buildkitd --allow-insecure-entitlement=network.host\\nroot 2728 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:3-inet_frag_wq]\\nroot 2863 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tls-s]\\nroot 2998 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:4-pm]\\nroot 2999 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:5-kacpi_notify]\\nroot 3000 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:6-pm]\\nroot 3001 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:7-kacpi_notify]\\ngdm 3022 0.0 0.0 383120 7680 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi-bus-launcher\\ngdm 3028 0.0 0.0 9420 4992 tty1 S+ 18:36 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/128/at-spi/bus\\ngdm 3030 0.0 0.2 529220 73856 tty1 Sl+ 18:36 0:00 /usr/bin/Xwayland :1024 -rootless -noreset -accessx -core -auth /run/user/128/.mutter-Xwaylandauth.4R00T2 -listenfd 4 -listenfd 5 -displayfd 6 -initfd 7 -byteswappedclients\\ngdm 3034 0.0 0.0 236068 7296 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session\\ncolord 3035 0.0 0.0 320904 14776 ? Ssl 18:36 0:00 /usr/libexec/colord\\ngdm 3069 0.0 0.0 310008 6400 tty1 Sl+ 18:36 0:00 /usr/libexec/xdg-permission-store\\ngdm 3078 0.0 0.0 2663384 26852 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.Shell.Notifications\\ngdm 3080 0.0 0.0 544408 13440 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sharing\\ngdm 3091 0.0 0.0 487204 19200 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-wacom\\ngdm 3095 0.0 0.0 414336 19904 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-color\\ngdm 3100 0.0 0.0 412624 19204 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-keyboard\\ngdm 3109 0.0 0.0 324188 11520 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-print-notifications\\ngdm 3114 0.0 0.0 458120 7040 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-rfkill\\ngdm 3119 0.0 0.0 386768 8192 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-smartcard\\ngdm 3129 0.0 0.0 432620 12416 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-datetime\\ngdm 3146 0.0 0.0 595396 24488 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-media-keys\\ngdm 3149 0.0 0.0 310116 6528 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-screensaver-proxy\\ngdm 3155 0.0 0.0 394584 9984 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sound\\ngdm 3163 0.0 0.0 384468 6912 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-a11y-settings\\ngdm 3169 0.0 0.0 459824 8320 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-housekeeping\\ngdm 3172 0.1 0.0 524880 23336 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-power\\ngdm 3290 0.0 0.0 416764 15232 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-printer\\ngdm 3333 0.0 0.0 2794456 27380 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.ScreenSaver\\ngdm 3345 0.0 0.2 992124 77664 tty1 Sl+ 18:36 0:00 /usr/libexec/mutter-x11-frames\\ngdm 3346 0.0 0.0 389372 12224 tty1 Sl 18:36 0:00 ibus-daemon --panel disable -r --xim\\ngdm 3360 0.0 0.0 311020 7296 tty1 Sl 18:36 0:00 /usr/libexec/ibus-dconf\\ngdm 3362 0.0 0.2 610420 66612 tty1 Sl 18:36 0:00 /usr/libexec/ibus-x11 --kill-daemon\\ngdm 3364 0.0 0.0 310984 7424 tty1 Sl+ 18:36 0:00 /usr/libexec/ibus-portal\\ngdm 3378 0.0 0.0 237196 7424 tty1 Sl 18:36 0:00 /usr/libexec/ibus-engine-simple\\nroot 3437 0.0 0.0 15116 8048 ? Ss 18:36 0:00 sshd: arne [priv]\\narne 3449 0.1 0.0 21024 12288 ? Ss 18:36 0:00 /usr/lib/systemd/systemd --user\\narne 3453 0.0 0.0 21396 3596 ? S 18:36 0:00 (sd-pam)\\narne 3464 0.0 0.0 109524 8576 ? Ssl 18:36 0:00 /usr/bin/pipewire\\narne 3465 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\narne 3468 0.0 0.0 39000 11776 ? Ss 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3472 0.0 0.0 405708 16000 ? Ssl 18:36 0:00 /usr/bin/wireplumber\\narne 3475 0.0 0.0 109904 10496 ? Ssl 18:36 0:00 /usr/bin/pipewire-pulse\\narne 3501 0.0 0.0 9444 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\narne 3542 0.0 0.0 15276 7108 ? S 18:36 0:00 sshd: arne@pts/0\\narne 3544 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\narne 3549 0.0 0.0 309864 6272 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 3556 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc\\narne 3594 0.0 0.0 353012 21644 ? Sl 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3599 0.0 0.0 11980 5632 pts/0 Ss 18:36 0:00 -bash\\nroot 3669 0.0 0.0 15116 8176 ? Ss 18:37 0:00 sshd: arne [priv]\\narne 3711 0.8 0.0 15276 7108 ? S 18:37 0:03 sshd: arne@pts/1\\narne 3712 0.0 0.0 11980 5632 pts/1 Ss 18:37 0:00 -bash\\nroot 3755 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/7:3-cgroup_destroy]\\nroot 3759 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:8-kacpi_notify]\\nroot 3760 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:9-kacpi_notify]\\nroot 3801 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:10-kacpi_notify]\\nroot 3834 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:11-kacpi_notify]\\nroot 3835 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:12-pm]\\nroot 3878 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:13-kacpi_notify]\\nroot 3879 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:14-events]\\nroot 3880 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:15-kacpi_notify]\\nroot 4401 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:5-pm]\\nroot 4402 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:6]\\nroot 4403 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/3:4]\\ngdm 4742 0.0 0.0 317072 9856 ? Ssl 18:40 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/128/keyring\\nroot 4828 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/4:3-events]\\nroot 4875 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/0:16-pm]\\nroot 4983 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/6:0-cgroup_destroy]\\nroot 5020 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:0-events]\\nroot 5028 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/7:0]\\narne 5100 0.1 0.0 2068224 25984 pts/0 Sl+ 18:42 0:00 docker compose up\\narne 5122 0.1 0.1 2169824 45824 pts/0 Sl+ 18:42 0:00 /usr/libexec/docker/cli-plugins/docker-compose compose up\\nroot 5207 0.0 0.0 1745288 4352 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5214 0.0 0.0 1745032 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5235 0.0 0.0 1238168 13400 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45 -address /run/containerd/containerd.sock\\nroot 5262 0.0 0.0 1237912 13052 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2 -address /run/containerd/containerd.sock\\n999 5282 2.8 0.0 37240 8448 ? Ssl 18:42 0:01 redis-server *:6379\\n999 5289 0.0 0.0 219720 29824 ? Ss 18:42 0:00 postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key -c work_mem=16MB -p 9573\\nroot 5393 0.0 0.0 2040984 4480 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5405 0.0 0.0 1597568 4096 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5419 0.0 0.0 1237912 13056 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7 -address /run/containerd/containerd.sock\\nroot 5450 0.0 0.0 1238168 13312 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf -address /run/containerd/containerd.sock\\nroot 5471 0.0 0.0 1136 512 ? Ss 18:42 0:00 /sbin/docker-init -- /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5479 0.0 0.0 12120 7984 ? Ss 18:42 0:00 nginx: master process nginx -g daemon off;\\nroot 5535 0.0 0.0 4344 3200 ? S 18:42 0:00 /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5536 0.4 0.0 37560 31352 ? S 18:42 0:00 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5560 0.1 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5561 0.0 0.0 12328 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5562 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5563 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5564 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5565 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5566 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5567 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5570 6.0 0.4 1173056 145288 ? Sl 18:42 0:04 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5571 5.7 0.4 1173060 145280 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5572 5.7 0.4 877032 139256 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5573 5.5 0.4 876924 139588 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5574 5.4 0.4 1173312 146344 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5575 5.4 0.4 877048 139480 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5576 5.1 0.4 1173060 145536 ? Rl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5577 4.9 0.4 1174076 146560 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\n999 5620 0.0 0.0 219720 5912 ? Ss 18:42 0:00 postgres: checkpointer \\n999 5621 0.0 0.0 219864 6424 ? Ss 18:42 0:00 postgres: background writer \\n999 5623 0.0 0.0 219720 10008 ? Ss 18:42 0:00 postgres: walwriter \\n999 5624 0.0 0.0 221312 8984 ? Ss 18:42 0:00 postgres: autovacuum launcher \\n999 5625 0.0 0.0 221288 8088 ? Ss 18:42 0:00 postgres: logical replication launcher \\nroot 5968 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:2-events]\\nroot 5969 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:4-events]\\nroot 5970 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:5-pm]\\nroot 5971 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:6]\\nroot 6175 0.0 0.0 0 0 ? I 18:43 0:00 [kworker/6:2-events]\\ngdm 6293 0.0 0.0 0 0 tty1 Z+ 18:43 0:00 [dbus-daemon] <defunct>\\n999 6343 0.0 0.0 222292 14744 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54078) idle\\n999 6349 0.0 0.0 222676 19096 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54084) idle\\n999 6350 0.0 0.0 222292 14872 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54090) idle\\n999 6351 0.0 0.0 222320 14616 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54098) idle\\n999 6355 0.0 0.0 222320 14872 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54100) idle\\n999 6357 0.0 0.0 222520 18200 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54116) idle\\n999 6358 0.0 0.0 222992 19152 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54120) idle\\n999 6359 0.0 0.0 222520 18072 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54118) idle\\n999 6360 0.0 0.0 222320 14744 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54142) idle\\n999 6361 0.0 0.0 222852 19224 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54156) idle\\narne 6366 53.7 0.3 928144 130060 pts/1 Sl+ 18:43 0:01 python3 runner.py --uri /home/arne/Sites/green-coding/example-applications/ --filename stress/usage_scenario.yml --name Stress Test #2 --dev-no-build --skip-unsafe\\n999 6372 0.0 0.0 222120 19992 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.1(44190) idle\\n999 6373 0.0 0.0 222052 19992 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.1(44200) idle\\nroot 6504 4.3 0.0 17276 7552 ? Ss 18:43 0:00 /usr/lib/systemd/systemd-hostnamed\\narne 6593 0.0 0.0 2800 1664 pts/1 S+ 18:43 0:00 /bin/sh -c /usr/bin/ps -aux\\narne 6594 0.0 0.0 15512 5376 pts/1 R+ 18:43 0:00 /usr/bin/ps -aux\\n", "Disk Usage": 323006902272, "Docker Info": "Client: Docker Engine - Community\\n Version: 27.2.1\\n Context: default\\n Debug Mode: false\\n Plugins:\\n buildx: Docker Buildx (Docker Inc.)\\n Version: v0.16.2\\n Path: /usr/libexec/docker/cli-plugins/docker-buildx\\n compose: Docker Compose (Docker Inc.)\\n Version: v2.29.2\\n Path: /usr/libexec/docker/cli-plugins/docker-compose\\n\\nServer:\\n Containers: 5\\n Running: 5\\n Paused: 0\\n Stopped: 0\\n Images: 13\\n Server Version: 27.2.1\\n Storage Driver: overlayfs\\n driver-type: io.containerd.snapshotter.v1\\n Logging Driver: json-file\\n Cgroup Driver: systemd\\n Cgroup Version: 2\\n Plugins:\\n Volume: local\\n Network: bridge host ipvlan macvlan null overlay\\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\\n Swarm: inactive\\n Runtimes: io.containerd.runc.v2 runc sysbox-runc\\n Default Runtime: runc\\n Init Binary: docker-init\\n containerd version: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc version: v1.1.13-0-g58aa920\\n init version: de40ad0\\n Security Options:\\n apparmor\\n seccomp\\n Profile: builtin\\n cgroupns\\n Kernel Version: 6.8.0-44-generic\\n Operating System: Ubuntu 24.04.1 LTS\\n OSType: linux\\n Architecture: x86_64\\n CPUs: 8\\n Total Memory: 31.13GiB\\n Name: framebook\\n ID: 492c90f2-99f1-437f-a14b-9f1e5d514ca9\\n Docker Root Dir: /var/lib/docker\\n Debug Mode: false\\n Username: greencoding\\n Experimental: false\\n Insecure Registries:\\n 127.0.0.0/8\\n Live Restore Enabled: false\\n Default Address Pools:\\n Base: 172.25.0.0/16, Size: 24\\n\\n", "Free Memory": 31186837504, "Turbo Boost": "0", "Architecture": "x86-64", "Memory Total": "32646584 kB", "Power Limits": {"/sys/devices/virtual/powercap/intel-rapl/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/name": "package-0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/name": "psys\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj": "1437709393\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/energy_uj": "3083675638\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_name": "peak_power\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/name": "core\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/name": "uncore\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/energy_uj": "519414991\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/energy_uj": "7422588\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_max_power_uw": "28000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_power_limit_uw": "200000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_time_window_us": "31981568\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_power_limit_uw": "64000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_time_window_us": "2440\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_power_limit_uw": "121000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_time_window_us": "27983872\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_suspended_time": "0\\n"}, "IO Scheduling": "File not found", "Linux Version": "Linux 6.8.0-44-generic", "CPU Scheduling": {"/sys/kernel/debug/sched/debug": "Sched Debug Version: v0.11, 6.8.0-44-generic #44-Ubuntu\\nktime : 451843.839611\\nsched_clk : 451909.451412\\ncpu_clk : 451865.010309\\njiffies : 4295118980\\nsched_clock_stable() : 1\\n\\nsysctl_sched\\n .sysctl_sched_base_slice : 3.000000\\n .sysctl_sched_features : 6237751\\n .sysctl_sched_tunable_scaling : 1 (logarithmic)\\n\\ncpu#0, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 139802\\n .nr_uninterruptible : -55\\n .next_balance : 4295.118984\\n .curr->pid : 0\\n .clock : 451865.178002\\n .clock_task : 451865.178002\\n .avg_idle : 775931\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[0]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2020.068026\\n .avg_vruntime : 2020.068026\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450868.631335\\n .se->vruntime : 5953.835946\\n .se->sum_exec_runtime : 2038.425769\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3994.902861\\n .avg_vruntime : 3994.902861\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 636\\n .runnable_avg : 195\\n .util_avg : 195\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 649\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.391127\\n .se->vruntime : 10473.442382\\n .se->sum_exec_runtime : 4225.299859\\n .se->load.weight : 455554\\n .se->avg.load_avg : 276\\n .se->avg.util_avg : 195\\n .se->avg.runnable_avg : 195\\n\\ncfs_rq[0]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10473.442382\\n .avg_vruntime : 10473.442382\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 276\\n .runnable_avg : 195\\n .util_avg : 195\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 281\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.391127\\n .se->vruntime : 17495.565906\\n .se->sum_exec_runtime : 4486.965601\\n .se->load.weight : 813929\\n .se->avg.load_avg : 493\\n .se->avg.util_avg : 195\\n .se->avg.runnable_avg : 195\\n\\ncfs_rq[0]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 621.154458\\n .avg_vruntime : 621.154458\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450923.543065\\n .se->vruntime : 69089.481853\\n .se->sum_exec_runtime : 622.207234\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 465.133227\\n .avg_vruntime : 465.133227\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450936.245679\\n .se->vruntime : 69092.374876\\n .se->sum_exec_runtime : 483.231249\\n .se->load.weight : 211007\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 396.576219\\n .avg_vruntime : 396.576219\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450939.394054\\n .se->vruntime : 69092.528428\\n .se->sum_exec_runtime : 414.091672\\n .se->load.weight : 9279\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3032.832947\\n .avg_vruntime : 3032.832947\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450857.998690\\n .se->vruntime : 69078.527049\\n .se->sum_exec_runtime : 3652.106071\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69092.528428\\n .avg_vruntime : 69092.528428\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450939.394054\\n .se->vruntime : 105529.874322\\n .se->sum_exec_runtime : 17238.194934\\n .se->load.weight : 18893\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5953.835946\\n .avg_vruntime : 5953.835946\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 450868.631335\\n .se->vruntime : 16579.281832\\n .se->sum_exec_runtime : 2529.653431\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 17495.565906\\n .avg_vruntime : 17495.565906\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 494\\n .runnable_avg : 195\\n .util_avg : 195\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 503\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.391127\\n .se->vruntime : 106427.164992\\n .se->sum_exec_runtime : 7309.187314\\n .se->load.weight : 924050\\n .se->avg.load_avg : 560\\n .se->avg.util_avg : 195\\n .se->avg.runnable_avg : 195\\n\\ncfs_rq[0]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 106427.164992\\n .avg_vruntime : 106427.164992\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 562\\n .runnable_avg : 197\\n .util_avg : 196\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[0]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[0]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n Spool_workqueue_ 3 50.484081 E 53.473963 3.000000 0.010118 3 120 0.000000 0.010118 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_g 4 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_p 5 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-slub_ 6 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-netns 7 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n I kworker/0:0 8 59814.143606 E 59817.054498 3.000000 291.283992 683 120 0.000000 291.283992 0.000000 0.000000 0 0 /\\n I kworker/0:0H 9 61.484472 E 61.518998 3.000000 0.013159 4 100 0.000000 0.013159 0.000000 0.000000 0 0 /\\n I kworker/0:1 10 106418.473565 E 106421.451212 3.000000 422.269221 1444 120 0.000000 422.269221 0.000000 0.000000 0 0 /\\n Ikworker/R-mm_pe 12 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_kthre 13 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_rude_ 14 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_trace 15 429.940627 E 432.911629 3.000000 0.267245 7 120 0.000000 0.267245 0.000000 0.000000 0 0 /\\n S ksoftirqd/0 16 105651.378426 E 105654.223924 3.000000 60.331378 2716 120 0.000000 60.331378 0.000000 0.000000 0 0 /\\n S migration/0 18 0.626525 E 0.123004 0.750000 6.733650 173 0 0.000000 6.733650 0.000000 0.000000 0 0 /\\n S idle_inject/0 19 0.467865 E 0.280188 0.750000 0.005407 3 49 0.000000 0.005407 0.000000 0.000000 0 0 /\\n S cpuhp/0 20 8335.382094 E 8338.316225 3.000000 1.150907 26 120 0.000000 1.150907 0.000000 0.000000 0 0 /\\n Ikworker/R-charg 128 50.473963 E 50.508549 3.000000 0.093293 2 100 0.000000 0.093293 0.000000 0.000000 0 0 /\\n I kworker/0:1H 157 105461.392956 E 105461.427507 3.000000 7.942728 422 100 0.000000 7.942728 0.000000 0.000000 0 0 /\\n I kworker/0:2 224 59855.306472 E 59858.281775 3.000000 287.732084 1020 120 0.000000 287.732084 0.000000 0.000000 0 0 /\\n I kworker/u16:5 423 103218.152689 E 103221.128312 3.000000 311.043840 6042 120 0.000000 311.043840 0.000000 0.000000 0 0 /\\n Sirq/193-iwlwifi 535 3646.117837 E 3649.116436 3.000000 2.152954 13 49 0.000000 2.152954 0.000000 0.000000 0 0 /\\n Ikworker/R-cros_ 583 4098.545142 E 4098.579743 3.000000 0.004733 2 100 0.000000 0.004733 0.000000 0.000000 0 0 /\\n S card1-crtc0 586 4105.692415 E 4108.689897 3.000000 0.071775 4 49 0.000000 0.071775 0.000000 0.000000 0 0 /\\n S card1-crtc1 587 4105.694050 E 4108.692415 3.000000 0.002284 2 49 0.000000 0.002284 0.000000 0.000000 0 0 /\\n S card1-crtc2 588 4105.695887 E 4108.694050 3.000000 0.002459 2 49 0.000000 0.002459 0.000000 0.000000 0 0 /\\n S card1-crtc3 589 4105.697510 E 4108.695887 3.000000 0.002237 2 49 0.000000 0.002237 0.000000 0.000000 0 0 /\\n S sd-resolve 762 2.805469 E 4.473698 3.000000 3.300131 16 120 0.000000 3.300131 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n I kworker/0:3 754 102631.070360 E 102633.874949 3.000000 292.687774 775 120 0.000000 292.687774 0.000000 0.000000 0 0 /\\n Saccounts-daemon 790 14.253092 E 16.355003 3.000000 133.580546 272 120 0.000000 133.580546 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 936 13.969662 E 16.117388 3.000000 134.487699 479 120 0.000000 134.487699 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S gmain 1041 0.924491 E 2.068097 3.000000 0.059449 2 120 0.000000 0.059449 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 849 287.899749 E 290.896507 3.000000 329.379386 15963 120 0.000000 329.379386 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S cleanup 1103 7.256534 E 10.181598 3.000000 0.315513 4 120 0.000000 0.315513 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S avahi-daemon 893 0.811987 E 2.186352 3.000000 0.137179 4 120 0.000000 0.137179 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S gdbus 1098 5.410405 E 7.152417 3.000000 21.180934 75 120 0.000000 21.180934 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1473 396.280726 E 398.439382 3.000000 104.209179 2909 120 0.000000 104.209179 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1475 0.003081 E 2.997094 3.000000 0.496009 16 120 0.000000 0.496009 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gmain 1483 3.022894 E 5.996257 3.000000 0.026637 1 120 0.000000 0.026637 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pw-data-loop 1534 8.779134 E 11.773129 3.000000 0.034056 3 79 0.000000 0.034056 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1569 1880.003146 E 1881.958162 3.000000 41.683534 431 120 0.000000 41.683534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1554 9.640752 E 12.603939 3.000000 0.065887 2 120 0.000000 0.065887 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1556 10.631341 E 13.583311 3.000000 0.917172 22 120 0.000000 0.917172 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fusermount3 1564 9.813596 E 12.812048 3.000000 0.930269 5 120 0.000000 0.930269 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1604 2009.888269 E 2012.764675 3.000000 16.216439 83 120 0.000000 16.216439 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1674 462.130688 E 465.127546 3.000000 80.552795 2543 120 0.000000 80.552795 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2416 374.234438 E 377.219668 3.000000 35.780266 1608 120 0.000000 35.780266 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2764 1.983811 E 4.744663 3.000000 18.886864 175 120 0.000000 18.886864 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/0:4 2998 59771.957357 E 59774.932526 3.000000 271.888982 1142 120 0.000000 271.888982 0.000000 0.000000 0 0 /\\n I kworker/0:5 2999 59772.125702 E 59775.104333 3.000000 138.814812 467 120 0.000000 138.814812 0.000000 0.000000 0 0 /\\n I kworker/0:6 3000 100191.415615 E 100194.206076 3.000000 276.816392 1110 120 0.000000 276.816392 0.000000 0.000000 0 0 /\\n I kworker/0:7 3001 59757.114051 E 59760.069565 3.000000 105.172095 199 120 0.000000 105.172095 0.000000 0.000000 0 0 /\\n S Xwayland 3030 823.312878 E 826.243091 3.000000 73.675981 404 120 0.000000 73.675981 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:sh0 3265 798.437067 E 801.432850 3.000000 0.043697 5 120 0.000000 0.043697 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3082 846.693163 E 849.149172 3.000000 0.987458 8 120 0.000000 0.987458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sharing 3080 2004.467991 E 2007.432679 3.000000 114.005355 875 120 0.000000 114.005355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3105 850.647701 E 853.480247 3.000000 0.288156 7 120 0.000000 0.288156 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3107 2004.444240 E 2007.370686 3.000000 196.860972 703 120 0.000000 196.860972 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3117 753.415062 E 755.693222 3.000000 0.802525 2 120 0.000000 0.802525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3122 46.671710 E 49.646140 3.000000 0.025570 1 120 0.000000 0.025570 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3133 795.342480 E 798.312721 3.000000 2.282013 41 120 0.000000 2.282013 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3128 789.541948 E 792.521534 3.000000 0.623284 13 120 0.000000 0.623284 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-print-notif 3109 794.936793 E 797.917349 3.000000 26.108835 70 120 0.000000 26.108835 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3157 53.427679 E 56.401651 3.000000 0.026028 1 120 0.000000 0.026028 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-a11y-settin 3163 794.888778 E 797.870455 3.000000 6.166578 47 120 0.000000 6.166578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3176 794.880654 E 797.815559 3.000000 5.039055 51 120 0.000000 5.039055 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3340 1927.697033 E 1927.760897 3.000000 47.743714 9 120 0.000000 47.743714 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3349 808.794366 E 811.794366 3.000000 10.264307 5 120 0.000000 10.264307 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x11:sh0 3377 816.300810 E 819.286174 3.000000 0.014636 1 120 0.000000 0.014636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter:traceq0 3381 817.363254 E 1021.171202 3.000000 0.084925 1 139 0.000000 0.084925 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3386 818.412051 E 821.351989 3.000000 0.093107 2 120 0.000000 0.093107 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3387 817.414689 E 820.396299 3.000000 0.018390 1 120 0.000000 0.018390 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3389 818.351989 E 821.340314 3.000000 0.199289 7 120 0.000000 0.199289 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3366 811.073812 E 814.040000 3.000000 0.033812 1 120 0.000000 0.033812 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3393 819.206920 E 822.175436 3.000000 0.075475 3 120 0.000000 0.075475 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-portal 3364 2007.693323 E 2010.683621 3.000000 3.592916 25 120 0.000000 3.592916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3465 4.873835 E 7.857378 3.000000 12.993458 14 120 0.000000 12.993458 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3507 5.151991 E 8.096082 3.000000 0.172631 6 120 0.000000 0.172631 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3506 5.696636 E 8.662738 3.000000 0.223461 7 120 0.000000 0.223461 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S sshd 3542 156.065554 E 158.528887 3.000000 199.158237 758 120 0.000000 199.158237 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Sxdg-permission- 3549 8.115189 E 11.087827 3.000000 4.193195 7 120 0.000000 4.193195 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/0:8 3759 59756.400082 E 59759.380811 3.000000 1.022501 23 120 0.000000 1.022501 0.000000 0.000000 0 0 /\\n I kworker/0:9 3760 59770.205205 E 59773.169769 3.000000 1.596805 44 120 0.000000 1.596805 0.000000 0.000000 0 0 /\\n I kworker/0:10 3801 59771.969076 E 59774.937321 3.000000 0.905114 21 120 0.000000 0.905114 0.000000 0.000000 0 0 /\\n I kworker/0:11 3834 59756.809577 E 59759.790531 3.000000 0.552745 12 120 0.000000 0.552745 0.000000 0.000000 0 0 /\\n I kworker/0:12 3835 59839.201252 E 59842.114881 3.000000 147.613339 247 120 0.000000 147.613339 0.000000 0.000000 0 0 /\\n I kworker/0:13 3878 59770.675693 E 59773.644782 3.000000 0.401815 9 120 0.000000 0.401815 0.000000 0.000000 0 0 /\\n I kworker/0:14 3879 59838.813777 E 59841.697927 3.000000 118.760857 459 120 0.000000 118.760857 0.000000 0.000000 0 0 /\\n I kworker/0:15 3880 59757.553220 E 59760.501134 3.000000 0.251809 8 120 0.000000 0.251809 0.000000 0.000000 0 0 /\\n I kworker/0:16 4875 100191.591994 E 100194.415615 3.000000 48.729548 549 120 0.000000 48.729548 0.000000 0.000000 0 0 /\\n S docker 5108 142.053576 E 144.677977 3.000000 0.445408 2 120 0.000000 0.445408 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5125 145.841713 E 148.838155 3.000000 2.587746 33 120 0.000000 2.587746 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5128 153.640018 E 156.632884 3.000000 8.548291 260 120 0.000000 8.548291 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5138 147.883780 E 150.508821 3.000000 3.072613 60 120 0.000000 3.072613 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5139 156.655595 E 159.322894 3.000000 10.744699 236 120 0.000000 10.744699 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5207 380.169185 E 383.159727 3.000000 1.776241 5 120 0.000000 1.776241 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5209 380.159727 E 383.144516 3.000000 0.125477 4 120 0.000000 0.125477 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5265 317.900081 E 320.886003 3.000000 0.088538 5 120 0.000000 0.088538 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6177 383.295236 E 386.270084 3.000000 0.845378 4 120 0.000000 0.845378 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_close_file 5371 0.996541 E 1.988580 3.000000 0.014879 1 120 0.000000 0.014879 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S bio_lazy_free 5373 0.971337 E 2.003459 3.000000 0.025204 2 120 0.000000 0.025204 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S postgres 5289 116.438482 E 118.785754 3.000000 67.200961 127 120 0.000000 67.200961 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S docker-proxy 5401 444.013364 E 446.951489 3.000000 0.730520 11 120 0.000000 0.730520 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5402 391.629910 E 394.593552 3.000000 0.036358 1 120 0.000000 0.036358 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5404 440.410950 E 443.311576 3.000000 0.200935 4 120 0.000000 0.200935 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5423 384.266485 E 387.255828 3.000000 7.163704 75 120 0.000000 7.163704 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5426 321.885108 E 324.879367 3.000000 0.005741 1 120 0.000000 0.005741 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5452 384.687734 E 387.660369 3.000000 1.775601 271 120 0.000000 1.775601 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5459 331.501159 E 334.467439 3.000000 1.138122 31 120 0.000000 1.138122 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bash 5535 0.374091 E 2.004330 3.000000 1.369761 2 120 0.000000 1.369761 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5560 1.881197 E 4.297811 3.000000 87.562664 10 120 0.000000 87.562664 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5598 1096.827304 E 1099.827304 3.000000 67.403138 16 120 0.000000 67.403138 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5664 1810.667125 E 1813.659738 3.000000 48.028793 19 120 0.000000 48.028793 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6353 2962.498940 E 2965.273620 3.000000 9.925404 79 120 0.000000 9.925404 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6354 2962.532768 E 2965.492613 3.000000 10.767032 25 120 0.000000 10.767032 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5613 1154.546552 E 1157.489793 3.000000 50.490838 17 120 0.000000 50.490838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5688 1886.290395 E 1889.290395 3.000000 33.583605 11 120 0.000000 33.583605 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5689 1886.727601 E 1889.716108 3.000000 34.006642 14 120 0.000000 34.006642 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5691 1887.153050 E 1890.141066 3.000000 34.415056 12 120 0.000000 34.415056 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6337 2948.346864 E 2951.320900 3.000000 0.105808 3 120 0.000000 0.105808 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5605 1128.699724 E 1130.733412 3.000000 59.322321 20 120 0.000000 59.322321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5674 1837.950616 E 1840.941193 3.000000 34.976674 14 120 0.000000 34.976674 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5676 1842.845926 E 1842.887818 3.000000 39.859633 14 120 0.000000 39.859633 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5645 1691.475316 E 1694.467524 3.000000 28.433086 12 120 0.000000 28.433086 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5646 1692.040496 E 1695.034677 3.000000 28.990755 9 120 0.000000 28.990755 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5639 1491.853459 E 1492.774908 3.000000 56.154692 21 120 0.000000 56.154692 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5706 1914.066082 E 1916.114488 3.000000 31.948839 9 120 0.000000 31.948839 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5708 1917.130715 E 1920.121651 3.000000 35.002311 12 120 0.000000 35.002311 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5626 1181.663383 E 1181.681283 3.000000 50.832084 14 120 0.000000 50.832084 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5655 1726.481090 E 1729.473436 3.000000 36.998391 11 120 0.000000 36.998391 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5717 1958.888518 E 1961.882843 3.000000 34.652408 11 120 0.000000 34.652408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6347 2960.545968 E 2963.333661 3.000000 9.357649 17 120 0.000000 9.357649 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5724 1963.859694 E 1966.846384 3.000000 63.747694 20 120 0.000000 63.747694 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6359 111.477320 E 114.300776 3.000000 6.070420 13 120 0.000000 6.070420 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6459 3122.309647 E 3124.734780 3.000000 105.615094 7 120 0.000000 105.615094 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 6373 119.992859 E 122.931010 3.000000 3.916471 16 120 0.000000 3.916471 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S sudo 6602 3994.902861 E 3997.896564 3.000000 3.653243 2 120 0.000000 3.653243 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#1, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 128482\\n .nr_uninterruptible : 53\\n .next_balance : 4295.118982\\n .curr->pid : 0\\n .clock : 451866.083548\\n .clock_task : 451866.083548\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[1]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3916.970509\\n .avg_vruntime : 3916.970509\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.294175\\n .se->vruntime : 10787.424317\\n .se->sum_exec_runtime : 3922.026702\\n .se->load.weight : 317234\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4230.023529\\n .avg_vruntime : 4230.023529\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451772.863218\\n .se->vruntime : 8291.950767\\n .se->sum_exec_runtime : 4247.941537\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3308.673615\\n .avg_vruntime : 3308.673615\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451854.850536\\n .se->vruntime : 68087.910253\\n .se->sum_exec_runtime : 3847.617456\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 631.082934\\n .avg_vruntime : 631.082934\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451850.245463\\n .se->vruntime : 68087.840115\\n .se->sum_exec_runtime : 633.465176\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 335.202458\\n .avg_vruntime : 335.202458\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451866.083548\\n .se->vruntime : 68088.251655\\n .se->sum_exec_runtime : 336.251034\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/systemd-oomd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13.087217\\n .avg_vruntime : 13.087217\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451727.421544\\n .se->vruntime : 68087.128121\\n .se->sum_exec_runtime : 14.135793\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 383.479080\\n .avg_vruntime : 383.479080\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451834.319689\\n .se->vruntime : 68087.787507\\n .se->sum_exec_runtime : 392.213515\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 68088.251655\\n .avg_vruntime : 68088.251655\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451866.083548\\n .se->vruntime : 104075.976809\\n .se->sum_exec_runtime : 16867.664615\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 8291.950767\\n .avg_vruntime : 8291.950767\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451772.863218\\n .se->vruntime : 23794.520228\\n .se->sum_exec_runtime : 4624.424309\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10787.424317\\n .avg_vruntime : 10787.424317\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.294175\\n .se->vruntime : 23803.368872\\n .se->sum_exec_runtime : 4157.726172\\n .se->load.weight : 215146\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 23803.368872\\n .avg_vruntime : 23803.368872\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.294175\\n .se->vruntime : 104075.364962\\n .se->sum_exec_runtime : 9407.781652\\n .se->load.weight : 186452\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 104075.976809\\n .avg_vruntime : 104075.976809\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 14\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[1]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[1]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/1 21 7932.094818 E 7935.015583 3.000000 0.356355 26 120 0.000000 0.356355 0.000000 0.000000 0 0 /\\n S idle_inject/1 22 -1.046696 E 0.298424 0.750000 0.006020 3 49 0.000000 0.006020 0.000000 0.000000 0 0 /\\n S migration/1 23 0.056269 E 0.693236 0.750000 169.521316 160 0 0.000000 169.521316 0.000000 0.000000 0 0 /\\n S ksoftirqd/1 24 104062.611967 E 104065.604287 3.000000 27.718072 673 120 0.000000 27.718072 0.000000 0.000000 0 0 /\\n I kworker/1:0H 26 21.947051 E 21.981566 3.000000 0.017963 4 100 0.000000 0.017963 0.000000 0.000000 0 0 /\\n Ikworker/R-write 70 -1.034874 E -1.000265 3.000000 0.000849 2 100 0.000000 0.000849 0.000000 0.000000 0 0 /\\n S kcompactd0 71 104060.165688 E 104063.154058 3.000000 45.379965 898 120 0.000000 45.379965 0.000000 0.000000 0 0 /\\n S ksmd 72 -1.034874 E 8.135275 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/9-acpi 79 0.888458 E 2.110113 3.000000 26.733450 90 49 0.000000 26.733450 0.000000 0.000000 0 0 /\\n I kworker/1:1 89 101245.266443 E 101248.258989 3.000000 52.566763 1085 120 0.000000 52.566763 0.000000 0.000000 0 0 /\\n I kworker/1:1H 185 104075.513310 E 104075.547745 3.000000 4.518579 385 100 0.000000 4.518579 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 221 392.789305 E 392.823904 3.000000 0.005027 2 100 0.000000 0.005027 0.000000 0.000000 0 0 /\\n Sjbd2/nvme0n1p5- 264 104075.542082 E 104078.513310 3.000000 77.936190 1394 120 0.000000 77.936190 0.000000 0.000000 0 0 /\\n Ikworker/R-crypt 531 2507.555715 E 2507.590316 3.000000 0.005940 2 100 0.000000 0.005940 0.000000 0.000000 0 0 /\\n Sirq/194-iwlwifi 536 3740.895044 E 3743.891071 3.000000 4.620247 25 49 0.000000 4.620247 0.000000 0.000000 0 0 /\\n S systemd-oomd 660 13.087217 E 13.830342 3.000000 574.724632 620 120 0.000000 574.724632 0.000000 0.000000 0 0 /system.slice/systemd-oomd.service\\n S gmain 910 0.472046 E 3.459363 3.000000 0.047699 2 120 0.000000 0.047699 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S gmain 923 3.433860 E 6.421449 3.000000 0.067212 2 120 0.000000 0.067212 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S gdbus 924 7.269924 E 9.126327 3.000000 20.415944 94 120 0.000000 20.415944 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 2924 248.955894 E 251.818007 3.000000 91.527058 125 120 0.000000 91.527058 0.000000 0.000000 0 0 /system.slice/snapd.service\\n Sswitcheroo-cont 836 7.518062 E 10.434047 3.000000 44.143872 152 120 0.000000 44.143872 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 856 2.227776 E 5.225721 3.000000 94.523149 368 120 0.000000 94.523149 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 951 631.082934 E 634.070694 3.000000 1383.298321 15928 120 0.000000 1383.298321 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n I kworker/1:3 971 99567.576275 E 99568.532374 3.000000 89.510496 905 120 0.000000 89.510496 0.000000 0.000000 0 0 /\\n S pool-spawner 1106 14.206991 E 17.144135 3.000000 0.125154 3 120 0.000000 0.125154 0.000000 0.000000 0 0 /system.slice/upower.service\\n S gmain 1107 14.144135 E 17.122581 3.000000 0.021554 1 120 0.000000 0.021554 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1118 0.488564 E 2.489338 3.000000 0.204262 22 120 0.000000 0.204262 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S cupsd 1439 4.468166 E 6.566988 3.000000 22.666250 96 120 0.000000 22.666250 0.000000 0.000000 0 0 /system.slice/cups.service\\n S containerd 1458 332.847699 E 335.052522 3.000000 181.796101 4487 120 0.000000 181.796101 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 5141 344.482809 E 347.356511 3.000000 47.093063 1818 120 0.000000 47.093063 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdm3 1469 28.866371 E 31.777617 3.000000 29.629979 80 120 0.000000 29.629979 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S systemd 1499 195.259155 E 198.008645 3.000000 1449.806853 616 120 0.000000 1449.806853 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pipewire 1512 16.254098 E 16.510392 3.000000 32.093335 224 109 0.000000 32.093335 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1527 11.267137 E 14.210616 3.000000 0.188517 6 120 0.000000 0.188517 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1541 11.066776 E 14.063472 3.000000 0.112549 13 79 0.000000 0.112549 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1551 11.210616 E 14.180555 3.000000 0.056827 2 120 0.000000 0.056827 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1553 14.775624 E 17.722860 3.000000 0.661282 10 120 0.000000 0.661282 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1526 0.567104 E 2.363017 3.000000 0.680927 15 120 0.000000 0.680927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgnome-session-b 1546 4026.427161 E 4028.816499 3.000000 72.220451 386 120 0.000000 72.220451 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1555 11.411258 E 14.381068 3.000000 0.030190 1 120 0.000000 0.030190 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1559 11.464077 E 14.455527 3.000000 0.052819 2 120 0.000000 0.052819 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gnome-shell 1590 4230.023529 E 4232.634400 3.000000 9753.660213 5193 120 0.000000 9753.660213 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1602 241.182424 E 244.164119 3.000000 1.813576 72 120 0.000000 1.813576 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1610 4226.629105 E 4229.520387 3.000000 10.276419 89 120 0.000000 10.276419 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S KMS thread 1618 4040.643096 E 4043.470042 3.000000 312.191032 825 79 0.000000 312.191032 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-s:disk$0 3004 8.656514 E 213.116341 3.000000 0.090177 1 139 0.000000 0.090177 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3014 167.316606 E 170.276345 3.000000 71.365629 133 120 0.000000 71.365629 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1664 383.479080 E 386.476693 3.000000 271.654615 22276 120 0.000000 271.654615 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1670 304.900140 E 305.802357 3.000000 107.084760 2032 120 0.000000 107.084760 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1672 144.769731 E 147.755909 3.000000 0.723957 32 120 0.000000 0.723957 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2526 305.308381 E 307.900140 3.000000 3.053644 65 120 0.000000 3.053644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2527 290.625017 E 293.618099 3.000000 99.602375 2905 120 0.000000 99.602375 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2677 383.378089 E 386.374956 3.000000 30.271222 1524 120 0.000000 30.271222 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2422 329.061756 E 331.860625 3.000000 29.102401 111 120 0.000000 29.102401 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2814 0.304479 E 2.637087 3.000000 0.714735 5 120 0.000000 0.714735 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3024 60.304780 E 63.271147 3.000000 0.033633 1 120 0.000000 0.033633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:gdrv0 3269 566.947492 E 569.942158 3.000000 0.048510 3 120 0.000000 0.048510 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3038 563.666293 E 566.641667 3.000000 4.306399 54 120 0.000000 4.306399 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3081 645.782212 E 648.340009 3.000000 0.896962 8 120 0.000000 0.896962 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3085 646.371136 E 648.782212 3.000000 1.123443 8 120 0.000000 1.123443 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-wacom 3091 644.537177 E 647.284944 3.000000 366.045403 439 120 0.000000 366.045403 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3118 160.094256 E 163.069340 3.000000 0.024916 1 120 0.000000 0.024916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-color 3095 4214.628478 E 4217.414834 3.000000 129.278614 57 120 0.000000 129.278614 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-keyboard 3100 648.247208 E 651.166836 3.000000 121.441087 43 120 0.000000 121.441087 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3123 160.645856 E 163.586872 3.000000 0.058984 1 120 0.000000 0.058984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-smartcard 3119 563.386800 E 566.368384 3.000000 7.380501 47 120 0.000000 7.380501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3141 163.322124 E 166.295023 3.000000 0.027101 1 120 0.000000 0.027101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3152 563.387981 E 566.317884 3.000000 5.186420 57 120 0.000000 5.186420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-datetime 3129 563.405186 E 566.383009 3.000000 11.094354 49 120 0.000000 11.094354 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3201 553.536426 E 556.465699 3.000000 0.162455 3 120 0.000000 0.162455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3219 184.113084 E 187.101602 3.000000 0.087152 2 120 0.000000 0.087152 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3292 378.083610 E 380.401752 3.000000 0.681858 1 120 0.000000 0.681858 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3342 4042.206196 E 4044.992366 3.000000 1.492101 12 120 0.000000 1.492101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3345 634.080030 E 637.037078 3.000000 79.580450 171 120 0.000000 79.580450 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-:disk$0 3376 606.974571 E 811.460271 3.000000 0.041875 2 139 0.000000 0.041875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x:gdrv0 3383 611.246200 E 614.198837 3.000000 0.047363 1 120 0.000000 0.047363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3382 611.727160 E 614.717547 3.000000 0.569298 17 120 0.000000 0.569298 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S sshd 3437 7.898835 E 10.142566 3.000000 77.928271 33 120 0.000000 77.928271 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S pipewire-pulse 3475 5.257457 E 8.249472 3.000000 16.156993 25 120 0.000000 16.156993 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/1:0 5020 104075.563991 E 104078.554369 3.000000 14.736213 181 120 0.000000 14.736213 0.000000 0.000000 0 0 /\\n S docker 5111 76.881186 E 79.675463 3.000000 2.727325 5 120 0.000000 2.727325 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5129 92.979057 E 95.827156 3.000000 13.278881 308 120 0.000000 13.278881 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5211 363.330161 E 366.318893 3.000000 0.672438 17 120 0.000000 0.672438 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5213 312.682584 E 315.605437 3.000000 0.185163 4 120 0.000000 0.185163 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6176 330.014363 E 332.837025 3.000000 1.146372 8 120 0.000000 1.146372 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S redis-server 5282 335.202458 E 337.861056 3.000000 1946.656818 744 120 0.000000 1946.656818 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 6331 360.751373 E 363.688567 3.000000 1.152413 3 120 0.000000 1.152413 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5427 330.611886 E 333.580963 3.000000 2.390830 41 120 0.000000 2.390830 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5528 290.121910 E 293.092020 3.000000 0.588842 12 120 0.000000 0.588842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5563 0.942109 E 2.054286 3.000000 0.436022 3 120 0.000000 0.436022 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5600 849.366916 E 852.353840 3.000000 39.919317 22 120 0.000000 39.919317 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5665 1661.043325 E 1661.083812 3.000000 55.912313 17 120 0.000000 55.912313 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5616 882.220441 E 885.175429 3.000000 29.865267 12 120 0.000000 29.865267 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5618 881.421942 E 884.354331 3.000000 29.053625 11 120 0.000000 29.053625 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5687 1785.074279 E 1788.064636 3.000000 41.826708 13 120 0.000000 41.826708 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5697 1797.414029 E 1798.448640 3.000000 30.959422 9 120 0.000000 30.959422 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5700 1798.495212 E 1801.486113 3.000000 32.018896 11 120 0.000000 32.018896 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5633 1752.220599 E 1755.211488 3.000000 57.584088 17 120 0.000000 57.584088 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6334 3165.588717 E 3168.411649 3.000000 10.885334 28 120 0.000000 10.885334 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5715 1835.502622 E 1838.493962 3.000000 42.959724 13 120 0.000000 42.959724 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5577 3308.673615 E 3311.603477 3.000000 2842.367412 1392 120 0.000000 2842.367412 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5620 102.625658 E 105.242092 3.000000 0.383566 1 120 0.000000 0.383566 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/1:2 5968 99564.615043 E 99567.596256 3.000000 2.063702 7 120 0.000000 2.063702 0.000000 0.000000 0 0 /\\n I kworker/1:4 5969 99564.670410 E 99567.651157 3.000000 1.351890 24 120 0.000000 1.351890 0.000000 0.000000 0 0 /\\n I kworker/1:5 5970 99564.679214 E 99567.667609 3.000000 1.049866 11 120 0.000000 1.049866 0.000000 0.000000 0 0 /\\n I kworker/1:6 5971 99556.785859 E 99559.784868 3.000000 0.049506 2 120 0.000000 0.049506 0.000000 0.000000 0 0 /\\n S postgres 6343 106.666365 E 106.960184 3.000000 6.717148 7 120 0.000000 6.717148 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6360 108.491891 E 110.311591 3.000000 4.628347 10 120 0.000000 4.628347 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6368 3715.097038 E 3718.087195 3.000000 0.118666 3 120 0.000000 0.118666 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 6460 3904.361858 E 3906.770286 3.000000 109.788533 7 120 0.000000 109.788533 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#2, 2400.000 MHz\\n .nr_running : 1\\n .nr_switches : 157519\\n .nr_uninterruptible : -228\\n .next_balance : 4295.119020\\n .curr->pid : 6604\\n .clock : 451866.171917\\n .clock_task : 451866.171917\\n .avg_idle : 43356\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[2]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1975.421391\\n .avg_vruntime : 1975.421391\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 1048576\\n .load_avg : 1008\\n .runnable_avg : 701\\n .util_avg : 701\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1007\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451866.171917\\n .se->vruntime : 7879.324939\\n .se->sum_exec_runtime : 1984.945302\\n .se->load.weight : 415052\\n .se->avg.load_avg : 398\\n .se->avg.util_avg : 700\\n .se->avg.runnable_avg : 701\\n\\ncfs_rq[2]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7879.324939\\n .avg_vruntime : 7879.324939\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 415052\\n .load_avg : 398\\n .runnable_avg : 701\\n .util_avg : 700\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 396\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451866.171917\\n .se->vruntime : 13840.160630\\n .se->sum_exec_runtime : 2256.966285\\n .se->load.weight : 414720\\n .se->avg.load_avg : 398\\n .se->avg.util_avg : 700\\n .se->avg.runnable_avg : 701\\n\\ncfs_rq[2]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 536.337302\\n .avg_vruntime : 536.337302\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451800.086378\\n .se->vruntime : 76142.754910\\n .se->sum_exec_runtime : 538.924335\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3599.486703\\n .avg_vruntime : 3599.486703\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451798.049541\\n .se->vruntime : 76142.710558\\n .se->sum_exec_runtime : 4081.867116\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 11.590717\\n .avg_vruntime : 11.590717\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451765.571901\\n .se->vruntime : 76142.561919\\n .se->sum_exec_runtime : 12.643827\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 76142.754910\\n .avg_vruntime : 76142.754910\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451800.086378\\n .se->vruntime : 108089.399166\\n .se->sum_exec_runtime : 20062.987167\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[2]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13840.160630\\n .avg_vruntime : 13840.160630\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 414720\\n .load_avg : 398\\n .runnable_avg : 701\\n .util_avg : 700\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 398\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451866.171917\\n .se->vruntime : 108202.449847\\n .se->sum_exec_runtime : 3986.610777\\n .se->load.weight : 336508\\n .se->avg.load_avg : 322\\n .se->avg.util_avg : 700\\n .se->avg.runnable_avg : 701\\n\\ncfs_rq[2]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 108202.449847\\n .avg_vruntime : 108202.449847\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 336508\\n .load_avg : 325\\n .runnable_avg : 703\\n .util_avg : 703\\n .util_est : 693\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[2]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 8.816495\\n .rt_runtime : 950.000000\\n\\ndl_rq[2]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/2 27 10232.512266 E 10235.476962 3.000000 0.310145 26 120 0.000000 0.310145 0.000000 0.000000 0 0 /\\n S idle_inject/2 28 -1.048574 E 0.451426 1.500000 0.000962 3 49 0.000000 0.000962 0.000000 0.000000 0 0 /\\n S migration/2 29 0.100700 E 0.850203 0.750000 169.698991 176 0 0.000000 169.698991 0.000000 0.000000 0 0 /\\n S ksoftirqd/2 30 108155.590045 E 108158.578612 3.000000 24.616562 993 120 0.000000 24.616562 0.000000 0.000000 0 0 /\\n I kworker/2:0 31 62457.803260 E 62460.735327 3.000000 8.218140 34 120 0.000000 8.218140 0.000000 0.000000 0 0 /\\n I kworker/2:0H 32 103.304456 E 103.338997 3.000000 0.014834 5 100 0.000000 0.014834 0.000000 0.000000 0 0 /\\n S oom_reaper 69 -1.013776 E 1.986224 3.000000 0.000042 2 120 0.000000 0.000042 0.000000 0.000000 0 0 /\\n I kworker/2:1 80 106608.431116 E 106611.424327 3.000000 311.082998 4640 120 0.000000 311.082998 0.000000 0.000000 0 0 /\\n I kworker/2:1H 195 106151.641213 E 106151.675646 3.000000 4.573675 286 100 0.000000 4.573675 0.000000 0.000000 0 0 /\\n I kworker/2:2 217 62482.814010 E 62485.785163 3.000000 119.011817 1706 120 0.000000 119.011817 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 218 470.398502 E 470.433104 3.000000 0.005099 2 100 0.000000 0.005099 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 219 470.401038 E 470.435644 3.000000 0.002850 2 100 0.000000 0.002850 0.000000 0.000000 0 0 /\\n I kworker/2:3 223 108183.430077 E 108186.422653 3.000000 120.794080 1463 120 0.000000 120.794080 0.000000 0.000000 0 0 /\\n I kworker/2:4 349 62418.902108 E 62421.893366 3.000000 2.337037 7 120 0.000000 2.337037 0.000000 0.000000 0 0 /\\n I kworker/u16:6 449 106470.336343 E 106473.317195 3.000000 26.861000 570 120 0.000000 26.861000 0.000000 0.000000 0 0 /\\n I kworker/u16:7 450 107984.100318 E 107987.095020 3.000000 181.655672 3197 120 0.000000 181.655672 0.000000 0.000000 0 0 /\\n S irq/191-mei_me 520 2425.538335 E 2428.535129 3.000000 1.457719 39 49 0.000000 1.457719 0.000000 0.000000 0 0 /\\n Sirq/195-iwlwifi 538 3925.397830 E 3928.395543 3.000000 3115.149651 15776 49 0.000000 3115.149651 0.000000 0.000000 0 0 /\\n S bluetoothd 794 7.041556 E 9.968659 3.000000 94.884117 392 120 0.000000 94.884117 0.000000 0.000000 0 0 /system.slice/bluetooth.service\\n S dbus-daemon 796 425.564977 E 428.350688 3.000000 3276.517362 6094 120 0.000000 3276.517362 0.000000 0.000000 0 0 /system.slice/dbus.service\\n S snapd 854 181.532524 E 181.847161 3.000000 74.669991 322 120 0.000000 74.669991 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S pool-spawner 876 1.965147 E 4.922053 3.000000 0.074621 2 120 0.000000 0.074621 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n Ikworker/R-ipmi- 913 6961.772658 E 6961.807253 3.000000 0.015936 2 100 0.000000 0.015936 0.000000 0.000000 0 0 /\\n S rsyslogd 919 33.759388 E 36.497758 3.000000 30.430189 90 120 0.000000 30.430189 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S pool-spawner 1100 6.890317 E 9.858408 3.000000 0.106301 5 120 0.000000 0.106301 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1116 2.347087 E 5.294553 3.000000 0.174658 34 120 0.000000 0.174658 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sh 1121 12.505172 E 15.381318 3.000000 5.274342 15 120 0.000000 5.274342 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1461 0.881565 E 2.097726 3.000000 0.020709 1 120 0.000000 0.020709 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sgdm-session-wor 1492 0.021664 E 2.378098 3.000000 7.685172 93 120 0.000000 7.685172 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 1500 0.906613 E 1.951424 3.000000 0.141963 1 120 0.000000 0.141963 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pw-data-loop 1536 3.469723 E 6.464575 3.000000 0.024781 3 79 0.000000 0.024781 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sgdm-wayland-ses 1517 0.890985 E 3.860521 3.000000 4.316422 18 120 0.000000 4.316422 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1565 410.548304 E 413.512933 3.000000 0.246882 6 120 0.000000 0.246882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1607 999.821596 E 1002.478783 3.000000 105.496244 84 120 0.000000 105.496244 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shel:sh0 3005 31.707816 E 34.581346 3.000000 0.126470 1 120 0.000000 0.126470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3012 33.382173 E 238.030347 3.000000 0.007470 1 139 0.000000 0.007470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3013 33.387365 E 36.382173 3.000000 0.005192 1 120 0.000000 0.005192 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3276 121.709419 E 124.678683 3.000000 0.030736 1 120 0.000000 0.030736 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1666 392.441719 E 395.424069 3.000000 85.574576 1861 120 0.000000 85.574576 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1699 492.166838 E 495.163126 3.000000 159.469160 4640 120 0.000000 159.469160 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2722 1.991100 E 4.985710 3.000000 0.640714 24 120 0.000000 0.640714 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Ikworker/R-tls-s 2863 22769.817423 E 22769.852008 3.000000 0.015449 2 100 0.000000 0.015449 0.000000 0.000000 0 0 /\\n S dconf worker 3025 46.149564 E 49.142692 3.000000 0.447278 11 120 0.000000 0.447278 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S colord 3035 21.580781 E 24.092855 3.000000 92.765102 187 120 0.000000 92.765102 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gmain 3041 0.737224 E 2.242460 3.000000 0.155686 2 120 0.000000 0.155686 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gjs 3078 487.170160 E 488.823207 3.000000 59.101805 83 120 0.000000 59.101805 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3130 407.533407 E 410.525336 3.000000 0.766318 14 120 0.000000 0.766318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-rfkill 3114 998.886738 E 1001.849496 3.000000 15.743437 198 120 0.000000 15.743437 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3187 98.848084 E 101.823175 3.000000 0.095370 2 120 0.000000 0.095370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-media-keys 3146 953.008761 E 955.920109 3.000000 135.098877 137 120 0.000000 135.098877 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3202 99.517382 E 102.480455 3.000000 0.036927 1 120 0.000000 0.036927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3344 968.712808 E 971.613739 3.000000 1.076193 11 120 0.000000 1.076193 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3354 424.550236 E 427.529183 3.000000 0.083867 3 120 0.000000 0.083867 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3369 435.646524 E 438.628102 3.000000 0.253340 7 120 0.000000 0.253340 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3372 999.168925 E 1002.117870 3.000000 1.312504 18 120 0.000000 1.312504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3379 436.877871 E 439.851438 3.000000 0.116796 2 120 0.000000 0.116796 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Ssnapd-desktop-i 3468 39.501067 E 42.224366 3.000000 18.969394 43 120 0.000000 18.969394 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/2:5 4401 62457.735327 E 62460.617124 3.000000 6.696486 19 120 0.000000 6.696486 0.000000 0.000000 0 0 /\\n I kworker/2:6 4402 62417.302767 E 62420.302240 3.000000 0.074093 2 120 0.000000 0.074093 0.000000 0.000000 0 0 /\\n Sgnome-keyring-d 4742 2.112296 E 4.991437 3.000000 7.218223 25 120 0.000000 7.218223 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5101 203.349617 E 206.337477 3.000000 5.861286 130 120 0.000000 5.861286 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5107 171.690383 E 174.331107 3.000000 0.500947 6 120 0.000000 0.500947 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5124 193.061150 E 195.671496 3.000000 8.594148 49 120 0.000000 8.594148 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5126 193.996527 E 196.991799 3.000000 3.299204 35 120 0.000000 3.299204 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5210 485.513539 E 488.485172 3.000000 16.576479 574 120 0.000000 16.576479 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5244 312.578674 E 315.203491 3.000000 3.382124 33 120 0.000000 3.382124 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5269 313.711904 E 316.502983 3.000000 3.303334 27 120 0.000000 3.303334 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5395 444.125737 E 447.089233 3.000000 2.779950 93 120 0.000000 2.779950 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5408 390.450618 E 393.442277 3.000000 0.052751 3 120 0.000000 0.052751 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5458 314.390724 E 316.751664 3.000000 2.995581 28 120 0.000000 2.995581 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5536 3597.976489 E 3600.169012 3.000000 317.793565 141 120 0.000000 317.793565 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5561 27.019019 E 29.648923 3.000000 8.102906 13 120 0.000000 8.102906 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5565 19.562267 E 22.179766 3.000000 0.382501 1 120 0.000000 0.382501 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5599 1243.917125 E 1246.899112 3.000000 28.626410 23 120 0.000000 28.626410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5602 1243.759704 E 1246.752160 3.000000 26.340665 20 120 0.000000 26.340665 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5603 1244.273695 E 1246.859634 3.000000 28.925019 24 120 0.000000 28.925019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5667 2030.812810 E 2033.802093 3.000000 56.273299 24 120 0.000000 56.273299 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5615 1308.530001 E 1309.304684 3.000000 24.830628 15 120 0.000000 24.830628 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5573 3599.486703 E 3602.338064 3.000000 3232.742758 1077 120 0.000000 3232.742758 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5643 1834.821469 E 1835.836851 3.000000 61.193099 20 120 0.000000 61.193099 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5634 1604.905533 E 1607.825141 3.000000 53.244457 20 120 0.000000 53.244457 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5704 2161.079209 E 2164.073284 3.000000 28.505268 11 120 0.000000 28.505268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5705 2161.257548 E 2162.782519 3.000000 28.668075 12 120 0.000000 28.668075 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5710 2162.173294 E 2164.602104 3.000000 29.547294 16 120 0.000000 29.547294 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6333 3512.110147 E 3514.864100 3.000000 10.868019 29 120 0.000000 10.868019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5630 1334.192609 E 1335.792534 3.000000 36.310197 11 120 0.000000 36.310197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5680 2127.508196 E 2130.499659 3.000000 35.630276 19 120 0.000000 35.630276 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5685 2131.985144 E 2134.985144 3.000000 40.053783 21 120 0.000000 40.053783 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5656 1932.156392 E 1935.156392 3.000000 101.676739 50 120 0.000000 101.676739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S python3 6461 1874.578261 E 1875.018070 3.000000 107.214730 15 120 0.000000 107.214730 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n>R python3 6604 1975.421391 E 1977.087024 3.000000 24.620857 27 120 0.000000 24.620857 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#3, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 145647\\n .nr_uninterruptible : 11\\n .next_balance : 4295.118977\\n .curr->pid : 0\\n .clock : 451865.267367\\n .clock_task : 451865.267367\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2728.993346\\n .avg_vruntime : 2728.993346\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 4\\n .runnable_avg : 4\\n .util_avg : 4\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 4\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451816.632274\\n .se->vruntime : 9705.333559\\n .se->sum_exec_runtime : 2733.980526\\n .se->load.weight : 35187\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9705.333559\\n .avg_vruntime : 9705.333559\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451816.632274\\n .se->vruntime : 15750.169060\\n .se->sum_exec_runtime : 3328.059703\\n .se->load.weight : 5825\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 402.887882\\n .avg_vruntime : 402.887882\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451511.449115\\n .se->vruntime : 74184.693578\\n .se->sum_exec_runtime : 427.136895\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 800.336311\\n .avg_vruntime : 800.336311\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451828.368331\\n .se->vruntime : 74184.738257\\n .se->sum_exec_runtime : 801.486435\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/systemd-logind.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 123.954277\\n .avg_vruntime : 123.954277\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 4\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451840.796515\\n .se->vruntime : 74184.847235\\n .se->sum_exec_runtime : 125.141146\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/accounts-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9.620689\\n .avg_vruntime : 9.620689\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451848.730686\\n .se->vruntime : 74184.897567\\n .se->sum_exec_runtime : 10.422203\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 74184.897567\\n .avg_vruntime : 74184.897567\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451848.730686\\n .se->vruntime : 97163.948739\\n .se->sum_exec_runtime : 17838.468653\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 2\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[3]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15750.169060\\n .avg_vruntime : 15750.169060\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451816.632274\\n .se->vruntime : 97164.411036\\n .se->sum_exec_runtime : 4835.165149\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 97163.948739\\n .avg_vruntime : 97163.948739\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 5\\n .runnable_avg : 7\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[3]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 3.469709\\n .rt_runtime : 950.000000\\n\\ndl_rq[3]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/3 33 7886.138537 E 7889.102720 3.000000 0.348500 26 120 0.000000 0.348500 0.000000 0.000000 0 0 /\\n S idle_inject/3 34 -1.048518 E 0.451482 1.500000 0.001036 3 49 0.000000 0.001036 0.000000 0.000000 0 0 /\\n S migration/3 35 0.198781 E 0.948241 0.750000 169.811273 178 0 0.000000 169.811273 0.000000 0.000000 0 0 /\\n S ksoftirqd/3 36 97163.744660 E 97166.646064 3.000000 25.329426 998 120 0.000000 25.329426 0.000000 0.000000 0 0 /\\n I kworker/3:0 37 97062.381031 E 97065.360096 3.000000 92.000555 914 120 0.000000 92.000555 0.000000 0.000000 0 0 /\\n I kworker/3:0H 38 6.472894 E 6.507461 3.000000 0.011946 4 100 0.000000 0.011946 0.000000 0.000000 0 0 /\\n Ikworker/R-inet_ 64 -1.038883 E -1.004274 3.000000 0.009635 2 100 0.000000 0.009635 0.000000 0.000000 0 0 /\\n S kauditd 65 46475.465473 E 46478.440242 3.000000 2.812791 141 120 0.000000 2.812791 0.000000 0.000000 0 0 /\\n S khungtaskd 67 59242.973736 E 59245.502616 3.000000 1.045812 5 120 0.000000 1.045812 0.000000 0.000000 0 0 /\\n I kworker/u16:2 68 92943.982882 E 92946.978221 3.000000 96.575686 3120 120 0.000000 96.575686 0.000000 0.000000 0 0 /\\n I kworker/3:1 73 56564.399450 E 56567.067307 3.000000 140.577357 1080 120 0.000000 140.577357 0.000000 0.000000 0 0 /\\n Ikworker/R-kinte 75 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-kbloc 76 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-blkcg 77 0.992084 E 0.957475 3.000000 0.000070 2 100 0.000000 0.000070 0.000000 0.000000 0 0 /\\n Ikworker/R-tpm_d 82 0.481367 E 0.446758 3.000000 0.000111 2 100 0.000000 0.000111 0.000000 0.000000 0 0 /\\n I kworker/R-md 84 0.480619 E 0.446010 3.000000 0.000748 2 100 0.000000 0.000748 0.000000 0.000000 0 0 /\\n Ikworker/R-edac- 86 0.479971 E 0.445362 3.000000 0.000648 2 100 0.000000 0.000648 0.000000 0.000000 0 0 /\\n S watchdogd 88 0.469682 E 2.529619 3.000000 0.000699 2 49 0.000000 0.000699 0.000000 0.000000 0 0 /\\n Ikworker/R-kthro 93 0.358457 E 0.323888 3.000000 0.021180 2 100 0.000000 0.021180 0.000000 0.000000 0 0 /\\n S irq/127-pciehp 94 0.342701 E 2.655906 3.000000 0.020513 2 49 0.000000 0.020513 0.000000 0.000000 0 0 /\\n I kworker/u17:0 114 59020.770974 E 59020.805494 3.000000 170.119960 4180 100 0.000000 170.119960 0.000000 0.000000 0 0 /\\n I kworker/3:1H 153 94874.415249 E 94874.446269 3.000000 24.047795 1672 100 0.000000 24.047795 0.000000 0.000000 0 0 /\\n I kworker/3:2 226 94908.931934 E 94911.900961 3.000000 46.378320 486 120 0.000000 46.378320 0.000000 0.000000 0 0 /\\n S systemd-udevd 351 698.358681 E 701.151664 3.000000 1139.006900 2401 120 0.000000 1139.006900 0.000000 0.000000 0 0 /system.slice/systemd-udevd.service\\n I kworker/u16:8 451 94908.757117 E 94911.643230 3.000000 171.046008 1968 120 0.000000 171.046008 0.000000 0.000000 0 0 /\\n Sirq/192-iwlwifi 534 4059.665296 E 4062.645526 3.000000 1484.589767 12361 49 0.000000 1484.589767 0.000000 0.000000 0 0 /\\n Sirq/196-iwlwifi 539 3926.018591 E 3929.015940 3.000000 18.636840 99 49 0.000000 18.636840 0.000000 0.000000 0 0 /\\n I kworker/R-ttm 576 4266.892470 E 4266.927070 3.000000 0.005129 2 100 0.000000 0.005129 0.000000 0.000000 0 0 /\\n Ssystemd-resolve 665 207.898936 E 208.936430 3.000000 620.529176 816 120 0.000000 620.529176 0.000000 0.000000 0 0 /system.slice/systemd-resolved.service\\n I kworker/u17:3 785 97128.936533 E 97128.970910 3.000000 287.194921 6825 100 0.000000 287.194921 0.000000 0.000000 0 0 /\\n S gmain 930 9.620689 E 12.570357 3.000000 77.877910 853 120 0.000000 77.877910 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 938 6.914745 E 9.332271 3.000000 25.658172 104 120 0.000000 25.658172 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S cron 795 4.661846 E 7.180098 3.000000 5.785575 16 120 0.000000 5.785575 0.000000 0.000000 0 0 /system.slice/cron.service\\n Sgnome-remote-de 800 6.461804 E 9.080981 3.000000 30.145068 265 120 0.000000 30.145068 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 922 3.894639 E 6.842135 3.000000 0.090432 2 120 0.000000 0.090432 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 831 206.525041 E 209.519124 3.000000 30.118582 233 120 0.000000 30.118582 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 852 310.199492 E 310.516321 3.000000 174.131223 492 120 0.000000 174.131223 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 853 2.078318 E 5.068150 3.000000 0.396308 18 120 0.000000 0.396308 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 859 -1.009569 E 1.951424 3.000000 0.039007 1 120 0.000000 0.039007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S systemd-logind 842 123.954277 E 126.845618 3.000000 1419.895476 5526 120 0.000000 1419.895476 0.000000 0.000000 0 0 /system.slice/systemd-logind.service\\n S gdbus 888 16.413333 E 18.362122 3.000000 17.064715 94 120 0.000000 17.064715 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gdbus 939 139.664925 E 142.577227 3.000000 380.939592 2873 120 0.000000 380.939592 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S sysbox-fs 1117 -1.009201 E 1.951424 3.000000 0.039375 1 120 0.000000 0.039375 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1490 402.887882 E 405.565467 3.000000 143.643437 2602 120 0.000000 143.643437 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1505 392.068913 E 394.221646 3.000000 206.843651 5415 120 0.000000 206.843651 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1482 0.012894 E 2.894979 3.000000 0.583316 4 120 0.000000 0.583316 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gdbus 1496 0.233532 E 2.720526 3.000000 1.188965 22 120 0.000000 1.188965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S wireplumber 1515 9.144716 E 9.344452 3.000000 112.045348 651 109 0.000000 112.045348 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1528 7.387174 E 10.325290 3.000000 0.194691 7 120 0.000000 0.194691 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1538 7.325290 E 10.316534 3.000000 0.041734 2 120 0.000000 0.041734 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1518 2.669021 E 5.657668 3.000000 0.061989 3 120 0.000000 0.061989 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1568 8.156596 E 11.144147 3.000000 0.100728 3 120 0.000000 0.100728 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1561 8.265857 E 11.247889 3.000000 0.366731 9 120 0.000000 0.366731 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1599 727.918675 E 730.629195 3.000000 21.630360 134 120 0.000000 21.630360 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1605 727.146396 E 729.978411 3.000000 9.736035 91 120 0.000000 9.736035 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1608 726.978411 E 729.734033 3.000000 9.900480 112 120 0.000000 9.900480 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3008 5.879336 E 210.308511 3.000000 0.040484 1 139 0.000000 0.040484 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3009 5.885425 E 8.879336 3.000000 0.006089 1 120 0.000000 0.006089 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1681 0.987359 E 2.007769 3.000000 0.061217 2 120 0.000000 0.061217 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 2406 516.285266 E 519.277559 3.000000 74.855288 1763 120 0.000000 74.855288 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2442 200.802238 E 203.083797 3.000000 2.686930 84 120 0.000000 2.686930 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2401 384.236085 E 387.189652 3.000000 16.526540 77 120 0.000000 16.526540 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 3726 384.189652 E 387.172762 3.000000 29.924391 57 120 0.000000 29.924391 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2721 0.409380 E 3.265151 3.000000 4.476361 233 120 0.000000 4.476361 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2723 0.432282 E 2.528786 3.000000 3.337825 71 120 0.000000 3.337825 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2727 0.657300 E 2.325290 3.000000 0.078513 3 120 0.000000 0.078513 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/3:3 2728 59963.684944 E 59966.680285 3.000000 40.128014 350 120 0.000000 40.128014 0.000000 0.000000 0 0 /\\n S Xwaylan:disk$0 3264 278.898908 E 483.348085 3.000000 0.083880 3 139 0.000000 0.083880 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sat-spi2-registr 3034 320.892867 E 323.863419 3.000000 9.827853 77 120 0.000000 9.827853 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3084 396.608166 E 398.928697 3.000000 1.378050 9 120 0.000000 1.378050 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3104 50.860674 E 53.826398 3.000000 0.155648 6 120 0.000000 0.155648 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3161 51.477948 E 54.430767 3.000000 0.086363 2 120 0.000000 0.086363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3165 265.319650 E 268.242694 3.000000 4.804589 50 120 0.000000 4.804589 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sound 3155 264.524415 E 267.507911 3.000000 10.096889 65 120 0.000000 10.096889 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3200 264.748433 E 267.666962 3.000000 4.545875 44 120 0.000000 4.545875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3173 52.876485 E 55.844305 3.000000 0.094693 4 120 0.000000 0.094693 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3195 53.525055 E 56.511106 3.000000 0.140273 3 120 0.000000 0.140273 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3212 262.457088 E 265.449831 3.000000 0.389984 12 120 0.000000 0.389984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-printer 3290 687.615620 E 690.465261 3.000000 187.874291 30 120 0.000000 187.874291 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3339 700.168791 E 703.029139 3.000000 0.936467 13 120 0.000000 0.936467 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3351 699.316593 E 701.734734 3.000000 3.194350 33 120 0.000000 3.194350 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3355 311.731393 E 314.671777 3.000000 0.146965 3 120 0.000000 0.146965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3356 408.298560 E 411.135610 3.000000 9.785534 67 120 0.000000 9.785534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-dconf 3360 312.231880 E 315.209559 3.000000 3.710779 6 120 0.000000 3.710779 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3365 311.671777 E 314.666437 3.000000 0.056426 2 120 0.000000 0.056426 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3368 312.703029 E 315.657097 3.000000 0.439195 10 120 0.000000 0.439195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3509 -1.026522 E 1.969433 3.000000 0.022054 3 120 0.000000 0.022054 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3511 3.665450 E 6.655609 3.000000 0.052600 3 120 0.000000 0.052600 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3551 9.844973 E 12.792466 3.000000 0.052507 1 120 0.000000 0.052507 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3599 197.020590 E 197.487604 3.000000 67.673866 80 120 0.000000 67.673866 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S sshd 3669 24.119215 E 26.352417 3.000000 60.985253 32 120 0.000000 60.985253 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sshd 3711 2716.872249 E 2719.269375 3.000000 3552.316457 10218 120 0.000000 3552.316457 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n I kworker/3:4 4403 56560.146387 E 56563.133575 3.000000 0.175468 2 120 0.000000 0.175468 0.000000 0.000000 0 0 /\\n S pool-spawner 4748 11.609030 E 14.551046 3.000000 0.057984 1 120 0.000000 0.057984 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5100 224.686053 E 227.677039 3.000000 61.547451 14 120 0.000000 61.547451 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5110 268.721718 E 271.652332 3.000000 1.698855 16 120 0.000000 1.698855 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5127 268.080230 E 270.854937 3.000000 0.225293 1 120 0.000000 0.225293 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5262 307.365255 E 310.358223 3.000000 2.509248 7 120 0.000000 2.509248 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5263 386.043126 E 389.005033 3.000000 2.660405 449 120 0.000000 2.660405 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sjemalloc_bg_thd 5374 800.336311 E 803.291675 3.000000 0.137950 4 120 0.000000 0.137950 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5393 441.075088 E 444.057442 3.000000 1.906891 4 120 0.000000 1.906891 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5397 441.007142 E 443.951633 3.000000 0.134457 6 120 0.000000 0.134457 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5455 329.155687 E 332.140177 3.000000 0.106899 6 120 0.000000 0.106899 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5539 386.801011 E 389.582981 3.000000 2.237213 15 120 0.000000 2.237213 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5666 1455.901773 E 1455.931322 3.000000 52.537643 16 120 0.000000 52.537643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5692 1542.872428 E 1545.867503 3.000000 39.486389 14 120 0.000000 39.486389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6339 2749.264215 E 2752.131956 3.000000 10.760643 17 120 0.000000 10.760643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6342 2748.954739 E 2751.740522 3.000000 9.140090 22 120 0.000000 9.140090 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5607 675.005069 E 677.994134 3.000000 108.505409 56 120 0.000000 108.505409 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5675 1497.517568 E 1500.507764 3.000000 53.995739 18 120 0.000000 53.995739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5642 1261.164512 E 1264.157881 3.000000 21.195408 8 120 0.000000 21.195408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5701 1573.282016 E 1576.275123 3.000000 54.439900 15 120 0.000000 54.439900 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6335 2738.808672 E 2741.790683 3.000000 0.042506 3 120 0.000000 0.042506 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5631 796.046325 E 798.991768 3.000000 40.045155 23 120 0.000000 40.045155 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5681 1527.879182 E 1529.909057 3.000000 33.967325 14 120 0.000000 33.967325 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5684 1530.679057 E 1533.672041 3.000000 36.744957 12 120 0.000000 36.744957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5711 1596.022219 E 1599.010783 3.000000 26.922198 10 120 0.000000 26.922198 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5712 1598.317683 E 1601.311774 3.000000 27.952471 10 120 0.000000 27.952471 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5713 1598.100775 E 1601.093750 3.000000 28.977268 10 120 0.000000 28.977268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5716 1603.713181 E 1606.705277 3.000000 27.988249 8 120 0.000000 27.988249 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5648 1264.334911 E 1267.326576 3.000000 21.039304 8 120 0.000000 21.039304 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5649 1267.119289 E 1270.110336 3.000000 23.813972 11 120 0.000000 23.813972 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5652 1267.460598 E 1270.456344 3.000000 24.138886 11 120 0.000000 24.138886 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5718 1603.710384 E 1606.705277 3.000000 34.052954 13 120 0.000000 34.052954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6350 937.274954 E 939.907193 3.000000 6.761954 8 120 0.000000 6.761954 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6357 944.544491 E 947.340961 3.000000 6.012580 14 120 0.000000 6.012580 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6358 944.703813 E 947.544491 3.000000 12.880370 18 120 0.000000 12.880370 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6370 2323.619652 E 2326.584193 3.000000 8.435160 262 120 0.000000 8.435160 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#4, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 116789\\n .nr_uninterruptible : 187\\n .next_balance : 4295.118969\\n .curr->pid : 0\\n .clock : 451852.194478\\n .clock_task : 451852.194478\\n .avg_idle : 772447\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[4]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1729.853329\\n .avg_vruntime : 1729.853329\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451814.682714\\n .se->vruntime : 8179.459260\\n .se->sum_exec_runtime : 1734.835514\\n .se->load.weight : 372956\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[4]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 8179.459260\\n .avg_vruntime : 8179.459260\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451814.682714\\n .se->vruntime : 14573.378601\\n .se->sum_exec_runtime : 2013.583191\\n .se->load.weight : 284120\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[4]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3296.910737\\n .avg_vruntime : 3296.910737\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451811.759294\\n .se->vruntime : 76978.371690\\n .se->sum_exec_runtime : 3668.097815\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 357.395595\\n .avg_vruntime : 357.395595\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451834.308444\\n .se->vruntime : 76978.445812\\n .se->sum_exec_runtime : 362.638159\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 76978.445812\\n .avg_vruntime : 76978.445812\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451834.308444\\n .se->vruntime : 104074.331930\\n .se->sum_exec_runtime : 20021.440741\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 258.128447\\n .avg_vruntime : 258.128447\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451811.130594\\n .se->vruntime : 104070.454171\\n .se->sum_exec_runtime : 261.906010\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 14573.378601\\n .avg_vruntime : 14573.378601\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451814.682714\\n .se->vruntime : 104074.257737\\n .se->sum_exec_runtime : 4719.041506\\n .se->load.weight : 140080\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[4]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 104074.331930\\n .avg_vruntime : 104074.331930\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 4\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[4]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[4]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S systemd 1 258.128447 E 261.115604 3.000000 3871.223344 4311 120 0.000000 3871.223344 0.000000 0.000000 0 0 /init.scope\\n S cpuhp/4 39 8611.189859 E 8614.138975 3.000000 0.358588 26 120 0.000000 0.358588 0.000000 0.000000 0 0 /\\n S idle_inject/4 40 -1.048576 E 1.201424 2.250000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S migration/4 41 1.176891 E 3.426891 2.250000 169.474372 174 0 0.000000 169.474372 0.000000 0.000000 0 0 /\\n S ksoftirqd/4 42 104061.542517 E 104064.523435 3.000000 19.502296 852 120 0.000000 19.502296 0.000000 0.000000 0 0 /\\n I kworker/4:0 43 102701.494851 E 102704.466699 3.000000 21.757246 350 120 0.000000 21.757246 0.000000 0.000000 0 0 /\\n I kworker/4:0H 44 132.163682 E 132.198197 3.000000 0.019668 4 100 0.000000 0.019668 0.000000 0.000000 0 0 /\\n I kworker/4:1 81 104063.818020 E 104066.807548 3.000000 178.254864 1766 120 0.000000 178.254864 0.000000 0.000000 0 0 /\\n Ikworker/R-ata_s 83 5.270300 E 5.304909 3.000000 0.000746 2 100 0.000000 0.000746 0.000000 0.000000 0 0 /\\n Ikworker/R-md_bi 85 5.270300 E 5.304909 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-devfr 87 5.273628 E 5.308237 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/128-pciehp 95 0.339759 E 2.659354 3.000000 0.006738 3 49 0.000000 0.006738 0.000000 0.000000 0 0 /\\n S hwrng 101 97736.190712 E 97738.754225 3.000000 30.641603 121 120 0.000000 30.641603 0.000000 0.000000 0 0 /\\n I kworker/4:1H 194 102700.521913 E 102700.555800 3.000000 9.218300 878 100 0.000000 9.218300 0.000000 0.000000 0 0 /\\n I kworker/4:2 468 57914.251469 E 57917.233388 3.000000 0.155689 16 120 0.000000 0.155689 0.000000 0.000000 0 0 /\\n Ikworker/R-cfg80 514 3339.240577 E 3339.275140 3.000000 0.012808 2 100 0.000000 0.012808 0.000000 0.000000 0 0 /\\n Sirq/197-iwlwifi 540 3926.376252 E 3929.374115 3.000000 16.674183 58 49 0.000000 16.674183 0.000000 0.000000 0 0 /\\n Sirq/201-iwlwifi 544 3926.622118 E 3929.620867 3.000000 0.136252 5 49 0.000000 0.136252 0.000000 0.000000 0 0 /\\n S pool-spawner 929 0.427240 E 3.421670 3.000000 0.182155 7 120 0.000000 0.182155 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 918 4.224344 E 6.070337 3.000000 17.705503 95 120 0.000000 17.705503 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 1042 1.501824 E 4.479627 3.000000 0.055072 2 120 0.000000 0.055072 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 925 123.595855 E 126.586312 3.000000 184.517409 557 120 0.000000 184.517409 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 838 328.342136 E 331.287501 3.000000 403.460051 5461 120 0.000000 403.460051 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gdbus 906 1.526547 E 4.378731 3.000000 65.221470 288 120 0.000000 65.221470 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gmain 935 756.210411 E 758.900880 3.000000 21.776671 114 120 0.000000 21.776671 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S gmain 1094 3.946236 E 6.930995 3.000000 0.050521 2 120 0.000000 0.050521 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S boltd 1085 23.231669 E 26.094332 3.000000 206.351912 1115 120 0.000000 206.351912 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gmain 1093 3.276503 E 6.269558 3.000000 0.066470 2 120 0.000000 0.066470 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S module-rt 1532 0.548481 E 3.506291 3.000000 0.195304 7 120 0.000000 0.195304 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1547 0.212741 E 3.208152 3.000000 0.019168 3 79 0.000000 0.019168 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1519 -1.009572 E 1.951424 3.000000 0.039004 1 120 0.000000 0.039004 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1535 10.910098 E 14.575757 3.000000 65.949337 133 121 0.000000 65.949337 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S dbus-daemon 1537 1114.605227 E 1117.595731 3.000000 131.416643 757 120 0.000000 131.416643 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1563 0.636104 E 3.602310 3.000000 0.327847 4 120 0.000000 0.327847 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1598 1113.829287 E 1116.791374 3.000000 0.482496 13 120 0.000000 0.482496 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1606 1115.915747 E 1117.868785 3.000000 9.669068 82 120 0.000000 9.669068 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1682 -1.007916 E 1.951424 3.000000 0.040660 1 120 0.000000 0.040660 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1700 295.680439 E 298.486174 3.000000 10.233894 150 120 0.000000 10.233894 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2443 284.936640 E 287.916427 3.000000 35.663598 1701 120 0.000000 35.663598 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2718 357.395595 E 360.359869 3.000000 48.984999 2651 120 0.000000 48.984999 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2402 44.216112 E 47.201754 3.000000 0.083347 6 120 0.000000 0.083347 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2404 311.380991 E 314.358454 3.000000 31.629601 77 120 0.000000 31.629601 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2420 44.291955 E 47.265037 3.000000 1.429798 32 120 0.000000 1.429798 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 3027 494.594461 E 497.580076 3.000000 1.096695 37 120 0.000000 1.096695 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dbus-daemon 3028 871.982914 E 874.971379 3.000000 8.820633 75 120 0.000000 8.820633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3040 23.893471 E 26.854493 3.000000 0.075685 2 120 0.000000 0.075685 0.000000 0.000000 0 0 /system.slice/colord.service\\n S pool-spawner 3070 84.801335 E 87.763845 3.000000 0.076250 2 120 0.000000 0.076250 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3071 84.763845 E 87.725839 3.000000 0.038006 1 120 0.000000 0.038006 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3086 585.187130 E 587.886236 3.000000 0.803427 9 120 0.000000 0.803427 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3113 121.997580 E 124.912918 3.000000 1.251295 53 120 0.000000 1.251295 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3120 104.510615 E 107.420360 3.000000 0.090255 1 120 0.000000 0.090255 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3132 104.942110 E 107.902899 3.000000 0.039211 1 120 0.000000 0.039211 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3147 432.291787 E 435.215403 3.000000 15.128436 45 120 0.000000 15.128436 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3199 432.208898 E 435.123843 3.000000 4.825108 55 120 0.000000 4.825108 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-power 3172 934.048735 E 936.983961 3.000000 531.922828 648 120 0.000000 531.922828 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gjs 3333 961.492427 E 962.754198 3.000000 64.931215 51 120 0.000000 64.931215 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3388 494.502646 E 497.479395 3.000000 0.383639 13 120 0.000000 0.383639 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x1:disk$0 3384 493.429311 E 698.009560 3.000000 0.064318 1 139 0.000000 0.064318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3391 494.823326 E 497.820442 3.000000 0.047210 2 120 0.000000 0.047210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 3453 0.638992 E 1.951424 3.000000 0.409584 1 120 0.000000 0.409584 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S module-rt 3508 16.982589 E 19.952500 3.000000 0.177132 8 120 0.000000 0.177132 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3512 16.731938 E 19.727789 3.000000 0.017591 3 120 0.000000 0.017591 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3519 17.278259 E 20.249377 3.000000 0.054962 2 120 0.000000 0.054962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S dbus-daemon 3501 17.501364 E 20.425841 3.000000 9.308695 60 120 0.000000 9.308695 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3547 17.425841 E 20.278259 3.000000 0.147582 1 120 0.000000 0.147582 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3596 0.171413 E 2.703804 3.000000 0.124783 1 120 0.000000 0.124783 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gdbus 4750 0.089371 E 2.823358 3.000000 0.503147 15 120 0.000000 0.503147 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S timer 4751 0.479745 E 2.495817 3.000000 0.024438 1 120 0.000000 0.024438 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/4:3 4828 57914.289385 E 57917.286600 3.000000 0.108756 5 120 0.000000 0.108756 0.000000 0.000000 0 0 /\\n S docker 5109 152.126586 E 155.068735 3.000000 0.361652 5 120 0.000000 0.361652 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5122 196.344791 E 199.329849 3.000000 63.034858 39 120 0.000000 63.034858 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5123 204.759538 E 207.521469 3.000000 15.347038 760 120 0.000000 15.347038 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5215 339.661927 E 342.648638 3.000000 0.213475 22 120 0.000000 0.213475 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5237 311.424438 E 314.380991 3.000000 1.377042 23 120 0.000000 1.377042 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5242 260.021354 E 262.990538 3.000000 1.439470 33 120 0.000000 1.439470 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5267 249.428702 E 252.410406 3.000000 0.050853 2 120 0.000000 0.050853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sjemalloc_bg_thd 5375 0.560167 E 2.423287 3.000000 0.016546 1 120 0.000000 0.016546 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5403 337.651376 E 338.283586 3.000000 2.798231 4 120 0.000000 2.798231 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5406 339.715217 E 342.703512 3.000000 0.169404 19 120 0.000000 0.169404 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5407 291.517519 E 294.508545 3.000000 0.110756 6 120 0.000000 0.110756 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5420 311.664247 E 314.656939 3.000000 2.972174 336 120 0.000000 2.972174 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5428 264.775703 E 267.763855 3.000000 0.397285 12 120 0.000000 0.397285 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5453 312.557531 E 315.508052 3.000000 3.591328 50 120 0.000000 3.591328 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5479 5.910874 E 8.239062 3.000000 24.294118 29 120 0.000000 24.294118 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 6352 3217.175095 E 3220.135461 3.000000 0.148844 2 120 0.000000 0.148844 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6356 3217.180599 E 3220.172006 3.000000 0.055941 3 120 0.000000 0.055941 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5693 2182.334914 E 2185.327152 3.000000 38.955454 14 120 0.000000 38.955454 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5670 2131.268004 E 2134.260351 3.000000 36.996673 11 120 0.000000 36.996673 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5671 2135.196688 E 2138.196688 3.000000 40.909890 14 120 0.000000 40.909890 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5640 1921.565079 E 1924.559625 3.000000 28.984572 12 120 0.000000 28.984572 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5644 1921.963150 E 1922.987767 3.000000 52.350338 20 120 0.000000 52.350338 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5696 2197.393849 E 2200.390282 3.000000 31.127998 15 120 0.000000 31.127998 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5699 2197.192376 E 2200.184357 3.000000 30.902525 11 120 0.000000 30.902525 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5632 1326.785621 E 1326.892101 3.000000 100.083757 4 120 0.000000 100.083757 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5576 3296.910737 E 3299.779386 3.000000 2869.557916 992 120 0.000000 2869.557916 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5658 1985.657062 E 1988.647654 3.000000 37.909073 12 120 0.000000 37.909073 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5660 1989.692299 E 1989.732082 3.000000 55.543120 15 120 0.000000 55.543120 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5719 2242.781412 E 2242.811558 3.000000 49.489219 18 120 0.000000 49.489219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6341 3216.000387 E 3218.984690 3.000000 0.065197 3 120 0.000000 0.065197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5623 162.656586 E 165.640957 3.000000 27.500143 268 120 0.000000 27.500143 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 5624 158.931702 E 161.693983 3.000000 2.537515 12 120 0.000000 2.537515 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6455 1686.533387 E 1687.011674 3.000000 110.049747 9 120 0.000000 110.049747 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Sjemalloc_bg_thd 6462 1686.660490 E 1689.533387 3.000000 0.127103 1 120 0.000000 0.127103 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Ssystemd-hostnam 6504 5.448524 E 6.564596 3.000000 53.460982 36 120 0.000000 53.460982 0.000000 0.000000 0 0 /system.slice/systemd-hostnamed.service\\n\\ncpu#5, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 124653\\n .nr_uninterruptible : -16\\n .next_balance : 4295.118975\\n .curr->pid : 0\\n .clock : 451858.274229\\n .clock_task : 451858.274229\\n .avg_idle : 817895\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[5]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3062.027691\\n .avg_vruntime : 3062.027691\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 722\\n .runnable_avg : 363\\n .util_avg : 363\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 722\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.669468\\n .se->vruntime : 9045.579502\\n .se->sum_exec_runtime : 3065.259159\\n .se->load.weight : 455554\\n .se->avg.load_avg : 313\\n .se->avg.util_avg : 363\\n .se->avg.runnable_avg : 363\\n\\ncfs_rq[5]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9045.579502\\n .avg_vruntime : 9045.579502\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 313\\n .runnable_avg : 363\\n .util_avg : 363\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 313\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.669468\\n .se->vruntime : 16433.236854\\n .se->sum_exec_runtime : 3345.155069\\n .se->load.weight : 502772\\n .se->avg.load_avg : 345\\n .se->avg.util_avg : 363\\n .se->avg.runnable_avg : 363\\n\\ncfs_rq[5]:/system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 20.648616\\n .avg_vruntime : 20.648616\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451584.093134\\n .se->vruntime : 27.169542\\n .se->sum_exec_runtime : 21.697192\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 230.221276\\n .avg_vruntime : 230.221276\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451558.414210\\n .se->vruntime : 66654.673856\\n .se->sum_exec_runtime : 234.430229\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3191.683955\\n .avg_vruntime : 3191.683955\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451799.556383\\n .se->vruntime : 66655.611831\\n .se->sum_exec_runtime : 3769.633266\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 27.169542\\n .avg_vruntime : 27.169542\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451584.093134\\n .se->vruntime : 66654.802129\\n .se->sum_exec_runtime : 27.585293\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 426.566085\\n .avg_vruntime : 426.566085\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451834.293065\\n .se->vruntime : 66655.622323\\n .se->sum_exec_runtime : 447.585919\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 56.964601\\n .avg_vruntime : 56.964601\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 3\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 3\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.065132\\n .se->vruntime : 66655.925805\\n .se->sum_exec_runtime : 72.532814\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 2\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[5]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 66655.925805\\n .avg_vruntime : 66655.925805\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 3\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 3\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.065132\\n .se->vruntime : 96368.920211\\n .se->sum_exec_runtime : 16649.294351\\n .se->load.weight : 838860\\n .se->avg.load_avg : 2\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[5]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 16433.236854\\n .avg_vruntime : 16433.236854\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 345\\n .runnable_avg : 363\\n .util_avg : 363\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 345\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.669468\\n .se->vruntime : 96369.999696\\n .se->sum_exec_runtime : 5513.289502\\n .se->load.weight : 513802\\n .se->avg.load_avg : 353\\n .se->avg.util_avg : 363\\n .se->avg.runnable_avg : 363\\n\\ncfs_rq[5]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 96369.999696\\n .avg_vruntime : 96369.999696\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 356\\n .runnable_avg : 366\\n .util_avg : 366\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[5]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[5]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/5 45 6999.749005 E 7002.677723 3.000000 0.271587 26 120 0.000000 0.271587 0.000000 0.000000 0 0 /\\n S idle_inject/5 46 -1.043636 E 1.204967 2.250000 0.004272 3 49 0.000000 0.004272 0.000000 0.000000 0 0 /\\n S migration/5 47 3.168235 E 5.417506 2.250000 170.663342 176 0 0.000000 170.663342 0.000000 0.000000 0 0 /\\n S ksoftirqd/5 48 96126.031305 E 96129.023476 3.000000 32.223848 1363 120 0.000000 32.223848 0.000000 0.000000 0 0 /\\n I kworker/5:0 49 96365.420034 E 96368.336649 3.000000 235.793054 3050 120 0.000000 235.793054 0.000000 0.000000 0 0 /\\n I kworker/5:0H 50 785.846494 E 785.880922 3.000000 0.029057 4 100 0.000000 0.029057 0.000000 0.000000 0 0 /\\n I kworker/5:1H 90 94633.409704 E 94633.444268 3.000000 7.763388 391 100 0.000000 7.763388 0.000000 0.000000 0 0 /\\n S irq/129-pciehp 96 0.336759 E 2.662268 3.000000 0.006014 3 49 0.000000 0.006014 0.000000 0.000000 0 0 /\\n Ikworker/R-acpi_ 100 803.615043 E 803.649645 3.000000 0.003136 2 100 0.000000 0.003136 0.000000 0.000000 0 0 /\\n I kworker/5:2 102 58304.487734 E 58307.474531 3.000000 6.779451 136 120 0.000000 6.779451 0.000000 0.000000 0 0 /\\n I kworker/R-mld 103 822.822143 E 822.856734 3.000000 0.020268 2 100 0.000000 0.020268 0.000000 0.000000 0 0 /\\n Ikworker/R-ipv6_ 105 822.824530 E 822.859136 3.000000 0.002654 2 100 0.000000 0.002654 0.000000 0.000000 0 0 /\\n Ikworker/R-kstrp 112 825.212532 E 825.247134 3.000000 0.002925 2 100 0.000000 0.002925 0.000000 0.000000 0 0 /\\n I kworker/5:3 129 95003.117617 E 95005.870542 3.000000 115.365216 919 120 0.000000 115.365216 0.000000 0.000000 0 0 /\\n Sirq/173-FRMW000 225 1210.147450 E 1213.127987 3.000000 0.350809 4 49 0.000000 0.350809 0.000000 0.000000 0 0 /\\n Sirq/174-PIXA385 227 1218.791465 E 1221.760797 3.000000 0.479717 4 49 0.000000 0.479717 0.000000 0.000000 0 0 /\\n Ssystemd-journal 315 56.964601 E 59.297212 3.000000 683.516839 1800 119 0.000000 683.516839 0.000000 0.000000 0 0 /system.slice/systemd-journald.service\\n S psimon 395 1769.940955 E 1772.934339 3.000000 0.031393 2 98 0.000000 0.031393 0.000000 0.000000 0 0 /\\n Sirq/198-iwlwifi 541 3741.717084 E 3744.716044 3.000000 9.022500 40 49 0.000000 9.022500 0.000000 0.000000 0 0 /\\n S avahi-daemon 793 131.015505 E 133.936233 3.000000 570.888680 1950 120 0.000000 570.888680 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S pool-spawner 917 0.598568 E 2.374275 3.000000 0.139307 3 120 0.000000 0.139307 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S snapd 2921 150.000733 E 153.000733 3.000000 139.295594 243 120 0.000000 139.295594 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gmain 953 0.274092 E 3.243919 3.000000 0.030173 1 120 0.000000 0.030173 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 855 215.924722 E 218.764853 3.000000 2.720858 28 120 0.000000 2.720858 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 858 3.421352 E 6.394871 3.000000 1.493133 34 120 0.000000 1.493133 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 844 301.159683 E 304.118640 3.000000 35.366466 385 120 0.000000 35.366466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S pool-spawner 877 0.968110 E 1.951424 3.000000 0.080466 1 120 0.000000 0.080466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S thermald 1119 308.989420 E 310.862161 3.000000 489.724637 251 120 0.000000 489.724637 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gmain 875 22.929713 E 25.735833 3.000000 18.457360 120 120 0.000000 18.457360 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S wpa_supplicant 901 2.063010 E 4.827437 3.000000 315.102041 452 120 0.000000 315.102041 0.000000 0.000000 0 0 /system.slice/wpa_supplicant.service\\n S in:imklog 955 22.487259 E 25.436705 3.000000 12.080483 127 120 0.000000 12.080483 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S pool-spawner 1096 5.835716 E 8.797854 3.000000 0.070490 2 120 0.000000 0.070490 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1108 18.018686 E 20.360362 3.000000 21.904680 121 120 0.000000 21.904680 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1113 1.961790 E 4.958126 3.000000 10.058361 153 120 0.000000 10.058361 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1114 3.685699 E 6.560944 3.000000 1.924538 74 120 0.000000 1.924538 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1115 1.948170 E 4.912969 3.000000 0.190242 20 120 0.000000 0.190242 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1447 2.681121 E 5.678513 3.000000 22.987360 343 120 0.000000 22.987360 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1459 421.147970 E 424.065184 3.000000 122.892796 4894 120 0.000000 122.892796 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1460 420.888971 E 423.886628 3.000000 222.699778 5376 120 0.000000 222.699778 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 1485 3.989182 E 6.948338 3.000000 16.521431 131 120 0.000000 16.521431 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gmain 1494 2.779321 E 5.771975 3.000000 0.065744 3 120 0.000000 0.065744 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire-pulse 1516 26.233418 E 26.485480 3.000000 19.482467 71 109 0.000000 19.482467 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S rtkit-daemon 1549 3.597258 E 6.558141 3.000000 5.091514 77 120 0.000000 5.091514 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n Sxdg-permission- 1557 26.114410 E 28.921546 3.000000 4.480217 9 120 0.000000 4.480217 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1601 1471.505255 E 1474.443542 3.000000 604.810592 2038 120 0.000000 604.810592 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1603 1471.702983 E 1474.659724 3.000000 8.721644 91 120 0.000000 8.721644 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1657 171.907138 E 174.896341 3.000000 206.971759 2083 120 0.000000 206.971759 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1669 344.620239 E 347.584650 3.000000 69.767271 2073 120 0.000000 69.767271 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2394 356.668054 E 359.629743 3.000000 47.946204 1790 120 0.000000 47.946204 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2524 426.566085 E 429.555593 3.000000 138.397182 4607 120 0.000000 138.397182 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-init 2511 20.648616 E 23.520343 3.000000 48.149640 495 120 0.000000 48.149640 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2817 0.969895 E 2.006035 3.000000 0.078681 2 120 0.000000 0.078681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S pool-spawner 3023 33.403610 E 36.375096 3.000000 0.062687 2 120 0.000000 0.062687 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3036 49.145973 E 52.105602 3.000000 0.040371 1 120 0.000000 0.040371 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 3069 409.720330 E 411.795486 3.000000 3.645960 9 120 0.000000 3.645960 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3087 923.987178 E 926.920563 3.000000 0.691954 9 120 0.000000 0.691954 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3102 260.315442 E 263.308450 3.000000 0.043178 2 120 0.000000 0.043178 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3125 271.161595 E 274.095199 3.000000 0.721540 8 120 0.000000 0.721540 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3134 695.253497 E 698.160802 3.000000 18.015111 51 120 0.000000 18.015111 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3142 271.415232 E 274.408854 3.000000 0.052239 2 120 0.000000 0.052239 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3144 283.234823 E 286.195976 3.000000 0.156948 5 120 0.000000 0.156948 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3148 1471.147506 E 1474.050348 3.000000 26.013297 210 120 0.000000 26.013297 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3160 274.593574 E 277.561112 3.000000 0.032462 1 120 0.000000 0.032462 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3205 694.073828 E 697.059396 3.000000 0.539966 11 120 0.000000 0.539966 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3190 291.047172 E 294.041558 3.000000 0.069455 3 120 0.000000 0.069455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3191 291.082083 E 294.047172 3.000000 0.064373 2 120 0.000000 0.064373 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3171 277.903854 E 280.871361 3.000000 0.032493 1 120 0.000000 0.032493 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3208 289.768671 E 292.723596 3.000000 0.045075 1 120 0.000000 0.045075 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3341 1268.500237 E 1271.417686 3.000000 1.040132 11 120 0.000000 1.040132 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3347 710.823685 E 713.793865 3.000000 0.043738 2 120 0.000000 0.043738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3348 710.793865 E 713.767416 3.000000 0.026449 1 120 0.000000 0.026449 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-daemon 3346 949.332769 E 952.288245 3.000000 42.959636 73 120 0.000000 42.959636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11 3362 923.587585 E 926.310829 3.000000 45.522706 130 120 0.000000 45.522706 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3371 726.850047 E 729.799574 3.000000 0.076524 2 120 0.000000 0.076524 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sibus-engine-sim 3378 728.885393 E 731.863437 3.000000 4.625539 14 120 0.000000 4.625539 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S systemd 3449 121.478344 E 124.227856 3.000000 714.259578 463 120 0.000000 714.259578 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S pw-data-loop 3513 1.729229 E 4.725188 3.000000 0.034825 5 120 0.000000 0.034825 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S wireplumber 3472 11.462644 E 13.755284 3.000000 40.504423 63 120 0.000000 40.504423 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3555 8.358478 E 11.299358 3.000000 0.319715 3 120 0.000000 0.319715 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3550 7.088145 E 10.059456 3.000000 0.088092 2 120 0.000000 0.088092 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3553 7.326957 E 10.315957 3.000000 0.238812 7 120 0.000000 0.238812 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fusermount3 3556 8.289925 E 10.425022 3.000000 0.864903 1 120 0.000000 0.864903 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Ssnapd-desktop-i 3594 12.810910 E 15.645251 3.000000 16.524009 26 120 0.000000 16.524009 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gmain 3597 12.645251 E 15.600431 3.000000 0.044820 1 120 0.000000 0.044820 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S docker 5103 77.367826 E 80.361952 3.000000 2.654622 20 120 0.000000 2.654622 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5104 76.789473 E 79.661122 3.000000 0.935648 8 120 0.000000 0.935648 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5105 76.471056 E 79.122576 3.000000 0.348480 1 120 0.000000 0.348480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5131 80.563750 E 83.192223 3.000000 1.136131 12 120 0.000000 1.136131 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5212 345.929760 E 348.904077 3.000000 0.025683 1 120 0.000000 0.025683 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5221 346.057686 E 349.014905 3.000000 0.042781 1 120 0.000000 0.042781 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5236 404.314929 E 407.283158 3.000000 1.122644 202 120 0.000000 1.122644 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5239 318.088842 E 321.070226 3.000000 0.081546 6 120 0.000000 0.081546 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5241 404.283158 E 406.645077 3.000000 2.547649 30 120 0.000000 2.547649 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5270 404.363962 E 407.314929 3.000000 1.214814 21 120 0.000000 1.214814 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5396 393.299699 E 396.076725 3.000000 0.339736 7 120 0.000000 0.339736 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 6329 402.895358 E 405.788258 3.000000 6.427080 17 120 0.000000 6.427080 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5405 356.859342 E 359.855343 3.000000 1.795184 14 120 0.000000 1.795184 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5409 356.858058 E 359.853277 3.000000 0.086967 4 120 0.000000 0.086967 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5410 356.739028 E 359.714574 3.000000 0.024454 1 120 0.000000 0.024454 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5419 323.414770 E 326.408620 3.000000 2.963462 8 120 0.000000 2.963462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5421 323.427369 E 326.411167 3.000000 0.463860 15 120 0.000000 0.463860 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5429 405.171022 E 407.431017 3.000000 3.618715 36 120 0.000000 3.618715 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5454 327.251540 E 330.239598 3.000000 0.078194 9 120 0.000000 0.078194 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5460 405.217540 E 408.212133 3.000000 2.894226 64 120 0.000000 2.894226 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5571 3191.683955 E 3194.536642 3.000000 3389.166854 1593 120 0.000000 3389.166854 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5614 1204.439296 E 1207.439296 3.000000 25.601066 7 120 0.000000 25.601066 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5617 1206.891768 E 1209.822325 3.000000 28.034014 9 120 0.000000 28.034014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5619 1208.780352 E 1210.861964 3.000000 29.914255 9 120 0.000000 29.914255 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6346 3174.366197 E 3177.354263 3.000000 0.074281 3 120 0.000000 0.074281 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5608 1185.932477 E 1188.922565 3.000000 37.946501 14 120 0.000000 37.946501 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5672 1995.255322 E 1995.274003 3.000000 73.850813 20 120 0.000000 73.850813 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5641 1768.202285 E 1771.193258 3.000000 54.929183 14 120 0.000000 54.929183 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5695 2071.651562 E 2071.688139 3.000000 32.936801 11 120 0.000000 32.936801 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5637 1539.174198 E 1540.010364 3.000000 38.326835 12 120 0.000000 38.326835 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5638 1538.793722 E 1540.152260 3.000000 37.736919 12 120 0.000000 37.736919 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5709 2084.464804 E 2087.450225 3.000000 29.991031 9 120 0.000000 29.991031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5654 2046.336174 E 2049.326048 3.000000 38.012486 12 120 0.000000 38.012486 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5657 1803.954929 E 1805.989704 3.000000 38.959841 12 120 0.000000 38.959841 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5659 1807.015254 E 1809.026693 3.000000 42.007189 11 120 0.000000 42.007189 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5714 2109.823685 E 2109.851682 3.000000 36.490008 12 120 0.000000 36.490008 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6340 3174.527383 E 3177.507711 3.000000 0.096351 3 120 0.000000 0.096351 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6336 3174.358195 E 3177.331577 3.000000 0.116229 3 120 0.000000 0.116229 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6345 3187.769027 E 3190.605767 3.000000 11.445595 34 120 0.000000 11.445595 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5625 10.233587 E 12.608430 3.000000 0.625157 1 120 0.000000 0.625157 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6355 20.039761 E 21.082544 3.000000 4.876816 7 120 0.000000 4.876816 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6361 28.804050 E 31.622006 3.000000 6.682534 15 120 0.000000 6.682534 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6456 3019.495445 E 3021.902284 3.000000 111.074206 2 120 0.000000 111.074206 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 6603 3062.027691 E 3065.019793 3.000000 0.275811 2 120 0.000000 0.275811 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#6, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 126142\\n .nr_uninterruptible : 107\\n .next_balance : 4295.118970\\n .curr->pid : 0\\n .clock : 451860.217796\\n .clock_task : 451860.217796\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[6]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3315.478582\\n .avg_vruntime : 3315.478582\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451852.639321\\n .se->vruntime : 70750.926365\\n .se->sum_exec_runtime : 3870.337328\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 45.214278\\n .avg_vruntime : 45.214278\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451695.635883\\n .se->vruntime : 70748.970149\\n .se->sum_exec_runtime : 46.368603\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 366.910362\\n .avg_vruntime : 366.910362\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451511.585632\\n .se->vruntime : 70745.463159\\n .se->sum_exec_runtime : 387.468081\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 685.593816\\n .avg_vruntime : 685.593816\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451860.217796\\n .se->vruntime : 70750.938753\\n .se->sum_exec_runtime : 688.259247\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 60.911594\\n .avg_vruntime : 60.911594\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451848.710912\\n .se->vruntime : 70750.782601\\n .se->sum_exec_runtime : 62.453933\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 70750.938753\\n .avg_vruntime : 70750.938753\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451860.217796\\n .se->vruntime : 95679.983302\\n .se->sum_exec_runtime : 16659.368579\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[6]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 95679.983302\\n .avg_vruntime : 95679.983302\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[6]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[6]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/6 51 8615.222785 E 8618.158454 3.000000 0.252486 26 120 0.000000 0.252486 0.000000 0.000000 0 0 /\\n S idle_inject/6 52 -1.048596 E 1.201404 2.250000 0.001435 3 49 0.000000 0.001435 0.000000 0.000000 0 0 /\\n S migration/6 53 3.285100 E 5.534388 2.250000 171.011231 179 0 0.000000 171.011231 0.000000 0.000000 0 0 /\\n S ksoftirqd/6 54 95668.710827 E 95671.704382 3.000000 21.629343 725 120 0.000000 21.629343 0.000000 0.000000 0 0 /\\n I kworker/6:0H 56 94249.342704 E 94249.377227 3.000000 4.432205 319 100 0.000000 4.432205 0.000000 0.000000 0 0 /\\n S irq/130-pciehp 97 0.333820 E 2.665268 3.000000 0.005759 3 49 0.000000 0.005759 0.000000 0.000000 0 0 /\\n I kworker/6:1 98 92929.297618 E 92932.280639 3.000000 14.071602 230 120 0.000000 14.071602 0.000000 0.000000 0 0 /\\n I kworker/6:1H 104 0.901750 E 0.936338 3.000000 0.024295 2 100 0.000000 0.024295 0.000000 0.000000 0 0 /\\n Ikworker/R-ext4- 265 715.149068 E 715.183650 3.000000 0.016782 2 100 0.000000 0.016782 0.000000 0.000000 0 0 /\\n Sirq/199-iwlwifi 542 3741.720024 E 3744.718960 3.000000 1.978287 27 49 0.000000 1.978287 0.000000 0.000000 0 0 /\\n I kworker/6:3 640 95679.568814 E 95682.551016 3.000000 122.077421 1883 120 0.000000 122.077421 0.000000 0.000000 0 0 /\\n Siio-sensor-prox 804 51.794222 E 54.650306 3.000000 342.582748 667 120 0.000000 342.582748 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S pool-spawner 931 3.995045 E 6.943176 3.000000 0.051869 1 120 0.000000 0.051869 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S gdbus 1047 143.517578 E 146.384318 3.000000 197.166109 893 120 0.000000 197.166109 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 926 367.066499 E 370.054060 3.000000 115.551238 461 120 0.000000 115.551238 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1045 246.848037 E 249.653279 3.000000 94.409312 356 120 0.000000 94.409312 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1046 367.049949 E 369.958080 3.000000 211.164930 790 120 0.000000 211.164930 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2920 367.196230 E 370.039140 3.000000 68.330233 205 120 0.000000 68.330233 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2922 361.812146 E 364.803584 3.000000 106.436659 92 120 0.000000 106.436659 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 3003 365.186450 E 367.965805 3.000000 105.540123 120 120 0.000000 105.540123 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 958 9.238449 E 12.208952 3.000000 0.475075 10 120 0.000000 0.475075 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 851 685.593816 E 688.581428 3.000000 1322.438400 18114 120 0.000000 1322.438400 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 949 3.796978 E 6.673936 3.000000 0.123042 1 120 0.000000 0.123042 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 1112 5.262021 E 8.244316 3.000000 0.017705 1 120 0.000000 0.017705 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S udisksd 845 29.210945 E 31.379140 3.000000 129.994760 374 120 0.000000 129.994760 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S probing-thread 1075 6.567609 E 9.544668 3.000000 0.022941 1 120 0.000000 0.022941 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 937 1.153308 E 4.086953 3.000000 0.098542 2 120 0.000000 0.098542 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S rs:main Q:Reg 956 60.911594 E 63.846365 3.000000 117.993205 2602 120 0.000000 117.993205 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S upowerd 1086 16.435362 E 18.726273 3.000000 139.602111 178 120 0.000000 139.602111 0.000000 0.000000 0 0 /system.slice/upower.service\\n S psimon 1430 9260.147662 E 9263.146878 3.000000 0.006730 2 98 0.000000 0.006730 0.000000 0.000000 0 0 /\\n S containerd 1457 366.910362 E 369.862716 3.000000 92.878329 12039 120 0.000000 92.878329 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1474 360.454976 E 362.653511 3.000000 101.682790 4188 120 0.000000 101.682790 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1530 2.618657 E 5.543553 3.000000 0.223127 6 120 0.000000 0.223127 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sdbus-run-sessio 1533 0.258773 E 2.587285 3.000000 1.487986 5 120 0.000000 1.487986 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1550 -1.032441 E 2.697765 3.000000 3.376933 61 0 0.000000 3.376933 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S gmain 1566 17.297077 E 20.277928 3.000000 0.097746 7 120 0.000000 0.097746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1570 17.355420 E 20.297077 3.000000 0.588370 21 120 0.000000 0.588370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1609 645.306871 E 647.788937 3.000000 9.618501 82 120 0.000000 9.618501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3029 275.589042 E 276.659165 3.000000 15.079471 7 120 0.000000 15.079471 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S krfcommd 1621 10074.755342 E 10075.075292 3.000000 0.065550 2 110 0.000000 0.065550 0.000000 0.000000 0 0 /\\n S dockerd 1667 360.733205 E 363.572264 3.000000 44.912651 1440 120 0.000000 44.912651 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1668 10.959996 E 13.909631 3.000000 0.136753 4 120 0.000000 0.136753 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1671 376.622448 E 379.612498 3.000000 35.314543 1107 120 0.000000 35.314543 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2691 432.733901 E 434.588218 3.000000 210.616890 5149 120 0.000000 210.616890 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1659 0.061295 E 3.028724 3.000000 1.514592 13 120 0.000000 1.514592 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S sshd 1702 74.518561 E 77.246586 3.000000 11.486317 11 120 0.000000 11.486317 0.000000 0.000000 0 0 /system.slice/ssh.service\\n Scontainerd-shim 2398 30.228595 E 33.220919 3.000000 3.863503 51 120 0.000000 3.863503 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2400 349.704701 E 352.666776 3.000000 5.757644 349 120 0.000000 5.757644 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2417 28.278836 E 31.246599 3.000000 0.032237 1 120 0.000000 0.032237 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2418 30.220839 E 33.148343 3.000000 0.624572 15 120 0.000000 0.624572 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2717 7.476168 E 10.461486 3.000000 28.234681 817 120 0.000000 28.234681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2724 8.330328 E 11.312981 3.000000 0.730104 41 120 0.000000 0.730104 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2729 0.009183 E 2.987065 3.000000 0.474507 16 120 0.000000 0.474507 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2763 28.885776 E 31.856462 3.000000 5.264668 92 120 0.000000 5.264668 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3037 69.004645 E 71.977650 3.000000 0.026995 1 120 0.000000 0.026995 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3083 288.025683 E 289.715393 3.000000 1.607031 8 120 0.000000 1.607031 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3088 286.715393 E 289.284690 3.000000 1.401843 9 120 0.000000 1.401843 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3124 87.455847 E 90.416578 3.000000 0.039269 1 120 0.000000 0.039269 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3131 302.640897 E 305.308430 3.000000 2.994609 50 120 0.000000 2.994609 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3158 93.881548 E 96.817284 3.000000 0.064264 1 120 0.000000 0.064264 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3182 109.126031 E 111.562635 3.000000 0.591888 2 120 0.000000 0.591888 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3184 108.724420 E 111.678855 3.000000 0.093578 2 120 0.000000 0.093578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3216 109.368449 E 112.350997 3.000000 0.217820 14 120 0.000000 0.217820 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3213 602.863968 E 605.510516 3.000000 272.558231 744 120 0.000000 272.558231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3293 586.573053 E 589.290637 3.000000 24.862703 32 120 0.000000 24.862703 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3337 606.691952 E 609.593211 3.000000 1.370128 13 120 0.000000 1.370128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3338 606.814834 E 609.691952 3.000000 1.139504 13 120 0.000000 1.139504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S module-rt 3510 4.969118 E 7.891565 3.000000 0.240480 6 120 0.000000 0.240480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3523 5.394138 E 8.306091 3.000000 0.426467 6 120 0.000000 0.426467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3546 5.427172 E 8.394138 3.000000 0.089890 2 120 0.000000 0.089890 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3548 5.547188 E 8.427172 3.000000 0.773129 24 120 0.000000 0.773129 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3712 1769.228912 E 1771.539168 3.000000 253.262402 496 120 0.000000 253.262402 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S gmain 4749 16.047752 E 18.987863 3.000000 0.059889 1 120 0.000000 0.059889 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/6:0 4983 93046.971518 E 93049.964560 3.000000 12.443337 250 120 0.000000 12.443337 0.000000 0.000000 0 0 /\\n S docker 5106 50.986184 E 53.966096 3.000000 2.021095 12 120 0.000000 2.021095 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5140 54.263056 E 57.253692 3.000000 4.202288 102 120 0.000000 4.202288 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5731 420.761734 E 423.757446 3.000000 0.414702 14 120 0.000000 0.414702 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5240 265.802650 E 268.788465 3.000000 0.020995 2 120 0.000000 0.020995 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5243 266.286329 E 269.275178 3.000000 0.261505 4 120 0.000000 0.261505 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5264 273.123925 E 276.097681 3.000000 1.821770 25 120 0.000000 1.821770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5266 267.028584 E 270.019464 3.000000 0.210716 13 120 0.000000 0.210716 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5339 350.511998 E 353.504211 3.000000 5.898392 135 120 0.000000 5.898392 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6330 415.398184 E 418.322540 3.000000 1.869973 5 120 0.000000 1.869973 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5422 351.534959 E 354.198323 3.000000 1.436353 20 120 0.000000 1.436353 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5450 279.103396 E 282.098400 3.000000 2.396339 8 120 0.000000 2.396339 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 5471 3309.767187 E 3312.637135 3.000000 21.372807 96 120 0.000000 21.372807 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5566 1.448927 E 4.109470 3.000000 0.339457 1 120 0.000000 0.339457 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5570 3315.478582 E 3318.347500 3.000000 3462.696334 2023 120 0.000000 3462.696334 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5604 954.763097 E 957.751202 3.000000 28.240943 116 120 0.000000 28.240943 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5663 1792.640288 E 1795.640288 3.000000 38.952545 12 120 0.000000 38.952545 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5668 1789.732642 E 1791.724291 3.000000 35.988177 10 120 0.000000 35.988177 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5606 969.507874 E 972.497742 3.000000 25.491566 11 120 0.000000 25.491566 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5609 971.056429 E 974.046014 3.000000 27.020193 26 120 0.000000 27.020193 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5610 971.458654 E 974.453476 3.000000 27.417031 12 120 0.000000 27.417031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5574 3315.347500 E 3318.235395 3.000000 3068.006666 1518 120 0.000000 3068.006666 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5707 1930.771185 E 1933.761817 3.000000 30.988047 9 120 0.000000 30.988047 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6332 3066.536604 E 3069.518774 3.000000 0.120233 3 120 0.000000 0.120233 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5628 1001.868572 E 1004.809337 3.000000 27.930046 12 120 0.000000 27.930046 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5629 1002.170072 E 1005.109190 3.000000 33.107018 10 120 0.000000 33.107018 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5679 1895.668218 E 1898.660660 3.000000 32.971433 10 120 0.000000 32.971433 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5683 1896.759957 E 1898.798855 3.000000 34.012241 10 120 0.000000 34.012241 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5720 1943.308345 E 1946.308345 3.000000 26.777888 7 120 0.000000 26.777888 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5723 1942.666364 E 1944.688960 3.000000 26.120826 8 120 0.000000 26.120826 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6338 3080.378005 E 3083.193564 3.000000 9.671179 24 120 0.000000 9.671179 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5621 45.214278 E 48.181573 3.000000 33.842127 329 120 0.000000 33.842127 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/6:2 6175 92929.306949 E 92932.303713 3.000000 0.028876 4 120 0.000000 0.028876 0.000000 0.000000 0 0 /\\n Z dbus-daemon 6293 644.368969 E 647.080696 3.000000 0.476516 2 120 0.000000 0.476516 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S postgres 6349 40.808053 E 43.686063 3.000000 11.516885 17 120 0.000000 11.516885 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6371 1775.784111 E 1778.722067 3.000000 6.850393 203 120 0.000000 6.850393 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 6457 1965.413699 E 1967.343072 3.000000 110.446962 10 120 0.000000 110.446962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 6372 44.102947 E 47.000996 3.000000 4.096345 19 120 0.000000 4.096345 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n\\ncpu#7, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 127335\\n .nr_uninterruptible : -59\\n .next_balance : 4295.118983\\n .curr->pid : 0\\n .clock : 451864.205919\\n .clock_task : 451864.205919\\n .avg_idle : 930162\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[7]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3286.116388\\n .avg_vruntime : 3286.116388\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 188\\n .runnable_avg : 188\\n .util_avg : 188\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 188\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.635024\\n .se->vruntime : 8986.100533\\n .se->sum_exec_runtime : 3290.679539\\n .se->load.weight : 142096\\n .se->avg.load_avg : 25\\n .se->avg.util_avg : 188\\n .se->avg.runnable_avg : 188\\n\\ncfs_rq[7]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 8986.100533\\n .avg_vruntime : 8986.100533\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 25\\n .runnable_avg : 188\\n .util_avg : 188\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 25\\n .tg_load_avg : 1015\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.635024\\n .se->vruntime : 18304.345498\\n .se->sum_exec_runtime : 3407.169495\\n .se->load.weight : 50533\\n .se->avg.load_avg : 9\\n .se->avg.util_avg : 188\\n .se->avg.runnable_avg : 188\\n\\ncfs_rq[7]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3392.684352\\n .avg_vruntime : 3392.684352\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451863.753672\\n .se->vruntime : 65358.589392\\n .se->sum_exec_runtime : 4033.633822\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 416.565099\\n .avg_vruntime : 416.565099\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451850.289119\\n .se->vruntime : 65358.487595\\n .se->sum_exec_runtime : 417.961531\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 24.296149\\n .avg_vruntime : 24.296149\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451841.052511\\n .se->vruntime : 65358.477394\\n .se->sum_exec_runtime : 25.812353\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 65358.589392\\n .avg_vruntime : 65358.589392\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451863.753672\\n .se->vruntime : 103708.621060\\n .se->sum_exec_runtime : 15370.875560\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 18304.345498\\n .avg_vruntime : 18304.345498\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 9\\n .runnable_avg : 188\\n .util_avg : 188\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 9\\n .tg_load_avg : 1255\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 451837.635024\\n .se->vruntime : 103708.375681\\n .se->sum_exec_runtime : 7472.416134\\n .se->load.weight : 25536\\n .se->avg.load_avg : 4\\n .se->avg.util_avg : 188\\n .se->avg.runnable_avg : 188\\n\\ncfs_rq[7]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 103708.632014\\n .avg_vruntime : 103708.632014\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 19\\n .runnable_avg : 204\\n .util_avg : 189\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[7]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[7]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S kthreadd 2 100764.923125 E 100767.859098 3.000000 6.873833 205 120 0.000000 6.873833 0.000000 0.000000 0 0 /\\n I rcu_preempt 17 103708.632014 E 103711.621060 3.000000 504.922871 14305 120 0.000000 504.922871 0.000000 0.000000 0 0 /\\n S cpuhp/7 57 8699.309454 E 8702.275668 3.000000 0.282413 26 120 0.000000 0.282413 0.000000 0.000000 0 0 /\\n S idle_inject/7 58 -1.048578 E 1.201422 2.250000 0.001352 3 49 0.000000 0.001352 0.000000 0.000000 0 0 /\\n S migration/7 59 3.384442 E 5.633801 2.250000 170.842675 172 0 0.000000 170.842675 0.000000 0.000000 0 0 /\\n S ksoftirqd/7 60 103541.217876 E 103544.208970 3.000000 17.225422 444 120 0.000000 17.225422 0.000000 0.000000 0 0 /\\n I kworker/7:0H 62 102195.825607 E 102195.859397 3.000000 9.047091 295 100 0.000000 9.047091 0.000000 0.000000 0 0 /\\n S kdevtmpfs 63 9325.916585 E 9328.878568 3.000000 8.686237 285 120 0.000000 8.686237 0.000000 0.000000 0 0 /\\n S khugepaged 74 102194.912850 E 102393.523043 3.000000 5.585585 121 139 0.000000 5.585585 0.000000 0.000000 0 0 /\\n S kswapd0 91 0.799409 E 2.181565 3.000000 0.034879 3 120 0.000000 0.034879 0.000000 0.000000 0 0 /\\n Secryptfs-kthrea 92 -1.016388 E 1.982554 3.000000 0.003235 2 120 0.000000 0.003235 0.000000 0.000000 0 0 /\\n I kworker/7:1 99 103708.448253 E 103711.430070 3.000000 253.521127 2115 120 0.000000 253.521127 0.000000 0.000000 0 0 /\\n I kworker/7:1H 186 54.192213 E 54.226778 3.000000 0.130453 2 100 0.000000 0.130453 0.000000 0.000000 0 0 /\\n I kworker/7:2 196 64826.238662 E 64829.224947 3.000000 133.597384 774 120 0.000000 133.597384 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 220 260.331222 E 260.365822 3.000000 0.004276 2 100 0.000000 0.004276 0.000000 0.000000 0 0 /\\n I kworker/u16:9 452 103686.741939 E 103689.637232 3.000000 207.351616 2697 120 0.000000 207.351616 0.000000 0.000000 0 0 /\\n Sirq/200-iwlwifi 543 3741.722959 E 3744.721790 3.000000 193.696050 1007 49 0.000000 193.696050 0.000000 0.000000 0 0 /\\n Ssystemd-timesyn 671 11.012820 E 13.179520 3.000000 65.811043 82 120 0.000000 65.811043 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n S gmain 932 5.984093 E 8.944402 3.000000 0.039691 1 120 0.000000 0.039691 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S polkitd 812 164.889061 E 167.835894 3.000000 676.727697 1209 120 0.000000 676.727697 0.000000 0.000000 0 0 /system.slice/polkit.service\\n Spower-profiles- 815 6.306037 E 8.958709 3.000000 42.592465 217 120 0.000000 42.592465 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S pool-spawner 952 0.552605 E 2.408198 3.000000 0.084044 2 120 0.000000 0.084044 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 950 416.565099 E 419.554898 3.000000 432.299487 5533 120 0.000000 432.299487 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gmain 874 8.807278 E 11.798542 3.000000 0.044986 2 120 0.000000 0.044986 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S NetworkManager 898 251.248832 E 253.648217 3.000000 966.663478 1604 120 0.000000 966.663478 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S in:imuxsock 954 24.296149 E 27.289538 3.000000 95.615988 2664 120 0.000000 95.615988 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S ModemManager 1073 39.373569 E 42.188584 3.000000 74.176347 367 120 0.000000 74.176347 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gdbus 1104 37.768442 E 39.540502 3.000000 25.778299 96 120 0.000000 25.778299 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1120 -1.040991 E 1.951424 3.000000 0.113711 2 120 0.000000 0.113711 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sleep 1149 39.073787 E 39.604681 3.000000 7.280071 3 120 0.000000 7.280071 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1476 369.883559 E 372.031781 3.000000 121.634855 4164 120 0.000000 121.634855 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1477 370.212557 E 373.207112 3.000000 134.076566 3124 120 0.000000 134.076566 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1493 0.604404 E 2.386227 3.000000 0.063206 3 120 0.000000 0.063206 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 1513 11.763534 E 14.743230 3.000000 12.527238 32 120 0.000000 12.527238 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1525 22.920219 E 25.873281 3.000000 11.380453 155 120 0.000000 11.380453 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sxdg-document-po 1548 22.929418 E 25.920219 3.000000 6.358220 29 120 0.000000 6.358220 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fuse mainloop 1567 19.595470 E 22.587394 3.000000 0.137316 5 120 0.000000 0.137316 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1558 18.304433 E 21.267038 3.000000 0.111080 2 120 0.000000 0.111080 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S cups-browsed 1656 72.928980 E 75.840648 3.000000 174.434844 735 120 0.000000 174.434844 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S gdbus 1683 44.255586 E 47.169345 3.000000 30.994633 262 120 0.000000 30.994633 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1665 387.715999 E 390.699088 3.000000 82.085644 1953 120 0.000000 82.085644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1673 0.023012 E 2.973127 3.000000 0.586838 20 120 0.000000 0.586838 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1703 404.236973 E 407.207709 3.000000 45.206785 1218 120 0.000000 45.206785 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2525 480.548251 E 482.509264 3.000000 80.950221 2628 120 0.000000 80.950221 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2528 454.870524 E 457.567165 3.000000 133.811331 3787 120 0.000000 133.811331 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1662 19.099682 E 22.073437 3.000000 0.997298 13 120 0.000000 0.997298 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n Scontainerd-shim 2419 359.175841 E 361.951284 3.000000 19.333163 83 120 0.000000 19.333163 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2818 12.785587 E 15.624806 3.000000 12.971388 33 120 0.000000 12.971388 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Sat-spi-bus-laun 3022 424.559544 E 427.521167 3.000000 3.389602 32 120 0.000000 3.389602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayla:traceq0 3268 365.997005 E 570.481954 3.000000 0.077355 4 139 0.000000 0.077355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3043 57.661466 E 60.641092 3.000000 4.306383 153 120 0.000000 4.306383 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gdbus 3073 207.807359 E 210.334322 3.000000 2.467237 14 120 0.000000 2.467237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3110 30.677526 E 33.625817 3.000000 0.075552 2 120 0.000000 0.075552 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3111 30.630162 E 33.591988 3.000000 0.038174 1 120 0.000000 0.038174 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3135 50.522322 E 53.477690 3.000000 0.080793 3 120 0.000000 0.080793 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3143 51.324937 E 54.279106 3.000000 0.083157 2 120 0.000000 0.083157 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3189 52.566712 E 55.538836 3.000000 0.112926 2 120 0.000000 0.112926 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3211 1467.846211 E 1470.663093 3.000000 19.246036 145 120 0.000000 19.246036 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-screensaver 3149 357.671192 E 360.642427 3.000000 5.256014 42 120 0.000000 5.256014 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3164 357.647615 E 360.580773 3.000000 4.749683 47 120 0.000000 4.749683 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-housekeepin 3169 3173.310323 E 3174.527353 3.000000 176.099519 124 120 0.000000 176.099519 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3207 353.954110 E 356.900350 3.000000 0.139738 3 120 0.000000 0.139738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3291 223.408768 E 226.036502 3.000000 1.806394 7 120 0.000000 1.806394 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3343 3092.494350 E 3095.348483 3.000000 1.291563 13 120 0.000000 1.291563 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11:sh0 3385 419.506573 E 422.481074 3.000000 0.025499 1 120 0.000000 0.025499 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3392 424.607454 E 427.559544 3.000000 0.047910 1 120 0.000000 0.047910 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3370 394.943027 E 397.936848 3.000000 0.039410 2 120 0.000000 0.039410 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3380 419.140487 E 422.107152 3.000000 0.033335 1 120 0.000000 0.033335 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3464 22.074172 E 25.016557 3.000000 16.001058 53 120 0.000000 16.001058 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3517 12.573708 E 15.568099 3.000000 0.023024 3 120 0.000000 0.023024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-document-po 3544 22.100524 E 25.096416 3.000000 5.893123 20 120 0.000000 5.893123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3557 22.144924 E 25.141339 3.000000 0.142775 5 120 0.000000 0.142775 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3558 22.141339 E 25.132316 3.000000 0.068673 3 120 0.000000 0.068673 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3598 3.360579 E 6.033303 3.000000 11.821224 56 120 0.000000 11.821224 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/7:3 3755 100880.583072 E 100883.575715 3.000000 16.726171 105 120 0.000000 16.726171 0.000000 0.000000 0 0 /\\n I kworker/7:0 5028 64826.231853 E 64829.229716 3.000000 0.008146 2 120 0.000000 0.008146 0.000000 0.000000 0 0 /\\n S docker 5102 27.814553 E 30.440931 3.000000 2.687934 20 120 0.000000 2.687934 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5130 32.710798 E 35.321772 3.000000 4.743828 75 120 0.000000 4.743828 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5208 478.765463 E 481.760704 3.000000 5.521849 662 120 0.000000 5.521849 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5214 396.628965 E 399.619883 3.000000 1.632861 6 120 0.000000 1.632861 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5216 396.205006 E 399.151410 3.000000 0.149899 4 120 0.000000 0.149899 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5217 396.329416 E 399.319519 3.000000 0.046450 2 120 0.000000 0.046450 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5218 396.450772 E 399.445603 3.000000 0.020033 2 120 0.000000 0.020033 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5219 396.731794 E 399.686069 3.000000 0.045725 1 120 0.000000 0.045725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5222 396.826857 E 399.811763 3.000000 0.015094 1 120 0.000000 0.015094 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5235 270.215607 E 273.195321 3.000000 2.769908 8 120 0.000000 2.769908 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5238 361.566231 E 364.560550 3.000000 2.908520 56 120 0.000000 2.908520 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5268 362.496450 E 365.208264 3.000000 2.132202 30 120 0.000000 2.132202 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_aof 5372 6.171250 E 9.150339 3.000000 0.020911 1 120 0.000000 0.020911 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 6328 455.135261 E 458.068568 3.000000 0.763705 6 120 0.000000 0.763705 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6178 362.549412 E 365.534457 3.000000 0.839896 6 120 0.000000 0.839896 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5457 284.338260 E 287.332839 3.000000 0.005421 1 120 0.000000 0.005421 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6179 363.400146 E 366.226144 3.000000 0.946426 4 120 0.000000 0.946426 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5562 2.778332 E 4.759018 3.000000 2.874720 9 120 0.000000 2.874720 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5564 0.356211 E 3.352639 3.000000 0.385910 2 120 0.000000 0.385910 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5567 0.289699 E 2.872177 3.000000 0.417522 2 120 0.000000 0.417522 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5601 910.364125 E 913.358635 3.000000 41.347394 21 120 0.000000 41.347394 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5662 1681.165612 E 1681.188384 3.000000 52.890599 17 120 0.000000 52.890599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5690 1759.655576 E 1761.689682 3.000000 32.986562 10 120 0.000000 32.986562 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5572 3392.582555 E 3395.511163 3.000000 3258.009292 972 120 0.000000 3258.009292 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5611 927.013891 E 930.004534 3.000000 30.958221 12 120 0.000000 30.958221 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5673 1716.676043 E 1719.667802 3.000000 47.953219 14 120 0.000000 47.953219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5698 1774.551283 E 1776.580995 3.000000 33.736341 12 120 0.000000 33.736341 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5635 1287.816586 E 1288.577374 3.000000 38.206043 11 120 0.000000 38.206043 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5636 1287.895610 E 1290.746600 3.000000 38.107591 11 120 0.000000 38.107591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5575 3392.684352 E 3395.582555 3.000000 3072.620920 1309 120 0.000000 3072.620920 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5627 989.132258 E 992.064464 3.000000 56.892128 21 120 0.000000 56.892128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5682 1750.007994 E 1752.998981 3.000000 35.980149 10 120 0.000000 35.980149 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6344 3198.674402 E 3201.541368 3.000000 11.659960 15 120 0.000000 11.659960 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6348 3190.540404 E 3193.521302 3.000000 0.070215 3 120 0.000000 0.070215 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5647 1753.844207 E 1756.837808 3.000000 23.001512 8 120 0.000000 23.001512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5650 1495.354451 E 1498.348112 3.000000 23.003437 7 120 0.000000 23.003437 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5651 1498.355809 E 1501.345904 3.000000 25.997880 8 120 0.000000 25.997880 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5653 1499.385527 E 1502.375556 3.000000 27.015431 8 120 0.000000 27.015431 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5721 1803.013378 E 1806.006859 3.000000 29.898894 9 120 0.000000 29.898894 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5722 1807.064009 E 1810.054337 3.000000 33.945514 12 120 0.000000 33.945514 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6351 111.209705 E 113.648274 3.000000 4.889442 12 120 0.000000 4.889442 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6366 3286.116388 E 3289.098165 3.000000 461.459299 568 120 0.000000 461.459299 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 6369 3077.789687 E 3080.779184 3.000000 0.150261 6 120 0.000000 0.150261 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 6458 3251.808991 E 3254.808991 3.000000 109.455403 10 120 0.000000 109.455403 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\n"}, "Docker Version": "Client: Docker Engine - Community\\n Version: 27.2.1\\n API version: 1.47\\n Go version: go1.22.7\\n Git commit: 9e34c9b\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Context: default\\n\\nServer: Docker Engine - Community\\n Engine:\\n Version: 27.2.1\\n API version: 1.47 (minimum version 1.24)\\n Go version: go1.22.7\\n Git commit: 8b539b8\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Experimental: false\\n containerd:\\n Version: 1.7.21\\n GitCommit: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc:\\n Version: 1.1.13\\n GitCommit: v1.1.13-0-g58aa920\\n docker-init:\\n Version: 0.19.0\\n GitCommit: de40ad0\\n", "Hardware Model": "Laptop", "Virtualization": "Unknown", "CPU Utilization": 0.0, "Hardware Vendor": "Framework", "Hyper Threading": "1", "Hardware Details": "framebook\\n description: Notebook\\n product: Laptop (FRANBMCP0A)\\n vendor: Framework\\n version: AA\\n serial: FRANBMCPAA1484005R\\n width: 64 bits\\n capabilities: smbios-3.3.0 dmi-3.3.0 smp vsyscall32\\n configuration: administrator_password=disabled boot=normal chassis=notebook family=FRANBMCP power-on_password=disabled sku=FRANBMCP0A uuid=1cd24d0f-5c53-ec11-810d-283616200463\\n *-core\\n description: Motherboard\\n product: FRANBMCP0A\\n vendor: Framework\\n physical id: 0\\n version: AA\\n serial: FRANBMCPAA1484005R\\n slot: *\\n *-firmware\\n description: BIOS\\n vendor: INSYDE Corp.\\n physical id: 0\\n version: 03.19\\n date: 05/29/2023\\n size: 128KiB\\n capacity: 12MiB\\n capabilities: pci upgrade shadowing cdboot bootselect int9keyboard int10video acpi usb biosbootspecification uefi\\n *-cpu\\n description: CPU\\n product: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\\n vendor: Intel Corp.\\n physical id: 4\\n bus info: cpu@0\\n version: 6.140.1\\n serial: To Be Filled By O.E.M.\\n slot: U3E1\\n size: 400MHz\\n capacity: 4200MHz\\n width: 64 bits\\n clock: 100MHz\\n capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect md_clear ibt flush_l1d arch_capabilities cpufreq\\n configuration: cores=4 enabledcores=4 microcode=184 threads=8\\n *-cache:0\\n description: L1 cache\\n physical id: 6\\n slot: L1 Cache\\n size: 128KiB\\n capacity: 128KiB\\n capabilities: synchronous internal write-back instruction\\n configuration: level=1\\n *-cache:1\\n description: L2 cache\\n physical id: 7\\n slot: L2 Cache\\n size: 5MiB\\n capacity: 5MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=2\\n *-cache:2\\n description: L3 cache\\n physical id: 8\\n slot: L3 Cache\\n size: 8MiB\\n capacity: 8MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=3\\n *-cache\\n description: L1 cache\\n physical id: 5\\n slot: L1 Cache\\n size: 192KiB\\n capacity: 192KiB\\n capabilities: synchronous internal write-back data\\n configuration: level=1\\n *-memory\\n description: System Memory\\n physical id: 14\\n slot: System board or motherboard\\n size: 32GiB\\n *-bank:0\\n description: [empty]\\n physical id: 0\\n slot: Controller0-ChannelA-DIMM0\\n *-bank:1\\n description: SODIMM DDR4 Synchronous 3200 MHz (0.3 ns)\\n product: CT32G4SFD832A.M16FF\\n vendor: Crucial Technology\\n physical id: 1\\n serial: E63FE743\\n slot: Controller1-ChannelA-DIMM0\\n size: 32GiB\\n width: 64 bits\\n clock: 3200MHz (0.3ns)\\n *-pci\\n description: Host bridge\\n product: 11th Gen Core Processor Host Bridge/DRAM Registers\\n vendor: Intel Corporation\\n physical id: 100\\n bus info: pci@0000:00:00.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n *-display\\n description: VGA compatible controller\\n product: TigerLake-LP GT2 [Iris Xe Graphics]\\n vendor: Intel Corporation\\n physical id: 2\\n bus info: pci@0000:00:02.0\\n logical name: /dev/fb0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb\\n configuration: depth=32 driver=i915 latency=0 mode=2256x1504 resolution=2256,1504 visual=truecolor xres=2256 yres=1504\\n resources: iomemory:600-5ff iomemory:400-3ff irq:204 memory:605c000000-605cffffff memory:4000000000-400fffffff ioport:3000(size=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff\\n *-generic:0\\n description: Signal processing controller\\n product: TigerLake-LP Dynamic Tuning Processor Participant\\n vendor: Intel Corporation\\n physical id: 4\\n bus info: pci@0000:00:04.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: driver=proc_thermal latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d180000-605d19ffff\\n *-pci:0\\n description: PCI bridge\\n product: 11th Gen Core Processor PCIe Controller\\n vendor: Intel Corporation\\n physical id: 6\\n bus info: pci@0000:00:06.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:126 memory:7a300000-7a3fffff\\n *-nvme\\n description: NVMe device\\n product: WDS100T1X0E-00AFY0\\n vendor: Sandisk Corp\\n physical id: 0\\n bus info: pci@0000:01:00.0\\n logical name: /dev/nvme0\\n version: 614900WD\\n serial: 22047A801405\\n width: 64 bits\\n clock: 33MHz\\n capabilities: nvme pm msi msix pciexpress nvm_express bus_master cap_list\\n configuration: driver=nvme latency=0 nqn=nqn.2018-01.com.wdc:nguid:E8238FA6BF53-0001-001B448B45A2BCF6 state=live\\n resources: irq:16 memory:7a300000-7a303fff\\n *-namespace:0\\n description: NVMe disk\\n physical id: 0\\n logical name: hwmon2\\n *-namespace:1\\n description: NVMe disk\\n physical id: 2\\n logical name: /dev/ng0n1\\n *-namespace:2\\n description: NVMe disk\\n physical id: 1\\n bus info: nvme@0:1\\n logical name: /dev/nvme0n1\\n size: 931GiB (1TB)\\n capabilities: gpt-1.00 partitioned partitioned:gpt\\n configuration: guid=45dd4e4e-5082-4f7b-926f-7bfbac3490ba logicalsectorsize=512 sectorsize=512 wwid=eui.e8238fa6bf530001001b448b45a2bcf6\\n *-volume:0 UNCLAIMED\\n description: Windows FAT volume\\n vendor: MSDOS5.0\\n physical id: 1\\n bus info: nvme@0:1,1\\n version: FAT32\\n serial: 74bd-e763\\n size: 95MiB\\n capacity: 99MiB\\n capabilities: boot fat initialized\\n configuration: FATs=2 filesystem=fat name=EFI system partition\\n *-volume:1\\n description: reserved partition\\n vendor: Windows\\n physical id: 2\\n bus info: nvme@0:1,2\\n logical name: /dev/nvme0n1p2\\n serial: 0ea6d81a-270e-4676-b42f-41e3e89d8733\\n capacity: 15MiB\\n capabilities: nofs\\n configuration: name=Microsoft reserved partition\\n *-volume:2\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 3\\n bus info: nvme@0:1,3\\n logical name: /dev/nvme0n1p3\\n version: 3.1\\n serial: c851c6e2-393b-f34f-a874-3f47e3b4d22a\\n size: 465GiB\\n capacity: 465GiB\\n capabilities: ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:22:01 filesystem=ntfs name=Basic data partition state=clean\\n *-volume:3\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 4\\n bus info: nvme@0:1,4\\n logical name: /dev/nvme0n1p4\\n version: 3.1\\n serial: 4c29-9ee3\\n size: 523MiB\\n capacity: 523MiB\\n capabilities: boot precious ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:25:01 filesystem=ntfs state=clean\\n *-volume:4\\n description: EXT4 volume\\n vendor: Linux\\n physical id: 5\\n bus info: nvme@0:1,5\\n logical name: /dev/nvme0n1p5\\n logical name: /\\n logical name: /var/snap/firefox/common/host-hunspell\\n version: 1.0\\n serial: c6c4e62b-4240-443a-8feb-6001a7f1b7b5\\n size: 465GiB\\n capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized\\n configuration: created=2024-03-22 19:59:07 filesystem=ext4 lastmountpoint=/ modified=2024-09-12 18:36:24 mount.fstype=ext4 mount.options=ro,noexec,noatime,errors=remount-ro mounted=2024-09-12 18:36:25 state=mounted\\n *-pci:1\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0\\n vendor: Intel Corporation\\n physical id: 7\\n bus info: pci@0000:00:07.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:127 ioport:4000(size=4096) memory:7c000000-881fffff ioport:6000000000(size=469762048)\\n *-pci:2\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1\\n vendor: Intel Corporation\\n physical id: 7.1\\n bus info: pci@0000:00:07.1\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:128 ioport:5000(size=4096) memory:6e000000-7a1fffff ioport:6020000000(size=469762048)\\n *-pci:3\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2\\n vendor: Intel Corporation\\n physical id: 7.2\\n bus info: pci@0000:00:07.2\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:129 ioport:6000(size=4096) memory:60000000-6c1fffff ioport:6040000000(size=469762048)\\n *-pci:4\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3\\n vendor: Intel Corporation\\n physical id: 7.3\\n bus info: pci@0000:00:07.3\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:130 ioport:7000(size=4096) memory:52000000-5e1fffff ioport:6060000000(size=469762048)\\n *-generic:1 UNCLAIMED\\n description: System peripheral\\n product: GNA Scoring Accelerator module\\n vendor: Intel Corporation\\n physical id: 8\\n bus info: pci@0000:00:08.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff memory:605d1d8000-605d1d8fff\\n *-generic:2\\n description: Signal processing controller\\n product: Tigerlake Telemetry Aggregator Driver\\n vendor: Intel Corporation\\n physical id: a\\n bus info: pci@0000:00:0a.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress pm cap_list\\n configuration: driver=intel_vsec latency=0\\n resources: iomemory:600-5ff irq:0 memory:605d1c0000-605d1c7fff\\n *-usb:0\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 USB Controller\\n vendor: Intel Corporation\\n physical id: d\\n bus info: pci@0000:00:0d.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: iomemory:600-5ff irq:148 memory:605d1b0000-605d1bffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@1\\n logical name: usb1\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=1 speed=480Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@2\\n logical name: usb2\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-usb:1\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #0\\n vendor: Intel Corporation\\n physical id: d.2\\n bus info: pci@0000:00:0d.2\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d140000-605d17ffff memory:605d1d7000-605d1d7fff\\n *-usb:2\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #1\\n vendor: Intel Corporation\\n physical id: d.3\\n bus info: pci@0000:00:0d.3\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d100000-605d13ffff memory:605d1d6000-605d1d6fff\\n *-communication:0\\n description: Serial controller\\n product: Tiger Lake-LP Integrated Sensor Hub\\n vendor: Intel Corporation\\n physical id: 12\\n bus info: pci@0000:00:12.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm 8250 bus_master cap_list\\n configuration: driver=intel_ish_ipc latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1a0000-605d1affff\\n *-usb:3\\n description: USB controller\\n product: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller\\n vendor: Intel Corporation\\n physical id: 14\\n bus info: pci@0000:00:14.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: irq:156 memory:7a400000-7a40ffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@3\\n logical name: usb3\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=12 speed=480Mbit/s\\n *-usb:0\\n description: Human interface device\\n product: HDMI Expansion Card\\n vendor: Framework\\n physical id: 1\\n bus info: usb@3:1\\n version: 0.00\\n serial: 11AD1D0001DB3E1540120B00\\n capabilities: usb-2.01\\n configuration: driver=usbhid maxpower=100mA speed=12Mbit/s\\n *-usb:1\\n description: Video\\n product: Laptop Camera\\n vendor: Generic\\n physical id: 7\\n bus info: usb@3:7\\n version: 0.21\\n serial: 200901010001\\n capabilities: usb-2.01\\n configuration: driver=uvcvideo maxpower=300mA speed=480Mbit/s\\n *-usb:2 UNCLAIMED\\n description: Generic USB device\\n product: Goodix USB2.0 MISC\\n vendor: Goodix Technology Co., Ltd.\\n physical id: 9\\n bus info: usb@3:9\\n version: 1.00\\n serial: UID7D62CCAE_XXXX_MOC_B0\\n capabilities: usb-2.00\\n configuration: maxpower=100mA speed=12Mbit/s\\n *-usb:3\\n description: Bluetooth wireless interface\\n product: AX210 Bluetooth\\n vendor: Intel Corp.\\n physical id: a\\n bus info: usb@3:a\\n version: 0.00\\n capabilities: bluetooth usb-2.01\\n configuration: driver=btusb maxpower=100mA speed=12Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@4\\n logical name: usb4\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-memory UNCLAIMED\\n description: RAM memory\\n product: Tiger Lake-LP Shared SRAM\\n vendor: Intel Corporation\\n physical id: 14.2\\n bus info: pci@0000:00:14.2\\n version: 20\\n width: 64 bits\\n clock: 33MHz (30.3ns)\\n capabilities: pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff memory:605d1cc000-605d1cffff memory:605d1d5000-605d1d5fff\\n *-serial:0\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #0\\n vendor: Intel Corporation\\n physical id: 15\\n bus info: pci@0000:00:15.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:27 memory:4017000000-4017000fff\\n *-serial:1\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #1\\n vendor: Intel Corporation\\n physical id: 15.1\\n bus info: pci@0000:00:15.1\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:40 memory:4017001000-4017001fff\\n *-serial:2\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #3\\n vendor: Intel Corporation\\n physical id: 15.3\\n bus info: pci@0000:00:15.3\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:30 memory:4017002000-4017002fff\\n *-communication:1\\n description: Communication controller\\n product: Tiger Lake-LP Management Engine Interface\\n vendor: Intel Corporation\\n physical id: 16\\n bus info: pci@0000:00:16.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=mei_me latency=0\\n resources: iomemory:600-5ff irq:191 memory:605d1d1000-605d1d1fff\\n *-pci:5\\n description: PCI bridge\\n product: Tiger Lake-LP PCI Express Root Port #10\\n vendor: Intel Corporation\\n physical id: 1d\\n bus info: pci@0000:00:1d.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:131 memory:7a200000-7a2fffff\\n *-network\\n description: Wireless interface\\n product: Wi-Fi 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak]\\n vendor: Intel Corporation\\n physical id: 0\\n bus info: pci@0000:aa:00.0\\n logical name: wlp170s0\\n version: 1a\\n serial: 00:93:37:96:a0:14\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\\n configuration: broadcast=yes driver=iwlwifi driverversion=6.8.0-44-generic firmware=86.fb5c9aeb.0 ty-a0-gf-a0-86.uc ip=192.168.179.3 latency=0 link=yes multicast=yes wireless=IEEE 802.11\\n resources: irq:17 memory:7a200000-7a203fff\\n *-isa\\n description: ISA bridge\\n product: Tiger Lake-LP LPC Controller\\n vendor: Intel Corporation\\n physical id: 1f\\n bus info: pci@0000:00:1f.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: isa bus_master\\n configuration: latency=0\\n *-pnp00:00\\n product: PnP device PNP0303\\n physical id: 0\\n capabilities: pnp\\n configuration: driver=i8042 kbd\\n *-pnp00:01\\n product: PnP device PNP0f03\\n physical id: 1\\n capabilities: pnp\\n configuration: driver=i8042 aux\\n *-pnp00:02\\n product: PnP device PNP0c02\\n physical id: 2\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:03\\n product: PnP device PNP0c02\\n physical id: 3\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:04\\n product: PnP device PNP0c02\\n physical id: 4\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:05\\n product: PnP device PNP0c02\\n physical id: 5\\n capabilities: pnp\\n configuration: driver=system\\n *-multimedia\\n description: Audio device\\n product: Tiger Lake-LP Smart Sound Technology Audio Controller\\n vendor: Intel Corporation\\n physical id: 1f.3\\n bus info: pci@0000:00:1f.3\\n logical name: card0\\n logical name: /dev/snd/controlC0\\n logical name: /dev/snd/hwC0D0\\n logical name: /dev/snd/hwC0D2\\n logical name: /dev/snd/pcmC0D0c\\n logical name: /dev/snd/pcmC0D0p\\n logical name: /dev/snd/pcmC0D3p\\n logical name: /dev/snd/pcmC0D7p\\n logical name: /dev/snd/pcmC0D8p\\n logical name: /dev/snd/pcmC0D9p\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=snd_hda_intel latency=32\\n resources: iomemory:600-5ff iomemory:600-5ff irq:205 memory:605d1c8000-605d1cbfff memory:605d000000-605d0fffff\\n *-input:0\\n product: HDA Intel PCH Mic\\n physical id: 0\\n logical name: input12\\n logical name: /dev/input/event9\\n *-input:1\\n product: HDA Intel PCH Headphone\\n physical id: 1\\n logical name: input13\\n logical name: /dev/input/event10\\n *-input:2\\n product: HDA Intel PCH HDMI/DP,pcm=3\\n physical id: 2\\n logical name: input14\\n logical name: /dev/input/event11\\n *-input:3\\n product: HDA Intel PCH HDMI/DP,pcm=7\\n physical id: 3\\n logical name: input15\\n logical name: /dev/input/event12\\n *-input:4\\n product: HDA Intel PCH HDMI/DP,pcm=8\\n physical id: 4\\n logical name: input16\\n logical name: /dev/input/event13\\n *-input:5\\n product: HDA Intel PCH HDMI/DP,pcm=9\\n physical id: 5\\n logical name: input17\\n logical name: /dev/input/event14\\n *-serial:3\\n description: SMBus\\n product: Tiger Lake-LP SMBus Controller\\n vendor: Intel Corporation\\n physical id: 1f.4\\n bus info: pci@0000:00:1f.4\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n configuration: driver=i801_smbus latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1d0000-605d1d00ff ioport:efa0(size=32)\\n *-serial:4\\n description: Serial bus controller\\n product: Tiger Lake-LP SPI Controller\\n vendor: Intel Corporation\\n physical id: 1f.5\\n bus info: pci@0000:00:1f.5\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: bus_master\\n configuration: driver=intel-spi latency=0\\n resources: irq:0 memory:50400000-50400fff\\n *-battery\\n description: Lithium Ion Battery\\n product: FRANBBAT\\n vendor: FRANBBATA112610BG3\\n physical id: 1\\n version: 2021/7/5\\n serial: 0194\\n slot: Front\\n configuration: voltage=0.0V\\n *-power UNCLAIMED\\n description: OEM Define 1\\n product: OEM Define 5\\n vendor: OEM Define 2\\n physical id: 2\\n version: OEM Define 6\\n serial: OEM Define 3\\n capacity: 75mWh\\n *-input:0\\n product: Lid Switch\\n physical id: 3\\n logical name: input0\\n logical name: /dev/input/event0\\n capabilities: platform\\n *-input:1\\n product: Power Button\\n physical id: 4\\n logical name: input1\\n logical name: /dev/input/event1\\n capabilities: platform\\n *-input:2\\n product: PIXA3854:00 093A:0274 Touchpad\\n physical id: 5\\n logical name: input10\\n logical name: /dev/input/event6\\n logical name: /dev/input/mouse1\\n capabilities: i2c\\n *-input:3\\n product: Video Bus\\n physical id: 6\\n logical name: input11\\n logical name: /dev/input/event8\\n capabilities: platform\\n *-input:4\\n product: AT Translated Set 2 keyboard\\n physical id: 7\\n logical name: input2\\n logical name: /dev/input/event2\\n logical name: input2::capslock\\n logical name: input2::numlock\\n logical name: input2::scrolllock\\n capabilities: i8042\\n *-input:5\\n product: ImExPS/2 Generic Explorer Mouse\\n physical id: 8\\n logical name: input4\\n logical name: /dev/input/event7\\n logical name: /dev/input/mouse2\\n capabilities: i8042\\n *-input:6\\n product: FRMW0001:00 32AC:0006 Wireless Radio Control\\n physical id: 9\\n logical name: input5\\n logical name: /dev/input/event3\\n capabilities: i2c\\n *-input:7\\n product: FRMW0001:00 32AC:0006 Consumer Control\\n physical id: a\\n logical name: input6\\n logical name: /dev/input/event4\\n capabilities: i2c\\n *-input:8\\n product: PIXA3854:00 093A:0274 Mouse\\n physical id: b\\n logical name: input9\\n logical name: /dev/input/event5\\n logical name: /dev/input/mouse0\\n capabilities: i2c\\n", "Operating System": "Ubuntu 24.04.1 LTS", "Scaling Governor": "powersave", "CPU Complete Dump": {"/sys/devices/system/cpu/online": "0-7\\n", "/sys/devices/system/cpu/uevent": "", "/sys/devices/system/cpu/offline": "\\n", "/sys/devices/system/cpu/present": "0-7\\n", "/sys/devices/system/cpu/isolated": "\\n", "/sys/devices/system/cpu/modalias": "cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n", "/sys/devices/system/cpu/possible": "0-7\\n", "/sys/devices/system/cpu/nohz_full": " (null)\\n", "/sys/devices/system/cpu/kernel_max": "8191\\n", "/sys/devices/system/cpu/smt/active": "1\\n", "/sys/devices/system/cpu/cpu0/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu1/online": "1\\n", "/sys/devices/system/cpu/cpu1/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu2/online": "1\\n", "/sys/devices/system/cpu/cpu2/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu3/online": "1\\n", "/sys/devices/system/cpu/cpu3/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu4/online": "1\\n", "/sys/devices/system/cpu/cpu4/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu5/online": "1\\n", "/sys/devices/system/cpu/cpu5/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu6/online": "1\\n", "/sys/devices/system/cpu/cpu6/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu7/online": "1\\n", "/sys/devices/system/cpu/cpu7/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/power/async": "disabled\\n", "/sys/devices/system/cpu/smt/control": "on\\n", "/sys/devices/system/cpu/power/control": "auto\\n", "/sys/devices/system/cpu/hotplug/states": " 0: offline\\n 1: threads:prepare\\n 2: perf:prepare\\n 3: perf/x86:prepare\\n 8: x86/mce:dead\\n 9: virtio/net:dead\\n 11: slub:dead\\n 13: mm/writeback:dead\\n 14: mm/vmstat:dead\\n 15: softirq:dead\\n 20: irq_poll:dead\\n 21: block/softirq:dead\\n 22: block/bio:dead\\n 23: acpi/cpu-drv:dead\\n 25: block/mq:dead\\n 26: fs/buffer:dead\\n 27: printk:dead\\n 28: mm/memctrl:dead\\n 29: lib/percpu_cnt:dead\\n 30: lib/radix:dead\\n 31: mm/page_alloc:pcp\\n 32: net/dev:dead\\n 34: iommu/iova:dead\\n 36: padata:dead\\n 38: random:prepare\\n 39: workqueue:prepare\\n 41: hrtimers:prepare\\n 43: x86/x2apic:prepare\\n 44: smpcfd:prepare\\n 45: relay:prepare\\n 47: RCU/tree:prepare\\n 55: base/topology:prepare\\n 58: trace/RB:prepare\\n 59: mm/zsmalloc:prepare\\n 63: timers:prepare\\n 65: fork:vm_stack_cache\\n 66: crash/cpuhp\\n 86: cpu:kick_ap\\n 87: cpu:bringup\\n 88: idle:dead\\n 89: ap:offline\\n 90: x86/cachectrl:starting\\n 91: sched:starting\\n 92: RCU/tree:dying\\n104: perf/x86:starting\\n106: perf/x86/cstate:starting\\n137: smpcfd:dying\\n138: hrtimers:dying\\n141: ap:online\\n142: cpu:teardown\\n145: kvm/cpu:online\\n146: sched:waitempty\\n147: smpboot/threads:online\\n148: irq/affinity:online\\n149: block/mq:online\\n151: x86/intel/epb:online\\n152: perf:online\\n153: perf/x86:online\\n154: perf/x86/intel/uncore:online\\n157: perf/x86/rapl:online\\n158: perf/x86/cstate:online\\n184: lockup_detector:online\\n185: workqueue:online\\n186: random:online\\n187: RCU/tree:online\\n188: base/cacheinfo:online\\n189: x86/splitlock\\n190: mm/writeback:online\\n191: mm/vmstat:online\\n192: padata:online\\n193: mm/compaction:online\\n194: io-wq/online\\n195: lib/percpu_cnt:online\\n196: idle/intel:online\\n197: acpi/cpu-drv:online\\n198: virtio/net:online\\n199: x86/therm:online\\n200: cpufreq:online\\n201: leds/trigger:starting\\n202: x86/mce:online\\n203: x86/microcode:online\\n204: x86/resctrl/cat:online:\\n205: printk:online\\n206: trace/hwlat:online\\n207: trace/osnoise:online\\n208: swap_slots_cache\\n209: x86/msr:online\\n210: powercap/rapl:online\\n211: perf/x86/intel/i915:online\\n212: powercap/rapl:online\\n213: hwmon/coretemp:online\\n214: thermal/x86_pkg:online\\n215: platform/x86/uncore-freq:online\\n232: sched:active\\n233: online\\n", "/sys/devices/system/cpu/cpu0/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu1/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu2/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu3/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu4/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu5/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu6/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu7/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu0/cache/uevent": "", "/sys/devices/system/cpu/cpu0/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu1/cache/uevent": "", "/sys/devices/system/cpu/cpu1/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu2/cache/uevent": "", "/sys/devices/system/cpu/cpu2/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu3/cache/uevent": "", "/sys/devices/system/cpu/cpu3/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu4/cache/uevent": "", "/sys/devices/system/cpu/cpu4/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu5/cache/uevent": "", "/sys/devices/system/cpu/cpu5/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu6/cache/uevent": "", "/sys/devices/system/cpu/cpu6/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu7/cache/uevent": "", "/sys/devices/system/cpu/cpu7/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu0/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu0/power/control": "auto\\n", "/sys/devices/system/cpu/cpu1/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu1/power/control": "auto\\n", "/sys/devices/system/cpu/cpu2/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu2/power/control": "auto\\n", "/sys/devices/system/cpu/cpu3/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu3/power/control": "auto\\n", "/sys/devices/system/cpu/cpu4/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu4/power/control": "auto\\n", "/sys/devices/system/cpu/cpu5/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu5/power/control": "auto\\n", "/sys/devices/system/cpu/cpu6/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu6/power/control": "auto\\n", "/sys/devices/system/cpu/cpu7/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu7/power/control": "auto\\n", "/sys/devices/system/cpu/cpu0/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu1/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu2/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu3/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu4/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu5/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu6/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu7/hotplug/target": "233\\n", "/sys/devices/system/cpu/intel_pstate/status": "active\\n", "/sys/devices/system/cpu/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/vulnerabilities/mds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu0/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu2/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu3/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu4/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu6/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu7/topology/die_id": "0\\n", "/sys/devices/system/cpu/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/vulnerabilities/l1tf": "Not affected\\n", "/sys/devices/system/cpu/cpu0/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu2/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu3/topology/core_id": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu6/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu7/topology/core_id": "3\\n", "/sys/devices/system/cpu/intel_pstate/no_turbo": "0\\n", "/sys/devices/system/cpu/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/vulnerabilities/srbds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu0/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu0/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu0/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu0/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu0/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu0/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu1/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu1/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu1/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu1/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu1/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu1/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu2/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu2/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu2/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu2/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu2/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu2/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu3/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu3/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu3/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu3/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu3/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu3/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu4/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu4/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu4/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu4/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu4/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu4/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu5/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu5/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu5/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu5/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu5/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu5/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu6/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu6/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu6/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu6/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu6/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu6/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu7/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu7/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu7/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu7/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu7/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu7/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpuidle/current_driver": "intel_idle\\n", "/sys/devices/system/cpu/intel_pstate/turbo_pct": "47\\n", "/sys/devices/system/cpu/cpu0/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu0/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu1/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu1/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu2/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu3/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu3/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu4/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu4/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu5/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu5/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu6/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu7/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu7/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu0/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu0/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/time": "57712\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/time": "17083322\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/time": "20497630\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/time": "377495887\\n", "/sys/devices/system/cpu/cpu0/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu1/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/time": "63367\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/time": "11380691\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/time": "10204582\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/time": "396751912\\n", "/sys/devices/system/cpu/cpu1/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu2/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/time": "53407\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/time": "12596136\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/time": "15413966\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/time": "388475973\\n", "/sys/devices/system/cpu/cpu2/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu3/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu3/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/time": "64999\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/time": "9852697\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/time": "8873992\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/time": "402899689\\n", "/sys/devices/system/cpu/cpu3/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpu4/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu4/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/time": "44038\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/time": "8256698\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/time": "6637790\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/time": "407623759\\n", "/sys/devices/system/cpu/cpu4/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu5/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/time": "55138\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/time": "9499904\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/time": "8239080\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/time": "406758780\\n", "/sys/devices/system/cpu/cpu5/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu6/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/time": "49762\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/time": "9530376\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/time": "7803189\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/time": "409242508\\n", "/sys/devices/system/cpu/cpu6/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu7/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu7/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/time": "62399\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/time": "9473987\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/time": "7937998\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/time": "405592869\\n", "/sys/devices/system/cpu/cpu7/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpuidle/current_governor": "menu\\n", "/sys/devices/system/cpu/intel_pstate/num_pstates": "39\\n", "/sys/devices/system/cpu/vulnerabilities/meltdown": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/retbleed": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/below": "1172\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/usage": "1313\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/above": "1255\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/below": "11333\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/usage": "56737\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/above": "1554\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/below": "11\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/usage": "22399\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/above": "28562\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/usage": "52665\\n", "/sys/devices/system/cpu/cpu0/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/below": "1547\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/usage": "1659\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/above": "1163\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/below": "6216\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/usage": "49377\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/above": "1075\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/below": "9\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/usage": "11257\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/above": "11613\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/usage": "29287\\n", "/sys/devices/system/cpu/cpu1/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/below": "1097\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/usage": "1175\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/above": "1741\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/below": "6469\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/usage": "54805\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/above": "1899\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/below": "9\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/usage": "16927\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/above": "9107\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/usage": "36213\\n", "/sys/devices/system/cpu/cpu2/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/below": "1488\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/usage": "1691\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/above": "1925\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/below": "5256\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/usage": "46814\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/above": "1286\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/below": "30\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/usage": "9659\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/above": "7493\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/usage": "25539\\n", "/sys/devices/system/cpu/cpu3/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/below": "1423\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/usage": "1654\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/above": "1038\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/below": "4635\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/usage": "41901\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/above": "797\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/below": "12\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/usage": "7249\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/above": "4100\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/usage": "16838\\n", "/sys/devices/system/cpu/cpu4/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/below": "1331\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/usage": "1426\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/above": "1275\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/below": "5280\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/usage": "45962\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/above": "1106\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/below": "32\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/usage": "8940\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/above": "5233\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/usage": "17372\\n", "/sys/devices/system/cpu/cpu5/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/below": "1117\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/usage": "1208\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/above": "1713\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/below": "5069\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/usage": "46272\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/above": "944\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/below": "11\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/usage": "8494\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/above": "4210\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/usage": "19065\\n", "/sys/devices/system/cpu/cpu6/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/below": "1459\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/usage": "1668\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/above": "1778\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/below": "5088\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/usage": "45936\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/above": "992\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/below": "14\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/usage": "8631\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/above": "5016\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/usage": "19560\\n", "/sys/devices/system/cpu/cpu7/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/intel_pstate/max_perf_pct": "100\\n", "/sys/devices/system/cpu/intel_pstate/min_perf_pct": "9\\n", "/sys/devices/system/cpu/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu0/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu1/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu2/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu3/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu4/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu5/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu6/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu7/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v1": "Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v2": "Mitigation: Enhanced / Automatic IBRS; IBPB: conditional; RSB filling; PBRSB-eIBRS: SW sequence; BHI: SW loop, KVM: SW loop\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu0/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu1/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu2/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu3/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu4/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu5/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu6/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu7/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpuidle/available_governors": "ladder menu teo \\n", "/sys/devices/system/cpu/cpuidle/current_governor_ro": "menu\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/feedback_ctrs": "ref:128486301840 del:78479811716\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/feedback_ctrs": "ref:78766421040 del:45304680461\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/feedback_ctrs": "ref:83631520656 del:46911811305\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/feedback_ctrs": "ref:70678352568 del:39415098277\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/feedback_ctrs": "ref:68077036560 del:44643804294\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/feedback_ctrs": "ref:65346090360 del:39051504136\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/feedback_ctrs": "ref:58480316592 del:35840112586\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/feedback_ctrs": "ref:67056424728 del:41958364529\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpufreq/policy0/related_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/related_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/related_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/related_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/related_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/related_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/related_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/related_cpus": "7\\n", "/sys/devices/system/cpu/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpufreq/policy0/affected_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/affected_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/affected_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/affected_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/affected_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/affected_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/affected_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/affected_cpus": "7\\n", "/sys/devices/system/cpu/vulnerabilities/itlb_multihit": "Not affected\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu0/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu1/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu2/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu3/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu4/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu5/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu6/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu7/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy1/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy2/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy3/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy4/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy5/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy6/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy7/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/vulnerabilities/mmio_stale_data": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/tsx_async_abort": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq": "715079\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_cur_freq": "400220\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_cur_freq": "400792\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_cur_freq": "3815200\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_cur_freq": "1069205\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_cur_freq": "2600383\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_cur_freq": "3840158\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu0/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/vulnerabilities/spec_store_bypass": "Mitigation: Speculative Store Bypass disabled via prctl\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu1/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu2/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu3/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu4/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu5/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu6/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu7/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/vulnerabilities/gather_data_sampling": "Mitigation: Microcode\\n", "/sys/devices/system/cpu/vulnerabilities/spec_rstack_overflow": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/vulnerabilities/reg_file_data_sampling": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us": "59817541\\n", "/sys/devices/system/cpu/cpu0/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us": "15846041\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/min_freq_khz": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_min_freq_khz": "400000\\n"}, "Docker Containers": "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES", "Network Interfaces": "2: wlp170s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1456 qdisc noqueue state UP group default qlen 1000\\n link/ether 00:93:37:96:a0:14 brd ff:ff:ff:ff:ff:ff\\n--\\n4: br-5358121b016d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:31:4c:7c:39 brd ff:ff:ff:ff:ff:ff\\n--\\n5: br-6e0ae77042d6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:29:4c:03:1e brd ff:ff:ff:ff:ff:ff\\n--\\n6: br-7688b5ca7e2d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:e5:22:19:30 brd ff:ff:ff:ff:ff:ff\\n--\\n7: br-9ba2a39b0b1e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:f5:74:c1:66 brd ff:ff:ff:ff:ff:ff\\n--\\n8: br-ce560083466a: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:a4:f4:58:34 brd ff:ff:ff:ff:ff:ff\\n--\\n9: br-17d7b4ff19e9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:40:0a:a9:6e brd ff:ff:ff:ff:ff:ff\\n--\\n10: br-b8fe670a4cd7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:15:10:5f:b5 brd ff:ff:ff:ff:ff:ff\\n--\\n11: br-c26dcd3569f9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:53:0c:b7:f6 brd ff:ff:ff:ff:ff:ff\\n--\\n13: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:2f:19:92:44 brd ff:ff:ff:ff:ff:ff\\n--\\n15: veth4b2531f@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default \\n link/ether 16:4d:d1:07:e9:34 brd ff:ff:ff:ff:ff:ff link-netnsid 0\\n--\\n27: br-cd08359ec224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:cb:56:8d:7d brd ff:ff:ff:ff:ff:ff\\n--\\n29: veth4f67909@if28: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether c2:8b:74:ce:4b:f2 brd ff:ff:ff:ff:ff:ff link-netnsid 2\\n--\\n31: veth3d72cc1@if30: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 56:6f:f8:d3:95:47 brd ff:ff:ff:ff:ff:ff link-netnsid 1\\n--\\n33: veth888843b@if32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 72:81:21:75:96:2a brd ff:ff:ff:ff:ff:ff link-netnsid 3\\n--\\n35: veth0c4fb2f@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 1e:1a:b4:b7:47:13 brd ff:ff:ff:ff:ff:ff link-netnsid 4\\n", "Current Clocksource": "tsc", "RAPL Energy Filtering": "0\\n", "Installed Python Packages": "aiohappyeyeballs==2.4.0\\naiohttp==3.10.3\\naiosignal==1.3.1\\nalembic==1.13.2\\nannotated-types==0.7.0\\nanybadge==1.14.0\\nanyio==4.4.0\\nattrs==24.2.0\\ncertifi==2024.8.30\\ncharset-normalizer==3.3.2\\nclick==8.1.7\\ncolorlog==6.8.2\\ndeepdiff==7.0.1\\ndnspython==2.6.1\\ndocker==7.1.0\\nemail_validator==2.2.0\\nfastapi==0.112.0\\nfastapi-cli==0.0.5\\nfrozenlist==1.4.1\\ngreenlet==3.1.0\\ngunicorn==23.0.0\\nh11==0.14.0\\nhiredis==3.0.0\\nhttpcore==1.0.5\\nhttptools==0.6.1\\nhttpx==0.27.2\\nidna==3.8\\nJinja2==3.1.4\\njoblib==1.4.2\\nMako==1.3.5\\nmarkdown-it-py==3.0.0\\nMarkupSafe==2.1.5\\nmdurl==0.1.2\\nmultidict==6.1.0\\nnumpy==2.0.1\\nnvidia-nccl-cu12==2.22.3\\noptuna==3.6.1\\nordered-set==4.1.0\\norjson==3.10.7\\npackaging==24.1\\npandas==2.2.2\\nplotext==5.2.8\\npsutil==6.0.0\\npsycopg==3.2.1\\npsycopg-binary==3.2.1\\npsycopg-pool==3.2.2\\npyarrow==17.0.0\\npydantic==2.9.1\\npydantic_core==2.23.3\\nPygments==2.18.0\\npyserial==3.5\\npython-dateutil==2.9.0.post0\\npython-dotenv==1.0.1\\npython-multipart==0.0.9\\npytz==2024.2\\nPyYAML==6.0.2\\nredis==5.0.8\\nrequests==2.32.3\\nrich==13.8.1\\nschema==0.7.7\\nscikit-learn==1.5.1\\nscipy==1.14.0\\nshellingham==1.5.4\\nsix==1.16.0\\nsniffio==1.3.1\\nSQLAlchemy==2.0.34\\nstarlette==0.37.2\\nthreadpoolctl==3.5.0\\ntqdm==4.66.5\\ntyper==0.12.5\\ntyping_extensions==4.12.2\\ntzdata==2024.1\\nurllib3==2.2.2\\nuvicorn==0.30.6\\nuvicorn-worker==0.2.0\\nuvloop==0.20.0\\nwatchfiles==0.24.0\\nwebsockets==13.0.1\\nxgboost==2.1.0\\nyarl==1.11.1\\n", "Installed System Packages": "Desired=Unknown/Install/Remove/Purge/Hold\\n| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend\\n|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\\n||/ Name Version Architecture Description\\n+++-=============================================-==========================================-============-===================================================================================\\nii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information\\nii acl 2.3.2-1build1 amd64 access control list - utilities\\nii adduser 3.137ubuntu1 all add and remove users and groups\\nii adwaita-icon-theme 46.0-1 all default icon theme of GNOME\\nii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files\\nii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files\\nii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files\\nii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA\\nii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs\\nii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn\'t go by time\\nii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version\\nii apparmor 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 user-space parser utility for AppArmor\\nii apport 2.28.1-0ubuntu3.1 all automatically generate crash reports for debugging\\nii apport-core-dump-handler 2.28.1-0ubuntu3.1 all Kernel core dump handler for Apport\\nii apport-gtk 2.28.1-0ubuntu3.1 all GTK+ frontend for the apport crash report system\\nii apport-symptoms 0.25 all symptom scripts for apport\\nii appstream 1.0.2-1build6 amd64 Software component metadata management\\nii apt 2.7.14build2 amd64 commandline package manager\\nii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads\\nii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads\\nii apt-utils 2.7.14build2 amd64 package management related utility programs\\nii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service\\nii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients\\nii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker\\nii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell\\nii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)\\nii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)\\nii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon\\nii baobab 46.0-1build1 amd64 GNOME disk usage analyzer\\nii base-files 13ubuntu10.1 amd64 Debian base system miscellaneous files\\nii base-passwd 3.6.3build1 amd64 Debian base system master password and group files\\nii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell\\nii bash-completion 1:2.11-8 all programmable completion for the bash shell\\nii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language\\nii bind9-dnsutils 1:9.18.28-0ubuntu0.24.04.1 amd64 Clients provided with BIND 9\\nii bind9-host 1:9.18.28-0ubuntu0.24.04.1 amd64 DNS Lookup Utility\\nii bind9-libs:amd64 1:9.18.28-0ubuntu0.24.04.1 amd64 Shared Libraries used by BIND 9\\nii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities\\nii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities\\nii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target\\nii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons\\nii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS\\nii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon\\nii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices\\nii boot-repair 4ppa2081 all Graphical tool to repair boot problems\\nii boot-sav 4ppa2081 all Librairies for Boot-Info, OS-uninstaller and Boot-repair\\nii boot-sav-extra 4ppa2081 all Extra librairies for OS-uninstaller and Boot-repair\\nii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)\\nii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF\\nii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display\\nii bsdextrautils 2.39.3-9ubuntu6.1 amd64 extra utilities from 4.4BSD-Lite\\nii bsdutils 1:2.39.3-9ubuntu6.1 amd64 basic utilities from 4.4BSD-Lite\\nii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation\\nii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages\\nii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs\\nii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities\\nii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities\\nii ca-certificates 20240203 all Common CA certificates\\nii ca-certificates-java 20240118 all Common CA certificates (JKS keystore)\\nii cloud-guest-utils 0.33-1 all cloud guest utilities\\nii cloud-init 24.2-0ubuntu1~24.04.2 all initialization and customization tool for cloud instances\\nii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon\\nii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files\\nii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions\\nii console-setup 1.226ubuntu1 all console font and keymap setup program\\nii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup\\nii containerd.io 1.7.21-1 amd64 An open and reliable container runtime\\nii coreutils 9.4-3ubuntu6 amd64 GNU core utilities\\nii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files\\nii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)\\nii cpp-11 11.4.0-9ubuntu1 amd64 GNU C preprocessor\\nii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor\\nii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu\\nii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture\\nii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2\\nii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon\\nii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon\'s configuration files\\nii cups 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface\\nii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed\\nii cups-bsd 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - BSD commands\\nii cups-client 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - client programs (SysV)\\nii cups-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - common files\\nii cups-core-drivers 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - driverless printing\\nii cups-daemon 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - daemon\\nii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package\\nii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing\\nii cups-ipp-utils 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities\\nii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges\\nii cups-ppdc 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities\\nii cups-server-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - server common files\\nii curl 8.5.0-2ubuntu10.3 amd64 command line tool for transferring data with URL syntax\\nii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell\\nii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)\\nii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)\\nii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)\\nii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)\\nii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)\\nii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)\\nii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator\\nii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities\\nii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end\\nii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service\\nii debconf 1.5.86ubuntu1 all Debian configuration management system\\nii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf\\nii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian\\nii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files\\nii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)\\nii dictionaries-common 1.29.7 all spelling dictionaries - common utilities\\nii diffutils 1:3.10-1build1 amd64 File comparison utilities\\nii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service\\nii distro-info 1.7build1 amd64 provides information about the distributions\' releases\\nii distro-info-data 0.60ubuntu0.1 all information about the distributions\' releases (data files)\\nii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder\\nii dmsetup 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme\\nii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key\\nii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable\\nii docbook-xml 4.5-12 all standard XML documentation system for software and systems\\nii docker-buildx-plugin 0.16.2-1~ubuntu.22.04~jammy amd64 Docker Buildx cli plugin.\\nii docker-ce 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker: the open-source application container engine\\nii docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine\\nii docker-ce-rootless-extras 5:27.2.1-1~ubuntu.22.04~jammy amd64 Rootless support for Docker.\\nii docker-compose-plugin 2.29.2-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.\\nii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems\\nii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system\\nii dpkg-dev 1.22.6ubuntu6.1 all Debian package development tools\\nii dracut-install 060+5-1ubuntu3.2 amd64 dracut is an event driven initramfs infrastructure (dracut-install)\\nii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities\\nii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends\\nii ed 1.20.1-1 amd64 classic UNIX line editor\\nii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager\\nii eject 2.39.3-9ubuntu6.1 amd64 ejects CDs and operates CD-Changers under Linux\\nii emacsen-common 3.0.5 all Common facilities for all emacsen\\nii enchant-2 2.3.3-2build2 amd64 Wrapper for various spell checker engines (binary programs)\\nii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program\\nii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files\\nii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings\\nii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer\\nii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files\\nii evolution-data-server 3.52.3-0ubuntu1 amd64 evolution database backend server\\nii evolution-data-server-common 3.52.3-0ubuntu1 all architecture independent files for Evolution Data Server\\nii fakeroot 1.33-1 amd64 tool for simulating superuser privileges\\nii fdisk 2.39.3-9ubuntu6.1 amd64 collection of partitioning utilities\\nii file 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers\\nii file-roller 44.3-0ubuntu1 amd64 archive manager for GNOME\\nii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs\\nii firefox 1:1snap1-0ubuntu5 amd64 Transitional package - firefox -> firefox snap\\nii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed\\nii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries\\nii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration\\nii fonts-beng 2:1.3 all Metapackage to install Bengali and Assamese fonts\\nii fonts-beng-extra 3.3.1-2 all TrueType fonts for Bengali language\\nii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters\\nii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters\\nii fonts-deva 2:1.4 all Meta package to install all Devanagari fonts\\nii fonts-deva-extra 3.0-6 all Free fonts for Devanagari script\\nii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)\\nii fonts-freefont-ttf 20211204+svn4273-2 all Freefont Serif, Sans and Mono Truetype fonts\\nii fonts-gargi 2.0-6 all OpenType Devanagari font\\nii fonts-gubbi 1.3-7 all Gubbi free font for Kannada script\\nii fonts-gujr 2:1.5 all Meta package to install all Gujarati fonts\\nii fonts-gujr-extra 1.0.1-2 all Free fonts for Gujarati script\\nii fonts-guru 2:1.3 all Meta package to install all Punjabi fonts\\nii fonts-guru-extra 2.0-5 all Free fonts for Punjabi language\\nii fonts-indic 2:1.4 all Meta package to install all Indian language fonts\\nii fonts-kalapi 1.0-5 all Kalapi Gujarati Unicode font\\nii fonts-knda 2:1.3 all Meta package for Kannada fonts\\nii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier\\nii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow\\nii fonts-lohit-beng-assamese 2.91.5-2 all Lohit TrueType font for Assamese Language\\nii fonts-lohit-beng-bengali 2.91.5-3 all Lohit TrueType font for Bengali Language\\nii fonts-lohit-deva 2.95.4-5 all Lohit TrueType font for Devanagari script\\nii fonts-lohit-gujr 2.92.4-4 all Lohit TrueType font for Gujarati Language\\nii fonts-lohit-guru 2.91.2-3 all Lohit TrueType font for Punjabi Language\\nii fonts-lohit-knda 2.5.4-3 all Lohit TrueType font for Kannada Language\\nii fonts-lohit-mlym 2.92.2-2 all Lohit TrueType font for Malayalam Language\\nii fonts-lohit-orya 2.91.2-2 all Lohit TrueType font for Oriya Language\\nii fonts-lohit-taml 2.91.3-2 all Lohit TrueType font for Tamil Language\\nii fonts-lohit-taml-classical 2.5.4-2 all Lohit Tamil TrueType fonts for Tamil script\\nii fonts-lohit-telu 2.5.5-2build1 all Lohit TrueType font for Telugu Language\\nii fonts-mlym 2:1.3 all Meta package to install all Malayalam fonts\\nii fonts-nakula 1.0-4 all Free Unicode compliant Devanagari font\\nii fonts-navilu 1.2-4 all Handwriting font for Kannada\\nii fonts-noto-cjk 1:20230817+repack1-3 all \\"No Tofu\\" font families with large Unicode coverage (CJK regular and bold)\\nii fonts-noto-color-emoji 2.042-1 all color emoji font from Google\\nii fonts-noto-core 20201225-2 all \\"No Tofu\\" font families with large Unicode coverage (core)\\nii fonts-noto-mono 20201225-2 all \\"No Tofu\\" monospaced font family with large Unicode coverage\\nii fonts-opensymbol 4:102.12+LibO24.2.5-0ubuntu0.24.04.2 all OpenSymbol TrueType font\\nii fonts-orya 2:1.3 all Meta package to install all Odia fonts\\nii fonts-orya-extra 2.0-6 all Free fonts for Odia script\\nii fonts-pagul 1.0-9 all Free TrueType font for the Sourashtra language\\nii fonts-sahadeva 1.0-5 all Free Unicode compliant Devanagari font\\nii fonts-samyak-deva 1.2.2-6 all Samyak TrueType font for Devanagari script\\nii fonts-samyak-gujr 1.2.2-6 all Samyak TrueType font for Gujarati language\\nii fonts-samyak-mlym 1.2.2-6 all Samyak TrueType font for Malayalam language\\nii fonts-samyak-taml 1.2.2-6 all Samyak TrueType font for Tamil language\\nii fonts-sarai 1.0-3 all truetype font for devanagari script\\nii fonts-sil-annapurna 2.000-2 all smart font for languages using Devanagari script\\nii fonts-smc 1:7.5 all Metapackage for various TrueType fonts for Malayalam Language\\nii fonts-smc-anjalioldlipi 7.1.2-2 all AnjaliOldLipi malayalam font\\nii fonts-smc-chilanka 1.540-2 all Chilanka malayalam font\\nii fonts-smc-dyuthi 3.0.2-2 all Dyuthi malayalam font\\nii fonts-smc-gayathri 1.200-1 all Gayathri Malayalam font\\nii fonts-smc-karumbi 1.1.2-2 all Karumbi malayalam font\\nii fonts-smc-keraleeyam 3.0.2-2 all Keraleeyam malayalam font\\nii fonts-smc-manjari 2.200-1 all Manjari malayalam font\\nii fonts-smc-meera 7.0.3-1 all Meera malayalam font\\nii fonts-smc-rachana 7.0.2-1build1 all Rachana malayalam font\\nii fonts-smc-raghumalayalamsans 2.2.1-1 all RaghuMalayalamSans malayalam font\\nii fonts-smc-suruma 3.2.3-1 all Suruma malayalam font\\nii fonts-smc-uroob 2.0.2-1 all Uroob malayalam font\\nii fonts-taml 2:1.4 all Meta package to install all Tamil fonts\\nii fonts-telu 2:1.3 all Meta package to install all Telugu fonts\\nii fonts-telu-extra 2.0-6 all Free fonts for Telugu script\\nii fonts-teluguvijayam 2.1-1 all TrueType fonts for Telugu script (te)\\nii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu\\nii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts\\nii fonts-yrsa-rasa 2.005-1 all Open-source, libre fonts for Latin + Gujarati\\nii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database\\nii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access\\nii freeipmi-common 1.6.13-3 all GNU implementation of the IPMI protocol - common files\\nii freeipmi-tools 1.6.13-3 amd64 GNU implementation of the IPMI protocol - tools\\nii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly\\nii ftp 20230507-2build3 all dummy transitional package for tnftp\\nii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)\\nii fwupd 1.9.24-1~24.04.1 amd64 Firmware update daemon\\nii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary\\nii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler\\nii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler\\nii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture\\nii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture\\nii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand\\nii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)\\nii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler\\nii gcc-11 11.4.0-9ubuntu1 amd64 GNU C compiler\\nii gcc-11-base:amd64 11.4.0-9ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler\\nii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture\\nii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture\\nii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)\\nii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)\\nii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger\\nii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool\\nii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager\\nii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service\\nii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library\\nii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system\\nii ghostscript 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF\\nii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService\\nii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita\\nii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)\\nii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)\\nii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4\\nii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library\\nii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components\\nii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library\\nii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library\\nii gir1.2-gdesktopenums-3.0:amd64 46.1-0ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas\\nii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library - GObject-Introspection\\nii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager\\nii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)\\nii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library\\nii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule\\nii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library\\nii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar\\nii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)\\nii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth\\nii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)\\nii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)\\nii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)\\nii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library\\nii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data\\nii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library\\nii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy\\nii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)\\nii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data\\nii gir1.2-javascriptcoregtk-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-javascriptcoregtk-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-mutter-14:amd64 46.2-1ubuntu0.24.04.1 amd64 GObject introspection data for Mutter\\nii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library\\nii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4\\nii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)\\nii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library\\nii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings\\nii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)\\nii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit\\nii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files\\nii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)\\nii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1\\nii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library\\nii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data\\nii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library\\nii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower\\nii gir1.2-vte-2.91:amd64 0.76.0-1ubuntu0.1 amd64 GObject introspection data for the VTE library\\nii gir1.2-webkit-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-webkit2-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library\\nii git 1:2.43.0-1ubuntu7.1 amd64 fast, scalable, distributed revision control system\\nii git-man 1:2.43.0-1ubuntu7.1 all fast, scalable, distributed revision control system (manual pages)\\nii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)\\nii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd\\nii glade2script 3.2.4~ppa23 all Glade interface engine for scripts\\nii glade2script-python3 3.2.4~ppa23 all Glade interface engine for scripts (Python3 version)\\nii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib\\nii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files\\nii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services\\nii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons\\nii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files\\nii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app\\nii gnome-calculator 1:46.1-1ubuntu1~24.04.1 amd64 GNOME desktop calculator\\nii gnome-characters 46.0-1build1 amd64 character map application\\nii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support\\nii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop\\nii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files\\nii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images\\nii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps\\nii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media\\nii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME\\nii gnome-initial-setup 46.2-1ubuntu0.24.04.1 amd64 Initial GNOME system setup helper\\nii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)\\nii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library\\nii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal\\nii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii gnome-online-accounts 3.50.4-0ubuntu2 amd64 service to manage online accounts for the GNOME desktop\\nii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop\\nii gnome-remote-desktop 46.3-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire\\nii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime\\nii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events\\nii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files\\nii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings\\nii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files\\nii gnome-shell 46.0-0ubuntu6~24.04.4 amd64 graphical shell for the GNOME desktop\\nii gnome-shell-common 46.0-0ubuntu6~24.04.4 all common files for the GNOME graphical shell\\nii gnome-shell-extension-appindicator 58-1 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell\\nii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell\\nii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell\\nii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1.1 all extension which adds a Windows-like snap assist to GNOME Shell\\nii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam\\nii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME\\nii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME\\nii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application\\nii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator\\nii gnome-text-editor 46.3-0ubuntu2 amd64 simple text editor for GNOME\\nii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine\\nii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files\\nii gnome-user-docs 46.0-1ubuntu1 all GNOME Help\\nii gnome-user-docs-de 46.0-1ubuntu1 all GNOME Help (German)\\nii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement\\nii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files\\nii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs\\nii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations\\nii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent\\nii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client\\nii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities\\nii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version\\nii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool\\nii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep\\nii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)\\nii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)\\nii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)\\nii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)\\nii grub-gfxpayload-lists 0.7build2 amd64 GRUB gfxpayload blacklist\\nii grub-pc 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)\\nii grub-pc-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)\\nii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)\\nii gsettings-desktop-schemas 46.1-0ubuntu1 all GSettings desktop-wide schemas\\nii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu\\nii gstreamer1.0-alsa:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugin for ALSA\\nii gstreamer1.0-gl:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for GL\\nii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)\\nii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit\\nii gstreamer1.0-pipewire:amd64 1.0.5-1ubuntu1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server\\nii gstreamer1.0-plugins-base:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins from the \\"base\\" set\\nii gstreamer1.0-plugins-base-apps 1.24.2-1ubuntu0.1 amd64 GStreamer helper programs from the \\"base\\" set\\nii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the \\"good\\" set\\nii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer\\nii gstreamer1.0-x:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for X11 and Pango\\nii gtk-update-icon-cache 3.24.41-4ubuntu1.1 amd64 icon theme caching utility\\nii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine\\nii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1.1 amd64 pixbuf-based theme for GTK 2\\nii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module\\nii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends\\nii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files\\nii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers\\nii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server\\nii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries\\nii gzip 1.12-1ubuntu3 amd64 GNU compression utilities\\nii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance\\nii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader\\nii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer\\nii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes\\nii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name\\nii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)\\nii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files\\nii humanity-icon-theme 0.6.16 all Humanity Icon theme\\nii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell\\nii hwdata 0.379-1 all hardware identification / configuration data\\nii ibus 1.5.29-2 amd64 Intelligent Input Bus - core\\nii ibus-data 1.5.29-2 all Intelligent Input Bus - data files\\nii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support\\nii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support\\nii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support\\nii ibus-table 1.17.4-2 all table engine for IBus\\nii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs\\nii ieee-data 20220827.1 all OUI and IAB listings\\nii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy\\nii im-config 0.57-2 all Input method configuration framework\\nii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client\\nii info 7.1-3build2 amd64 Standalone GNU Info documentation browser\\nii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed\\nii init-system-helpers 1.66ubuntu1 all helper tools for all init systems\\nii initramfs-tools 0.142ubuntu25.2 all generic modular initramfs generator (automation)\\nii initramfs-tools-bin 0.142ubuntu25.2 amd64 binaries used by initramfs-tools\\nii initramfs-tools-core 0.142ubuntu25.2 all generic modular initramfs generator (core tools)\\nii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem\\nii install-info 7.1-3build2 amd64 Manage installed documentation in info format\\nii intel-microcode 3.20240813.0ubuntu0.24.04.2 amd64 Processor microcode firmware for Intel CPUs\\nii ipmitool 1.8.19-7build2 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)\\nii ipp-usb 0.9.24-0ubuntu3.1 amd64 Daemon for IPP over USB printer support\\nii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools\\nii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT\\nii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts\\nii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host\\nii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations\\nii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool\\nii java-common 0.75+exp1 all Base package for Java runtimes\\nii javascript-common 11+nmu1 all Base support for JavaScript library packages\\nii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor\\nii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities\\nii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker\\nii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences\\nii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service\\nii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot\\nii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules\\nii language-pack-de 1:24.04+20240817 all translation updates for language German\\nii language-pack-de-base 1:24.04+20240817 all translations for language German\\nii language-pack-en 1:24.04+20240817 all translation updates for language English\\nii language-pack-en-base 1:24.04+20240817 all translations for language English\\nii language-pack-gnome-de 1:24.04+20240817 all GNOME translation updates for language German\\nii language-pack-gnome-de-base 1:24.04+20240817 all GNOME translations for language German\\nii language-pack-gnome-en 1:24.04+20240817 all GNOME translation updates for language English\\nii language-pack-gnome-en-base 1:24.04+20240817 all GNOME translations for language English\\nii language-selector-common 0.225 all Language selector for Ubuntu\\nii language-selector-gnome 0.225 all Language selector frontend for Ubuntu\\nii laptop-detect 0.16 all system chassis type checker\\nii less 590-2ubuntu2.1 amd64 pager program similar to more\\nii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library\\nii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library\\nii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries\\nii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library\\nii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones\\nii libaio1t64:amd64 0.3.113-6build1 amd64 Linux kernel AIO access library - shared library\\nii libalgorithm-diff-perl 1.201-1 all module to find differences between files\\nii libalgorithm-diff-xs-perl:amd64 0.04-8build3 amd64 module to find differences between files (XS accelerated)\\nii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data\\nii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)\\nii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library\\nii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library\\nii libapparmor1:amd64 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 changehat AppArmor library\\nii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services\\nii libapr1-dev 1.7.2-3.1build2 amd64 Apache Portable Runtime Library - Development Headers\\nii libapr1t64:amd64 1.7.2-3.1build2 amd64 Apache Portable Runtime Library\\nii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library\\nii libarchive13t64:amd64 3.7.2-2ubuntu0.1 amd64 Multi-format archive and compression library (shared library)\\nii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library\\nii libasan6:amd64 11.4.0-9ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers\\nii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications\\nii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library\\nii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components\\nii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library\\nii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library\\nii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge\\nii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library\\nii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit\\nii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)\\nii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions\\nii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions\\nii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library\\nii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library\\nii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files\\nii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing\\nii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework\\nii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library\\nii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files\\nii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library\\nii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi\'s embeddable mDNS/DNS-SD library\\nii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library\\nii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices\\nii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)\\nii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators\\nii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)\\nii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries\\nii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)\\nii libblkid-dev:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library - headers\\nii libblkid1:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library\\nii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev\\nii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev\\nii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev\\nii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev\\nii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev\\nii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev\\nii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev\\nii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev\\nii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices\\nii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack\\nii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library\\nii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization\\nii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading\\nii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)\\nii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)\\nii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library\\nii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)\\nii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library\\nii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions\\nii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations\\nii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes\\nii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime\\nii libc-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Binaries\\nii libc-dev-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Development binaries\\nii libc-devtools 2.39-0ubuntu8.3 amd64 GNU C Library: Development tools\\nii libc6:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Shared libraries\\nii libc6-dbg:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: detached debugging symbols\\nii libc6-dev:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Development Libraries and Header Files\\nii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library\\nii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl\\nii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)\\nii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library\\nii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)\\nii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library\\nii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)\\nii libcamel-1.2-64t64:amd64 3.52.3-0ubuntu1 amd64 Evolution MIME message handling library\\nii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library\\nii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra\\nii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds\\nii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra\\nii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds\\nii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library\\nii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)\\nii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)\\nii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)\\nii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB\\nii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs\\nii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction\\nii libcdio19t64:amd64 2.1.0-4.1ubuntu1.2 amd64 library to read and control CD-ROM\\nii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)\\nii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library\\nii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library\\nii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes\\nii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)\\nii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)\\nii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord\\nii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime\\nii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime\\nii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library\\nii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library\\nii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files\\nii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library\\nii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.1 amd64 disk encryption support - shared library\\nii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)\\nii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)\\nii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library\\nii libcups2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Core library\\nii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files\\nii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library\\nii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Raster image library\\nii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)\\nii libcurl4t64:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)\\nii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library\\nii libdata-dump-perl 1.25-1 all Perl module to help dump data structures\\nii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library\\nii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]\\nii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)\\nii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC\\nii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus\\nii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version\\nii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library\\nii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation\\nii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)\\nii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server\\nii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)\\nii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library\\nii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK\\nii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib\\nii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression\\nii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre\\nii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format\\nii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files\\nii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules\\nii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime\\nii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files\\nii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime\\nii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime\\nii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime\\nii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime\\nii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library\\nii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)\\nii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information\\nii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library\\nii libebackend-1.2-11t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libebook-1.2-21t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution address books\\nii libebook-contacts-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution contacts books\\nii libecal-2.0-3:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution calendars\\nii libedata-book-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution address books\\nii libedata-cal-2.0-2t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution calendars\\nii libedataserver-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedataserverui-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries\\nii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library\\nii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libegl-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library\\nii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support\\nii libei1:amd64 1.2.1-1 amd64 Emulated Input client library\\nii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library\\nii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files\\nii libenchant-2-2:amd64 2.3.3-2build2 amd64 Wrapper library for various spell checker engines (runtime libs)\\nii libencode-locale-perl 1.05-3 all utility to determine the locale encoding\\nii libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files\\nii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library\\nii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way\\nii libespeak-ng1:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: shared library\\nii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)\\nii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices\\nii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library\\nii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets\\nii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)\\nii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files\\nii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library\\nii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library\\nii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit\\nii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries\\nii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library\\nii libexttextcat-data 3.4.7-1build1 all Language detection library - data files\\nii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions\\nii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries\\nii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C\\nii libfdisk1:amd64 2.39.3-9ubuntu6.1 amd64 fdisk partitioning library\\nii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)\\nii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime\\nii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision\\nii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects\\nii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification\\nii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files\\nii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)\\nii libfile-listing-perl 6.16-1 all module to parse directory listings\\nii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types\\nii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library\\nii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library\\nii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files\\nii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime\\nii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library\\nii libfprint-2-2 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, shared libraries\\nii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, drivers shared libraries\\nii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX\\nii libfreeipmi17 1.6.13-3 amd64 GNU IPMI - libraries\\nii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)\\nii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)\\nii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files\\nii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm\\nii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers\\nii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)\\nii libfwupd2:amd64 1.9.24-1~24.04.1 amd64 Firmware update daemon library\\nii libgail-common:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- common modules\\nii libgail18t64:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- shared libraries\\nii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)\\nii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)\\nii libgbm1:amd64 24.0.9-0ubuntu0.1 amd64 generic buffer management API -- runtime\\nii libgcc-11-dev:amd64 11.4.0-9ubuntu1 amd64 GCC support library (development files)\\nii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)\\nii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library\\nii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks\\nii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks\\nii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks\\nii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library\\nii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library\\nii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files\\nii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries\\nii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version) \\nii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version) \\nii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library\\nii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library (thumbnailer)\\nii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 all GDK Pixbuf library - data files\\nii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)\\nii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library\\nii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service\\nii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim\\nii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library\\nii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)\\nii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)\\nii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data\\nii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform\\nii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support\\nii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules\\nii libgl1-mesa-dri:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules\\nii libglapi-mesa:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the GL API -- shared library\\nii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support\\nii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries\\nii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries\\nrc libglib2.0-0:amd64 2.72.4-0ubuntu2.3 amd64 GLib library of C routines\\nii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines\\nii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library\\nii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library\\nii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library\\nii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library\\nii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)\\nii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)\\nii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library\\nii libglx-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library\\nii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support\\nii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library\\nii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME\\nii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files\\nii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library\\nii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library\\nii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version\\nii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files\\nii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files\\nii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files\\nii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library\\nii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.2 amd64 GNU TLS library - main runtime library\\nii libgoa-1.0-0b:amd64 3.50.4-0ubuntu2 amd64 library for GNOME Online Accounts\\nii libgoa-1.0-common 3.50.4-0ubuntu2 all library for GNOME Online Accounts - common files\\nii libgoa-backend-1.0-2:amd64 3.50.4-0ubuntu2 amd64 backend library for GNOME Online Accounts\\nii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library\\nii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library\\nii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)\\nii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME\\nii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library\\nii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages\\nii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library\\nii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library\\nii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)\\nii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types\\nii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library\\nii libgs-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - ICC profiles\\nii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF - Library\\nii libgs10-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - common files\\nii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version\\nii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files\\nii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds\\nii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications\\nii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files\\nii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism\\nii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP\\nii libgstreamer-gl1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer GL libraries\\nii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer libraries from the \\"base\\" set\\nii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the \\"good\\" set\\nii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements\\nrc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library\\nii libgtk-3-0t64:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library\\nii libgtk-3-bin 3.24.41-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk-3-common 3.24.41-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library\\nii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library\\nii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library\\nii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library\\nrc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-bin 2.24.33-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk2.0-common 2.24.33-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library\\nii libgtkmm-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)\\nii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget\\nii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget\\nii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)\\nii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)\\nii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev\\nii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP\\nii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP\\nii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP\\nii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1\\nii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library\\nii libgweather-4-common 4.4.2-1build1 all GWeather common files\\nii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)\\nii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones\\nii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)\\nii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend\\nii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)\\nii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin\\nii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin\\nii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin\\nii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library\\nii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)\\nii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries\\nii libhtml-form-perl 6.11-1 all module that represents an HTML form element\\nii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats\\nii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents\\nii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML\\nii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees\\nii libhttp-cookies-perl 6.11-1 all HTTP cookie jars\\nii libhttp-daemon-perl 6.16-1 all simple http server class\\nii libhttp-date-perl 6.06-1 all module of date conversion routines\\nii libhttp-message-perl 6.45-1ubuntu1 all perl interface to HTTP style messages\\nii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation\\nii libhunspell-1.7-0:amd64 1.7.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)\\nii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library\\nii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library\\nii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)\\nii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)\\nii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library\\nii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode\\nii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications\\nii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library\\nii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)\\nii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access\\nii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library\\nii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library\\nii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices\\nii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser\\nii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks\\nii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library\\nii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection\\nii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets\\nii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)\\nii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library\\nii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library\\nii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics\\nii libipmiconsole2 1.6.13-3 amd64 GNU IPMI - Serial-over-Lan library\\nii libipmidetect0 1.6.13-3 amd64 GNU IPMI - IPMI node detection library\\nii libipsec-mb1 1.5-1build1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library\\nii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library\\nii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints\\nii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems\\nii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images\\nii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library\\nii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library\\nii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data\\nii libjavascriptcoregtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjavascriptcoregtk-6.0-1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries\\nii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries\\nii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library\\nii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library\\nii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group\'s JPEG runtime library (dependency package)\\nii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library\\nii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications\\nii libjs-sphinxdoc 7.2.6-6 all JavaScript support for Sphinx documentation\\nii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript\'s functional programming helper library\\nii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library\\nii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library\\nii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)\\nii libjudydebian1 1.0.5-5.1build1 amd64 C library for creating and accessing dynamic arrays\\nii libk5crypto3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Crypto Library\\nii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)\\nii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs\\nii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library\\nii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)\\nii libkrb5-3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries\\nii libkrb5support0:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Support library\\nii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library\\nii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data\\nii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages\\nii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)\\nii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library\\nii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)\\nii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)\\nii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)\\nii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries\\nii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries\\nii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library\\nii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library\\nii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library\\nii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl\\nii liblouis-data 3.29.0-1build1 all Braille translation library - data\\nii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs\\nii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities\\nii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data\\nii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs\\nii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)\\nii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool\\nii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)\\nii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)\\nii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)\\nii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4\\nii libluajit-5.1-2:amd64 2.1.0+git20231223.c525bcb+dfsg-1 amd64 Just in time compiler for Lua - library version\\nii libluajit-5.1-common 2.1.0+git20231223.c525bcb+dfsg-1 all Just in time compiler for Lua - common files\\nii liblwp-mediatypes-perl 6.04-2 all module to guess media type for a file or a URL\\nii liblwp-protocol-https-perl 6.13-1 all HTTPS driver for LWP::UserAgent\\nii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime\\nii liblzma5:amd64 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression library\\nii liblzo2-2:amd64 2.10-2build4 amd64 data compression library\\nii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using \\"magic\\" numbers (compiled magic file)\\nrc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs\\nii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library\\nii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library\\nii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol\\nii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports\\nii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line\\nii libmd0:amd64 1.1.0-2build1 amd64 message digest functions from BSD systems - shared library\\nii libmediaart-2.0-0:amd64 1.9.6-1build2 amd64 media art extraction and cache management library\\nii libmhash2:amd64 0.9.9.9-9build3 amd64 Library for cryptographic hashing and message authentication\\nii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries\\nii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library\\nii libmount-dev:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library - headers\\nii libmount1:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library\\nii libmozjs-115-0t64:amd64 115.10.0-1 amd64 SpiderMonkey JavaScript library\\nii libmp3lame0:amd64 3.100-6build1 amd64 MP3 encoding library\\nii libmpc3:amd64 1.3.1-1build1 amd64 multiple precision complex floating-point library\\nii libmpfr6:amd64 4.2.1-1build1 amd64 multiple precision floating-point computation\\nii libmpg123-0t64:amd64 1.32.5-1ubuntu1 amd64 MPEG layer 1/2/3 audio decoder (shared library)\\nii libmsgraph-0-1:amd64 0.2.1-0ubuntu3 amd64 library for accessing the Microsoft Graph API\\nii libmtdev1t64:amd64 1.1.6-1.1build1 amd64 Multitouch Protocol Translation Library - shared library\\nii libmtp-common 1.1.21-3.1build1 all Media Transfer Protocol (MTP) common files\\nii libmtp-runtime 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) runtime tools\\nii libmtp9t64:amd64 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) library\\nii libmutter-14-0:amd64 46.2-1ubuntu0.24.04.1 amd64 window manager library from the Mutter window manager\\nii libmysqlclient21:amd64 8.0.39-0ubuntu0.24.04.2 amd64 MySQL database client library\\nii libmythes-1.2-0:amd64 2:1.2.5-1build1 amd64 simple thesaurus library\\nii libnautilus-extension4:amd64 1:46.2-0ubuntu0.2 amd64 libraries for nautilus components - runtime version\\nii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling\\nii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)\\nii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol\\nii libnet-dbus-perl 1.2.0-2build3 amd64 Perl extension for the DBus bindings\\nii libnet-http-perl 6.23-1 all module providing low-level HTTP connection client\\nii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP\\nii libnet-ssleay-perl:amd64 1.94-1build4 amd64 Perl module for Secure Sockets Layer (SSL)\\nii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library\\nii libnetplan1:amd64 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration runtime library\\nii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)\\nii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik\'s Windowing Toolkit - text mode windowing with slang\\nii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library\\nii libnfs14:amd64 5.0.2-1build1 amd64 NFS client library (shared library)\\nii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library\\nii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library\\nii libnghttp2-14:amd64 1.59.0-1ubuntu0.1 amd64 library implementing HTTP/2 protocol (shared library)\\nii libnl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets\\nii libnl-genl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - generic netlink\\nii libnl-route-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - route interface\\nii libnm0:amd64 1.46.0-1ubuntu2 amd64 GObject-based client library for NetworkManager\\nii libnma-common 1.10.6-3build2 all NetworkManager GUI library - translations\\nii libnma-gtk4-0:amd64 1.10.6-3build2 amd64 NetworkManager GUI GTK4 library\\nii libnma0:amd64 1.10.6-3build2 amd64 NetworkManager GUI library\\nii libnotify-bin 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Utilities)\\nii libnotify4:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon\\nii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads\\nii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library\\nii libnss-mdns:amd64 0.15.1-4build1 amd64 NSS module for Multicast DNS name resolution\\nii libnss-systemd:amd64 255.4-1ubuntu8.4 amd64 nss module providing dynamic user and group name resolution\\nii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries\\nii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)\\nii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy\\nii libnvme1t64 1.8-3build1 amd64 NVMe management library (library)\\nii libogg0:amd64 1.3.5-3build1 amd64 Ogg bitstream library\\nii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library\\nii libopengl0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- OpenGL support\\nii libopenipmi0t64 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface - runtime\\nii libopenjp2-7:amd64 2.5.0-2build3 amd64 JPEG 2000 image compression/decompression library\\nii libopus0:amd64 1.4-1build1 amd64 Opus codec runtime library\\nii liborc-0.4-0t64:amd64 1:0.4.38-1ubuntu0.1 amd64 Library of Optimized Inner Loops Runtime Compiler\\nii liborcus-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents\\nii liborcus-parser-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents - parser library\\nii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime\\nii libpackagekit-glib2-18:amd64 1.2.8-2build3 amd64 Library for accessing PackageKit using GLib\\nii libpam-cap:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (PAM module)\\nii libpam-fprintd:amd64 1.94.3-1 amd64 PAM module for fingerprint authentication through fprintd\\nii libpam-gnome-keyring:amd64 46.1-2build1 amd64 PAM module to unlock the GNOME keyring upon login\\nii libpam-modules:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM\\nii libpam-modules-bin 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM - helper binaries\\nii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength\\nii libpam-runtime 1.5.3-5ubuntu5.1 all Runtime support for the PAM library\\nii libpam-sss:amd64 2.9.4-1.1ubuntu6.1 amd64 Pam module for the System Security Services Daemon\\nii libpam-systemd:amd64 255.4-1ubuntu8.4 amd64 system and service manager - PAM module\\nii libpam0g:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules library\\nii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangomm-2.48-1t64:amd64 2.52.0-1build1 amd64 C++ Wrapper for pango (shared libraries)\\nii libpangoxft-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)\\nii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics\\nii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library\\nii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture\\nii libpcaudio0:amd64 1.2-2build3 amd64 C API to different audio devices - shared library\\nii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)\\nii libpciaccess0:amd64 0.17-3build1 amd64 Generic PCI access library for X\\nii libpcre2-16-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files\\nii libpcre2-32-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 32 bit runtime files\\nii libpcre2-8-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files\\nii libpcre2-dev:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - development files\\nii libpcre2-posix3:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files\\nii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)\\nii libpeas-1.0-0:amd64 1.36.0-3build4 amd64 Application plugin library\\nii libpeas-common 1.36.0-3build4 all Application plugin library (common files)\\nii libperl5.38t64:amd64 5.38.2-3.2build2 amd64 shared Perl library\\nii libphonenumber8:amd64 8.12.57+ds-4.2build3 amd64 parsing/formatting/validating phone numbers\\nii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library\\nii libpipewire-0.3-0t64:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server\\nii libpipewire-0.3-common 1.0.5-1ubuntu1 all libraries for the PipeWire multimedia server - common files\\nii libpipewire-0.3-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - modules\\nii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo\\nii libpkcs11-helper1t64:amd64 1.29.0-2.1build2 amd64 library that simplifies the interaction with PKCS#11\\nii libpkgconf3:amd64 1.8.1-2build1 amd64 shared library for pkgconf\\nii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists\\nii libplymouth5:amd64 24.004.60-1ubuntu7 amd64 graphical boot animation and logger - shared libraries\\nii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)\\nii libpolkit-agent-1-0:amd64 124-2ubuntu1 amd64 polkit Authentication Agent API\\nii libpolkit-gobject-1-0:amd64 124-2ubuntu1 amd64 polkit Authorization API\\nii libpoppler-cpp0t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (CPP shared library)\\nii libpoppler-glib8t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (GLib-based shared library)\\nii libpoppler134:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library\\nii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters\\nii libportal-gtk4-1:amd64 0.7.1-5build5 amd64 Flatpak portal library for GTK 4 GUIs\\nii libportal1:amd64 0.7.1-5build5 amd64 Flatpak portal library - non-GUI part\\nii libppd2:amd64 2:2.0.0-0ubuntu4 amd64 OpenPrinting libppd - Shared library\\nii libppd2-common 2:2.0.0-0ubuntu4 all OpenPrinting libppd - Auxiliary files\\nii libpq5:amd64 16.4-0ubuntu0.24.04.2 amd64 PostgreSQL C client library\\nii libproc2-0:amd64 2:4.0.4-4ubuntu3 amd64 library for accessing process information from /proc\\nii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)\\nii libprotobuf32t64:amd64 3.21.12-8.2build1 amd64 protocol buffers C++ library\\nii libproxy1-plugin-gsettings:amd64 0.5.4-4build1 amd64 transitional package for libproxy GSettings plugin\\nii libproxy1-plugin-networkmanager:amd64 0.5.4-4build1 amd64 transitional package for libproxy NetworkManager plugin\\nii libproxy1v5:amd64 0.5.4-4build1 amd64 automatic proxy configuration management library (shared)\\nii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)\\nii libpulse-mainloop-glib0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries (glib support)\\nii libpulse0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries\\nii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)\\nii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation\\nii libpython3-dev:amd64 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii libpython3.12-dev:amd64 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (standard library, version 3.12)\\nii libpython3.12t64:amd64 3.12.3-1ubuntu0.1 amd64 Shared Python runtime library (version 3.12)\\nii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol\\nii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports\\nii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line\\nii libqpdf29t64:amd64 11.9.0-1.1build1 amd64 runtime library for PDF transformation/inspection software\\nii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol\\nii libquadmath0:amd64 14-20240412-0ubuntu1 amd64 GCC Quad-Precision Math Library\\nii libraptor2-0:amd64 2.0.16-3build3 amd64 Raptor 2 RDF syntax library\\nii libraqm0:amd64 0.10.1-1build1 amd64 Library for complex text layout\\nii librasqal3t64:amd64 0.9.33-2.1build1 amd64 Rasqal RDF query library\\nii libraw1394-11:amd64 2.1.2-2build3 amd64 library for direct access to IEEE 1394 bus (aka FireWire)\\nii librdf0t64:amd64 1.0.17-3.1ubuntu3 amd64 Redland Resource Description Framework (RDF) library\\nii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries\\nii libreoffice-common 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- arch-independent files\\nii libreoffice-core 4:24.2.5-0ubuntu0.24.04.2 amd64 office productivity suite -- arch-dependent files\\nii libreoffice-style-colibre 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- colibre symbol style\\nii libreoffice-style-yaru 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- Yaru symbol style\\nii libreoffice-uiconfig-common 4:24.2.5-0ubuntu0.24.04.2 all UI data (\\"config\\") for LibreOffice (\\"common\\" set)\\nii librest-1.0-0:amd64 0.9.1-6build3 amd64 REST service access library\\nii librevenge-0.0-0:amd64 0.0.5-3build1 amd64 Base Library for writing document interface filters\\nii libroc0.3:amd64 0.3.0+dfsg-7ubuntu2 amd64 real-time audio streaming over the network (shared library)\\nii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)\\nii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)\\nii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)\\nii librygel-core-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - core library\\nii librygel-db-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - db library\\nii librygel-renderer-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - renderer library\\nii librygel-server-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - server library\\nii libsamplerate0:amd64 0.2.2-4build1 amd64 Audio sample rate conversion library\\nii libsane-common 1.2.1-7build4 all API library for scanners -- documentation and support files\\nii libsane-hpaio:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP SANE backend for multi-function peripherals\\nii libsane1:amd64 1.2.1-7build4 amd64 API library for scanners\\nii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library\\nii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules\\nii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)\\nii libsbc1:amd64 2.0-1build1 amd64 Sub Band CODEC library - runtime\\nii libsctp-dev:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - development files\\nii libsctp1:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - shared library\\nii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter\\nii libsecret-1-0:amd64 0.21.4-1build3 amd64 Secret store\\nii libsecret-common 0.21.4-1build3 all Secret store (common files)\\nii libselinux1:amd64 3.5-2ubuntu2 amd64 SELinux runtime shared libraries\\nii libselinux1-dev:amd64 3.5-2ubuntu2 amd64 SELinux development headers\\nii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries\\nii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library\\nii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files\\nii libsensors-dev:amd64 1:3.6.0-9build1 amd64 lm-sensors development kit\\nii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors\\nii libsepol-dev:amd64 3.5-2build1 amd64 SELinux binary policy manipulation library and development files\\nii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies\\nii libsframe1:amd64 2.42-4ubuntu2 amd64 Library to handle the SFrame format (runtime library)\\nii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion\\nii libshout3:amd64 2.4.6-1build2 amd64 MP3/Ogg Vorbis broadcast streaming library\\nii libsigc++-3.0-0:amd64 3.6.0-2 amd64 type-safe Signal Framework for C++ - runtime\\nii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version\\nii libslirp0:amd64 4.7.0-1ubuntu3 amd64 General purpose TCP-IP emulator library\\nii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library\\nii libsmartcols1:amd64 2.39.3-9ubuntu6.1 amd64 smart column output alignment library\\nii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 shared library for communication with SMB/CIFS servers\\nii libsnapd-glib-2-1:amd64 1.64-0ubuntu5 amd64 GLib snapd library\\nii libsndfile1:amd64 1.2.2-1ubuntu5 amd64 Library for reading/writing audio files\\nii libsnmp-base 5.9.4+dfsg-1.1ubuntu3 all SNMP configuration script, MIBs and documentation\\nii libsnmp40t64:amd64 5.9.4+dfsg-1.1ubuntu3 amd64 SNMP (Simple Network Management Protocol) library\\nii libsonic0:amd64 0.2.0-13build1 amd64 Simple library to speed up or slow down speech\\nii libsoup-2.4-1:amd64 2.74.3-6ubuntu1 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-0:amd64 3.4.4-5build2 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-common 3.4.4-5build2 all HTTP library implementation in C -- Common files\\nii libsoup2.4-common 2.74.3-6ubuntu1 all HTTP library implementation in C -- Common files\\nii libsource-highlight-common 3.1.9-4.3build1 all architecture-independent files for source highlighting library\\nii libsource-highlight4t64:amd64 3.1.9-4.3build1 amd64 source highlighting library\\nii libspa-0.2-bluetooth:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - bluetooth plugins\\nii libspa-0.2-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server Simple Plugin API - modules\\nii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents\\nii libspeechd2:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Shared libraries\\nii libspeex1:amd64 1.2.1-2ubuntu2 amd64 The Speex codec runtime library\\nii libspeexdsp1:amd64 1.2.1-1ubuntu3 amd64 DSP library derived from speex\\nii libsqlite3-0:amd64 3.45.1-1ubuntu2 amd64 SQLite 3 shared library\\nii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library\\nii libssh-4:amd64 0.10.6-2build2 amd64 tiny C SSH library (OpenSSL flavor)\\nrc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libssl3t64:amd64 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libstartup-notification0:amd64 0.12-6build3 amd64 library for program launch feedback (shared library)\\nii libstdc++-13-dev:amd64 13.2.0-23ubuntu4 amd64 GNU Standard C++ Library v3 (development files)\\nii libstdc++6:amd64 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3\\nii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval\\nii libsynctex2:amd64 2023.20230311.66589-9build3 amd64 TeX Live: SyncTeX parser library\\nii libsysmetrics1:amd64 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics - shared lib\\nii libsystemd-shared:amd64 255.4-1ubuntu8.4 amd64 systemd shared private library\\nii libsystemd0:amd64 255.4-1ubuntu8.4 amd64 systemd utility library\\nii libtag1v5:amd64 1.13.1-1build1 amd64 audio meta-data library\\nii libtag1v5-vanilla:amd64 1.13.1-1build1 amd64 audio meta-data library - vanilla flavour\\nii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator\\nii libtasn1-6:amd64 4.19.0-3build1 amd64 Manage ASN.1 structures (runtime)\\nii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files\\nii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library\\nii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process\\nii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library\\nii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal\\nii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl\\nii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap\\nii libthai-data 0.1.29-2build1 all Data files for Thai language support library\\nii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library\\nii libtheora0:amd64 1.1.1+dfsg.1-16.1build3 amd64 Theora Video Compression Codec\\nii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays\\nii libtiff6:amd64 4.5.1+git230720-4ubuntu2.2 amd64 Tag Image File Format (TIFF) library\\nii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information\\nii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling\\nii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files\\nii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library\\nii libtotem-plparser-common 3.26.6-1build5 all Totem Playlist Parser library - common files\\nii libtotem-plparser18:amd64 3.26.6-1build5 amd64 Totem Playlist Parser library - runtime files\\nii libtraceevent1:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (shared library)\\nii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (plugins)\\nii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)\\nii libtracker-sparql-3.0-0:amd64 3.7.1-1build1 amd64 metadata database, indexer and search tool - library\\nii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch\\nii libtsan0:amd64 11.4.0-9ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtsan2:amd64 14-20240412-0ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-rc0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-libtpms0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-spi-helper0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tctildr0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtwolame0:amd64 0.4.0-2build3 amd64 MPEG Audio Layer 2 encoding library\\nii libu2f-udev 1.1.10-3build3 all Universal 2nd Factor (U2F) — transitional package\\nii libubsan1:amd64 14-20240412-0ubuntu1 amd64 UBSan -- undefined behaviour sanitizer (runtime)\\nii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library\\nii libudev1:amd64 255.4-1ubuntu8.4 amd64 libudev shared library\\nii libudisks2-0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2\\nii libunistring5:amd64 1.1-2build1 amd64 Unicode string library for C\\nii libunity-protocol-private0:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - private library\\nii libunity-scopes-json-def-desktop 7.1.4+19.04.20190319-6build4 all binding to get places into the launcher - desktop def file\\nii libunity9:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - shared library\\nii libuno-cppu3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU public library\\nii libuno-cppuhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU helper library\\nii libuno-purpenvhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- \\"purpose environment\\" helper\\nii libuno-sal3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL public library\\nii libuno-salhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library\\nii libunwind8:amd64 1.6.2-3build1 amd64 library to determine the call-chain of a program - runtime\\nii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library\\nii liburi-perl 5.27-1 all module to manipulate and access URI strings\\nii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library\\nii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library\\nii libuuid1:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library\\nii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library\\nii libv4l-0t64:amd64 1.26.1-4build3 amd64 Collection of video4linux support libraries\\nii libv4lconvert0t64:amd64 1.26.1-4build3 amd64 Video4linux frame format conversion library\\nii libvisual-0.4-0:amd64 0.4.2-2build1 amd64 audio visualization framework\\nii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases\\nii libvorbis0a:amd64 1.3.7-1build3 amd64 decoder library for Vorbis General Audio Compression Codec\\nii libvorbisenc2:amd64 1.3.7-1build3 amd64 encoder library for Vorbis General Audio Compression Codec\\nii libvorbisfile3:amd64 1.3.7-1build3 amd64 high-level API for Vorbis General Audio Compression Codec\\nii libvpx9:amd64 1.14.0-1ubuntu2.1 amd64 VP8 and VP9 video codec (shared library)\\nii libvte-2.91-0:amd64 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime files\\nii libvte-2.91-common 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - common files\\nii libvulkan1:amd64 1.3.275.0-1build1 amd64 Vulkan loader library\\nii libwacom-common 2.10.0-2 all Wacom model feature query library (common files)\\nii libwacom9:amd64 2.10.0-2 amd64 Wacom model feature query library\\nii libwavpack1:amd64 5.6.0-1build1 amd64 audio codec (lossy and lossless) - library\\nii libwayland-client0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - client library\\nii libwayland-cursor0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - cursor library\\nii libwayland-egl1:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - EGL library\\nii libwayland-server0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - server library\\nii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba winbind client library\\nii libwebkit2gtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebkitgtk-6.0-4:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.\\nii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebrtc-audio-processing1:amd64 0.3.1-0ubuntu6 amd64 AudioProcessing module from the WebRTC project.\\nii libwhoopsie-preferences0 23build3 amd64 Ubuntu error tracker submission settings - shared library\\nii libwhoopsie0:amd64 0.2.77build3 amd64 Ubuntu error tracker submission - shared library\\nii libwinpr3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Windows Portable Runtime library\\nii libwireplumber-0.4-0:amd64 0.4.17-1ubuntu4 amd64 Shared libraries for WirePlumber\\nii libwmf-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion library\\nii libwmf-0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin\\nii libwmf0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin - transitional package\\nii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library\\nii libwnck-3-0:amd64 43.0-3build4 amd64 Window Navigator Construction Kit - runtime files\\nii libwnck-3-common 43.0-3build4 all Window Navigator Construction Kit - common files\\nii libwoff1:amd64 1.0.2-2build1 amd64 library for converting fonts to WOFF 2.0\\nii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema\'s TCP wrappers library\\nii libwww-perl 6.76-1 all simple and consistent interface to the world-wide web\\nii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions\\nii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library\\nii libx11-data 2:1.8.7-1build1 all X11 client-side library\\nii libx11-protocol-perl 0.56-9 all Perl module for the X Window System Protocol, version 11\\nii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library\\nii libxatracker2:amd64 24.0.9-0ubuntu0.1 amd64 X acceleration library -- runtime\\nii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library\\nii libxaw7:amd64 2:1.0.14-1build2 amd64 X11 Athena Widget library\\nii libxcb-damage0:amd64 1.15-1ubuntu2 amd64 X C Binding, damage extension\\nii libxcb-dri2-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri2 extension\\nii libxcb-dri3-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri3 extension\\nii libxcb-glx0:amd64 1.15-1ubuntu2 amd64 X C Binding, glx extension\\nii libxcb-icccm4:amd64 0.4.1-1.1build3 amd64 utility libraries for X C Binding -- icccm\\nii libxcb-image0:amd64 0.4.0-2build1 amd64 utility libraries for X C Binding -- image\\nii libxcb-keysyms1:amd64 0.4.0-1build4 amd64 utility libraries for X C Binding -- keysyms\\nii libxcb-present0:amd64 1.15-1ubuntu2 amd64 X C Binding, present extension\\nii libxcb-randr0:amd64 1.15-1ubuntu2 amd64 X C Binding, randr extension\\nii libxcb-render-util0:amd64 0.3.9-1build4 amd64 utility libraries for X C Binding -- render-util\\nii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension\\nii libxcb-res0:amd64 1.15-1ubuntu2 amd64 X C Binding, res extension\\nii libxcb-shape0:amd64 1.15-1ubuntu2 amd64 X C Binding, shape extension\\nii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension\\nii libxcb-sync1:amd64 1.15-1ubuntu2 amd64 X C Binding, sync extension\\nii libxcb-util1:amd64 0.4.0-1build3 amd64 utility libraries for X C Binding -- atom, aux and event\\nii libxcb-xfixes0:amd64 1.15-1ubuntu2 amd64 X C Binding, xfixes extension\\nii libxcb-xkb1:amd64 1.15-1ubuntu2 amd64 X C Binding, XKEYBOARD extension\\nii libxcb-xv0:amd64 1.15-1ubuntu2 amd64 X C Binding, xv extension\\nii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding\\nii libxcomposite1:amd64 1:0.4.5-1build3 amd64 X11 Composite extension library\\nii libxcursor1:amd64 1:1.2.1-1build1 amd64 X cursor management library\\nii libxcvt0:amd64 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator -- shared library\\nii libxdamage1:amd64 1:1.1.6-1build1 amd64 X11 damaged region extension library\\nii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library\\nii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library\\nii libxfixes3:amd64 1:6.0.0-2build1 amd64 X11 miscellaneous \'fixes\' extension library\\nii libxfont2:amd64 1:2.0.6-1build1 amd64 X11 font rasterisation library\\nii libxft2:amd64 2.3.6-1build1 amd64 FreeType-based font drawing library for X\\nii libxi6:amd64 2:1.8.1-1build1 amd64 X11 Input extension library\\nii libxinerama1:amd64 2:1.1.4-3build1 amd64 X11 Xinerama extension library\\nii libxkbcommon-x11-0:amd64 1.6.0-1build1 amd64 library to create keymaps with the XKB X11 protocol\\nii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library\\nii libxkbfile1:amd64 1:1.1.0-1build4 amd64 X11 keyboard file manipulation library\\nii libxkbregistry0:amd64 1.6.0-1build1 amd64 library to query available RMLVO\\nii libxklavier16:amd64 5.4-5build2 amd64 X Keyboard Extension high-level API\\nii libxml-parser-perl 2.47-1build3 amd64 Perl module for parsing XML files\\nii libxml-twig-perl 1:3.52-2 all Perl module for processing huge XML documents in tree mode\\nii libxml-xpathengine-perl 0.14-2 all re-usable XPath engine for DOM-like trees\\nii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3 amd64 GNOME XML library\\nii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library\\nii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library\\nii libxmlsec1t64-nss:amd64 1.2.39-5build2 amd64 Nss engine for the XML security library\\nii libxmu6:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous utility library\\nii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library\\nii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library\\nii libxrandr2:amd64 2:1.5.2-2build1 amd64 X11 RandR extension library\\nii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library\\nii libxres1:amd64 2:1.2.1-1build1 amd64 X11 Resource extension library\\nii libxshmfence1:amd64 1.3-1build5 amd64 X shared memory fences - shared library\\nii libxslt1.1:amd64 1.1.39-0exp1build1 amd64 XSLT 1.0 processing library - runtime library\\nii libxss1:amd64 1:1.2.3-1build3 amd64 X11 Screen Saver extension library\\nii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library\\nii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library\\nii libxtst6:amd64 2:1.2.3-1.1build1 amd64 X11 Testing -- Record extension library\\nii libxv1:amd64 2:1.0.11-1.1build1 amd64 X11 Video extension library\\nii libxvmc1:amd64 2:1.0.12-2build3 amd64 X11 Video extension library\\nii libxxf86dga1:amd64 2:1.1.5-1build1 amd64 X11 Direct Graphics Access extension library\\nii libxxf86vm1:amd64 1:1.1.4-1build4 amd64 X11 XFree86 video mode extension library\\nii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash\\nii libyajl2:amd64 2.1.0-5build1 amd64 Yet Another JSON Library\\nii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library\\nii libyelp0:amd64 42.2-1build2 amd64 Library for the GNOME help browser\\nii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm\\nii linux-base 4.5ubuntu9 all Linux image base package\\nii linux-firmware 20240318.git3b128b60-0ubuntu2.3 amd64 Firmware for Linux kernel drivers\\nii linux-generic 6.8.0-44.44 amd64 Complete Generic Linux kernel and headers\\nii linux-headers-6.8.0-40 6.8.0-40.40 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-6.8.0-44 6.8.0-44.44 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-generic 6.8.0-44.44 amd64 Generic Linux kernel headers\\nrc linux-image-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Signed kernel image generic\\nii linux-image-6.8.0-40-generic 6.8.0-40.40 amd64 Signed kernel image generic\\nii linux-image-6.8.0-44-generic 6.8.0-44.44 amd64 Signed kernel image generic\\nii linux-image-generic 6.8.0-44.44 amd64 Generic Linux kernel image\\nii linux-libc-dev:amd64 6.8.0-44.44 amd64 Linux Kernel Headers for development\\nrc linux-modules-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-sound-base 1.0.25+dfsg-0ubuntu7 all base package for ALSA and OSS sound systems\\nii linux-tools-6.8.0-40 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-44 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-common 6.8.0-44.44 all Linux kernel version specific tools for version 6.8.0\\nii lm-sensors 1:3.6.0-9build1 amd64 utilities to read temperature/voltage/fan sensors\\nii locales 2.39-0ubuntu8.3 all GNU C Library: National Language (locale) data [support]\\nii login 1:4.13+dfsg1-4ubuntu3 amd64 system login tools\\nii logrotate 3.21.0-2build1 amd64 Log rotation utility\\nii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file\\nii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality\\nii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)\\nii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration\\nii lsof 4.95.0-1build3 amd64 utility to list open files\\nii lto-disabled-list 47 all list of packages not to build with LTO\\nii mailcap 3.70+nmu1ubuntu1 all Debian\'s mailcap system, and support programs\\nii make 4.3-4.1build2 amd64 utility for directing compilation\\nii man-db 2.12.0-4build2 amd64 tools for reading manual pages\\nii manpages 6.7-2 all Manual pages about using a GNU/Linux system\\nii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development\\nii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language\\nii media-types 10.1.0 all List of standard media types and their usual file extension\\nii memtest86+ 7.00-1build1 amd64 stand-alone memory tester for x86 and x86-64\\nii mesa-vulkan-drivers:amd64 24.0.9-0ubuntu0.1 amd64 Mesa Vulkan graphics drivers\\nii mobile-broadband-provider-info 20230416-1 all database of mobile broadband service providers\\nii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems\\nii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys\\nii mongodb-database-tools 100.9.4 amd64 mongodb-database-tools package provides tools for working with the MongoDB server: \\nii mongodb-org-database-tools-extra 7.0.9 amd64 Extra MongoDB database tools\\nii mongodb-org-server 7.0.9 amd64 MongoDB database server\\nii mongodb-org-shell 7.0.9 amd64 MongoDB shell client\\nii mongodb-org-tools 7.0.9 amd64 MongoDB tools\\nii mount 2.39.3-9ubuntu6.1 amd64 tools for mounting and manipulating filesystems\\nii mousetweaks 3.32.0-4build2 amd64 mouse accessibility enhancements for the GNOME desktop\\nii mscompress 0.4-10build1 amd64 Microsoft \\"compress.exe/expand.exe\\" compatible (de)compressor\\nii msr-tools 1.3-5build1 amd64 Utilities for modifying MSRs from userspace\\nii mtr-tiny 0.95-1.1build2 amd64 Full screen ncurses traceroute tool\\nii mutter-common 46.2-1ubuntu0.24.04.1 all shared files for the Mutter window manager\\nii mutter-common-bin 46.2-1ubuntu0.24.04.1 amd64 shared programs for the Mutter window manager\\nii mysql-common 5.8+1.1.0build1 all MySQL database common files, e.g. /etc/mysql/my.cnf\\nii nano 7.2-2build1 amd64 small, friendly text editor inspired by Pico\\nii nautilus 1:46.2-0ubuntu0.2 amd64 file manager and graphical shell for GNOME\\nii nautilus-data 1:46.2-0ubuntu0.2 all data files for nautilus\\nii nautilus-extension-gnome-terminal:amd64 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application - Nautilus extension\\nii nautilus-sendto 3.8.6-7build2 amd64 easily send files via email from within Nautilus\\nii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions\\nii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages\\nii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions\\nii net-tools 2.10-0.1ubuntu4 amd64 NET-3 networking toolkit\\nii netbase 6.4 all Basic TCP/IP networking system\\nii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife\\nii netplan-generator 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration systemd-generator\\nii netplan.io 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration for various backends\\nii network-manager 1.46.0-1ubuntu2 amd64 network management framework (daemon and userspace tools)\\nii network-manager-config-connectivity-ubuntu 1.46.0-1ubuntu2 all NetworkManager configuration to enable connectivity checking\\nii network-manager-gnome 1.34.0-1ubuntu3 amd64 network management framework (GNOME frontend)\\nii network-manager-openvpn 1.10.2-4build2 amd64 network management framework (OpenVPN plugin core)\\nii network-manager-openvpn-gnome 1.10.2-4build2 amd64 network management framework (OpenVPN plugin GNOME GUI)\\nii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)\\nii network-manager-pptp-gnome 1.2.12-3build2 amd64 network management framework (PPTP plugin GNOME GUI)\\nii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes\\nii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project\\nii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE\\nii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool\\nii openipmi 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface (for servers)\\nii openjdk-17-jre-headless:amd64 17.0.12+7-1ubuntu2~24.04 amd64 OpenJDK Java runtime, using Hotspot JIT (headless)\\nii openprinting-ppds 20230202-1 all OpenPrinting printer support - PostScript PPD files\\nii openssh-client 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) client, for secure access to remote machines\\nii openssh-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) server, for secure access from remote machines\\nii openssh-sftp-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines\\nii openssl 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - cryptographic utility\\nii openvpn 2.6.9-1ubuntu4.1 amd64 virtual private network daemon\\nii orca 46.1-1ubuntu1 all Scriptable screen reader\\nii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives\\nii p11-kit 0.25.3-4ubuntu2.1 amd64 p11-glue utilities\\nii p11-kit-modules:amd64 0.25.3-4ubuntu2.1 amd64 p11-glue proxy and trust modules\\nii packagekit 1.2.8-2build3 amd64 Provides a package management service\\nii packagekit-tools 1.2.8-2build3 amd64 Provides PackageKit command-line tools\\nii parted 3.6-4build1 amd64 disk partition manipulator\\nii passwd 1:4.13+dfsg1-4ubuntu3 amd64 change and administer password and group data\\nii pastebinit 1.6.2-1 all command-line pastebin client\\nii patch 2.7.6-7build3 amd64 Apply a diff file to an original\\nii pci.ids 0.0~2024.03.31-1 all PCI ID Repository\\nii pciutils 1:3.10.0-2build1 amd64 PCI utilities\\nii pcmciautils 018-14build1 amd64 PCMCIA utilities for Linux 2.6\\nii perl 5.38.2-3.2build2 amd64 Larry Wall\'s Practical Extraction and Report Language\\nii perl-base 5.38.2-3.2build2 amd64 minimal Perl system\\nii perl-modules-5.38 5.38.2-3.2build2 all Core Perl modules\\nii perl-openssl-defaults:amd64 7build3 amd64 version compatibility baseline for Perl OpenSSL packages\\nii pigz 2.8-1 amd64 Parallel Implementation of GZip\\nii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG\\nii pinentry-gnome3 1.2.1-3ubuntu5 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG\\nii pipewire:amd64 1.0.5-1ubuntu1 amd64 audio and video processing engine multimedia server\\nii pipewire-alsa:amd64 1.0.5-1ubuntu1 amd64 PipeWire ALSA plugin, for ALSA applications to output via PipeWire\\nii pipewire-audio 1.0.5-1ubuntu1 all recommended set of PipeWire packages for a standard audio desktop use\\nii pipewire-bin 1.0.5-1ubuntu1 amd64 PipeWire multimedia server - programs\\nrc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire\\nii pipewire-pulse 1.0.5-1ubuntu1 amd64 PipeWire PulseAudio daemon\\nii pkexec 124-2ubuntu1 amd64 run commands as another user with polkit authorization\\nii pkgconf:amd64 1.8.1-2build1 amd64 manage compile and link flags for libraries\\nii pkgconf-bin 1.8.1-2build1 amd64 manage compile and link flags for libraries (binaries)\\nii plymouth 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer\\nii plymouth-label 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - label control\\nii plymouth-theme-spinner 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - spinner theme\\nii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme\\nii policykit-1 124-2ubuntu1 amd64 transitional package for polkitd and pkexec\\nii policykit-desktop-privileges 0.22 all run common desktop actions without password\\nii polkitd 124-2ubuntu1 amd64 framework for managing administrative policies and privileges\\nii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library\\nii poppler-utils 24.02.0-1ubuntu9.1 amd64 PDF utilities (based on Poppler)\\nii power-profiles-daemon 0.21-1 amd64 Makes power profiles handling available over D-Bus.\\nii powermgmt-base 1.37 all common utils for power management\\nii powertop 2.15-3build1 amd64 diagnose issues with power consumption and management\\nii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon\\nii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client\\nii printer-driver-brlaser 6-3build2 amd64 printer driver for (some) Brother laser printers\\nii printer-driver-c2esp 27-11ubuntu7 amd64 printer driver for Kodak ESP AiO color inkjet Series\\nii printer-driver-foo2zjs 20200505dfsg0-2ubuntu6 amd64 printer driver for ZjStream-based printers\\nii printer-driver-foo2zjs-common 20200505dfsg0-2ubuntu6 all printer driver for ZjStream-based printers - common files\\nii printer-driver-hpcups 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)\\nii printer-driver-m2300w 0.51-15build2 amd64 printer driver for Minolta magicolor 2300W/2400W color laser printers\\nii printer-driver-min12xxw 0.0.9-11build3 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW\\nii printer-driver-pnm2ppa 1.13+nondbs-0ubuntu10 amd64 printer driver for HP-GDI printers\\nii printer-driver-postscript-hp 3.23.12+dfsg0-0ubuntu5 amd64 HP Printers PostScript Descriptions\\nii printer-driver-ptouch 1.7-1build2 amd64 printer driver Brother P-touch label printers\\nii printer-driver-pxljr 1.4+repack0-6build2 amd64 printer driver for HP Color LaserJet 35xx/36xx\\nii printer-driver-sag-gdi 0.1-8 all printer driver for Ricoh Aficio SP 1000s/SP 1100s\\nii printer-driver-splix 2.0.0+svn315-7fakesync1ubuntu1 amd64 Driver for Samsung and Xerox SPL2 and SPLc laser printers\\nii procps 2:4.0.4-4ubuntu3 amd64 /proc file system utilities\\nii psmisc 23.7-1build1 amd64 utilities that use the proc file system\\nii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes\\nrc pulseaudio 1:15.99.1+dfsg1-1ubuntu2.2 amd64 PulseAudio sound server\\nii python-apt-common 2.7.7ubuntu3 all Python interface to libapt-pkg (locales)\\nii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files\\nii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii python3-apport 2.28.1-0ubuntu3.1 all Python 3 library for Apport crash report handling\\nii python3-apt 2.7.7ubuntu3 amd64 Python 3 interface to libapt-pkg\\nii python3-aptdaemon 1.1.1+bzr982-0ubuntu44 all Python 3 module for the server and client of aptdaemon\\nii python3-aptdaemon.gtk3widgets 1.1.1+bzr982-0ubuntu44 all Python 3 GTK+ 3 widgets to run an aptdaemon client\\nii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)\\nii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x\\nii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)\\nii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)\\nii python3-brlapi:amd64 6.6-4ubuntu5 amd64 Braille display access via BRLTTY - Python3 bindings\\nii python3-cairo 1.25.1-2build2 amd64 Python3 bindings for the Cairo vector graphics library\\nii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)\\nii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime\\nii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)\\nii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x\\nii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x\\nii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.\\nii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3\\nii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)\\nii python3-cups:amd64 2.0.1-5build6 amd64 Python3 bindings for CUPS\\nii python3-cupshelpers 1.5.18-1ubuntu9 all Python utility modules around the CUPS printing system\\nii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module\\nii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)\\nii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3\\nii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats\\nii python3-defer 1.0.6-2.1ubuntu1 all Small framework for asynchronous programming (Python 3)\\nii python3-dev 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii python3-distro 1.9.0-1 all Linux OS platform information API\\nii python3-distro-info 1.7build1 all information about distributions\' releases (Python 3 module)\\nii python3-distupgrade 1:24.04.23 all manage release upgrades\\nii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x\\nii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries\\nii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3\\nii python3-ibus-1.0 1.5.29-2 all Intelligent Input Bus - introspection overrides for Python (Python 3)\\nii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)\\nii python3-importlib-metadata 4.12.0-1 all library to access the metadata for a Python package - Python 3.x\\nii python3-jinja2 3.1.2-1ubuntu1.1 all small but fast and easy to use stand-alone template engine\\nii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x\\nii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x\\nii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)\\nii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token\\nii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)\\nii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)\\nii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs\\nii python3-louis 3.29.0-1build1 all Python bindings for liblouis\\nii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins\\nii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library\\nii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package\\nii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)\\nii python3-more-itertools 10.2.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)\\nii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)\\nii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x\\nii python3-netplan 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration Python bindings\\nii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3\\nii python3-olefile 0.46-3 all Python module to read/write MS OLE2 files\\nii python3-packaging 24.0-1 all core utilities for python3 packages\\nii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications\\nii python3-pil:amd64 10.2.0-1ubuntu1 amd64 Python Imaging Library (Python3)\\nii python3-pip 24.0+dfsg-1ubuntu1 all Python package installer\\nii python3-pip-whl 24.0+dfsg-1ubuntu1 all Python package installer (pip wheel)\\nii python3-pkg-resources 68.1.2-2ubuntu1 all Package Discovery and Resource Access using pkg_resources\\nii python3-problem-report 2.28.1-0ubuntu3.1 all Python 3 library to handle problem reports\\nii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3\\nii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3\\nii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x\\nii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python\\nii python3-requests 2.31.0+dfsg-1ubuntu1 all elegant and simple HTTP library for Python3, built for human beings\\nii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more\\nii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port\\nii python3-setuptools 68.1.2-2ubuntu1 all Python3 Distutils Enhancements\\nii python3-setuptools-whl 68.1.2-2ubuntu1 all Python Distutils Enhancements (wheel package)\\nii python3-six 1.16.0-4 all Python 2 and 3 compatibility library\\nii python3-software-properties 0.99.48 all manage the repositories that you install software from\\nii python3-speechd 0.12.0~rc2-2build3 all Python interface to Speech Dispatcher\\nii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd\\nii python3-tz 2024.1-2 all Python3 version of the Olson timezone database\\nii python3-uno 4:24.2.5-0ubuntu0.24.04.2 amd64 Python-UNO bridge\\nii python3-update-manager 1:24.04.6 all Python 3.x module for update-manager\\nii python3-urllib3 2.0.7-1 all HTTP library with thread-safe connection pooling for Python3\\nii python3-venv 3.12.3-0ubuntu2 amd64 venv module for python3 (default python3 version)\\nii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files\\nii python3-wheel 0.42.0-2 all built-package format for Python\\nii python3-xdg 0.28-2 all Python 3 library to access freedesktop.org standards\\nii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)\\nii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3\\nii python3-zipp 1.0.0-6ubuntu0.1 all pathlib-compatible Zipfile object wrapper - Python 3.x\\nrc python3.10-venv 3.10.12-1~22.04.5 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.10)\\nii python3.12 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (version 3.12)\\nii python3.12-dev 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii python3.12-minimal 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii python3.12-venv 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.12)\\nii readline-common 8.2-4build1 all GNU readline and history libraries, common files\\nii rfkill 2.39.3-9ubuntu6.1 amd64 tool for enabling and disabling wireless devices\\nii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions\\nii rsync 3.2.7-1ubuntu1 amd64 fast, versatile, remote (and local) file-copying tool\\nii rsyslog 8.2312.0-3ubuntu9 amd64 reliable system and kernel logging daemon\\nii rtkit 0.13-5build1 amd64 Realtime Policy and Watchdog Daemon\\nii rygel 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services\\nii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba core libraries\\nii sane-airscan 0.99.29-0ubuntu4 amd64 SANE backend for AirScan (eSCL) and WSD document scanner\\nii sane-utils 1.2.1-7build4 amd64 API library for scanners -- utilities\\nii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers\\nii seahorse 43.0-3build2 amd64 GNOME front end for GnuPG\\nii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX\\nii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text\\nii sensible-utils 0.0.22 all Utilities for sensible alternative selection\\nii session-migration 0.3.9build1 amd64 Tool to migrate in user session settings\\nii sgml-base 1.31 all SGML infrastructure and SGML catalog file support\\nii sgml-data 2.0.11+nmu1 all common SGML and XML data\\nii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec\\nii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)\\nii slirp4netns 1.2.1-1build2 amd64 User-mode networking for unprivileged network namespaces\\nii snapd 2.63.1+24.04 amd64 Daemon and tooling that enable snap packages\\nii software-properties-common 0.99.48 all manage the repositories that you install software from (common)\\nii software-properties-gtk 0.99.48 all manage the repositories that you install software from (gtk)\\nii sound-icons 0.1-8 all Sounds for speech enabled applications\\nii sound-theme-freedesktop 0.8-2ubuntu1 all freedesktop.org sound theme\\nii speech-dispatcher 0.12.0~rc2-2build3 amd64 Common interface to speech synthesizers\\nii speech-dispatcher-audio-plugins:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Audio output plugins\\nii speech-dispatcher-espeak-ng 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Espeak-ng output module\\nii spice-vdagent 0.22.1-4build3 amd64 Spice agent for Linux\\nii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems\\nii ssh-import-id 5.11-0ubuntu2 all securely retrieve an SSH public key and install it locally\\nii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL\\nii strace 6.8-0ubuntu2 amd64 System call tracer\\nii stress-ng 0.17.06-1build1 amd64 tool to load and stress a computer\\nii sudo 1.9.15p5-3ubuntu5 amd64 Provide limited super user privileges to specific users\\nii switcheroo-control 2.6-2build2 amd64 D-Bus service to check the availability of dual-GPU\\nii sysbench 1.0.20+ds-6build2 amd64 multi-threaded benchmark tool for database systems\\nii sysbox-ce 0.6.4.linux amd64 Sysbox Community Edition (CE) is a next-generation container runtime,\\nii syslinux-common 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 all collection of bootloaders (common)\\nii sysstat 12.6.1-2 amd64 system performance tools for Linux\\nii system-config-printer-common 1.5.18-1ubuntu9 all backend and the translation files for system-config-printer\\nii system-config-printer-udev 1.5.18-1ubuntu9 amd64 Utilities to detect and configure printers automatically\\nii systemd 255.4-1ubuntu8.4 amd64 system and service manager\\nii systemd-dev 255.4-1ubuntu8.4 all systemd development files\\nii systemd-hwe-hwdb 255.1.3 all udev rules for hardware enablement (HWE)\\nii systemd-oomd 255.4-1ubuntu8.4 amd64 userspace out-of-memory (OOM) killer\\nii systemd-resolved 255.4-1ubuntu8.4 amd64 systemd DNS resolver\\nii systemd-sysv 255.4-1ubuntu8.4 amd64 system and service manager - SysV compatibility symlinks\\nii systemd-timesyncd 255.4-1ubuntu8.4 amd64 minimalistic service to synchronize local time with NTP servers\\nii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities\\nii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility\\nii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell\\nii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell\\nii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer\\nii tecla 46.0-1build1 amd64 keyboard layout viewer for the GNOME desktop\\nii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch\\nii thermald 2.5.6-2build2 amd64 Thermal monitoring and controlling daemon\\nii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage\\nii tinyproxy 1.11.1-3 all Lightweight, non-caching, optionally anonymizing HTTP proxy\\nii tinyproxy-bin 1.11.1-3 amd64 Lightweight, non-caching, optionally anonymizing HTTP proxy (executable only)\\nii tnftp 20230507-2build3 amd64 enhanced ftp client\\nii tpm-udev 0.6ubuntu1 all udev rules for TPM modules\\nii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel\\nii tracker 3.7.1-1build1 amd64 metadata database, indexer and search tool\\nii tracker-extract 3.7.1-1build1 amd64 metadata database, indexer and search tool - metadata extractors\\nii tracker-miner-fs 3.7.1-1build1 amd64 metadata database, indexer and search tool - filesystem indexer\\nii tzdata 2024a-3ubuntu1.1 all time zone and daylight-saving time data\\nii ubuntu-advantage-desktop-daemon 1.11 amd64 Daemon to allow access to ubuntu-advantage via D-Bus\\nii ubuntu-desktop 1.539.1 amd64 Ubuntu desktop system\\nii ubuntu-desktop-minimal 1.539.1 amd64 Ubuntu desktop minimal system\\nii ubuntu-docs 24.04.2 all Ubuntu Desktop Guide\\nii ubuntu-drivers-common 1:0.9.7.6ubuntu3.1 amd64 Detect and install additional Ubuntu driver packages\\nii ubuntu-kernel-accessories 1.539.1 amd64 packages useful to install by default on systems with kernels\\nii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive\\nii ubuntu-minimal 1.539.1 amd64 Minimal core of Ubuntu\\nii ubuntu-mono 24.04-0ubuntu1 all Ubuntu Mono Icon theme\\nii ubuntu-pro-client 33.2~24.04.1 amd64 Management tools for Ubuntu Pro\\nii ubuntu-pro-client-l10n 33.2~24.04.1 amd64 Translations for Ubuntu Pro Client\\nii ubuntu-release-upgrader-core 1:24.04.23 all manage release upgrades\\nii ubuntu-release-upgrader-gtk 1:24.04.23 all manage release upgrades\\nii ubuntu-report 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics\\nii ubuntu-session 46.0-1ubuntu4 all Ubuntu session with GNOME Shell\\nii ubuntu-settings 24.04.4 all default settings for the Ubuntu desktop\\nii ubuntu-standard 1.539.1 amd64 Ubuntu standard system\\nii ubuntu-wallpapers 24.04.2 all Ubuntu Wallpapers\\nii ubuntu-wallpapers-noble 24.04.2 all Ubuntu 24.04 Wallpapers\\nii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files\\nii udev 255.4-1ubuntu8.4 amd64 /dev/ and hotplug management daemon\\nii udisks2 2.10.1-6build1 amd64 D-Bus service to access and manipulate storage devices\\nii ufw 0.36.2-6 all program for managing a Netfilter firewall\\nii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades\\nii unifi 8.1.127-25320-1 all Ubiquiti UniFi server\\nii uno-libs-private 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- private libraries used by public ones\\nii unzip 6.0-28ubuntu4 amd64 De-archiver for .zip files\\nii update-inetd 4.53 all inetd configuration file updater\\nii update-manager 1:24.04.6 all GNOME application that manages apt updates\\nii update-manager-core 1:24.04.6 all manage release upgrades\\nii update-notifier 3.192.68build3 amd64 Daemon which notifies about package updates\\nii update-notifier-common 3.192.68build3 all Files shared between update-notifier and other packages\\nii upower 1.90.3-1 amd64 abstraction for power management\\nii ure 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment\\nii usb-creator-common 0.3.17 all create a startup disk using a CD or disc image (common files)\\nii usb-creator-gtk 0.3.17 all create a startup disk using a CD or disc image (for GNOME)\\nii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling \\"flip flop\\" USB devices\\nii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch\\nii usb.ids 2024.03.18-1 all USB ID Repository\\nii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices\\nii usbutils 1:017-3build1 amd64 Linux USB utilities\\nii util-linux 2.39.3-9ubuntu6.1 amd64 miscellaneous system utilities\\nii uuid-dev:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library - headers and static libraries\\nii uuid-runtime 2.39.3-9ubuntu6.1 amd64 runtime components for the Universally Unique ID library\\nii vim-common 2:9.1.0016-1ubuntu7.2 all Vi IMproved - Common files\\nii vim-tiny 2:9.1.0016-1ubuntu7.2 amd64 Vi IMproved - enhanced vi editor - compact version\\nii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict\\nii wbritish 2020.12.07-2 all British English dictionary words for /usr/share/dict\\nii webp-pixbuf-loader:amd64 0.2.4-2build2 amd64 WebP Image format GdkPixbuf loader\\nii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web\\nii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts\\nii whoopsie 0.2.77build3 amd64 Ubuntu error tracker submission\\nii whoopsie-preferences 23build3 amd64 System preferences for error reporting\\nii wireless-regdb 2022.06.06-0ubuntu2 all wireless regulatory database\\nii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions\\nii wireplumber 0.4.17-1ubuntu4 amd64 modular session / policy manager for PipeWire\\nii wngerman 20161207-12 all New German orthography wordlist\\nii wogerman 1:2-39 all Traditional German wordlist\\nii wpasupplicant 2:2.10-21ubuntu0.1 amd64 client support for WPA and WPA2 (IEEE 802.11i)\\nii wswiss 20161207-12 all Swiss (German) orthography wordlist\\nii x11-apps 7.7+11build3 amd64 X applications\\nii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure\\nii x11-session-utils 7.7+6build2 amd64 X session utilities\\nii x11-utils 7.7+6build2 amd64 X11 utilities\\nii x11-xkb-utils 7.7+8build2 amd64 X11 XKB utilities\\nii x11-xserver-utils 7.7+10build2 amd64 X server utilities\\nii xauth 1:1.1.2-1build1 amd64 X authentication utility\\nii xbitmaps 1.1.1-2.2 all Base X bitmaps\\nii xbrlapi 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display - xbrlapi\\nii xcursor-themes 1.0.6-0ubuntu1 all Base X cursor themes\\nii xcvt 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator\\nii xdg-dbus-proxy 0.1.5-1build2 amd64 filtering D-Bus proxy\\nii xdg-desktop-portal 1.18.4-1ubuntu2 amd64 desktop integration portal for Flatpak and Snap\\nii xdg-desktop-portal-gnome 46.2-0ubuntu1 amd64 GNOME portal backend for xdg-desktop-portal\\nii xdg-desktop-portal-gtk 1.15.1-1build2 amd64 GTK+/GNOME portal backend for xdg-desktop-portal\\nii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories\\nii xdg-user-dirs-gtk 0.11-1build2 amd64 tool to manage well known user directories (Gtk extension)\\nii xdg-utils 1.1.3-4.1ubuntu3 all desktop integration utilities from freedesktop.org\\nii xfonts-base 1:1.0.5+nmu1 all standard fonts for X\\nii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts\\nii xfonts-scalable 1:1.0.3-1.3 all scalable fonts for X\\nii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs\\nii xinit 1.4.1-0ubuntu5 amd64 X server initialisation tool\\nii xinput 1.6.4-1build1 amd64 Runtime configuration and test of XInput devices\\nii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data\\nii xml-core 0.19 all XML infrastructure and XML catalog file support\\nii xorg 1:7.7+23ubuntu3 amd64 X.Org X Window System\\nii xorg-docs-core 1:1.7.1-1.2 all Core documentation for the X.org X Window System\\nii xorriso 1:1.5.6-1.1ubuntu3 amd64 command line ISO-9660 and Rock Ridge manipulation tool\\nii xserver-common 2:21.1.12-1ubuntu1 all common files used by various X servers\\nii xserver-xephyr 2:21.1.12-1ubuntu1 amd64 nested X server\\nii xserver-xorg 1:7.7+23ubuntu3 amd64 X.Org X server\\nii xserver-xorg-core 2:21.1.12-1ubuntu1 amd64 Xorg X server - core server\\nii xserver-xorg-input-all 1:7.7+23ubuntu3 amd64 X.Org X server -- input driver metapackage\\nii xserver-xorg-input-libinput 1.4.0-1build1 amd64 X.Org X server -- libinput input driver\\nii xserver-xorg-input-wacom 1:1.2.0-1ubuntu2 amd64 X.Org X server -- Wacom input driver\\nii xserver-xorg-legacy 2:21.1.12-1ubuntu1 amd64 setuid root Xorg server wrapper\\nii xserver-xorg-video-all 1:7.7+23ubuntu3 amd64 X.Org X server -- output driver metapackage\\nii xserver-xorg-video-amdgpu 23.0.0-1build1 amd64 X.Org X server -- AMDGPU display driver\\nii xserver-xorg-video-ati 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI display driver wrapper\\nii xserver-xorg-video-fbdev 1:0.5.0-2build2 amd64 X.Org X server -- fbdev display driver\\nii xserver-xorg-video-intel 2:2.99.917+git20210115-1build1 amd64 X.Org X server -- Intel i8xx, i9xx display driver\\nii xserver-xorg-video-nouveau 1:1.0.17-2build1 amd64 X.Org X server -- Nouveau display driver\\nii xserver-xorg-video-qxl 0.1.6-1build1 amd64 X.Org X server -- QXL display driver\\nii xserver-xorg-video-radeon 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI Radeon display driver\\nii xserver-xorg-video-vesa 1:2.6.0-1 amd64 X.Org X server -- VESA display driver\\nii xserver-xorg-video-vmware 1:13.4.0-1build1 amd64 X.Org X server -- VMware display driver\\nii xwayland 2:23.2.6-1 amd64 X server for running X clients under Wayland\\nii xxd 2:9.1.0016-1ubuntu7.2 amd64 tool to make (or reverse) a hex dump\\nii xz-utils 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression utilities\\nii yaru-theme-gnome-shell 24.04.2-0ubuntu1 all Yaru GNOME Shell desktop theme from the Ubuntu Community\\nii yaru-theme-gtk 24.04.2-0ubuntu1 all Yaru GTK theme from the Ubuntu Community\\nii yaru-theme-icon 24.04.2-0ubuntu1 all Yaru icon theme from the Ubuntu Community\\nii yaru-theme-sound 24.04.2-0ubuntu1 all Yaru sound theme from the Ubuntu Community\\nii yelp 42.2-1build2 amd64 Help browser for GNOME\\nii yelp-xsl 42.1-2 all XSL stylesheets for the yelp help browser\\nii zenity 4.0.1-1build3 amd64 Display graphical dialog boxes from shell scripts\\nii zenity-common 4.0.1-1build3 all Display graphical dialog boxes from shell scripts (common files)\\nii zip 3.0-13build1 amd64 Archiver for .zip files\\nii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime\\nii zlib1g-dev:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - development\\nii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool\\n", "Turbo Boost (Legacy non intel_pstate)": "File not found"}',E'{"uri": "/home/arne/Sites/green-coding/example-applications/", "uri_type": "folder", "name": "Stress Test #2", "filename": "stress/usage_scenario.yml", "branch": null, "debug_mode": false, "allow_unsafe": false, "skip_system_checks": false, "skip_unsafe": true, "verbose_provider_boot": false, "full_docker_prune": false, "dev_no_sleeps": false, "dev_no_build": true, "dev_no_metrics": false, "dev_flow_timetravel": false, "dev_no_optimizations": false, "docker_prune": false, "job_id": null}',1,E'64134395e83e6e57cf6247a2b0ec11b562d1fa95',E'{"sci": {"I": 436, "EL": 4, "RS": 1, "TE": 181000}, "measurement": {"boot": {"wait_time_dependencies": 60}, "idle-duration": 5, "pre-test-sleep": 5, "total-duration": 3600, "post-test-sleep": 5, "metric-providers": {"linux": {"network.io.cgroup.container.provider.NetworkIoCgroupContainerProvider": {"resolution": 99}, "cpu.energy.rapl.msr.component.provider.CpuEnergyRaplMsrComponentProvider": {"resolution": 99}, "cpu.utilization.procfs.system.provider.CpuUtilizationProcfsSystemProvider": {"resolution": 99}, "memory.total.cgroup.container.provider.MemoryTotalCgroupContainerProvider": {"resolution": 99}, "psu.energy.dc.rapl.msr.machine.provider.PsuEnergyDcRaplMsrMachineProvider": {"resolution": 99}, "cpu.utilization.cgroup.container.provider.CpuUtilizationCgroupContainerProvider": {"resolution": 99}}, "macos": {"powermetrics.provider.PowermetricsProvider": {"resolution": 99}, "cpu.utilization.mach.system.provider.CpuUtilizationMachSystemProvider": {"resolution": 99}}, "common": {"network.connections.proxy.container.provider.NetworkConnectionsProxyContainerProvider": null}}, "baseline-duration": 5, "flow-process-duration": 1800, "phase-transition-time": 1, "system_check_threshold": 3}}',1726159442546177,1726159467048191,E'[{"start": 1726159443547731, "name": "[BASELINE]", "end": 1726159448548351}, {"start": 1726159449549372, "name": "[INSTALLATION]", "end": 1726159449567911}, {"start": 1726159450568124, "name": "[BOOT]", "end": 1726159450939392}, {"start": 1726159453950302, "name": "[IDLE]", "end": 1726159458950680}, {"start": 1726159459950891, "name": "[RUNTIME]", "end": 1726159465047297}, {"start": 1726159459951056, "name": "Stress", "end": 1726159465047247}, {"start": 1726159466047735, "name": "[REMOVE]", "end": 1726159467048168}]',NULL,NULL,FALSE,E'2024-09-13 16:43:51.948989+00',E'2024-09-12 16:44:32.073458+00',1), +(E'f4ed967e-7c27-4055-815f-ea437fc11d25',NULL,E'Stress Test #3',E'/home/arne/Sites/green-coding/example-applications/',E'main',E'58c7a5002c684f41f8d7a355f3ede641d8e45ddc',E'2024-07-10 13:48:46+00',E'manual',NULL,E'{"name": "Stress Container One Core 5 Seconds", "author": "Arne Tarara <arne@green-coding.berlin>", "description": "A simple 5 seconds stress on the system with one core. Expected display result is a rectangle shaped load.", "flow": [{"name": "Stress", "container": "gcb-alpine-stress", "commands": [{"type": "console", "command": "stress-ng -c 1 -t 5 -q", "note": "Starting Stress"}]}], "version": "2", "services": {"gcb-alpine-stress": {"container_name": "gcb-alpine-stress", "image": "gcb_alpine_stress", "build": "."}}}',E'stress/usage_scenario.yml',E'{"SGX": "This CPU does not support Intel SGX", "Uptime": " 18:44:39 up 8 min, 3 users, load average: 1.05, 0.77, 0.43", "Cpu Info": "11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz", "Platform": "Linux", "Processes": "USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\\nroot 1 0.8 0.0 23440 14188 ? Ss 18:36 0:03 /sbin/init splash\\nroot 2 0.0 0.0 0 0 ? S 18:36 0:00 [kthreadd]\\nroot 3 0.0 0.0 0 0 ? S 18:36 0:00 [pool_workqueue_release]\\nroot 4 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_g]\\nroot 5 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_p]\\nroot 6 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-slub_]\\nroot 7 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-netns]\\nroot 8 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:0-events]\\nroot 9 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:0H-events_highpri]\\nroot 10 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:1-events_freezable]\\nroot 12 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mm_pe]\\nroot 13 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_kthread]\\nroot 14 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_rude_kthread]\\nroot 15 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_trace_kthread]\\nroot 16 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/0]\\nroot 17 0.1 0.0 0 0 ? I 18:36 0:00 [rcu_preempt]\\nroot 18 0.0 0.0 0 0 ? S 18:36 0:00 [migration/0]\\nroot 19 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/0]\\nroot 20 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/0]\\nroot 21 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/1]\\nroot 22 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/1]\\nroot 23 0.0 0.0 0 0 ? S 18:36 0:00 [migration/1]\\nroot 24 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/1]\\nroot 26 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:0H-events_highpri]\\nroot 27 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/2]\\nroot 28 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/2]\\nroot 29 0.0 0.0 0 0 ? S 18:36 0:00 [migration/2]\\nroot 30 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/2]\\nroot 31 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:0-pm]\\nroot 32 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:0H-events_highpri]\\nroot 33 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/3]\\nroot 34 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/3]\\nroot 35 0.0 0.0 0 0 ? S 18:36 0:00 [migration/3]\\nroot 36 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/3]\\nroot 37 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:0-pm]\\nroot 38 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:0H-events_highpri]\\nroot 39 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/4]\\nroot 40 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/4]\\nroot 41 0.0 0.0 0 0 ? S 18:36 0:00 [migration/4]\\nroot 42 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/4]\\nroot 43 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:0-mm_percpu_wq]\\nroot 44 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:0H-events_highpri]\\nroot 45 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/5]\\nroot 46 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/5]\\nroot 47 0.0 0.0 0 0 ? S 18:36 0:00 [migration/5]\\nroot 48 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/5]\\nroot 49 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:0-i915-unordered]\\nroot 50 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:0H-events_highpri]\\nroot 51 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/6]\\nroot 52 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/6]\\nroot 53 0.0 0.0 0 0 ? S 18:36 0:00 [migration/6]\\nroot 54 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/6]\\nroot 56 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:0H-kblockd]\\nroot 57 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/7]\\nroot 58 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/7]\\nroot 59 0.0 0.0 0 0 ? S 18:36 0:00 [migration/7]\\nroot 60 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/7]\\nroot 62 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:0H-kblockd]\\nroot 63 0.0 0.0 0 0 ? S 18:36 0:00 [kdevtmpfs]\\nroot 64 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-inet_]\\nroot 65 0.0 0.0 0 0 ? S 18:36 0:00 [kauditd]\\nroot 67 0.0 0.0 0 0 ? S 18:36 0:00 [khungtaskd]\\nroot 68 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:2-flush-259:0]\\nroot 69 0.0 0.0 0 0 ? S 18:36 0:00 [oom_reaper]\\nroot 70 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-write]\\nroot 71 0.0 0.0 0 0 ? S 18:36 0:00 [kcompactd0]\\nroot 72 0.0 0.0 0 0 ? SN 18:36 0:00 [ksmd]\\nroot 73 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:1-mm_percpu_wq]\\nroot 74 0.0 0.0 0 0 ? SN 18:36 0:00 [khugepaged]\\nroot 75 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kinte]\\nroot 76 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kbloc]\\nroot 77 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-blkcg]\\nroot 79 0.0 0.0 0 0 ? S 18:36 0:00 [irq/9-acpi]\\nroot 80 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:1-mm_percpu_wq]\\nroot 81 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:1-events]\\nroot 82 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tpm_d]\\nroot 83 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ata_s]\\nroot 84 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md]\\nroot 85 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md_bi]\\nroot 86 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-edac-]\\nroot 87 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-devfr]\\nroot 88 0.0 0.0 0 0 ? S 18:36 0:00 [watchdogd]\\nroot 89 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:1-events]\\nroot 90 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:1H-kblockd]\\nroot 91 0.0 0.0 0 0 ? S 18:36 0:00 [kswapd0]\\nroot 92 0.0 0.0 0 0 ? S 18:36 0:00 [ecryptfs-kthread]\\nroot 93 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kthro]\\nroot 94 0.0 0.0 0 0 ? S 18:36 0:00 [irq/127-pciehp]\\nroot 95 0.0 0.0 0 0 ? S 18:36 0:00 [irq/128-pciehp]\\nroot 96 0.0 0.0 0 0 ? S 18:36 0:00 [irq/129-pciehp]\\nroot 97 0.0 0.0 0 0 ? S 18:36 0:00 [irq/130-pciehp]\\nroot 98 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:1-events]\\nroot 99 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:1-mm_percpu_wq]\\nroot 100 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-acpi_]\\nroot 101 0.0 0.0 0 0 ? S 18:36 0:00 [hwrng]\\nroot 102 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:2-events]\\nroot 103 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mld]\\nroot 104 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:1H]\\nroot 105 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipv6_]\\nroot 112 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kstrp]\\nroot 114 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:0-hci0]\\nroot 128 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-charg]\\nroot 129 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:3-mm_percpu_wq]\\nroot 153 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:1H-kblockd]\\nroot 157 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:1H-kblockd]\\nroot 185 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:1H-kblockd]\\nroot 186 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:1H]\\nroot 194 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:1H-kblockd]\\nroot 195 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:1H-kblockd]\\nroot 196 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:2-rcu_gp]\\nroot 217 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:2-events]\\nroot 218 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 219 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 220 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 221 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 223 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:3-rcu_gp]\\nroot 224 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:2-events_freezable]\\nroot 225 0.0 0.0 0 0 ? S 18:36 0:00 [irq/173-FRMW0001:00]\\nroot 226 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:2-events]\\nroot 227 0.0 0.0 0 0 ? S 18:36 0:00 [irq/174-PIXA3854:00]\\nroot 264 0.0 0.0 0 0 ? S 18:36 0:00 [jbd2/nvme0n1p5-8]\\nroot 265 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ext4-]\\nroot 315 0.1 0.0 67096 17564 ? S<s 18:36 0:00 /usr/lib/systemd/systemd-journald\\nroot 349 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/2:4-events]\\nroot 351 0.2 0.0 30832 8576 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-udevd\\nroot 395 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 423 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:5-flush-259:0]\\nroot 449 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:6-ext4-rsv-conversion]\\nroot 450 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:7-ext4-rsv-conversion]\\nroot 451 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:8-events_unbound]\\nroot 452 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:9-events_unbound]\\nroot 468 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:2-events]\\nroot 514 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cfg80]\\nroot 520 0.0 0.0 0 0 ? S 18:36 0:00 [irq/191-mei_me]\\nroot 531 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-crypt]\\nroot 534 0.3 0.0 0 0 ? S 18:36 0:01 [irq/192-iwlwifi:default_queue]\\nroot 535 0.0 0.0 0 0 ? S 18:36 0:00 [irq/193-iwlwifi:queue_1]\\nroot 536 0.0 0.0 0 0 ? S 18:36 0:00 [irq/194-iwlwifi:queue_2]\\nroot 538 0.6 0.0 0 0 ? S 18:36 0:03 [irq/195-iwlwifi:queue_3]\\nroot 539 0.0 0.0 0 0 ? S 18:36 0:00 [irq/196-iwlwifi:queue_4]\\nroot 540 0.0 0.0 0 0 ? S 18:36 0:00 [irq/197-iwlwifi:queue_5]\\nroot 541 0.0 0.0 0 0 ? S 18:36 0:00 [irq/198-iwlwifi:queue_6]\\nroot 542 0.0 0.0 0 0 ? S 18:36 0:00 [irq/199-iwlwifi:queue_7]\\nroot 543 0.0 0.0 0 0 ? S 18:36 0:00 [irq/200-iwlwifi:queue_8]\\nroot 544 0.0 0.0 0 0 ? S 18:36 0:00 [irq/201-iwlwifi:exception]\\nroot 576 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ttm]\\nroot 583 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cros_]\\nroot 586 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc0]\\nroot 587 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc1]\\nroot 588 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc2]\\nroot 589 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc3]\\nroot 640 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:3-mm_percpu_wq]\\nsystemd+ 660 0.1 0.0 17728 7680 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-oomd\\nsystemd+ 665 0.1 0.0 21584 12800 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-resolved\\nsystemd+ 671 0.0 0.0 91044 7680 ? Ssl 18:36 0:00 /usr/lib/systemd/systemd-timesyncd\\nroot 754 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:3-cgroup_destroy]\\nroot 785 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:3-hci0]\\nroot 790 0.0 0.0 314260 8124 ? Ssl 18:36 0:00 /usr/libexec/accounts-daemon\\navahi 793 0.1 0.0 8780 3840 ? Ss 18:36 0:00 avahi-daemon: running [framebook.local]\\nroot 794 0.0 0.0 13684 6528 ? Ss 18:36 0:00 /usr/libexec/bluetooth/bluetoothd\\nroot 795 0.0 0.0 9804 2816 ? Ss 18:36 0:00 /usr/sbin/cron -f -P\\nmessage+ 796 0.6 0.0 11992 6528 ? Ss 18:36 0:03 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngnome-r+ 800 0.0 0.0 439064 16176 ? Ssl 18:36 0:00 /usr/libexec/gnome-remote-desktop-daemon --system\\nroot 804 0.0 0.0 314320 7808 ? Ssl 18:36 0:00 /usr/libexec/iio-sensor-proxy\\npolkitd 812 0.1 0.0 384348 10120 ? Ssl 18:36 0:00 /usr/lib/polkit-1/polkitd --no-debug\\nroot 815 0.0 0.0 314180 7856 ? Ssl 18:36 0:00 /usr/libexec/power-profiles-daemon\\nroot 831 0.3 0.1 2287584 35108 ? Ssl 18:36 0:01 /usr/lib/snapd/snapd\\nroot 836 0.0 0.0 310432 6912 ? Ssl 18:36 0:00 /usr/libexec/switcheroo-control\\nroot 838 0.8 0.0 725084 13012 ? Ssl 18:36 0:03 /usr/bin/sysbox-mgr\\nroot 842 0.2 0.0 18136 9220 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-logind\\nroot 844 0.1 0.0 425420 10368 ? Ssl 18:36 0:00 /usr/sbin/thermald --systemd --dbus-enable --adaptive\\nroot 845 0.0 0.0 469148 13116 ? Ssl 18:36 0:00 /usr/libexec/udisks2/udisksd\\navahi 893 0.0 0.0 8420 1284 ? S 18:36 0:00 avahi-daemon: chroot helper\\nroot 898 0.3 0.0 338968 21172 ? Ssl 18:36 0:01 /usr/sbin/NetworkManager --no-daemon\\nroot 901 0.0 0.0 18400 11264 ? Ss 18:36 0:00 /usr/sbin/wpa_supplicant -u -s -O DIR=/run/wpa_supplicant GROUP=netdev\\nroot 913 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipmi-]\\nsyslog 919 0.0 0.0 222508 6016 ? Ssl 18:36 0:00 /usr/sbin/rsyslogd -n -iNONE\\nroot 971 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:3-pm]\\nroot 1073 0.0 0.0 392104 12664 ? Ssl 18:36 0:00 /usr/sbin/ModemManager\\nroot 1085 0.0 0.0 314184 8224 ? Ssl 18:36 0:00 /usr/libexec/boltd\\nroot 1086 0.0 0.0 317632 9472 ? Ssl 18:36 0:00 /usr/libexec/upowerd\\nroot 1113 0.0 0.0 1166524 11008 ? Ssl 18:36 0:00 /usr/bin/sysbox-fs\\nroot 1121 0.0 0.0 2800 1664 ? Ss 18:36 0:00 /bin/sh -c /usr/bin/sysbox-runc --version && /usr/bin/sysbox-mgr --version && /usr/bin/sysbox-fs --version && /bin/sleep infinity\\nroot 1149 0.0 0.0 9076 2176 ? S 18:36 0:00 /bin/sleep infinity\\nroot 1430 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 1439 0.0 0.0 38488 11392 ? Ss 18:36 0:00 /usr/sbin/cupsd -l\\nroot 1447 0.3 0.2 2249812 65312 ? Ssl 18:36 0:01 /usr/bin/containerd\\nroot 1469 0.0 0.0 315384 9472 ? Ssl 18:36 0:00 /usr/sbin/gdm3\\nroot 1492 0.0 0.0 242664 9856 ? Sl 18:36 0:00 gdm-session-worker [pam/gdm-launch-environment]\\ngdm 1499 0.3 0.0 20988 11904 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\ngdm 1500 0.0 0.0 21400 3600 ? S 18:36 0:00 (sd-pam)\\ngdm 1512 0.0 0.0 114056 12032 ? S<sl 18:36 0:00 /usr/bin/pipewire\\ngdm 1513 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\ngdm 1515 0.0 0.0 407672 18944 ? S<sl 18:36 0:00 /usr/bin/wireplumber\\ngdm 1516 0.0 0.0 110484 11008 ? S<sl 18:36 0:00 /usr/bin/pipewire-pulse\\ngdm 1517 0.0 0.0 236396 6272 tty1 Ssl+ 18:36 0:00 /usr/libexec/gdm-wayland-session dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\ngdm 1525 0.0 0.0 9420 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngdm 1533 0.0 0.0 6500 2432 tty1 S+ 18:36 0:00 dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\nrtkit 1535 0.0 0.0 22940 3456 ? SNsl 18:36 0:00 /usr/libexec/rtkit-daemon\\ngdm 1537 0.0 0.0 9856 5120 tty1 S+ 18:36 0:00 dbus-daemon --nofork --print-address 4 --session\\ngdm 1546 0.0 0.0 521532 18048 tty1 Sl+ 18:36 0:00 /usr/libexec/gnome-session-binary --autostart /usr/share/gdm/greeter/autostart\\ngdm 1548 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\ngdm 1557 0.0 0.0 310008 6400 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 1564 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/128/doc\\ngdm 1590 2.4 0.6 4424672 205540 tty1 Sl+ 18:36 0:11 /usr/bin/gnome-shell\\nroot 1621 0.0 0.0 0 0 ? S< 18:36 0:00 [krfcommd]\\ncups-br+ 1656 0.0 0.0 268504 19840 ? Ssl 18:36 0:00 /usr/sbin/cups-browsed\\nroot 1657 0.5 0.2 3317612 94284 ? Ssl 18:36 0:02 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock\\nkernoops 1659 0.0 0.0 12744 2184 ? Ss 18:36 0:00 /usr/sbin/kerneloops --test\\nkernoops 1662 0.0 0.0 12744 2188 ? Ss 18:36 0:00 /usr/sbin/kerneloops\\nroot 1702 0.0 0.0 12020 8064 ? Ss 18:36 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups\\nroot 2398 0.0 0.0 1238168 13672 ? Sl 18:36 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928 -address /run/containerd/containerd.sock\\nroot 2511 0.0 0.0 1136 512 ? Ss 18:36 0:00 /sbin/docker-init -- buildkitd --allow-insecure-entitlement=network.host\\nroot 2717 0.0 0.1 1271012 34000 ? Sl 18:36 0:00 buildkitd --allow-insecure-entitlement=network.host\\nroot 2728 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:3-mm_percpu_wq]\\nroot 2863 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tls-s]\\nroot 2998 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:4-pm]\\nroot 2999 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:5-kacpi_notify]\\nroot 3000 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:6-events]\\nroot 3001 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:7-kacpi_notify]\\ngdm 3022 0.0 0.0 383120 7680 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi-bus-launcher\\ngdm 3028 0.0 0.0 9420 4992 tty1 S+ 18:36 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/128/at-spi/bus\\ngdm 3030 0.0 0.2 529220 73856 tty1 Sl+ 18:36 0:00 /usr/bin/Xwayland :1024 -rootless -noreset -accessx -core -auth /run/user/128/.mutter-Xwaylandauth.4R00T2 -listenfd 4 -listenfd 5 -displayfd 6 -initfd 7 -byteswappedclients\\ngdm 3034 0.0 0.0 236068 7296 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session\\ncolord 3035 0.0 0.0 320904 14776 ? Ssl 18:36 0:00 /usr/libexec/colord\\ngdm 3069 0.0 0.0 310008 6400 tty1 Sl+ 18:36 0:00 /usr/libexec/xdg-permission-store\\ngdm 3078 0.0 0.0 2663384 26852 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.Shell.Notifications\\ngdm 3080 0.0 0.0 544408 13440 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sharing\\ngdm 3091 0.0 0.0 487204 19200 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-wacom\\ngdm 3095 0.0 0.0 414336 19904 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-color\\ngdm 3100 0.0 0.0 412624 19204 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-keyboard\\ngdm 3109 0.0 0.0 324188 11520 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-print-notifications\\ngdm 3114 0.0 0.0 458120 7040 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-rfkill\\ngdm 3119 0.0 0.0 386768 8192 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-smartcard\\ngdm 3129 0.0 0.0 432620 12416 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-datetime\\ngdm 3146 0.0 0.0 595396 24488 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-media-keys\\ngdm 3149 0.0 0.0 310116 6528 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-screensaver-proxy\\ngdm 3155 0.0 0.0 394584 9984 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sound\\ngdm 3163 0.0 0.0 384468 6912 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-a11y-settings\\ngdm 3169 0.0 0.0 459824 8320 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-housekeeping\\ngdm 3172 0.1 0.0 524880 23336 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-power\\ngdm 3290 0.0 0.0 416764 15232 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-printer\\ngdm 3333 0.0 0.0 2794456 27380 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.ScreenSaver\\ngdm 3345 0.0 0.2 992124 77664 tty1 Sl+ 18:36 0:00 /usr/libexec/mutter-x11-frames\\ngdm 3346 0.0 0.0 389372 12224 tty1 Sl 18:36 0:00 ibus-daemon --panel disable -r --xim\\ngdm 3360 0.0 0.0 311020 7296 tty1 Sl 18:36 0:00 /usr/libexec/ibus-dconf\\ngdm 3362 0.0 0.2 610420 66612 tty1 Sl 18:36 0:00 /usr/libexec/ibus-x11 --kill-daemon\\ngdm 3364 0.0 0.0 310984 7424 tty1 Sl+ 18:36 0:00 /usr/libexec/ibus-portal\\ngdm 3378 0.0 0.0 237196 7424 tty1 Sl 18:36 0:00 /usr/libexec/ibus-engine-simple\\nroot 3437 0.0 0.0 15116 8048 ? Ss 18:36 0:00 sshd: arne [priv]\\narne 3449 0.1 0.0 21024 12288 ? Ss 18:36 0:00 /usr/lib/systemd/systemd --user\\narne 3453 0.0 0.0 21396 3596 ? S 18:36 0:00 (sd-pam)\\narne 3464 0.0 0.0 109524 8576 ? Ssl 18:36 0:00 /usr/bin/pipewire\\narne 3465 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\narne 3468 0.0 0.0 39000 11776 ? Ss 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3472 0.0 0.0 405708 16000 ? Ssl 18:36 0:00 /usr/bin/wireplumber\\narne 3475 0.0 0.0 109904 10496 ? Ssl 18:36 0:00 /usr/bin/pipewire-pulse\\narne 3501 0.0 0.0 9444 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\narne 3542 0.0 0.0 15276 7108 ? S 18:36 0:00 sshd: arne@pts/0\\narne 3544 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\narne 3549 0.0 0.0 309864 6272 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 3556 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc\\narne 3594 0.0 0.0 353012 21644 ? Sl 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3599 0.0 0.0 11980 5632 pts/0 Ss 18:36 0:00 -bash\\nroot 3669 0.0 0.0 15116 8176 ? Ss 18:37 0:00 sshd: arne [priv]\\narne 3711 0.8 0.0 15276 7108 ? S 18:37 0:03 sshd: arne@pts/1\\narne 3712 0.0 0.0 11980 5632 pts/1 Ss 18:37 0:00 -bash\\nroot 3755 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/7:3-cgroup_destroy]\\nroot 3759 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:8-kacpi_notify]\\nroot 3760 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:9-kacpi_notify]\\nroot 3801 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:10-kacpi_notify]\\nroot 3834 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:11-kacpi_notify]\\nroot 3835 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:12-pm]\\nroot 3878 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:13-kacpi_notify]\\nroot 3879 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:14-events]\\nroot 3880 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:15-kacpi_notify]\\nroot 4401 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:5-pm]\\nroot 4402 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/2:6]\\nroot 4403 0.0 0.0 0 0 ? I 18:40 0:00 [kworker/3:4]\\ngdm 4742 0.0 0.0 317072 9856 ? Ssl 18:40 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/128/keyring\\nroot 4828 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/4:3-events]\\nroot 4875 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/0:16-pm]\\nroot 4983 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/6:0-rcu_gp]\\nroot 5020 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:0-mm_percpu_wq]\\nroot 5028 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/7:0]\\narne 5100 0.0 0.0 2068224 25984 pts/0 Sl+ 18:42 0:00 docker compose up\\narne 5122 0.1 0.1 2169824 45824 pts/0 Sl+ 18:42 0:00 /usr/libexec/docker/cli-plugins/docker-compose compose up\\nroot 5207 0.0 0.0 1745288 4352 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5214 0.0 0.0 1745032 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5235 0.0 0.0 1238168 13400 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45 -address /run/containerd/containerd.sock\\nroot 5262 0.0 0.0 1237912 13180 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2 -address /run/containerd/containerd.sock\\n999 5282 2.7 0.0 37240 8576 ? Ssl 18:42 0:03 redis-server *:6379\\n999 5289 0.0 0.0 219720 29824 ? Ss 18:42 0:00 postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key -c work_mem=16MB -p 9573\\nroot 5393 0.0 0.0 2040984 4864 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5405 0.0 0.0 1597568 4096 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5419 0.0 0.0 1237912 13056 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7 -address /run/containerd/containerd.sock\\nroot 5450 0.0 0.0 1238168 13312 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf -address /run/containerd/containerd.sock\\nroot 5471 0.0 0.0 1136 512 ? Ss 18:42 0:00 /sbin/docker-init -- /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5479 0.0 0.0 12120 7984 ? Ss 18:42 0:00 nginx: master process nginx -g daemon off;\\nroot 5535 0.0 0.0 4344 3200 ? S 18:42 0:00 /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5536 0.2 0.0 37560 31352 ? S 18:42 0:00 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5560 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5561 0.0 0.0 12328 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5562 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5563 0.0 0.0 12344 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5564 0.0 0.0 12124 4528 ? S 18:42 0:00 nginx: worker process\\nwww-data 5565 0.0 0.0 12328 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5566 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5567 0.0 0.0 12124 3120 ? S 18:42 0:00 nginx: worker process\\nwww-data 5570 3.7 0.4 1173056 145288 ? Sl 18:42 0:04 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5571 3.5 0.4 1173060 145536 ? Sl 18:42 0:04 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5572 3.6 0.4 877032 139256 ? Sl 18:42 0:04 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5573 3.5 0.4 1172940 145476 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5574 3.3 0.4 1174084 147244 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5575 3.4 0.4 877048 139480 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5576 3.2 0.4 1173300 146304 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5577 3.0 0.4 1174076 146560 ? Sl 18:42 0:03 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\n999 5620 0.0 0.0 219720 5912 ? Ss 18:42 0:00 postgres: checkpointer \\n999 5621 0.0 0.0 219864 6680 ? Ss 18:42 0:00 postgres: background writer \\n999 5623 0.0 0.0 219720 10008 ? Ss 18:42 0:00 postgres: walwriter \\n999 5624 0.0 0.0 221312 8984 ? Ss 18:42 0:00 postgres: autovacuum launcher \\n999 5625 0.0 0.0 221288 8088 ? Ss 18:42 0:00 postgres: logical replication launcher \\nroot 5968 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:2-events]\\nroot 5969 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:4-events]\\nroot 5970 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:5-pm]\\nroot 5971 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:6]\\nroot 6175 0.0 0.0 0 0 ? I 18:43 0:00 [kworker/6:2-events]\\ngdm 6293 0.0 0.0 0 0 tty1 Z+ 18:43 0:00 [dbus-daemon] <defunct>\\n999 6343 0.0 0.0 223116 19508 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54078) idle\\n999 6349 0.0 0.0 222676 19096 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54084) idle\\n999 6350 0.0 0.0 222812 19096 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54090) idle\\n999 6351 0.0 0.0 222544 19096 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54098) idle\\n999 6355 0.0 0.0 222520 18072 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54100) idle\\n999 6357 0.0 0.0 222520 18200 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54116) idle\\n999 6358 0.0 0.0 222992 19152 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54120) idle\\n999 6359 0.0 0.0 222520 18072 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54118) idle\\n999 6360 0.0 0.0 222320 14744 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54142) idle\\n999 6361 0.0 0.0 222852 19224 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54156) idle\\nroot 6919 1.2 0.0 312356 8704 ? Ssl 18:44 0:00 /usr/libexec/nm-dispatcher\\n999 6953 0.0 0.0 221804 14616 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.4(37048) idle\\n999 6954 0.0 0.0 221944 17816 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.4(37058) idle\\narne 6956 91.1 0.3 928148 130328 pts/1 Sl+ 18:44 0:01 python3 runner.py --uri /home/arne/Sites/green-coding/example-applications/ --filename stress/usage_scenario.yml --name Stress Test #3 --dev-no-build --skip-unsafe\\n999 6962 0.0 0.0 222120 19992 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.1(35644) idle\\n999 6963 0.0 0.0 222052 19864 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.1(35646) idle\\nroot 7090 9.8 0.0 17276 7552 ? Ss 18:44 0:00 /usr/lib/systemd/systemd-hostnamed\\narne 7177 0.0 0.0 2800 1664 pts/1 S+ 18:44 0:00 /bin/sh -c /usr/bin/ps -aux\\narne 7178 0.0 0.0 15512 5376 pts/1 R+ 18:44 0:00 /usr/bin/ps -aux\\n", "Disk Usage": 323006111744, "Docker Info": "Client: Docker Engine - Community\\n Version: 27.2.1\\n Context: default\\n Debug Mode: false\\n Plugins:\\n buildx: Docker Buildx (Docker Inc.)\\n Version: v0.16.2\\n Path: /usr/libexec/docker/cli-plugins/docker-buildx\\n compose: Docker Compose (Docker Inc.)\\n Version: v2.29.2\\n Path: /usr/libexec/docker/cli-plugins/docker-compose\\n\\nServer:\\n Containers: 5\\n Running: 5\\n Paused: 0\\n Stopped: 0\\n Images: 13\\n Server Version: 27.2.1\\n Storage Driver: overlayfs\\n driver-type: io.containerd.snapshotter.v1\\n Logging Driver: json-file\\n Cgroup Driver: systemd\\n Cgroup Version: 2\\n Plugins:\\n Volume: local\\n Network: bridge host ipvlan macvlan null overlay\\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\\n Swarm: inactive\\n Runtimes: io.containerd.runc.v2 runc sysbox-runc\\n Default Runtime: runc\\n Init Binary: docker-init\\n containerd version: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc version: v1.1.13-0-g58aa920\\n init version: de40ad0\\n Security Options:\\n apparmor\\n seccomp\\n Profile: builtin\\n cgroupns\\n Kernel Version: 6.8.0-44-generic\\n Operating System: Ubuntu 24.04.1 LTS\\n OSType: linux\\n Architecture: x86_64\\n CPUs: 8\\n Total Memory: 31.13GiB\\n Name: framebook\\n ID: 492c90f2-99f1-437f-a14b-9f1e5d514ca9\\n Docker Root Dir: /var/lib/docker\\n Debug Mode: false\\n Username: greencoding\\n Experimental: false\\n Insecure Registries:\\n 127.0.0.0/8\\n Live Restore Enabled: false\\n Default Address Pools:\\n Base: 172.25.0.0/16, Size: 24\\n\\n", "Free Memory": 31149862912, "Turbo Boost": "0", "Architecture": "x86-64", "Memory Total": "32646584 kB", "Power Limits": {"/sys/devices/virtual/powercap/intel-rapl/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/name": "package-0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/name": "psys\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj": "1591530044\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/energy_uj": "3362522580\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_name": "peak_power\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/name": "core\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/name": "uncore\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/energy_uj": "582231175\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/energy_uj": "7976908\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_max_power_uw": "28000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_power_limit_uw": "200000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_time_window_us": "31981568\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_power_limit_uw": "64000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_time_window_us": "2440\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_power_limit_uw": "121000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_time_window_us": "27983872\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_suspended_time": "0\\n"}, "IO Scheduling": "File not found", "Linux Version": "Linux 6.8.0-44-generic", "CPU Scheduling": {"/sys/kernel/debug/sched/debug": "Sched Debug Version: v0.11, 6.8.0-44-generic #44-Ubuntu\\nktime : 497483.553784\\nsched_clk : 497549.132697\\ncpu_clk : 497504.691595\\njiffies : 4295164620\\nsched_clock_stable() : 1\\n\\nsysctl_sched\\n .sysctl_sched_base_slice : 3.000000\\n .sysctl_sched_features : 6237751\\n .sysctl_sched_tunable_scaling : 1 (logarithmic)\\n\\ncpu#0, 2400.000 MHz\\n .nr_running : 1\\n .nr_switches : 154921\\n .nr_uninterruptible : -53\\n .next_balance : 4295.164656\\n .curr->pid : 7188\\n .clock : 497505.138798\\n .clock_task : 497505.138798\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[0]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4887.526742\\n .avg_vruntime : 4887.526742\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 1048576\\n .load_avg : 1024\\n .runnable_avg : 705\\n .util_avg : 705\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1024\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497505.138798\\n .se->vruntime : 12884.405142\\n .se->sum_exec_runtime : 5318.268118\\n .se->load.weight : 430530\\n .se->avg.load_avg : 420\\n .se->avg.util_avg : 705\\n .se->avg.runnable_avg : 705\\n\\ncfs_rq[0]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12884.405142\\n .avg_vruntime : 12884.405142\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 430530\\n .load_avg : 420\\n .runnable_avg : 705\\n .util_avg : 705\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 410\\n .tg_load_avg : 724\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497505.138798\\n .se->vruntime : 19912.859941\\n .se->sum_exec_runtime : 5581.180766\\n .se->load.weight : 600002\\n .se->avg.load_avg : 585\\n .se->avg.util_avg : 705\\n .se->avg.runnable_avg : 705\\n\\ncfs_rq[0]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3213.270766\\n .avg_vruntime : 3213.270766\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497416.362608\\n .se->vruntime : 69914.661487\\n .se->sum_exec_runtime : 3832.543890\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 551.618312\\n .avg_vruntime : 551.618312\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497215.744525\\n .se->vruntime : 69913.485373\\n .se->sum_exec_runtime : 570.686452\\n .se->load.weight : 102633\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[0]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 423.674061\\n .avg_vruntime : 423.674061\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497218.176288\\n .se->vruntime : 69914.263485\\n .se->sum_exec_runtime : 441.443863\\n .se->load.weight : 178206\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/dbus.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 429.467639\\n .avg_vruntime : 429.467639\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497117.814859\\n .se->vruntime : 69904.558399\\n .se->sum_exec_runtime : 430.641510\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69914.661487\\n .avg_vruntime : 69914.661487\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497416.362608\\n .se->vruntime : 110072.663291\\n .se->sum_exec_runtime : 17856.059450\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[0]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19912.859941\\n .avg_vruntime : 19912.859941\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 600002\\n .load_avg : 585\\n .runnable_avg : 705\\n .util_avg : 705\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 571\\n .tg_load_avg : 918\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497505.138798\\n .se->vruntime : 110132.315335\\n .se->sum_exec_runtime : 8494.259480\\n .se->load.weight : 658172\\n .se->avg.load_avg : 642\\n .se->avg.util_avg : 705\\n .se->avg.runnable_avg : 705\\n\\ncfs_rq[0]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 110132.315335\\n .avg_vruntime : 110132.315335\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 658172\\n .load_avg : 652\\n .runnable_avg : 716\\n .util_avg : 705\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[0]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[0]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n Spool_workqueue_ 3 50.484081 E 53.473963 3.000000 0.010118 3 120 0.000000 0.010118 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_g 4 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_p 5 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-slub_ 6 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-netns 7 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n I kworker/0:0 8 59814.143606 E 59817.054498 3.000000 291.283992 683 120 0.000000 291.283992 0.000000 0.000000 0 0 /\\n I kworker/0:0H 9 61.484472 E 61.518998 3.000000 0.013159 4 100 0.000000 0.013159 0.000000 0.000000 0 0 /\\n I kworker/0:1 10 110102.994176 E 110105.979830 3.000000 443.597693 1685 120 0.000000 443.597693 0.000000 0.000000 0 0 /\\n Ikworker/R-mm_pe 12 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_kthre 13 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_rude_ 14 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_trace 15 429.940627 E 432.911629 3.000000 0.267245 7 120 0.000000 0.267245 0.000000 0.000000 0 0 /\\n S ksoftirqd/0 16 110072.064479 E 110075.052085 3.000000 62.114379 2756 120 0.000000 62.114379 0.000000 0.000000 0 0 /\\n S migration/0 18 0.626525 E 0.123004 0.750000 7.381194 186 0 0.000000 7.381194 0.000000 0.000000 0 0 /\\n S idle_inject/0 19 0.467865 E 0.280188 0.750000 0.005407 3 49 0.000000 0.005407 0.000000 0.000000 0 0 /\\n S cpuhp/0 20 8335.382094 E 8338.316225 3.000000 1.150907 26 120 0.000000 1.150907 0.000000 0.000000 0 0 /\\n S khungtaskd 67 108672.106140 E 108674.969065 3.000000 1.182887 6 120 0.000000 1.182887 0.000000 0.000000 0 0 /\\n Ikworker/R-charg 128 50.473963 E 50.508549 3.000000 0.093293 2 100 0.000000 0.093293 0.000000 0.000000 0 0 /\\n I kworker/0:1H 157 108759.587105 E 108759.621661 3.000000 8.225065 447 100 0.000000 8.225065 0.000000 0.000000 0 0 /\\n I kworker/0:2 224 106653.295552 E 106656.280240 3.000000 289.143519 1046 120 0.000000 289.143519 0.000000 0.000000 0 0 /\\n I kworker/u16:5 423 108686.231098 E 108689.221814 3.000000 311.055376 6044 120 0.000000 311.055376 0.000000 0.000000 0 0 /\\n Sirq/193-iwlwifi 535 3646.117837 E 3649.116436 3.000000 2.670325 15 49 0.000000 2.670325 0.000000 0.000000 0 0 /\\n Ikworker/R-cros_ 583 4098.545142 E 4098.579743 3.000000 0.004733 2 100 0.000000 0.004733 0.000000 0.000000 0 0 /\\n S card1-crtc0 586 4105.692415 E 4108.689897 3.000000 0.071775 4 49 0.000000 0.071775 0.000000 0.000000 0 0 /\\n S card1-crtc1 587 4105.694050 E 4108.692415 3.000000 0.002284 2 49 0.000000 0.002284 0.000000 0.000000 0 0 /\\n S card1-crtc2 588 4105.695887 E 4108.694050 3.000000 0.002459 2 49 0.000000 0.002459 0.000000 0.000000 0 0 /\\n S card1-crtc3 589 4105.697510 E 4108.695887 3.000000 0.002237 2 49 0.000000 0.002237 0.000000 0.000000 0 0 /\\n S sd-resolve 762 2.805469 E 4.473698 3.000000 3.300131 16 120 0.000000 3.300131 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n I kworker/0:3 754 107744.893763 E 107747.883590 3.000000 300.467214 839 120 0.000000 300.467214 0.000000 0.000000 0 0 /\\n Saccounts-daemon 790 14.253092 E 16.355003 3.000000 133.580546 272 120 0.000000 133.580546 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S bluetoothd 794 16.633153 E 19.566497 3.000000 95.102018 395 120 0.000000 95.102018 0.000000 0.000000 0 0 /system.slice/bluetooth.service\\n S gdbus 936 13.969662 E 16.117388 3.000000 134.487699 479 120 0.000000 134.487699 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S gmain 1041 0.924491 E 2.068097 3.000000 0.059449 2 120 0.000000 0.059449 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S cleanup 1103 7.256534 E 10.181598 3.000000 0.315513 4 120 0.000000 0.315513 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S avahi-daemon 893 0.811987 E 2.186352 3.000000 0.137179 4 120 0.000000 0.137179 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S gdbus 1098 5.410405 E 7.152417 3.000000 21.180934 75 120 0.000000 21.180934 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1474 423.674061 E 426.660929 3.000000 114.125825 5014 120 0.000000 114.125825 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1475 0.003081 E 2.997094 3.000000 0.496009 16 120 0.000000 0.496009 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gmain 1483 3.022894 E 5.996257 3.000000 0.026637 1 120 0.000000 0.026637 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pw-data-loop 1534 8.779134 E 11.773129 3.000000 0.034056 3 79 0.000000 0.034056 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1569 1880.003146 E 1881.958162 3.000000 41.683534 431 120 0.000000 41.683534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1554 9.640752 E 12.603939 3.000000 0.065887 2 120 0.000000 0.065887 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1556 10.631341 E 13.583311 3.000000 0.917172 22 120 0.000000 0.917172 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fusermount3 1564 9.813596 E 12.812048 3.000000 0.930269 5 120 0.000000 0.930269 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1604 2082.041252 E 2085.016150 3.000000 16.345525 87 120 0.000000 16.345525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 1683 10.500403 E 11.973892 3.000000 42.294132 289 120 0.000000 42.294132 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1674 550.471058 E 553.466104 3.000000 85.825897 2668 120 0.000000 85.825897 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2406 550.458434 E 552.367724 3.000000 118.847457 2984 120 0.000000 118.847457 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2416 374.234438 E 377.219668 3.000000 35.780266 1608 120 0.000000 35.780266 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1662 0.339085 E 2.445153 3.000000 1.213060 14 120 0.000000 1.213060 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S docker-init 2511 4.002446 E 6.890174 3.000000 51.928413 540 120 0.000000 51.928413 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2764 1.983811 E 4.744663 3.000000 18.886864 175 120 0.000000 18.886864 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/0:4 2998 59771.957357 E 59774.932526 3.000000 271.888982 1142 120 0.000000 271.888982 0.000000 0.000000 0 0 /\\n I kworker/0:5 2999 59772.125702 E 59775.104333 3.000000 138.814812 467 120 0.000000 138.814812 0.000000 0.000000 0 0 /\\n I kworker/0:6 3000 106645.660039 E 106648.638963 3.000000 278.875952 1115 120 0.000000 278.875952 0.000000 0.000000 0 0 /\\n I kworker/0:7 3001 59757.114051 E 59760.069565 3.000000 105.172095 199 120 0.000000 105.172095 0.000000 0.000000 0 0 /\\n S Xwayland 3030 823.312878 E 826.243091 3.000000 73.675981 404 120 0.000000 73.675981 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:sh0 3265 798.437067 E 801.432850 3.000000 0.043697 5 120 0.000000 0.043697 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3082 846.693163 E 849.149172 3.000000 0.987458 8 120 0.000000 0.987458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3105 850.647701 E 853.480247 3.000000 0.288156 7 120 0.000000 0.288156 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3117 753.415062 E 755.693222 3.000000 0.802525 2 120 0.000000 0.802525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3122 46.671710 E 49.646140 3.000000 0.025570 1 120 0.000000 0.025570 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3133 795.342480 E 798.312721 3.000000 2.282013 41 120 0.000000 2.282013 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3128 789.541948 E 792.521534 3.000000 0.623284 13 120 0.000000 0.623284 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-print-notif 3109 794.936793 E 797.917349 3.000000 26.108835 70 120 0.000000 26.108835 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3157 53.427679 E 56.401651 3.000000 0.026028 1 120 0.000000 0.026028 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-a11y-settin 3163 794.888778 E 797.870455 3.000000 6.166578 47 120 0.000000 6.166578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3176 794.880654 E 797.815559 3.000000 5.039055 51 120 0.000000 5.039055 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3340 1927.697033 E 1927.760897 3.000000 47.743714 9 120 0.000000 47.743714 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3349 808.794366 E 811.794366 3.000000 10.264307 5 120 0.000000 10.264307 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x11:sh0 3377 816.300810 E 819.286174 3.000000 0.014636 1 120 0.000000 0.014636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter:traceq0 3381 817.363254 E 1021.171202 3.000000 0.084925 1 139 0.000000 0.084925 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3386 818.412051 E 821.351989 3.000000 0.093107 2 120 0.000000 0.093107 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3387 817.414689 E 820.396299 3.000000 0.018390 1 120 0.000000 0.018390 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3389 818.351989 E 821.340314 3.000000 0.199289 7 120 0.000000 0.199289 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3366 811.073812 E 814.040000 3.000000 0.033812 1 120 0.000000 0.033812 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3393 819.206920 E 822.175436 3.000000 0.075475 3 120 0.000000 0.075475 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-portal 3364 2007.693323 E 2010.683621 3.000000 3.592916 25 120 0.000000 3.592916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3465 4.873835 E 7.857378 3.000000 12.993458 14 120 0.000000 12.993458 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3507 5.151991 E 8.096082 3.000000 0.172631 6 120 0.000000 0.172631 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3506 5.696636 E 8.662738 3.000000 0.223461 7 120 0.000000 0.223461 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-permission- 3549 8.115189 E 11.087827 3.000000 4.193195 7 120 0.000000 4.193195 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/0:8 3759 59756.400082 E 59759.380811 3.000000 1.022501 23 120 0.000000 1.022501 0.000000 0.000000 0 0 /\\n I kworker/0:9 3760 59770.205205 E 59773.169769 3.000000 1.596805 44 120 0.000000 1.596805 0.000000 0.000000 0 0 /\\n I kworker/0:10 3801 59771.969076 E 59774.937321 3.000000 0.905114 21 120 0.000000 0.905114 0.000000 0.000000 0 0 /\\n I kworker/0:11 3834 59756.809577 E 59759.790531 3.000000 0.552745 12 120 0.000000 0.552745 0.000000 0.000000 0 0 /\\n I kworker/0:12 3835 106653.311957 E 106656.295552 3.000000 148.657890 267 120 0.000000 148.657890 0.000000 0.000000 0 0 /\\n I kworker/0:13 3878 59770.675693 E 59773.644782 3.000000 0.401815 9 120 0.000000 0.401815 0.000000 0.000000 0 0 /\\n I kworker/0:14 3879 59838.813777 E 59841.697927 3.000000 118.760857 459 120 0.000000 118.760857 0.000000 0.000000 0 0 /\\n I kworker/0:15 3880 59757.553220 E 59760.501134 3.000000 0.251809 8 120 0.000000 0.251809 0.000000 0.000000 0 0 /\\n I kworker/0:16 4875 106655.724790 E 106656.772624 3.000000 51.472422 564 120 0.000000 51.472422 0.000000 0.000000 0 0 /\\n S docker 5108 142.053576 E 144.677977 3.000000 0.445408 2 120 0.000000 0.445408 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5125 145.841713 E 148.838155 3.000000 2.587746 33 120 0.000000 2.587746 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5128 153.640018 E 156.632884 3.000000 8.548291 260 120 0.000000 8.548291 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5138 147.883780 E 150.508821 3.000000 3.072613 60 120 0.000000 3.072613 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5207 380.169185 E 383.159727 3.000000 1.776241 5 120 0.000000 1.776241 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5209 380.159727 E 383.144516 3.000000 0.125477 4 120 0.000000 0.125477 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5265 317.900081 E 320.886003 3.000000 0.088538 5 120 0.000000 0.088538 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6177 406.824249 E 409.321199 3.000000 1.348428 5 120 0.000000 1.348428 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_close_file 5371 0.996541 E 1.988580 3.000000 0.014879 1 120 0.000000 0.014879 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S bio_lazy_free 5373 0.971337 E 2.003459 3.000000 0.025204 2 120 0.000000 0.025204 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5402 391.629910 E 394.593552 3.000000 0.036358 1 120 0.000000 0.036358 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5404 440.410950 E 443.311576 3.000000 0.200935 4 120 0.000000 0.200935 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5423 412.747998 E 415.704313 3.000000 7.703882 77 120 0.000000 7.703882 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5426 321.885108 E 324.879367 3.000000 0.005741 1 120 0.000000 0.005741 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5459 331.501159 E 334.467439 3.000000 1.138122 31 120 0.000000 1.138122 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bash 5535 0.374091 E 2.004330 3.000000 1.369761 2 120 0.000000 1.369761 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5560 1.881197 E 4.297811 3.000000 87.562664 10 120 0.000000 87.562664 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5598 1096.827304 E 1099.827304 3.000000 67.403138 16 120 0.000000 67.403138 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5664 1810.667125 E 1813.659738 3.000000 48.028793 19 120 0.000000 48.028793 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6353 2962.498940 E 2965.273620 3.000000 9.925404 79 120 0.000000 9.925404 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6354 2962.532768 E 2965.492613 3.000000 10.767032 25 120 0.000000 10.767032 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5613 1154.546552 E 1157.489793 3.000000 50.490838 17 120 0.000000 50.490838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5688 1886.290395 E 1889.290395 3.000000 33.583605 11 120 0.000000 33.583605 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5689 1886.727601 E 1889.716108 3.000000 34.006642 14 120 0.000000 34.006642 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5691 1887.153050 E 1890.141066 3.000000 34.415056 12 120 0.000000 34.415056 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6337 2948.346864 E 2951.320900 3.000000 0.105808 3 120 0.000000 0.105808 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5605 1128.699724 E 1130.733412 3.000000 59.322321 20 120 0.000000 59.322321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5674 1837.950616 E 1840.941193 3.000000 34.976674 14 120 0.000000 34.976674 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5676 1842.845926 E 1842.887818 3.000000 39.859633 14 120 0.000000 39.859633 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5645 1691.475316 E 1694.467524 3.000000 28.433086 12 120 0.000000 28.433086 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5646 1692.040496 E 1695.034677 3.000000 28.990755 9 120 0.000000 28.990755 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5639 1491.853459 E 1492.774908 3.000000 56.154692 21 120 0.000000 56.154692 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5706 1914.066082 E 1916.114488 3.000000 31.948839 9 120 0.000000 31.948839 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5708 1917.130715 E 1920.121651 3.000000 35.002311 12 120 0.000000 35.002311 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5575 3213.270766 E 3216.169396 3.000000 3248.776681 1769 120 0.000000 3248.776681 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5626 1181.663383 E 1181.681283 3.000000 50.832084 14 120 0.000000 50.832084 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5655 1726.481090 E 1729.473436 3.000000 36.998391 11 120 0.000000 36.998391 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5717 1958.888518 E 1961.882843 3.000000 34.652408 11 120 0.000000 34.652408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6347 2960.545968 E 2963.333661 3.000000 9.357649 17 120 0.000000 9.357649 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5724 1963.859694 E 1966.846384 3.000000 63.747694 20 120 0.000000 63.747694 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6359 111.477320 E 114.300776 3.000000 6.070420 13 120 0.000000 6.070420 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n Spool-nm-dispatc 6927 77.829754 E 80.799100 3.000000 5.459637 9 120 0.000000 5.459637 0.000000 0.000000 0 0 /system.slice/NetworkManager-dispatcher.service\\n S python3 7046 4725.996727 E 4726.142976 3.000000 110.893879 6 120 0.000000 110.893879 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 6962 136.020760 E 138.985200 3.000000 3.905181 14 120 0.000000 3.905181 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n>R python3 7188 4887.526742 E 4887.527058 3.000000 25.029813 1 120 0.000000 25.029813 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#1, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 141698\\n .nr_uninterruptible : 56\\n .next_balance : 4295.164624\\n .curr->pid : 0\\n .clock : 497505.244171\\n .clock_task : 497505.244171\\n .avg_idle : 898297\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[1]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3482.113510\\n .avg_vruntime : 3482.113510\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497501.954091\\n .se->vruntime : 73209.832335\\n .se->sum_exec_runtime : 4021.057351\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 496.408136\\n .avg_vruntime : 496.408136\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497212.409610\\n .se->vruntime : 73207.127153\\n .se->sum_exec_runtime : 505.830008\\n .se->load.weight : 14007\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 374.710195\\n .avg_vruntime : 374.710195\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497321.474948\\n .se->vruntime : 73209.487953\\n .se->sum_exec_runtime : 391.834756\\n .se->load.weight : 308404\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/cups-browsed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 31.811502\\n .avg_vruntime : 31.811502\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.106963\\n .se->vruntime : 73198.434830\\n .se->sum_exec_runtime : 33.910145\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69.824440\\n .avg_vruntime : 69.824440\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.240745\\n .se->vruntime : 73198.478085\\n .se->sum_exec_runtime : 71.116579\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/systemd-logind.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 262.513913\\n .avg_vruntime : 262.513913\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.395730\\n .se->vruntime : 73209.729098\\n .se->sum_exec_runtime : 263.707935\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 73209.832335\\n .avg_vruntime : 73209.832335\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497501.954091\\n .se->vruntime : 112136.319166\\n .se->sum_exec_runtime : 21728.515485\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5282.286791\\n .avg_vruntime : 5282.286791\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 619\\n .runnable_avg : 310\\n .util_avg : 310\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 619\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.462327\\n .se->vruntime : 13388.194488\\n .se->sum_exec_runtime : 5288.749187\\n .se->load.weight : 243313\\n .se->avg.load_avg : 143\\n .se->avg.util_avg : 310\\n .se->avg.runnable_avg : 310\\n\\ncfs_rq[1]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13388.194488\\n .avg_vruntime : 13388.194488\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 143\\n .runnable_avg : 310\\n .util_avg : 310\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 143\\n .tg_load_avg : 724\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.462327\\n .se->vruntime : 26456.800369\\n .se->sum_exec_runtime : 5525.721169\\n .se->load.weight : 221688\\n .se->avg.load_avg : 130\\n .se->avg.util_avg : 310\\n .se->avg.runnable_avg : 310\\n\\ncfs_rq[1]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 26456.800369\\n .avg_vruntime : 26456.800369\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 130\\n .runnable_avg : 310\\n .util_avg : 310\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 130\\n .tg_load_avg : 918\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.462327\\n .se->vruntime : 112136.177651\\n .se->sum_exec_runtime : 10847.739991\\n .se->load.weight : 158386\\n .se->avg.load_avg : 93\\n .se->avg.util_avg : 310\\n .se->avg.runnable_avg : 310\\n\\ncfs_rq[1]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 112136.323599\\n .avg_vruntime : 112136.323599\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 93\\n .runnable_avg : 311\\n .util_avg : 311\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[1]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[1]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n I rcu_preempt 17 112136.323599 E 112139.319166 3.000000 555.354396 15819 120 0.000000 555.354396 0.000000 0.000000 0 0 /\\n S cpuhp/1 21 7932.094818 E 7935.015583 3.000000 0.356355 26 120 0.000000 0.356355 0.000000 0.000000 0 0 /\\n S idle_inject/1 22 -1.046696 E 0.298424 0.750000 0.006020 3 49 0.000000 0.006020 0.000000 0.000000 0 0 /\\n S migration/1 23 0.056269 E 0.693236 0.750000 170.276741 176 0 0.000000 170.276741 0.000000 0.000000 0 0 /\\n S ksoftirqd/1 24 112136.203612 E 112139.192249 3.000000 28.623848 699 120 0.000000 28.623848 0.000000 0.000000 0 0 /\\n I kworker/1:0H 26 21.947051 E 21.981566 3.000000 0.017963 4 100 0.000000 0.017963 0.000000 0.000000 0 0 /\\n Ikworker/R-write 70 -1.034874 E -1.000265 3.000000 0.000849 2 100 0.000000 0.000849 0.000000 0.000000 0 0 /\\n S ksmd 72 -1.034874 E 8.135275 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/9-acpi 79 0.888458 E 2.110113 3.000000 28.241209 93 49 0.000000 28.241209 0.000000 0.000000 0 0 /\\n I kworker/1:1 89 110520.559885 E 110523.496783 3.000000 52.629865 1086 120 0.000000 52.629865 0.000000 0.000000 0 0 /\\n I kworker/1:1H 185 110813.650322 E 110813.684796 3.000000 5.308662 426 100 0.000000 5.308662 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 221 392.789305 E 392.823904 3.000000 0.005027 2 100 0.000000 0.005027 0.000000 0.000000 0 0 /\\n Sjbd2/nvme0n1p5- 264 110813.670283 E 110816.650322 3.000000 82.660068 1482 120 0.000000 82.660068 0.000000 0.000000 0 0 /\\n I kworker/u16:7 450 110228.547058 E 110231.504609 3.000000 185.340990 3240 120 0.000000 185.340990 0.000000 0.000000 0 0 /\\n I kworker/u16:9 452 112134.569693 E 112137.362435 3.000000 215.067204 2839 120 0.000000 215.067204 0.000000 0.000000 0 0 /\\n Ikworker/R-crypt 531 2507.555715 E 2507.590316 3.000000 0.005940 2 100 0.000000 0.005940 0.000000 0.000000 0 0 /\\n Sirq/194-iwlwifi 536 3740.895044 E 3743.891071 3.000000 4.620247 25 49 0.000000 4.620247 0.000000 0.000000 0 0 /\\n I kworker/u17:3 785 111839.603576 E 111839.637946 3.000000 304.470349 7074 100 0.000000 304.470349 0.000000 0.000000 0 0 /\\n S gmain 910 0.472046 E 3.459363 3.000000 0.047699 2 120 0.000000 0.047699 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S polkitd 812 69.824440 E 72.781269 3.000000 678.489840 1237 120 0.000000 678.489840 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S gmain 923 3.433860 E 6.421449 3.000000 0.067212 2 120 0.000000 0.067212 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S gdbus 924 7.269924 E 9.126327 3.000000 20.415944 94 120 0.000000 20.415944 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 2924 248.955894 E 251.818007 3.000000 91.527058 125 120 0.000000 91.527058 0.000000 0.000000 0 0 /system.slice/snapd.service\\n Sswitcheroo-cont 836 7.518062 E 10.434047 3.000000 44.143872 152 120 0.000000 44.143872 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 855 678.794948 E 681.780048 3.000000 2.778419 30 120 0.000000 2.778419 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 856 2.227776 E 5.225721 3.000000 94.523149 368 120 0.000000 94.523149 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S systemd-logind 842 262.513913 E 265.426403 3.000000 1428.755370 5668 120 0.000000 1428.755370 0.000000 0.000000 0 0 /system.slice/systemd-logind.service\\n I kworker/1:3 971 99567.576275 E 99568.532374 3.000000 89.510496 905 120 0.000000 89.510496 0.000000 0.000000 0 0 /\\n S ModemManager 1073 5.563007 E 8.197024 3.000000 77.347997 382 120 0.000000 77.347997 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S pool-spawner 1106 14.206991 E 17.144135 3.000000 0.125154 3 120 0.000000 0.125154 0.000000 0.000000 0 0 /system.slice/upower.service\\n S gmain 1107 14.144135 E 17.122581 3.000000 0.021554 1 120 0.000000 0.021554 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1118 0.488564 E 2.489338 3.000000 0.204262 22 120 0.000000 0.204262 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S cupsd 1439 4.468166 E 6.566988 3.000000 22.666250 96 120 0.000000 22.666250 0.000000 0.000000 0 0 /system.slice/cups.service\\n S containerd 1458 332.847699 E 335.052522 3.000000 181.796101 4487 120 0.000000 181.796101 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1473 374.367368 E 377.361959 3.000000 129.047272 4222 120 0.000000 129.047272 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdm3 1469 28.866371 E 31.777617 3.000000 29.629979 80 120 0.000000 29.629979 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S systemd 1499 204.416541 E 206.236596 3.000000 1486.265198 649 120 0.000000 1486.265198 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pipewire 1512 16.254098 E 16.510392 3.000000 32.093335 224 109 0.000000 32.093335 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1527 11.267137 E 14.210616 3.000000 0.188517 6 120 0.000000 0.188517 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1541 11.066776 E 14.063472 3.000000 0.112549 13 79 0.000000 0.112549 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1551 11.210616 E 14.180555 3.000000 0.056827 2 120 0.000000 0.056827 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1553 14.775624 E 17.722860 3.000000 0.661282 10 120 0.000000 0.661282 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1526 0.567104 E 2.363017 3.000000 0.680927 15 120 0.000000 0.680927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgnome-session-b 1546 4026.427161 E 4028.816499 3.000000 72.220451 386 120 0.000000 72.220451 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1555 11.411258 E 14.381068 3.000000 0.030190 1 120 0.000000 0.030190 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1559 11.464077 E 14.455527 3.000000 0.052819 2 120 0.000000 0.052819 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1601 4276.728703 E 4277.548241 3.000000 682.557345 2167 120 0.000000 682.557345 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1602 241.182424 E 244.164119 3.000000 1.813576 72 120 0.000000 1.813576 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S KMS thread 1618 4040.643096 E 4043.470042 3.000000 312.191032 825 79 0.000000 312.191032 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-s:disk$0 3004 8.656514 E 213.116341 3.000000 0.090177 1 139 0.000000 0.090177 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3014 167.316606 E 170.276345 3.000000 71.365629 133 120 0.000000 71.365629 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S cups-browsed 1656 31.811502 E 34.715810 3.000000 188.075025 825 120 0.000000 188.075025 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1670 304.900140 E 305.802357 3.000000 107.084760 2032 120 0.000000 107.084760 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1672 144.769731 E 147.755909 3.000000 0.723957 32 120 0.000000 0.723957 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2526 305.308381 E 307.900140 3.000000 3.053644 65 120 0.000000 3.053644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2527 290.625017 E 293.618099 3.000000 99.602375 2905 120 0.000000 99.602375 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2422 374.710195 E 377.705692 3.000000 30.216123 124 120 0.000000 30.216123 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2814 0.304479 E 2.637087 3.000000 0.714735 5 120 0.000000 0.714735 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3024 60.304780 E 63.271147 3.000000 0.033633 1 120 0.000000 0.033633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:gdrv0 3269 566.947492 E 569.942158 3.000000 0.048510 3 120 0.000000 0.048510 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3038 563.666293 E 566.641667 3.000000 4.306399 54 120 0.000000 4.306399 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3081 645.782212 E 648.340009 3.000000 0.896962 8 120 0.000000 0.896962 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3085 646.371136 E 648.782212 3.000000 1.123443 8 120 0.000000 1.123443 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-wacom 3091 644.537177 E 647.284944 3.000000 366.045403 439 120 0.000000 366.045403 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3118 160.094256 E 163.069340 3.000000 0.024916 1 120 0.000000 0.024916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-color 3095 4231.675018 E 4233.740565 3.000000 130.213067 58 120 0.000000 130.213067 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-keyboard 3100 648.247208 E 651.166836 3.000000 121.441087 43 120 0.000000 121.441087 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3123 160.645856 E 163.586872 3.000000 0.058984 1 120 0.000000 0.058984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-smartcard 3119 563.386800 E 566.368384 3.000000 7.380501 47 120 0.000000 7.380501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3141 163.322124 E 166.295023 3.000000 0.027101 1 120 0.000000 0.027101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3152 563.387981 E 566.317884 3.000000 5.186420 57 120 0.000000 5.186420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-datetime 3129 563.405186 E 566.383009 3.000000 11.094354 49 120 0.000000 11.094354 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3201 553.536426 E 556.465699 3.000000 0.162455 3 120 0.000000 0.162455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3219 184.113084 E 187.101602 3.000000 0.087152 2 120 0.000000 0.087152 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3292 378.083610 E 380.401752 3.000000 0.681858 1 120 0.000000 0.681858 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3342 4042.206196 E 4044.992366 3.000000 1.492101 12 120 0.000000 1.492101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3345 634.080030 E 637.037078 3.000000 79.580450 171 120 0.000000 79.580450 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-:disk$0 3376 606.974571 E 811.460271 3.000000 0.041875 2 139 0.000000 0.041875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x:gdrv0 3383 611.246200 E 614.198837 3.000000 0.047363 1 120 0.000000 0.047363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3382 611.727160 E 614.717547 3.000000 0.569298 17 120 0.000000 0.569298 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S sshd 3437 7.898835 E 10.142566 3.000000 77.928271 33 120 0.000000 77.928271 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S pipewire-pulse 3475 5.257457 E 8.249472 3.000000 16.156993 25 120 0.000000 16.156993 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/1:0 5020 112134.369935 E 112137.362435 3.000000 22.196989 343 120 0.000000 22.196989 0.000000 0.000000 0 0 /\\n S docker 5111 76.881186 E 79.675463 3.000000 2.727325 5 120 0.000000 2.727325 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5211 495.628660 E 498.604235 3.000000 1.688882 57 120 0.000000 1.688882 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6176 351.781271 E 354.774407 3.000000 1.835287 16 120 0.000000 1.835287 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5395 483.830087 E 486.827818 3.000000 2.995671 127 120 0.000000 2.995671 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5427 352.663385 E 355.341777 3.000000 3.272944 43 120 0.000000 3.272944 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5528 290.121910 E 293.092020 3.000000 0.588842 12 120 0.000000 0.588842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5600 849.366916 E 852.353840 3.000000 39.919317 22 120 0.000000 39.919317 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5665 1661.043325 E 1661.083812 3.000000 55.912313 17 120 0.000000 55.912313 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5616 882.220441 E 885.175429 3.000000 29.865267 12 120 0.000000 29.865267 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5618 881.421942 E 884.354331 3.000000 29.053625 11 120 0.000000 29.053625 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5687 1785.074279 E 1788.064636 3.000000 41.826708 13 120 0.000000 41.826708 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5573 3482.010273 E 3484.935192 3.000000 3418.014504 1552 120 0.000000 3418.014504 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5697 1797.414029 E 1798.448640 3.000000 30.959422 9 120 0.000000 30.959422 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5700 1798.495212 E 1801.486113 3.000000 32.018896 11 120 0.000000 32.018896 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5574 3482.113510 E 3485.010273 3.000000 3258.199905 2042 120 0.000000 3258.199905 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5633 1752.220599 E 1755.211488 3.000000 57.584088 17 120 0.000000 57.584088 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6334 3165.588717 E 3168.411649 3.000000 10.885334 28 120 0.000000 10.885334 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5715 1835.502622 E 1838.493962 3.000000 42.959724 13 120 0.000000 42.959724 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5620 102.625658 E 105.242092 3.000000 0.383566 1 120 0.000000 0.383566 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/1:2 5968 99564.615043 E 99567.596256 3.000000 2.063702 7 120 0.000000 2.063702 0.000000 0.000000 0 0 /\\n I kworker/1:4 5969 99564.670410 E 99567.651157 3.000000 1.351890 24 120 0.000000 1.351890 0.000000 0.000000 0 0 /\\n I kworker/1:5 5970 99564.679214 E 99567.667609 3.000000 1.049866 11 120 0.000000 1.049866 0.000000 0.000000 0 0 /\\n I kworker/1:6 5971 99556.785859 E 99559.784868 3.000000 0.049506 2 120 0.000000 0.049506 0.000000 0.000000 0 0 /\\n S postgres 6343 191.721640 E 194.273749 3.000000 14.562361 11 120 0.000000 14.562361 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6360 192.003609 E 194.721640 3.000000 4.910316 11 120 0.000000 4.910316 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6958 5124.159081 E 5127.148837 3.000000 0.080839 3 120 0.000000 0.080839 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 6961 5124.148837 E 5127.140799 3.000000 0.104426 5 120 0.000000 0.104426 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 7045 5248.571145 E 5250.742544 3.000000 110.637307 10 120 0.000000 110.637307 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 7187 5282.286791 E 5285.254677 3.000000 0.311821 2 120 0.000000 0.311821 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#2, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 172010\\n .nr_uninterruptible : -227\\n .next_balance : 4295.164620\\n .curr->pid : 0\\n .clock : 497502.006475\\n .clock_task : 497502.006475\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[2]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2359.028521\\n .avg_vruntime : 2359.028521\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 660\\n .runnable_avg : 280\\n .util_avg : 280\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 660\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.110788\\n .se->vruntime : 9700.865330\\n .se->sum_exec_runtime : 2369.446459\\n .se->load.weight : 242582\\n .se->avg.load_avg : 152\\n .se->avg.util_avg : 280\\n .se->avg.runnable_avg : 280\\n\\ncfs_rq[2]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9700.865330\\n .avg_vruntime : 9700.865330\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 152\\n .runnable_avg : 280\\n .util_avg : 280\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 152\\n .tg_load_avg : 724\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.110788\\n .se->vruntime : 15794.893436\\n .se->sum_exec_runtime : 2641.920554\\n .se->load.weight : 331721\\n .se->avg.load_avg : 208\\n .se->avg.util_avg : 280\\n .se->avg.runnable_avg : 280\\n\\ncfs_rq[2]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 584.930034\\n .avg_vruntime : 584.930034\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497495.964649\\n .se->vruntime : 77370.917005\\n .se->sum_exec_runtime : 587.517067\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 491.623970\\n .avg_vruntime : 491.623970\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497453.176759\\n .se->vruntime : 77370.746453\\n .se->sum_exec_runtime : 492.924100\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3807.017509\\n .avg_vruntime : 3807.017509\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497502.006475\\n .se->vruntime : 77370.992460\\n .se->sum_exec_runtime : 4289.472037\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 581.134705\\n .avg_vruntime : 581.134705\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497420.462807\\n .se->vruntime : 77370.665318\\n .se->sum_exec_runtime : 595.768286\\n .se->load.weight : 149796\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 352.363352\\n .avg_vruntime : 352.363352\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497217.468221\\n .se->vruntime : 77369.754425\\n .se->sum_exec_runtime : 367.735247\\n .se->load.weight : 218231\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12.013346\\n .avg_vruntime : 12.013346\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.222133\\n .se->vruntime : 77357.566862\\n .se->sum_exec_runtime : 13.774267\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 77370.992460\\n .avg_vruntime : 77370.992460\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497502.006475\\n .se->vruntime : 111879.234462\\n .se->sum_exec_runtime : 21144.600992\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[2]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15794.893436\\n .avg_vruntime : 15794.893436\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 208\\n .runnable_avg : 280\\n .util_avg : 280\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 208\\n .tg_load_avg : 918\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497480.110788\\n .se->vruntime : 111879.089108\\n .se->sum_exec_runtime : 4413.396552\\n .se->load.weight : 406022\\n .se->avg.load_avg : 255\\n .se->avg.util_avg : 280\\n .se->avg.runnable_avg : 280\\n\\ncfs_rq[2]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 111879.234462\\n .avg_vruntime : 111879.234462\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 256\\n .runnable_avg : 283\\n .util_avg : 283\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[2]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[2]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/2 27 10232.512266 E 10235.476962 3.000000 0.310145 26 120 0.000000 0.310145 0.000000 0.000000 0 0 /\\n S idle_inject/2 28 -1.048574 E 0.451426 1.500000 0.000962 3 49 0.000000 0.000962 0.000000 0.000000 0 0 /\\n S migration/2 29 0.100700 E 0.850203 0.750000 170.525144 193 0 0.000000 170.525144 0.000000 0.000000 0 0 /\\n S ksoftirqd/2 30 111876.363419 E 111879.250608 3.000000 25.592931 1028 120 0.000000 25.592931 0.000000 0.000000 0 0 /\\n I kworker/2:0 31 62457.803260 E 62460.735327 3.000000 8.218140 34 120 0.000000 8.218140 0.000000 0.000000 0 0 /\\n I kworker/2:0H 32 103.304456 E 103.338997 3.000000 0.014834 5 100 0.000000 0.014834 0.000000 0.000000 0 0 /\\n S oom_reaper 69 -1.013776 E 1.986224 3.000000 0.000042 2 120 0.000000 0.000042 0.000000 0.000000 0 0 /\\n I kworker/2:1 80 111879.098389 E 111882.089108 3.000000 322.969787 4820 120 0.000000 322.969787 0.000000 0.000000 0 0 /\\n I kworker/2:1H 195 111574.113875 E 111574.147027 3.000000 5.101369 323 100 0.000000 5.101369 0.000000 0.000000 0 0 /\\n I kworker/2:2 217 109122.668372 E 109125.655350 3.000000 119.024839 1710 120 0.000000 119.024839 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 218 470.398502 E 470.433104 3.000000 0.005099 2 100 0.000000 0.005099 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 219 470.401038 E 470.435644 3.000000 0.002850 2 100 0.000000 0.002850 0.000000 0.000000 0 0 /\\n I kworker/2:3 223 109854.351465 E 109857.342116 3.000000 156.728798 1900 120 0.000000 156.728798 0.000000 0.000000 0 0 /\\n I kworker/2:4 349 62418.902108 E 62421.893366 3.000000 2.337037 7 120 0.000000 2.337037 0.000000 0.000000 0 0 /\\n S irq/191-mei_me 520 2425.538335 E 2428.535129 3.000000 1.457719 39 49 0.000000 1.457719 0.000000 0.000000 0 0 /\\n Sirq/195-iwlwifi 538 3925.397830 E 3928.395543 3.000000 3187.591130 16177 49 0.000000 3187.591130 0.000000 0.000000 0 0 /\\n S systemd-oomd 660 38.424962 E 41.386089 3.000000 625.763835 663 120 0.000000 625.763835 0.000000 0.000000 0 0 /system.slice/systemd-oomd.service\\n S snapd 854 181.532524 E 181.847161 3.000000 74.669991 322 120 0.000000 74.669991 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 838 584.930034 E 587.917657 3.000000 441.306675 5913 120 0.000000 441.306675 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n R sysbox-mgr 851 584.917657 E 587.894281 3.000000 1451.198506 19925 120 0.000000 1451.198506 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 844 12.013346 E 14.969853 3.000000 37.062496 413 120 0.000000 37.062496 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S pool-spawner 876 1.965147 E 4.922053 3.000000 0.074621 2 120 0.000000 0.074621 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gdbus 939 134.760380 E 137.649676 3.000000 423.490843 3105 120 0.000000 423.490843 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n Ikworker/R-ipmi- 913 6961.772658 E 6961.807253 3.000000 0.015936 2 100 0.000000 0.015936 0.000000 0.000000 0 0 /\\n S rsyslogd 919 33.759388 E 36.497758 3.000000 30.430189 90 120 0.000000 30.430189 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S pool-spawner 1100 6.890317 E 9.858408 3.000000 0.106301 5 120 0.000000 0.106301 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1116 2.347087 E 5.294553 3.000000 0.174658 34 120 0.000000 0.174658 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sh 1121 12.505172 E 15.381318 3.000000 5.274342 15 120 0.000000 5.274342 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1459 348.978428 E 351.210860 3.000000 132.622842 5139 120 0.000000 132.622842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1460 345.354639 E 346.777298 3.000000 226.427537 5508 120 0.000000 226.427537 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1461 0.881565 E 2.097726 3.000000 0.020709 1 120 0.000000 0.020709 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1490 352.363352 E 355.355256 3.000000 165.017494 3612 120 0.000000 165.017494 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sgdm-session-wor 1492 0.021664 E 2.378098 3.000000 7.685172 93 120 0.000000 7.685172 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 1500 0.906613 E 1.951424 3.000000 0.141963 1 120 0.000000 0.141963 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pw-data-loop 1536 3.469723 E 6.464575 3.000000 0.024781 3 79 0.000000 0.024781 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sgdm-wayland-ses 1517 0.890985 E 3.860521 3.000000 4.316422 18 120 0.000000 4.316422 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1565 410.548304 E 413.512933 3.000000 0.246882 6 120 0.000000 0.246882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1603 1004.645404 E 1007.549856 3.000000 8.913530 96 120 0.000000 8.913530 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1608 1004.652516 E 1007.645404 3.000000 10.006127 117 120 0.000000 10.006127 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shel:sh0 3005 31.707816 E 34.581346 3.000000 0.126470 1 120 0.000000 0.126470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3012 33.382173 E 238.030347 3.000000 0.007470 1 139 0.000000 0.007470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3013 33.387365 E 36.382173 3.000000 0.005192 1 120 0.000000 0.005192 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3276 121.709419 E 124.678683 3.000000 0.030736 1 120 0.000000 0.030736 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Spool-gnome-shel 6918 1035.078658 E 1038.065537 3.000000 0.440852 3 120 0.000000 0.440852 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1666 392.441719 E 395.424069 3.000000 85.574576 1861 120 0.000000 85.574576 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1699 581.134705 E 584.127817 3.000000 183.081203 5220 120 0.000000 183.081203 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2722 1.991100 E 4.985710 3.000000 0.640714 24 120 0.000000 0.640714 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Ikworker/R-tls-s 2863 22769.817423 E 22769.852008 3.000000 0.015449 2 100 0.000000 0.015449 0.000000 0.000000 0 0 /\\n S dconf worker 3025 46.149564 E 49.142692 3.000000 0.447278 11 120 0.000000 0.447278 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S colord 3035 21.580781 E 24.092855 3.000000 92.765102 187 120 0.000000 92.765102 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gmain 3041 0.737224 E 2.242460 3.000000 0.155686 2 120 0.000000 0.155686 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gjs 3078 487.170160 E 488.823207 3.000000 59.101805 83 120 0.000000 59.101805 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3130 407.533407 E 410.525336 3.000000 0.766318 14 120 0.000000 0.766318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3187 98.848084 E 101.823175 3.000000 0.095370 2 120 0.000000 0.095370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-media-keys 3146 953.008761 E 955.920109 3.000000 135.098877 137 120 0.000000 135.098877 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3202 99.517382 E 102.480455 3.000000 0.036927 1 120 0.000000 0.036927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3344 968.712808 E 971.613739 3.000000 1.076193 11 120 0.000000 1.076193 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3354 424.550236 E 427.529183 3.000000 0.083867 3 120 0.000000 0.083867 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3369 435.646524 E 438.628102 3.000000 0.253340 7 120 0.000000 0.253340 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3372 999.168925 E 1002.117870 3.000000 1.312504 18 120 0.000000 1.312504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3379 436.877871 E 439.851438 3.000000 0.116796 2 120 0.000000 0.116796 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Ssnapd-desktop-i 3468 39.501067 E 42.224366 3.000000 18.969394 43 120 0.000000 18.969394 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/2:5 4401 62457.735327 E 62460.617124 3.000000 6.696486 19 120 0.000000 6.696486 0.000000 0.000000 0 0 /\\n I kworker/2:6 4402 62417.302767 E 62420.302240 3.000000 0.074093 2 120 0.000000 0.074093 0.000000 0.000000 0 0 /\\n Sgnome-keyring-d 4742 2.112296 E 4.991437 3.000000 7.218223 25 120 0.000000 7.218223 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5101 203.349617 E 206.337477 3.000000 5.861286 130 120 0.000000 5.861286 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5107 171.690383 E 174.331107 3.000000 0.500947 6 120 0.000000 0.500947 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5124 193.061150 E 195.671496 3.000000 8.594148 49 120 0.000000 8.594148 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5126 193.996527 E 196.991799 3.000000 3.299204 35 120 0.000000 3.299204 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5139 203.799310 E 206.773495 3.000000 12.319108 260 120 0.000000 12.319108 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5244 328.901508 E 331.699763 3.000000 4.417929 36 120 0.000000 4.417929 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5269 329.621690 E 332.601100 3.000000 4.023516 36 120 0.000000 4.023516 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6331 563.327535 E 566.288551 3.000000 1.399849 10 120 0.000000 1.399849 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5408 390.450618 E 393.442277 3.000000 0.052751 3 120 0.000000 0.052751 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5420 342.780894 E 345.777466 3.000000 3.349551 390 120 0.000000 3.349551 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5422 342.777466 E 345.758551 3.000000 2.523078 30 120 0.000000 2.523078 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5458 342.819120 E 345.806210 3.000000 3.188163 34 120 0.000000 3.188163 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5561 27.019019 E 29.648923 3.000000 8.102906 13 120 0.000000 8.102906 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5565 27.505903 E 30.461672 3.000000 0.909916 7 120 0.000000 0.909916 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5570 3807.017509 E 3809.942054 3.000000 3646.740499 2482 120 0.000000 3646.740499 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5599 1243.917125 E 1246.899112 3.000000 28.626410 23 120 0.000000 28.626410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5602 1243.759704 E 1246.752160 3.000000 26.340665 20 120 0.000000 26.340665 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5603 1244.273695 E 1246.859634 3.000000 28.925019 24 120 0.000000 28.925019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5667 2030.812810 E 2033.802093 3.000000 56.273299 24 120 0.000000 56.273299 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5615 1308.530001 E 1309.304684 3.000000 24.830628 15 120 0.000000 24.830628 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5572 3806.942054 E 3809.851850 3.000000 3440.959410 1432 120 0.000000 3440.959410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5643 1834.821469 E 1835.836851 3.000000 61.193099 20 120 0.000000 61.193099 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6952 3784.360937 E 3787.346589 3.000000 0.047881 3 120 0.000000 0.047881 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5634 1604.905533 E 1607.825141 3.000000 53.244457 20 120 0.000000 53.244457 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5704 2161.079209 E 2164.073284 3.000000 28.505268 11 120 0.000000 28.505268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5705 2161.257548 E 2162.782519 3.000000 28.668075 12 120 0.000000 28.668075 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5710 2162.173294 E 2164.602104 3.000000 29.547294 16 120 0.000000 29.547294 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6333 3512.110147 E 3514.864100 3.000000 10.868019 29 120 0.000000 10.868019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5630 1334.192609 E 1335.792534 3.000000 36.310197 11 120 0.000000 36.310197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5680 2127.508196 E 2130.499659 3.000000 35.630276 19 120 0.000000 35.630276 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5685 2131.985144 E 2134.985144 3.000000 40.053783 21 120 0.000000 40.053783 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5656 1932.156392 E 1935.156392 3.000000 101.676739 50 120 0.000000 101.676739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5623 491.623970 E 494.607886 3.000000 44.595881 486 120 0.000000 44.595881 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6355 489.285025 E 492.062048 3.000000 5.973594 11 120 0.000000 5.973594 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6960 2182.365284 E 2185.337009 3.000000 7.977046 251 120 0.000000 7.977046 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 7043 2309.270120 E 2312.270120 3.000000 110.548756 24 120 0.000000 110.548756 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 7186 2359.028521 E 2362.021867 3.000000 3.910798 2 120 0.000000 3.910798 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#3, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 156862\\n .nr_uninterruptible : 10\\n .next_balance : 4295.164620\\n .curr->pid : 0\\n .clock : 497501.172251\\n .clock_task : 497501.172251\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[3]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 780.685551\\n .avg_vruntime : 780.685551\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497491.044441\\n .se->vruntime : 2517.569379\\n .se->sum_exec_runtime : 795.542392\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2928.835287\\n .avg_vruntime : 2928.835287\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497219.096831\\n .se->vruntime : 10974.540017\\n .se->sum_exec_runtime : 2934.518955\\n .se->load.weight : 87894\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10974.540017\\n .avg_vruntime : 10974.540017\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 734\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497219.096831\\n .se->vruntime : 17090.730978\\n .se->sum_exec_runtime : 3528.683275\\n .se->load.weight : 96823\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2973.043075\\n .avg_vruntime : 2973.043075\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497459.771282\\n .se->vruntime : 74741.328385\\n .se->sum_exec_runtime : 3338.234357\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 442.534419\\n .avg_vruntime : 442.534419\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497340.167581\\n .se->vruntime : 74741.165953\\n .se->sum_exec_runtime : 466.992933\\n .se->load.weight : 128397\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 628.914695\\n .avg_vruntime : 628.914695\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497218.164834\\n .se->vruntime : 74740.665510\\n .se->sum_exec_runtime : 647.244169\\n .se->load.weight : 144773\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/accounts-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 11.299244\\n .avg_vruntime : 11.299244\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.817352\\n .se->vruntime : 74741.359559\\n .se->sum_exec_runtime : 12.100758\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/systemd-hostnamed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5.616092\\n .avg_vruntime : 5.616092\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497127.355858\\n .se->vruntime : 74731.680744\\n .se->sum_exec_runtime : 6.664668\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/NetworkManager.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 155.659088\\n .avg_vruntime : 155.659088\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497021.663963\\n .se->vruntime : 74727.359834\\n .se->sum_exec_runtime : 157.200260\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 74741.359559\\n .avg_vruntime : 74741.359559\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.817352\\n .se->vruntime : 99476.065659\\n .se->sum_exec_runtime : 18295.568560\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[3]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2517.569379\\n .avg_vruntime : 2517.569379\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497491.044441\\n .se->vruntime : 17090.957086\\n .se->sum_exec_runtime : 882.586804\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[3]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 17090.957086\\n .avg_vruntime : 17090.957086\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 932\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497491.044441\\n .se->vruntime : 99476.192665\\n .se->sum_exec_runtime : 5090.509018\\n .se->load.weight : 1134\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[3]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 99476.192665\\n .avg_vruntime : 99476.192665\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[3]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.037684\\n .rt_runtime : 950.000000\\n\\ndl_rq[3]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/3 33 7886.138537 E 7889.102720 3.000000 0.348500 26 120 0.000000 0.348500 0.000000 0.000000 0 0 /\\n S idle_inject/3 34 -1.048518 E 0.451482 1.500000 0.001036 3 49 0.000000 0.001036 0.000000 0.000000 0 0 /\\n S migration/3 35 0.198781 E 0.948241 0.750000 170.787270 193 0 0.000000 170.787270 0.000000 0.000000 0 0 /\\n S ksoftirqd/3 36 99427.640776 E 99430.636871 3.000000 25.627736 1008 120 0.000000 25.627736 0.000000 0.000000 0 0 /\\n I kworker/3:0 37 97184.338678 E 97187.338678 3.000000 99.189840 924 120 0.000000 99.189840 0.000000 0.000000 0 0 /\\n I kworker/3:0H 38 6.472894 E 6.507461 3.000000 0.011946 4 100 0.000000 0.011946 0.000000 0.000000 0 0 /\\n Ikworker/R-inet_ 64 -1.038883 E -1.004274 3.000000 0.009635 2 100 0.000000 0.009635 0.000000 0.000000 0 0 /\\n S kauditd 65 46475.465473 E 46478.440242 3.000000 2.812791 141 120 0.000000 2.812791 0.000000 0.000000 0 0 /\\n I kworker/u16:2 68 92943.982882 E 92946.978221 3.000000 96.575686 3120 120 0.000000 96.575686 0.000000 0.000000 0 0 /\\n S kcompactd0 71 99444.817853 E 99447.809899 3.000000 49.519337 988 120 0.000000 49.519337 0.000000 0.000000 0 0 /\\n I kworker/3:1 73 97535.156122 E 97538.144666 3.000000 144.491415 1086 120 0.000000 144.491415 0.000000 0.000000 0 0 /\\n S khugepaged 74 99475.286261 E 99678.862581 3.000000 6.430961 133 139 0.000000 6.430961 0.000000 0.000000 0 0 /\\n Ikworker/R-kinte 75 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-kbloc 76 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-blkcg 77 0.992084 E 0.957475 3.000000 0.000070 2 100 0.000000 0.000070 0.000000 0.000000 0 0 /\\n Ikworker/R-tpm_d 82 0.481367 E 0.446758 3.000000 0.000111 2 100 0.000000 0.000111 0.000000 0.000000 0 0 /\\n I kworker/R-md 84 0.480619 E 0.446010 3.000000 0.000748 2 100 0.000000 0.000748 0.000000 0.000000 0 0 /\\n Ikworker/R-edac- 86 0.479971 E 0.445362 3.000000 0.000648 2 100 0.000000 0.000648 0.000000 0.000000 0 0 /\\n S watchdogd 88 0.469682 E 2.529619 3.000000 0.000699 2 49 0.000000 0.000699 0.000000 0.000000 0 0 /\\n Ikworker/R-kthro 93 0.358457 E 0.323888 3.000000 0.021180 2 100 0.000000 0.021180 0.000000 0.000000 0 0 /\\n S irq/127-pciehp 94 0.342701 E 2.655906 3.000000 0.020513 2 49 0.000000 0.020513 0.000000 0.000000 0 0 /\\n I kworker/u17:0 114 59020.770974 E 59020.805494 3.000000 170.119960 4180 100 0.000000 170.119960 0.000000 0.000000 0 0 /\\n I kworker/3:1H 153 99427.540860 E 99427.575393 3.000000 24.218911 1705 100 0.000000 24.218911 0.000000 0.000000 0 0 /\\n I kworker/3:2 226 98117.683634 E 98120.611629 3.000000 53.517767 565 120 0.000000 53.517767 0.000000 0.000000 0 0 /\\n Sirq/192-iwlwifi 534 4059.665296 E 4062.645526 3.000000 1523.643938 12763 49 0.000000 1523.643938 0.000000 0.000000 0 0 /\\n Sirq/196-iwlwifi 539 3926.018591 E 3929.015940 3.000000 18.982208 103 49 0.000000 18.982208 0.000000 0.000000 0 0 /\\n I kworker/R-ttm 576 4266.892470 E 4266.927070 3.000000 0.005129 2 100 0.000000 0.005129 0.000000 0.000000 0 0 /\\n S gmain 930 11.299244 E 14.296788 3.000000 83.234865 917 120 0.000000 83.234865 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 938 6.914745 E 9.332271 3.000000 25.658172 104 120 0.000000 25.658172 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S cron 795 4.743527 E 7.661846 3.000000 5.867256 17 120 0.000000 5.867256 0.000000 0.000000 0 0 /system.slice/cron.service\\n Sgnome-remote-de 800 6.461804 E 9.080981 3.000000 30.145068 265 120 0.000000 30.145068 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 922 3.894639 E 6.842135 3.000000 0.090432 2 120 0.000000 0.090432 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 831 206.525041 E 209.519124 3.000000 30.118582 233 120 0.000000 30.118582 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 852 310.199492 E 310.516321 3.000000 174.131223 492 120 0.000000 174.131223 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 853 2.078318 E 5.068150 3.000000 0.396308 18 120 0.000000 0.396308 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 859 -1.009569 E 1.951424 3.000000 0.039007 1 120 0.000000 0.039007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 888 16.413333 E 18.362122 3.000000 17.064715 94 120 0.000000 17.064715 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S in:imklog 955 52.986035 E 55.922447 3.000000 12.498230 135 120 0.000000 12.498230 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S sysbox-fs 1117 -1.009201 E 1.951424 3.000000 0.039375 1 120 0.000000 0.039375 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1476 442.134137 E 445.131399 3.000000 133.401239 4803 120 0.000000 133.401239 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1482 0.012894 E 2.894979 3.000000 0.583316 4 120 0.000000 0.583316 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gdbus 1496 0.233532 E 2.720526 3.000000 1.188965 22 120 0.000000 1.188965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S wireplumber 1515 9.144716 E 9.344452 3.000000 112.045348 651 109 0.000000 112.045348 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1528 7.387174 E 10.325290 3.000000 0.194691 7 120 0.000000 0.194691 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1538 7.325290 E 10.316534 3.000000 0.041734 2 120 0.000000 0.041734 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1518 2.669021 E 5.657668 3.000000 0.061989 3 120 0.000000 0.061989 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1568 8.156596 E 11.144147 3.000000 0.100728 3 120 0.000000 0.100728 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1561 8.265857 E 11.247889 3.000000 0.366731 9 120 0.000000 0.366731 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gnome-shell 1590 780.685551 E 783.618823 3.000000 10057.830458 5788 120 0.000000 10057.830458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1599 743.620777 E 746.301887 3.000000 23.237789 145 120 0.000000 23.237789 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1605 739.406875 E 742.385180 3.000000 9.806741 95 120 0.000000 9.806741 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3008 5.879336 E 210.308511 3.000000 0.040484 1 139 0.000000 0.040484 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3009 5.885425 E 8.879336 3.000000 0.006089 1 120 0.000000 0.006089 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1681 0.987359 E 2.007769 3.000000 0.061217 2 120 0.000000 0.061217 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 2442 200.802238 E 203.083797 3.000000 2.686930 84 120 0.000000 2.686930 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2401 442.534419 E 445.515155 3.000000 16.595226 79 120 0.000000 16.595226 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 3726 442.515155 E 445.423905 3.000000 31.114055 63 120 0.000000 31.114055 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2721 0.409380 E 3.265151 3.000000 4.476361 233 120 0.000000 4.476361 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2723 0.432282 E 2.528786 3.000000 3.337825 71 120 0.000000 3.337825 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2727 0.657300 E 2.325290 3.000000 0.078513 3 120 0.000000 0.078513 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/3:3 2728 99473.937450 E 99476.931139 3.000000 49.234446 485 120 0.000000 49.234446 0.000000 0.000000 0 0 /\\n S Xwaylan:disk$0 3264 278.898908 E 483.348085 3.000000 0.083880 3 139 0.000000 0.083880 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sat-spi2-registr 3034 320.892867 E 323.863419 3.000000 9.827853 77 120 0.000000 9.827853 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3084 396.608166 E 398.928697 3.000000 1.378050 9 120 0.000000 1.378050 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3104 50.860674 E 53.826398 3.000000 0.155648 6 120 0.000000 0.155648 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3161 51.477948 E 54.430767 3.000000 0.086363 2 120 0.000000 0.086363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3165 265.319650 E 268.242694 3.000000 4.804589 50 120 0.000000 4.804589 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sound 3155 264.524415 E 267.507911 3.000000 10.096889 65 120 0.000000 10.096889 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3200 264.748433 E 267.666962 3.000000 4.545875 44 120 0.000000 4.545875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3173 52.876485 E 55.844305 3.000000 0.094693 4 120 0.000000 0.094693 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3195 53.525055 E 56.511106 3.000000 0.140273 3 120 0.000000 0.140273 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3212 262.457088 E 265.449831 3.000000 0.389984 12 120 0.000000 0.389984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-printer 3290 687.615620 E 690.465261 3.000000 187.874291 30 120 0.000000 187.874291 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3339 700.168791 E 703.029139 3.000000 0.936467 13 120 0.000000 0.936467 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3351 699.316593 E 701.734734 3.000000 3.194350 33 120 0.000000 3.194350 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3355 311.731393 E 314.671777 3.000000 0.146965 3 120 0.000000 0.146965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3356 408.298560 E 411.135610 3.000000 9.785534 67 120 0.000000 9.785534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-dconf 3360 312.231880 E 315.209559 3.000000 3.710779 6 120 0.000000 3.710779 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3365 311.671777 E 314.666437 3.000000 0.056426 2 120 0.000000 0.056426 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3368 312.703029 E 315.657097 3.000000 0.439195 10 120 0.000000 0.439195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3509 -1.026522 E 1.969433 3.000000 0.022054 3 120 0.000000 0.022054 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3511 3.665450 E 6.655609 3.000000 0.052600 3 120 0.000000 0.052600 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3551 9.844973 E 12.792466 3.000000 0.052507 1 120 0.000000 0.052507 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3599 197.020590 E 197.487604 3.000000 67.673866 80 120 0.000000 67.673866 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S sshd 3669 24.119215 E 26.352417 3.000000 60.985253 32 120 0.000000 60.985253 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sshd 3711 2926.023897 E 2928.977717 3.000000 3636.860203 10506 120 0.000000 3636.860203 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n I kworker/3:4 4403 56560.146387 E 56563.133575 3.000000 0.175468 2 120 0.000000 0.175468 0.000000 0.000000 0 0 /\\n S pool-spawner 4748 11.609030 E 14.551046 3.000000 0.057984 1 120 0.000000 0.057984 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5100 224.686053 E 227.677039 3.000000 61.547451 14 120 0.000000 61.547451 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5110 268.721718 E 271.652332 3.000000 1.698855 16 120 0.000000 1.698855 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5127 268.080230 E 270.854937 3.000000 0.225293 1 120 0.000000 0.225293 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5262 307.365255 E 310.358223 3.000000 2.509248 7 120 0.000000 2.509248 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5263 424.777743 E 427.733472 3.000000 2.795014 451 120 0.000000 2.795014 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5270 424.733472 E 427.726428 3.000000 1.497961 26 120 0.000000 1.497961 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5393 441.075088 E 444.057442 3.000000 1.906891 4 120 0.000000 1.906891 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5397 441.007142 E 443.951633 3.000000 0.134457 6 120 0.000000 0.134457 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5403 609.845983 E 612.799808 3.000000 2.957254 10 120 0.000000 2.957254 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5455 329.155687 E 332.140177 3.000000 0.106899 6 120 0.000000 0.106899 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5539 425.926857 E 428.852694 3.000000 3.386327 29 120 0.000000 3.386327 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5666 1455.901773 E 1455.931322 3.000000 52.537643 16 120 0.000000 52.537643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5571 2973.043075 E 2975.959313 3.000000 3578.365971 2069 120 0.000000 3578.365971 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5692 1542.872428 E 1545.867503 3.000000 39.486389 14 120 0.000000 39.486389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6339 2749.264215 E 2752.131956 3.000000 10.760643 17 120 0.000000 10.760643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6342 2748.954739 E 2751.740522 3.000000 9.140090 22 120 0.000000 9.140090 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5607 675.005069 E 677.994134 3.000000 108.505409 56 120 0.000000 108.505409 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5675 1497.517568 E 1500.507764 3.000000 53.995739 18 120 0.000000 53.995739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5642 1261.164512 E 1264.157881 3.000000 21.195408 8 120 0.000000 21.195408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5701 1573.282016 E 1576.275123 3.000000 54.439900 15 120 0.000000 54.439900 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6335 2738.808672 E 2741.790683 3.000000 0.042506 3 120 0.000000 0.042506 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5631 796.046325 E 798.991768 3.000000 40.045155 23 120 0.000000 40.045155 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5681 1527.879182 E 1529.909057 3.000000 33.967325 14 120 0.000000 33.967325 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5684 1530.679057 E 1533.672041 3.000000 36.744957 12 120 0.000000 36.744957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5711 1596.022219 E 1599.010783 3.000000 26.922198 10 120 0.000000 26.922198 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5712 1598.317683 E 1601.311774 3.000000 27.952471 10 120 0.000000 27.952471 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5713 1598.100775 E 1601.093750 3.000000 28.977268 10 120 0.000000 28.977268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5716 1603.713181 E 1606.705277 3.000000 27.988249 8 120 0.000000 27.988249 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5648 1264.334911 E 1267.326576 3.000000 21.039304 8 120 0.000000 21.039304 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5649 1267.119289 E 1270.110336 3.000000 23.813972 11 120 0.000000 23.813972 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5652 1267.460598 E 1270.456344 3.000000 24.138886 11 120 0.000000 24.138886 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5718 1603.710384 E 1606.705277 3.000000 34.052954 13 120 0.000000 34.052954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6357 944.544491 E 947.340961 3.000000 6.012580 14 120 0.000000 6.012580 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6358 944.703813 E 947.544491 3.000000 12.880370 18 120 0.000000 12.880370 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S gmain 6925 0.001064 E 2.901765 3.000000 1.047512 2 120 0.000000 1.047512 0.000000 0.000000 0 0 /system.slice/NetworkManager-dispatcher.service\\n S python3 7044 2924.838871 E 2927.838871 3.000000 110.667241 10 120 0.000000 110.667241 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 6963 951.349598 E 954.266241 3.000000 3.884621 20 120 0.000000 3.884621 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n Ssystemd-hostnam 7090 5.616092 E 6.745800 3.000000 53.542987 35 120 0.000000 53.542987 0.000000 0.000000 0 0 /system.slice/systemd-hostnamed.service\\n\\ncpu#4, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 128158\\n .nr_uninterruptible : 183\\n .next_balance : 4295.164618\\n .curr->pid : 0\\n .clock : 497501.173860\\n .clock_task : 497501.173860\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[4]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1944.970380\\n .avg_vruntime : 1944.970380\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497220.030017\\n .se->vruntime : 9437.509445\\n .se->sum_exec_runtime : 1950.351383\\n .se->load.weight : 70959\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9437.509445\\n .avg_vruntime : 9437.509445\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 734\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497220.030017\\n .se->vruntime : 16012.126423\\n .se->sum_exec_runtime : 2229.937572\\n .se->load.weight : 72817\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3427.424798\\n .avg_vruntime : 3427.424798\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497459.545194\\n .se->vruntime : 78548.333500\\n .se->sum_exec_runtime : 3798.622274\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 356.320000\\n .avg_vruntime : 356.320000\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497495.976844\\n .se->vruntime : 78548.411862\\n .se->sum_exec_runtime : 358.269067\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 341.943614\\n .avg_vruntime : 341.943614\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497321.502516\\n .se->vruntime : 78548.143535\\n .se->sum_exec_runtime : 376.359887\\n .se->load.weight : 20560\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 503.949606\\n .avg_vruntime : 503.949606\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497420.458495\\n .se->vruntime : 78548.250754\\n .se->sum_exec_runtime : 509.359633\\n .se->load.weight : 149796\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3.087442\\n .avg_vruntime : 3.087442\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.191738\\n .se->vruntime : 78537.948168\\n .se->sum_exec_runtime : 4.198595\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/NetworkManager.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 797.677320\\n .avg_vruntime : 797.677320\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497022.212252\\n .se->vruntime : 78536.830841\\n .se->sum_exec_runtime : 799.842849\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 35.563003\\n .avg_vruntime : 35.563003\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.790431\\n .se->vruntime : 78548.399197\\n .se->sum_exec_runtime : 36.771709\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 78548.411862\\n .avg_vruntime : 78548.411862\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497495.976844\\n .se->vruntime : 107287.703998\\n .se->sum_exec_runtime : 21414.622424\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 16012.126423\\n .avg_vruntime : 16012.126423\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 932\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497220.030017\\n .se->vruntime : 107285.193499\\n .se->sum_exec_runtime : 5046.736335\\n .se->load.weight : 72733\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 107287.703998\\n .avg_vruntime : 107287.703998\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[4]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[4]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/4 39 8611.189859 E 8614.138975 3.000000 0.358588 26 120 0.000000 0.358588 0.000000 0.000000 0 0 /\\n S idle_inject/4 40 -1.048576 E 1.201424 2.250000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S migration/4 41 1.176891 E 3.426891 2.250000 170.202864 187 0 0.000000 170.202864 0.000000 0.000000 0 0 /\\n S ksoftirqd/4 42 107275.396273 E 107278.386915 3.000000 19.946993 866 120 0.000000 19.946993 0.000000 0.000000 0 0 /\\n I kworker/4:0 43 105589.986036 E 105592.957919 3.000000 21.927530 359 120 0.000000 21.927530 0.000000 0.000000 0 0 /\\n I kworker/4:0H 44 132.163682 E 132.198197 3.000000 0.019668 4 100 0.000000 0.019668 0.000000 0.000000 0 0 /\\n I kworker/4:1 81 107287.193696 E 107290.061197 3.000000 194.010824 1929 120 0.000000 194.010824 0.000000 0.000000 0 0 /\\n Ikworker/R-ata_s 83 5.270300 E 5.304909 3.000000 0.000746 2 100 0.000000 0.000746 0.000000 0.000000 0 0 /\\n Ikworker/R-md_bi 85 5.270300 E 5.304909 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-devfr 87 5.273628 E 5.308237 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/128-pciehp 95 0.339759 E 2.659354 3.000000 0.006738 3 49 0.000000 0.006738 0.000000 0.000000 0 0 /\\n S hwrng 101 104169.378197 E 104172.004284 3.000000 32.638105 129 120 0.000000 32.638105 0.000000 0.000000 0 0 /\\n I kworker/4:1H 194 105945.711537 E 105945.745619 3.000000 9.610625 900 100 0.000000 9.610625 0.000000 0.000000 0 0 /\\n I kworker/4:2 468 57914.251469 E 57917.233388 3.000000 0.155689 16 120 0.000000 0.155689 0.000000 0.000000 0 0 /\\n Ikworker/R-cfg80 514 3339.240577 E 3339.275140 3.000000 0.012808 2 100 0.000000 0.012808 0.000000 0.000000 0 0 /\\n Sirq/197-iwlwifi 540 3926.376252 E 3929.374115 3.000000 16.719953 59 49 0.000000 16.719953 0.000000 0.000000 0 0 /\\n Sirq/201-iwlwifi 544 3926.622118 E 3929.620867 3.000000 0.136252 5 49 0.000000 0.136252 0.000000 0.000000 0 0 /\\n S pool-spawner 929 0.427240 E 3.421670 3.000000 0.182155 7 120 0.000000 0.182155 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 918 4.224344 E 6.070337 3.000000 17.705503 95 120 0.000000 17.705503 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 1042 1.501824 E 4.479627 3.000000 0.055072 2 120 0.000000 0.055072 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 1046 129.468386 E 131.898861 3.000000 215.763894 846 120 0.000000 215.763894 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2920 130.059417 E 132.172014 3.000000 70.491335 218 120 0.000000 70.491335 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 3003 129.397742 E 132.297517 3.000000 105.749007 125 120 0.000000 105.749007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 951 356.320000 E 359.307335 3.000000 1512.223802 17518 120 0.000000 1512.223802 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gdbus 906 3.087442 E 5.901575 3.000000 72.148857 316 120 0.000000 72.148857 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S NetworkManager 898 797.677320 E 800.577400 3.000000 1090.033107 1684 120 0.000000 1090.033107 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S gmain 935 797.477194 E 800.400831 3.000000 23.046878 125 120 0.000000 23.046878 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S in:imuxsock 954 35.563003 E 38.526935 3.000000 100.515992 2733 120 0.000000 100.515992 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S gmain 1094 3.946236 E 6.930995 3.000000 0.050521 2 120 0.000000 0.050521 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gmain 1093 3.276503 E 6.269558 3.000000 0.066470 2 120 0.000000 0.066470 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1505 338.961701 E 341.185688 3.000000 216.388156 5914 120 0.000000 216.388156 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1532 0.548481 E 3.506291 3.000000 0.195304 7 120 0.000000 0.195304 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1547 0.212741 E 3.208152 3.000000 0.019168 3 79 0.000000 0.019168 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1519 -1.009572 E 1.951424 3.000000 0.039004 1 120 0.000000 0.039004 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1535 10.910098 E 14.575757 3.000000 65.949337 133 121 0.000000 65.949337 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S dbus-daemon 1537 1214.673737 E 1214.818968 3.000000 135.717794 759 120 0.000000 135.717794 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1563 0.636104 E 3.602310 3.000000 0.327847 4 120 0.000000 0.327847 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1598 1211.818968 E 1214.276078 3.000000 1.025386 14 120 0.000000 1.025386 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1606 1171.874267 E 1174.846737 3.000000 9.832992 85 120 0.000000 9.832992 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1682 -1.007916 E 1.951424 3.000000 0.040660 1 120 0.000000 0.040660 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1700 295.680439 E 298.486174 3.000000 10.233894 150 120 0.000000 10.233894 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2443 284.936640 E 287.916427 3.000000 35.663598 1701 120 0.000000 35.663598 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2524 503.949606 E 506.922531 3.000000 153.791873 5238 120 0.000000 153.791873 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2525 494.838632 E 496.826450 3.000000 81.962403 2629 120 0.000000 81.962403 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2677 501.003354 E 502.914394 3.000000 87.408194 3015 120 0.000000 87.408194 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2402 44.216112 E 47.201754 3.000000 0.083347 6 120 0.000000 0.083347 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2404 341.943614 E 344.836449 3.000000 32.730786 85 120 0.000000 32.730786 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2420 44.291955 E 47.265037 3.000000 1.429798 32 120 0.000000 1.429798 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 3027 494.594461 E 497.580076 3.000000 1.096695 37 120 0.000000 1.096695 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dbus-daemon 3028 871.982914 E 874.971379 3.000000 8.820633 75 120 0.000000 8.820633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3040 23.893471 E 26.854493 3.000000 0.075685 2 120 0.000000 0.075685 0.000000 0.000000 0 0 /system.slice/colord.service\\n S pool-spawner 3070 84.801335 E 87.763845 3.000000 0.076250 2 120 0.000000 0.076250 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3071 84.763845 E 87.725839 3.000000 0.038006 1 120 0.000000 0.038006 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3086 585.187130 E 587.886236 3.000000 0.803427 9 120 0.000000 0.803427 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3113 121.997580 E 124.912918 3.000000 1.251295 53 120 0.000000 1.251295 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3107 1223.116574 E 1224.402910 3.000000 263.923787 824 120 0.000000 263.923787 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3120 104.510615 E 107.420360 3.000000 0.090255 1 120 0.000000 0.090255 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3132 104.942110 E 107.902899 3.000000 0.039211 1 120 0.000000 0.039211 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3147 432.291787 E 435.215403 3.000000 15.128436 45 120 0.000000 15.128436 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-housekeepin 3169 1179.911267 E 1180.688133 3.000000 192.325882 134 120 0.000000 192.325882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3199 432.208898 E 435.123843 3.000000 4.825108 55 120 0.000000 4.825108 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-power 3172 934.048735 E 936.983961 3.000000 531.922828 648 120 0.000000 531.922828 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gjs 3333 961.492427 E 962.754198 3.000000 64.931215 51 120 0.000000 64.931215 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3388 494.502646 E 497.479395 3.000000 0.383639 13 120 0.000000 0.383639 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x1:disk$0 3384 493.429311 E 698.009560 3.000000 0.064318 1 139 0.000000 0.064318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3391 494.823326 E 497.820442 3.000000 0.047210 2 120 0.000000 0.047210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 3453 0.638992 E 1.951424 3.000000 0.409584 1 120 0.000000 0.409584 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S module-rt 3508 16.982589 E 19.952500 3.000000 0.177132 8 120 0.000000 0.177132 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3512 16.731938 E 19.727789 3.000000 0.017591 3 120 0.000000 0.017591 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3519 17.278259 E 20.249377 3.000000 0.054962 2 120 0.000000 0.054962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S dbus-daemon 3501 17.501364 E 20.425841 3.000000 9.308695 60 120 0.000000 9.308695 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3547 17.425841 E 20.278259 3.000000 0.147582 1 120 0.000000 0.147582 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3596 0.171413 E 2.703804 3.000000 0.124783 1 120 0.000000 0.124783 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gdbus 4750 0.089371 E 2.823358 3.000000 0.503147 15 120 0.000000 0.503147 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S timer 4751 0.479745 E 2.495817 3.000000 0.024438 1 120 0.000000 0.024438 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/4:3 4828 57914.289385 E 57917.286600 3.000000 0.108756 5 120 0.000000 0.108756 0.000000 0.000000 0 0 /\\n S docker 5109 152.126586 E 155.068735 3.000000 0.361652 5 120 0.000000 0.361652 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5122 196.344791 E 199.329849 3.000000 63.034858 39 120 0.000000 63.034858 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5210 492.520235 E 495.479950 3.000000 56.125173 1081 120 0.000000 56.125173 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5215 339.661927 E 342.648638 3.000000 0.213475 22 120 0.000000 0.213475 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5237 325.340076 E 328.291160 3.000000 1.425958 24 120 0.000000 1.425958 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5242 260.021354 E 262.990538 3.000000 1.439470 33 120 0.000000 1.439470 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5267 249.428702 E 252.410406 3.000000 0.050853 2 120 0.000000 0.050853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sjemalloc_bg_thd 5374 138.276375 E 141.265876 3.000000 0.148449 5 120 0.000000 0.148449 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Sjemalloc_bg_thd 5375 0.560167 E 2.423287 3.000000 0.016546 1 120 0.000000 0.016546 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5406 339.715217 E 342.703512 3.000000 0.169404 19 120 0.000000 0.169404 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5407 291.517519 E 294.508545 3.000000 0.110756 6 120 0.000000 0.110756 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5428 264.775703 E 267.763855 3.000000 0.397285 12 120 0.000000 0.397285 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5429 326.607007 E 329.598801 3.000000 4.587651 59 120 0.000000 4.587651 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5452 332.887320 E 335.883751 3.000000 1.930435 283 120 0.000000 1.930435 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5453 327.346101 E 330.230161 3.000000 4.320992 54 120 0.000000 4.320992 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5479 5.910874 E 8.239062 3.000000 24.294118 29 120 0.000000 24.294118 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5536 3424.780534 E 3426.955601 3.000000 336.806050 186 120 0.000000 336.806050 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5564 5.960558 E 8.911409 3.000000 0.756076 9 120 0.000000 0.756076 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 6352 3217.175095 E 3220.135461 3.000000 0.148844 2 120 0.000000 0.148844 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6356 3217.180599 E 3220.172006 3.000000 0.055941 3 120 0.000000 0.055941 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5693 2182.334914 E 2185.327152 3.000000 38.955454 14 120 0.000000 38.955454 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5670 2131.268004 E 2134.260351 3.000000 36.996673 11 120 0.000000 36.996673 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5671 2135.196688 E 2138.196688 3.000000 40.909890 14 120 0.000000 40.909890 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5640 1921.565079 E 1924.559625 3.000000 28.984572 12 120 0.000000 28.984572 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5644 1921.963150 E 1922.987767 3.000000 52.350338 20 120 0.000000 52.350338 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5696 2197.393849 E 2200.390282 3.000000 31.127998 15 120 0.000000 31.127998 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5699 2197.192376 E 2200.184357 3.000000 30.902525 11 120 0.000000 30.902525 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6949 3396.569385 E 3399.549503 3.000000 0.102516 3 120 0.000000 0.102516 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5632 1326.785621 E 1326.892101 3.000000 100.083757 4 120 0.000000 100.083757 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5576 3427.424798 E 3430.361826 3.000000 3049.787302 1472 120 0.000000 3049.787302 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5658 1985.657062 E 1988.647654 3.000000 37.909073 12 120 0.000000 37.909073 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5660 1989.692299 E 1989.732082 3.000000 55.543120 15 120 0.000000 55.543120 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5719 2242.781412 E 2242.811558 3.000000 49.489219 18 120 0.000000 49.489219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6341 3216.000387 E 3218.984690 3.000000 0.065197 3 120 0.000000 0.065197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5624 172.876578 E 175.813170 3.000000 3.034044 18 120 0.000000 3.034044 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6959 1789.132223 E 1792.073332 3.000000 7.071444 203 120 0.000000 7.071444 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 7042 1919.203942 E 1919.415864 3.000000 110.894718 4 120 0.000000 110.894718 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#5, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 134569\\n .nr_uninterruptible : -18\\n .next_balance : 4295.164625\\n .curr->pid : 0\\n .clock : 497506.147835\\n .clock_task : 497506.147835\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[5]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3282.032592\\n .avg_vruntime : 3282.032592\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497475.728528\\n .se->vruntime : 10324.133597\\n .se->sum_exec_runtime : 3286.519722\\n .se->load.weight : 260865\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10324.133597\\n .avg_vruntime : 10324.133597\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 734\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497475.728528\\n .se->vruntime : 17790.534185\\n .se->sum_exec_runtime : 3581.345739\\n .se->load.weight : 50526\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3322.879680\\n .avg_vruntime : 3322.879680\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497501.954023\\n .se->vruntime : 67475.841206\\n .se->sum_exec_runtime : 3900.837535\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 452.782137\\n .avg_vruntime : 452.782137\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497217.761471\\n .se->vruntime : 67475.202167\\n .se->sum_exec_runtime : 470.991854\\n .se->load.weight : 132369\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 514.210794\\n .avg_vruntime : 514.210794\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497420.499273\\n .se->vruntime : 67475.735296\\n .se->sum_exec_runtime : 535.955889\\n .se->load.weight : 299593\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[5]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 146.784382\\n .avg_vruntime : 146.784382\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.223514\\n .se->vruntime : 67467.746020\\n .se->sum_exec_runtime : 148.095944\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 36.949545\\n .avg_vruntime : 36.949545\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497384.542329\\n .se->vruntime : 67475.567191\\n .se->sum_exec_runtime : 38.017195\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 247.994319\\n .avg_vruntime : 247.994319\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497395.773497\\n .se->vruntime : 67475.586527\\n .se->sum_exec_runtime : 252.203272\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 67475.841206\\n .avg_vruntime : 67475.841206\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497501.954023\\n .se->vruntime : 98857.836698\\n .se->sum_exec_runtime : 17313.939613\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 17790.534185\\n .avg_vruntime : 17790.534185\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 932\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497475.728528\\n .se->vruntime : 98857.730788\\n .se->sum_exec_runtime : 5822.210901\\n .se->load.weight : 8287\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 98857.836698\\n .avg_vruntime : 98857.836698\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[5]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[5]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/5 45 6999.749005 E 7002.677723 3.000000 0.271587 26 120 0.000000 0.271587 0.000000 0.000000 0 0 /\\n S idle_inject/5 46 -1.043636 E 1.204967 2.250000 0.004272 3 49 0.000000 0.004272 0.000000 0.000000 0 0 /\\n S migration/5 47 3.168235 E 5.417506 2.250000 171.634300 192 0 0.000000 171.634300 0.000000 0.000000 0 0 /\\n S ksoftirqd/5 48 98825.587623 E 98828.570739 3.000000 32.835923 1386 120 0.000000 32.835923 0.000000 0.000000 0 0 /\\n I kworker/5:0 49 98612.184515 E 98615.134313 3.000000 252.229903 3204 120 0.000000 252.229903 0.000000 0.000000 0 0 /\\n I kworker/5:0H 50 785.846494 E 785.880922 3.000000 0.029057 4 100 0.000000 0.029057 0.000000 0.000000 0 0 /\\n I kworker/5:1H 90 97128.160237 E 97128.194674 3.000000 7.797242 396 100 0.000000 7.797242 0.000000 0.000000 0 0 /\\n S irq/129-pciehp 96 0.336759 E 2.662268 3.000000 0.006014 3 49 0.000000 0.006014 0.000000 0.000000 0 0 /\\n Ikworker/R-acpi_ 100 803.615043 E 803.649645 3.000000 0.003136 2 100 0.000000 0.003136 0.000000 0.000000 0 0 /\\n I kworker/5:2 102 58304.487734 E 58307.474531 3.000000 6.779451 136 120 0.000000 6.779451 0.000000 0.000000 0 0 /\\n I kworker/R-mld 103 822.822143 E 822.856734 3.000000 0.020268 2 100 0.000000 0.020268 0.000000 0.000000 0 0 /\\n Ikworker/R-ipv6_ 105 822.824530 E 822.859136 3.000000 0.002654 2 100 0.000000 0.002654 0.000000 0.000000 0 0 /\\n Ikworker/R-kstrp 112 825.212532 E 825.247134 3.000000 0.002925 2 100 0.000000 0.002925 0.000000 0.000000 0 0 /\\n I kworker/5:3 129 98810.878457 E 98813.872195 3.000000 124.644485 1051 120 0.000000 124.644485 0.000000 0.000000 0 0 /\\n Sirq/173-FRMW000 225 1210.147450 E 1213.127987 3.000000 0.350809 4 49 0.000000 0.350809 0.000000 0.000000 0 0 /\\n Sirq/174-PIXA385 227 1218.791465 E 1221.760797 3.000000 0.479717 4 49 0.000000 0.479717 0.000000 0.000000 0 0 /\\n S psimon 395 1769.940955 E 1772.934339 3.000000 0.031393 2 98 0.000000 0.031393 0.000000 0.000000 0 0 /\\n Sirq/198-iwlwifi 541 3741.717084 E 3744.716044 3.000000 9.242721 43 49 0.000000 9.242721 0.000000 0.000000 0 0 /\\n S pool-spawner 917 0.598568 E 2.374275 3.000000 0.139307 3 120 0.000000 0.139307 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S gdbus 1047 146.784382 E 149.571325 3.000000 204.579908 921 120 0.000000 204.579908 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 925 153.000612 E 155.985479 3.000000 186.267585 561 120 0.000000 186.267585 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2921 150.000733 E 153.000733 3.000000 139.295594 243 120 0.000000 139.295594 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gmain 953 0.274092 E 3.243919 3.000000 0.030173 1 120 0.000000 0.030173 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 858 3.421352 E 6.394871 3.000000 1.493133 34 120 0.000000 1.493133 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 950 241.680588 E 244.656210 3.000000 474.773382 6218 120 0.000000 474.773382 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S pool-spawner 877 0.968110 E 1.951424 3.000000 0.080466 1 120 0.000000 0.080466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S thermald 1119 366.983089 E 369.983089 3.000000 547.403307 273 120 0.000000 547.403307 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S wpa_supplicant 901 6.788165 E 8.726785 3.000000 320.936053 483 120 0.000000 320.936053 0.000000 0.000000 0 0 /system.slice/wpa_supplicant.service\\n S pool-spawner 1096 5.835716 E 8.797854 3.000000 0.070490 2 120 0.000000 0.070490 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1108 18.729605 E 21.619214 3.000000 22.615599 123 120 0.000000 22.615599 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1113 1.961790 E 4.958126 3.000000 10.058361 153 120 0.000000 10.058361 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1114 3.774906 E 6.730419 3.000000 2.013745 76 120 0.000000 2.013745 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1115 1.948170 E 4.912969 3.000000 0.190242 20 120 0.000000 0.190242 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1447 2.681121 E 5.678513 3.000000 22.987360 343 120 0.000000 22.987360 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1477 452.713860 E 455.706101 3.000000 155.987423 3795 120 0.000000 155.987423 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 5141 450.115320 E 452.518423 3.000000 62.525377 2595 120 0.000000 62.525377 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 1485 3.989182 E 6.948338 3.000000 16.521431 131 120 0.000000 16.521431 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gmain 1494 2.779321 E 5.771975 3.000000 0.065744 3 120 0.000000 0.065744 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire-pulse 1516 26.233418 E 26.485480 3.000000 19.482467 71 109 0.000000 19.482467 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S rtkit-daemon 1549 3.958778 E 6.794019 3.000000 5.929165 83 120 0.000000 5.929165 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n Sxdg-permission- 1557 26.114410 E 28.921546 3.000000 4.480217 9 120 0.000000 4.480217 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dockerd 1657 171.907138 E 174.896341 3.000000 206.971759 2083 120 0.000000 206.971759 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1664 514.210794 E 517.208382 3.000000 343.079515 26546 120 0.000000 343.079515 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1669 344.620239 E 347.584650 3.000000 69.767271 2073 120 0.000000 69.767271 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2394 356.668054 E 359.629743 3.000000 47.946204 1790 120 0.000000 47.946204 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2528 512.387548 E 514.255346 3.000000 146.434323 4719 120 0.000000 146.434323 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2718 514.142517 E 517.138834 3.000000 94.010123 4335 120 0.000000 94.010123 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2817 0.969895 E 2.006035 3.000000 0.078681 2 120 0.000000 0.078681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S pool-spawner 3023 33.403610 E 36.375096 3.000000 0.062687 2 120 0.000000 0.062687 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3036 49.145973 E 52.105602 3.000000 0.040371 1 120 0.000000 0.040371 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 3069 409.720330 E 411.795486 3.000000 3.645960 9 120 0.000000 3.645960 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3087 923.987178 E 926.920563 3.000000 0.691954 9 120 0.000000 0.691954 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sharing 3080 1534.450250 E 1536.264625 3.000000 147.938188 1040 120 0.000000 147.938188 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3102 260.315442 E 263.308450 3.000000 0.043178 2 120 0.000000 0.043178 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3125 271.161595 E 274.095199 3.000000 0.721540 8 120 0.000000 0.721540 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3134 695.253497 E 698.160802 3.000000 18.015111 51 120 0.000000 18.015111 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-rfkill 3114 1529.873050 E 1532.424632 3.000000 19.584288 228 120 0.000000 19.584288 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3142 271.415232 E 274.408854 3.000000 0.052239 2 120 0.000000 0.052239 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3144 283.234823 E 286.195976 3.000000 0.156948 5 120 0.000000 0.156948 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3148 1529.632211 E 1531.021586 3.000000 37.418242 247 120 0.000000 37.418242 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3160 274.593574 E 277.561112 3.000000 0.032462 1 120 0.000000 0.032462 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3205 694.073828 E 697.059396 3.000000 0.539966 11 120 0.000000 0.539966 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3190 291.047172 E 294.041558 3.000000 0.069455 3 120 0.000000 0.069455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3191 291.082083 E 294.047172 3.000000 0.064373 2 120 0.000000 0.064373 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3171 277.903854 E 280.871361 3.000000 0.032493 1 120 0.000000 0.032493 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3208 289.768671 E 292.723596 3.000000 0.045075 1 120 0.000000 0.045075 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3341 1268.500237 E 1271.417686 3.000000 1.040132 11 120 0.000000 1.040132 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3347 710.823685 E 713.793865 3.000000 0.043738 2 120 0.000000 0.043738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3348 710.793865 E 713.767416 3.000000 0.026449 1 120 0.000000 0.026449 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-daemon 3346 949.332769 E 952.288245 3.000000 42.959636 73 120 0.000000 42.959636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11 3362 923.587585 E 926.310829 3.000000 45.522706 130 120 0.000000 45.522706 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3371 726.850047 E 729.799574 3.000000 0.076524 2 120 0.000000 0.076524 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sibus-engine-sim 3378 728.885393 E 731.863437 3.000000 4.625539 14 120 0.000000 4.625539 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3513 1.729229 E 4.725188 3.000000 0.034825 5 120 0.000000 0.034825 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S wireplumber 3472 11.462644 E 13.755284 3.000000 40.504423 63 120 0.000000 40.504423 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3555 8.358478 E 11.299358 3.000000 0.319715 3 120 0.000000 0.319715 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3550 7.088145 E 10.059456 3.000000 0.088092 2 120 0.000000 0.088092 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3553 7.326957 E 10.315957 3.000000 0.238812 7 120 0.000000 0.238812 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fusermount3 3556 8.289925 E 10.425022 3.000000 0.864903 1 120 0.000000 0.864903 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Ssnapd-desktop-i 3594 12.810910 E 15.645251 3.000000 16.524009 26 120 0.000000 16.524009 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gmain 3597 12.645251 E 15.600431 3.000000 0.044820 1 120 0.000000 0.044820 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S bash 3712 3092.322775 E 3094.637549 3.000000 259.159400 524 120 0.000000 259.159400 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S docker 5103 77.367826 E 80.361952 3.000000 2.654622 20 120 0.000000 2.654622 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5104 76.789473 E 79.661122 3.000000 0.935648 8 120 0.000000 0.935648 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5105 76.471056 E 79.122576 3.000000 0.348480 1 120 0.000000 0.348480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5131 80.563750 E 83.192223 3.000000 1.136131 12 120 0.000000 1.136131 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5212 345.929760 E 348.904077 3.000000 0.025683 1 120 0.000000 0.025683 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5213 505.356239 E 508.342503 3.000000 0.329773 14 120 0.000000 0.329773 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5221 346.057686 E 349.014905 3.000000 0.042781 1 120 0.000000 0.042781 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5236 434.523935 E 437.488841 3.000000 1.210480 204 120 0.000000 1.210480 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5239 318.088842 E 321.070226 3.000000 0.081546 6 120 0.000000 0.081546 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5241 434.488841 E 437.319817 3.000000 3.195668 33 120 0.000000 3.195668 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5396 393.299699 E 396.076725 3.000000 0.339736 7 120 0.000000 0.339736 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5401 502.700871 E 505.698656 3.000000 0.782410 16 120 0.000000 0.782410 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5405 356.859342 E 359.855343 3.000000 1.795184 14 120 0.000000 1.795184 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5409 356.858058 E 359.853277 3.000000 0.086967 4 120 0.000000 0.086967 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5410 356.739028 E 359.714574 3.000000 0.024454 1 120 0.000000 0.024454 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5419 323.414770 E 326.408620 3.000000 2.963462 8 120 0.000000 2.963462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5421 323.427369 E 326.411167 3.000000 0.463860 15 120 0.000000 0.463860 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5454 327.251540 E 330.239598 3.000000 0.078194 9 120 0.000000 0.078194 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5460 441.039361 E 444.029375 3.000000 3.596224 67 120 0.000000 3.596224 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5563 4.567941 E 7.480591 3.000000 6.436335 18 120 0.000000 6.436335 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5614 1204.439296 E 1207.439296 3.000000 25.601066 7 120 0.000000 25.601066 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5617 1206.891768 E 1209.822325 3.000000 28.034014 9 120 0.000000 28.034014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5619 1208.780352 E 1210.861964 3.000000 29.914255 9 120 0.000000 29.914255 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6346 3174.366197 E 3177.354263 3.000000 0.074281 3 120 0.000000 0.074281 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5608 1185.932477 E 1188.922565 3.000000 37.946501 14 120 0.000000 37.946501 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5672 1995.255322 E 1995.274003 3.000000 73.850813 20 120 0.000000 73.850813 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5641 1768.202285 E 1771.193258 3.000000 54.929183 14 120 0.000000 54.929183 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5695 2071.651562 E 2071.688139 3.000000 32.936801 11 120 0.000000 32.936801 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6951 3276.159243 E 3279.007946 3.000000 6.751696 107 120 0.000000 6.751696 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5637 1539.174198 E 1540.010364 3.000000 38.326835 12 120 0.000000 38.326835 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5638 1538.793722 E 1540.152260 3.000000 37.736919 12 120 0.000000 37.736919 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5709 2084.464804 E 2087.450225 3.000000 29.991031 9 120 0.000000 29.991031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5654 2046.336174 E 2049.326048 3.000000 38.012486 12 120 0.000000 38.012486 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5657 1803.954929 E 1805.989704 3.000000 38.959841 12 120 0.000000 38.959841 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5659 1807.015254 E 1809.026693 3.000000 42.007189 11 120 0.000000 42.007189 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5714 2109.823685 E 2109.851682 3.000000 36.490008 12 120 0.000000 36.490008 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6340 3174.527383 E 3177.507711 3.000000 0.096351 3 120 0.000000 0.096351 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5577 3322.879680 E 3325.773770 3.000000 3022.859989 1853 120 0.000000 3022.859989 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6336 3174.358195 E 3177.331577 3.000000 0.116229 3 120 0.000000 0.116229 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6345 3187.769027 E 3190.605767 3.000000 11.445595 34 120 0.000000 11.445595 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5621 36.949545 E 39.925962 3.000000 56.237483 557 120 0.000000 56.237483 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 5625 10.233587 E 12.608430 3.000000 0.625157 1 120 0.000000 0.625157 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6361 28.804050 E 31.622006 3.000000 6.682534 15 120 0.000000 6.682534 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S gdbus 6929 4.485510 E 7.189139 3.000000 7.478934 6 120 0.000000 7.478934 0.000000 0.000000 0 0 /system.slice/NetworkManager-dispatcher.service\\n S postgres 6954 36.911461 E 39.874056 3.000000 3.570335 11 120 0.000000 3.570335 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 7041 3237.691681 E 3238.919476 3.000000 110.841959 19 120 0.000000 110.841959 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#6, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 140491\\n .nr_uninterruptible : 108\\n .next_balance : 4295.164617\\n .curr->pid : 0\\n .clock : 497501.176085\\n .clock_task : 497501.176085\\n .avg_idle : 835722\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[6]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 16.783234\\n .avg_vruntime : 16.783234\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 2\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 2\\n .tg_load_avg : 2\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497478.760357\\n .se->vruntime : 71627.085610\\n .se->sum_exec_runtime : 17.844843\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2149.220825\\n .avg_vruntime : 2149.220825\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2494\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497219.934310\\n .se->vruntime : 8962.405008\\n .se->sum_exec_runtime : 2153.220542\\n .se->load.weight : 78438\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 8962.405008\\n .avg_vruntime : 8962.405008\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 734\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497219.934310\\n .se->vruntime : 15143.404856\\n .se->sum_exec_runtime : 2315.262802\\n .se->load.weight : 81066\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15143.404856\\n .avg_vruntime : 15143.404856\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 932\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497219.934310\\n .se->vruntime : 98068.401882\\n .se->sum_exec_runtime : 3494.171920\\n .se->load.weight : 88146\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 408.436905\\n .avg_vruntime : 408.436905\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497331.046898\\n .se->vruntime : 71626.227584\\n .se->sum_exec_runtime : 430.520200\\n .se->load.weight : 59353\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 54.612888\\n .avg_vruntime : 54.612888\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497117.977117\\n .se->vruntime : 71615.660789\\n .se->sum_exec_runtime : 56.517708\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 71.076334\\n .avg_vruntime : 71.076334\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 6\\n .runnable_avg : 5\\n .util_avg : 5\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 6\\n .tg_load_avg : 6\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.785431\\n .se->vruntime : 71627.498616\\n .se->sum_exec_runtime : 90.101238\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 71.974868\\n .avg_vruntime : 71.974868\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497287.264804\\n .se->vruntime : 71625.962515\\n .se->sum_exec_runtime : 73.076152\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/dbus.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 278.862546\\n .avg_vruntime : 278.862546\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.041240\\n .se->vruntime : 71617.011594\\n .se->sum_exec_runtime : 280.009160\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 497.380276\\n .avg_vruntime : 497.380276\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497218.164094\\n .se->vruntime : 71625.544844\\n .se->sum_exec_runtime : 507.431385\\n .se->load.weight : 198939\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3581.328488\\n .avg_vruntime : 3581.328488\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497416.468171\\n .se->vruntime : 71626.632875\\n .se->sum_exec_runtime : 4136.262738\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 71627.498616\\n .avg_vruntime : 71627.498616\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 8\\n .util_avg : 8\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.785431\\n .se->vruntime : 98070.434372\\n .se->sum_exec_runtime : 17352.802227\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 8\\n .se->avg.runnable_avg : 8\\n\\ncfs_rq[6]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 98070.434372\\n .avg_vruntime : 98070.434372\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 8\\n .util_avg : 8\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[6]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[6]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/6 51 8615.222785 E 8618.158454 3.000000 0.252486 26 120 0.000000 0.252486 0.000000 0.000000 0 0 /\\n S idle_inject/6 52 -1.048596 E 1.201404 2.250000 0.001435 3 49 0.000000 0.001435 0.000000 0.000000 0 0 /\\n S migration/6 53 3.285100 E 5.534388 2.250000 171.657785 191 0 0.000000 171.657785 0.000000 0.000000 0 0 /\\n S ksoftirqd/6 54 98048.101018 E 98051.094175 3.000000 22.622981 744 120 0.000000 22.622981 0.000000 0.000000 0 0 /\\n I kworker/6:0H 56 96990.773692 E 96990.806383 3.000000 6.821617 378 100 0.000000 6.821617 0.000000 0.000000 0 0 /\\n S irq/130-pciehp 97 0.333820 E 2.665268 3.000000 0.005759 3 49 0.000000 0.005759 0.000000 0.000000 0 0 /\\n I kworker/6:1 98 92929.297618 E 92932.280639 3.000000 14.071602 230 120 0.000000 14.071602 0.000000 0.000000 0 0 /\\n I kworker/6:1H 104 0.901750 E 0.936338 3.000000 0.024295 2 100 0.000000 0.024295 0.000000 0.000000 0 0 /\\n Ikworker/R-ext4- 265 715.149068 E 715.183650 3.000000 0.016782 2 100 0.000000 0.016782 0.000000 0.000000 0 0 /\\n Ssystemd-journal 315 71.076334 E 73.358940 3.000000 715.572252 1877 119 0.000000 715.572252 0.000000 0.000000 0 0 /system.slice/systemd-journald.service\\n I kworker/u16:8 451 98009.286991 E 98012.281330 3.000000 248.615208 2242 120 0.000000 248.615208 0.000000 0.000000 0 0 /\\n Sirq/199-iwlwifi 542 3741.720024 E 3744.718960 3.000000 2.028888 29 49 0.000000 2.028888 0.000000 0.000000 0 0 /\\n I kworker/6:3 640 98068.899772 E 98071.875103 3.000000 129.657057 2038 120 0.000000 129.657057 0.000000 0.000000 0 0 /\\n Ssystemd-resolve 665 32.186455 E 34.681032 3.000000 654.082425 891 120 0.000000 654.082425 0.000000 0.000000 0 0 /system.slice/systemd-resolved.service\\n S avahi-daemon 793 71.974868 E 74.930348 3.000000 608.368912 2115 120 0.000000 608.368912 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S dbus-daemon 796 278.862546 E 281.640467 3.000000 3452.100865 6272 120 0.000000 3452.100865 0.000000 0.000000 0 0 /system.slice/dbus.service\\n Siio-sensor-prox 804 51.794222 E 54.650306 3.000000 342.582748 667 120 0.000000 342.582748 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S pool-spawner 931 3.995045 E 6.943176 3.000000 0.051869 1 120 0.000000 0.051869 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S snapd 926 367.367203 E 370.290744 3.000000 115.851942 463 120 0.000000 115.851942 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1045 246.848037 E 249.653279 3.000000 94.409312 356 120 0.000000 94.409312 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2922 361.812146 E 364.803584 3.000000 106.436659 92 120 0.000000 106.436659 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 958 9.238449 E 12.208952 3.000000 0.475075 10 120 0.000000 0.475075 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 949 3.796978 E 6.673936 3.000000 0.123042 1 120 0.000000 0.123042 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 1112 5.262021 E 8.244316 3.000000 0.017705 1 120 0.000000 0.017705 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S udisksd 845 34.124021 E 35.133500 3.000000 135.003646 385 120 0.000000 135.003646 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gmain 875 34.200375 E 37.124021 3.000000 19.479817 131 120 0.000000 19.479817 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S probing-thread 1075 6.567609 E 9.544668 3.000000 0.022941 1 120 0.000000 0.022941 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 937 1.153308 E 4.086953 3.000000 0.098542 2 120 0.000000 0.098542 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S upowerd 1086 18.314235 E 19.435362 3.000000 149.624500 180 120 0.000000 149.624500 0.000000 0.000000 0 0 /system.slice/upower.service\\n S psimon 1430 9260.147662 E 9263.146878 3.000000 0.006730 2 98 0.000000 0.006730 0.000000 0.000000 0 0 /\\n S module-rt 1530 2.618657 E 5.543553 3.000000 0.223127 6 120 0.000000 0.223127 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sdbus-run-sessio 1533 0.258773 E 2.587285 3.000000 1.487986 5 120 0.000000 1.487986 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1550 -1.032441 E 2.697765 3.000000 3.911414 67 0 0.000000 3.911414 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S gmain 1566 17.297077 E 20.277928 3.000000 0.097746 7 120 0.000000 0.097746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1570 17.355420 E 20.297077 3.000000 0.588370 21 120 0.000000 0.588370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1609 663.305754 E 666.279043 3.000000 9.676271 85 120 0.000000 9.676271 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1610 663.283542 E 666.279043 3.000000 10.313237 92 120 0.000000 10.313237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3029 275.589042 E 276.659165 3.000000 15.079471 7 120 0.000000 15.079471 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S krfcommd 1621 10074.755342 E 10075.075292 3.000000 0.065550 2 110 0.000000 0.065550 0.000000 0.000000 0 0 /\\n S dockerd 1667 360.733205 E 363.572264 3.000000 44.912651 1440 120 0.000000 44.912651 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1668 10.959996 E 13.909631 3.000000 0.136753 4 120 0.000000 0.136753 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1671 376.622448 E 379.612498 3.000000 35.314543 1107 120 0.000000 35.314543 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2691 497.380276 E 500.374310 3.000000 262.577213 6036 120 0.000000 262.577213 0.000000 0.000000 0 0 /system.slice/docker.service\\n S sshd 1702 74.518561 E 77.246586 3.000000 11.486317 11 120 0.000000 11.486317 0.000000 0.000000 0 0 /system.slice/ssh.service\\n Scontainerd-shim 2398 30.228595 E 33.220919 3.000000 3.863503 51 120 0.000000 3.863503 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2400 408.436905 E 411.409663 3.000000 5.876321 353 120 0.000000 5.876321 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2417 28.278836 E 31.246599 3.000000 0.032237 1 120 0.000000 0.032237 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2418 30.220839 E 33.148343 3.000000 0.624572 15 120 0.000000 0.624572 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2419 408.409663 E 411.403612 3.000000 20.338272 88 120 0.000000 20.338272 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2717 7.476168 E 10.461486 3.000000 28.234681 817 120 0.000000 28.234681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2724 8.330328 E 11.312981 3.000000 0.730104 41 120 0.000000 0.730104 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2729 0.009183 E 2.987065 3.000000 0.474507 16 120 0.000000 0.474507 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2763 28.885776 E 31.856462 3.000000 5.264668 92 120 0.000000 5.264668 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3037 69.004645 E 71.977650 3.000000 0.026995 1 120 0.000000 0.026995 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3083 288.025683 E 289.715393 3.000000 1.607031 8 120 0.000000 1.607031 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3088 286.715393 E 289.284690 3.000000 1.401843 9 120 0.000000 1.401843 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3124 87.455847 E 90.416578 3.000000 0.039269 1 120 0.000000 0.039269 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3131 302.640897 E 305.308430 3.000000 2.994609 50 120 0.000000 2.994609 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3158 93.881548 E 96.817284 3.000000 0.064264 1 120 0.000000 0.064264 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3182 109.126031 E 111.562635 3.000000 0.591888 2 120 0.000000 0.591888 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3184 108.724420 E 111.678855 3.000000 0.093578 2 120 0.000000 0.093578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3216 109.368449 E 112.350997 3.000000 0.217820 14 120 0.000000 0.217820 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3213 602.863968 E 605.510516 3.000000 272.558231 744 120 0.000000 272.558231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3293 586.573053 E 589.290637 3.000000 24.862703 32 120 0.000000 24.862703 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3337 606.691952 E 609.593211 3.000000 1.370128 13 120 0.000000 1.370128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3338 606.814834 E 609.691952 3.000000 1.139504 13 120 0.000000 1.139504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S module-rt 3510 4.969118 E 7.891565 3.000000 0.240480 6 120 0.000000 0.240480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3523 5.394138 E 8.306091 3.000000 0.426467 6 120 0.000000 0.426467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S sshd 3542 60.689261 E 63.665913 3.000000 199.656379 769 120 0.000000 199.656379 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S pool-spawner 3546 5.427172 E 8.394138 3.000000 0.089890 2 120 0.000000 0.089890 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3548 5.547188 E 8.427172 3.000000 0.773129 24 120 0.000000 0.773129 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 4749 16.047752 E 18.987863 3.000000 0.059889 1 120 0.000000 0.059889 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/6:0 4983 96634.618925 E 96637.616998 3.000000 12.473409 255 120 0.000000 12.473409 0.000000 0.000000 0 0 /\\n S docker 5106 50.986184 E 53.966096 3.000000 2.021095 12 120 0.000000 2.021095 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5123 60.920947 E 63.912920 3.000000 17.115287 834 120 0.000000 17.115287 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5140 54.263056 E 57.253692 3.000000 4.202288 102 120 0.000000 4.202288 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5208 492.932688 E 495.929247 3.000000 21.437964 1443 120 0.000000 21.437964 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5731 483.761839 E 486.733986 3.000000 0.448403 16 120 0.000000 0.448403 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5240 265.802650 E 268.788465 3.000000 0.020995 2 120 0.000000 0.020995 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5243 266.286329 E 269.275178 3.000000 0.261505 4 120 0.000000 0.261505 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5264 273.123925 E 276.097681 3.000000 1.821770 25 120 0.000000 1.821770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5266 267.028584 E 270.019464 3.000000 0.210716 13 120 0.000000 0.210716 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5339 389.040955 E 392.007327 3.000000 6.564462 141 120 0.000000 6.564462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S redis-server 5282 16.783234 E 19.330499 3.000000 3162.525615 1211 120 0.000000 3162.525615 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 6329 483.494365 E 486.415842 3.000000 7.135258 37 120 0.000000 7.135258 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 6330 482.410504 E 485.226121 3.000000 2.054356 6 120 0.000000 2.054356 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5450 279.103396 E 282.098400 3.000000 2.396339 8 120 0.000000 2.396339 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 5471 3581.328488 E 3584.304185 3.000000 24.480632 142 120 0.000000 24.480632 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5566 1.448927 E 4.109470 3.000000 0.339457 1 120 0.000000 0.339457 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5604 954.763097 E 957.751202 3.000000 28.240943 116 120 0.000000 28.240943 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5663 1792.640288 E 1795.640288 3.000000 38.952545 12 120 0.000000 38.952545 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5668 1789.732642 E 1791.724291 3.000000 35.988177 10 120 0.000000 35.988177 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5606 969.507874 E 972.497742 3.000000 25.491566 11 120 0.000000 25.491566 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5609 971.056429 E 974.046014 3.000000 27.020193 26 120 0.000000 27.020193 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5610 971.458654 E 974.453476 3.000000 27.417031 12 120 0.000000 27.417031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5707 1930.771185 E 1933.761817 3.000000 30.988047 9 120 0.000000 30.988047 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6332 3066.536604 E 3069.518774 3.000000 0.120233 3 120 0.000000 0.120233 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5628 1001.868572 E 1004.809337 3.000000 27.930046 12 120 0.000000 27.930046 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5629 1002.170072 E 1005.109190 3.000000 33.107018 10 120 0.000000 33.107018 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5679 1895.668218 E 1898.660660 3.000000 32.971433 10 120 0.000000 32.971433 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5683 1896.759957 E 1898.798855 3.000000 34.012241 10 120 0.000000 34.012241 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5720 1943.308345 E 1946.308345 3.000000 26.777888 7 120 0.000000 26.777888 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5723 1942.666364 E 1944.688960 3.000000 26.120826 8 120 0.000000 26.120826 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6338 3080.378005 E 3083.193564 3.000000 9.671179 24 120 0.000000 9.671179 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n I kworker/6:2 6175 92929.306949 E 92932.303713 3.000000 0.028876 4 120 0.000000 0.028876 0.000000 0.000000 0 0 /\\n Z dbus-daemon 6293 644.368969 E 647.080696 3.000000 0.476516 2 120 0.000000 0.476516 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S postgres 6349 40.808053 E 43.686063 3.000000 11.516885 17 120 0.000000 11.516885 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6350 95.275207 E 97.830285 3.000000 8.981273 12 120 0.000000 8.981273 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S nm-dispatcher 6919 2.496354 E 2.922935 3.000000 90.556467 8 120 0.000000 90.556467 0.000000 0.000000 0 0 /system.slice/NetworkManager-dispatcher.service\\n S pool-spawner 6926 0.077065 E 2.370182 3.000000 0.971511 2 120 0.000000 0.971511 0.000000 0.000000 0 0 /system.slice/NetworkManager-dispatcher.service\\n S postgres 6953 94.830285 E 97.127168 3.000000 2.944614 8 120 0.000000 2.944614 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 7047 2120.115320 E 2121.237028 3.000000 110.487350 4 120 0.000000 110.487350 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#7, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 139220\\n .nr_uninterruptible : -59\\n .next_balance : 4295.164623\\n .curr->pid : 0\\n .clock : 497507.259102\\n .clock_task : 497507.259102\\n .avg_idle : 526409\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[7]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4533.730836\\n .avg_vruntime : 4533.730836\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 176\\n .runnable_avg : 174\\n .util_avg : 174\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 176\\n .tg_load_avg : 2479\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497476.091236\\n .se->vruntime : 11749.989153\\n .se->sum_exec_runtime : 4538.688206\\n .se->load.weight : 103551\\n .se->avg.load_avg : 17\\n .se->avg.util_avg : 174\\n .se->avg.runnable_avg : 174\\n\\ncfs_rq[7]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 11749.989153\\n .avg_vruntime : 11749.989153\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 17\\n .runnable_avg : 174\\n .util_avg : 174\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 17\\n .tg_load_avg : 732\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497476.091236\\n .se->vruntime : 21037.107324\\n .se->sum_exec_runtime : 4673.216259\\n .se->load.weight : 43744\\n .se->avg.load_avg : 7\\n .se->avg.util_avg : 174\\n .se->avg.runnable_avg : 174\\n\\ncfs_rq[7]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3606.225784\\n .avg_vruntime : 3606.225784\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497115.762106\\n .se->vruntime : 66184.003099\\n .se->sum_exec_runtime : 4247.201799\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 566.860264\\n .avg_vruntime : 566.860264\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497218.153282\\n .se->vruntime : 66198.812475\\n .se->sum_exec_runtime : 585.160611\\n .se->load.weight : 33156\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 397.911414\\n .avg_vruntime : 397.911414\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497218.216670\\n .se->vruntime : 66198.816549\\n .se->sum_exec_runtime : 408.170927\\n .se->load.weight : 64567\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 52.151449\\n .avg_vruntime : 52.151449\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497129.073239\\n .se->vruntime : 66184.250191\\n .se->sum_exec_runtime : 53.225227\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 25.730452\\n .avg_vruntime : 25.730452\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.815277\\n .se->vruntime : 66198.877049\\n .se->sum_exec_runtime : 27.260284\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 66198.877049\\n .avg_vruntime : 66198.877049\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497479.815277\\n .se->vruntime : 107608.478717\\n .se->sum_exec_runtime : 16059.245281\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 21037.107324\\n .avg_vruntime : 21037.107324\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 7\\n .runnable_avg : 174\\n .util_avg : 174\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 7\\n .tg_load_avg : 931\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497476.091236\\n .se->vruntime : 107608.418217\\n .se->sum_exec_runtime : 8802.771884\\n .se->load.weight : 19164\\n .se->avg.load_avg : 3\\n .se->avg.util_avg : 174\\n .se->avg.runnable_avg : 174\\n\\ncfs_rq[7]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 383.199617\\n .avg_vruntime : 383.199617\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 497449.453007\\n .se->vruntime : 107585.868216\\n .se->sum_exec_runtime : 387.779494\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 107608.491893\\n .avg_vruntime : 107608.491893\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 6\\n .runnable_avg : 176\\n .util_avg : 175\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[7]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[7]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S systemd 1 383.199617 E 386.187759 3.000000 3991.056069 4406 120 0.000000 3991.056069 0.000000 0.000000 0 0 /init.scope\\n S kthreadd 2 100764.923125 E 100767.859098 3.000000 6.873833 205 120 0.000000 6.873833 0.000000 0.000000 0 0 /\\n S cpuhp/7 57 8699.309454 E 8702.275668 3.000000 0.282413 26 120 0.000000 0.282413 0.000000 0.000000 0 0 /\\n S idle_inject/7 58 -1.048578 E 1.201422 2.250000 0.001352 3 49 0.000000 0.001352 0.000000 0.000000 0 0 /\\n S migration/7 59 3.384442 E 5.633801 2.250000 171.548927 184 0 0.000000 171.548927 0.000000 0.000000 0 0 /\\n S ksoftirqd/7 60 107464.531476 E 107467.379716 3.000000 18.337863 468 120 0.000000 18.337863 0.000000 0.000000 0 0 /\\n I kworker/7:0H 62 104628.465805 E 104628.500385 3.000000 9.475703 313 100 0.000000 9.475703 0.000000 0.000000 0 0 /\\n S kdevtmpfs 63 9325.916585 E 9328.878568 3.000000 8.686237 285 120 0.000000 8.686237 0.000000 0.000000 0 0 /\\n S kswapd0 91 0.799409 E 2.181565 3.000000 0.034879 3 120 0.000000 0.034879 0.000000 0.000000 0 0 /\\n Secryptfs-kthrea 92 -1.016388 E 1.982554 3.000000 0.003235 2 120 0.000000 0.003235 0.000000 0.000000 0 0 /\\n I kworker/7:1 99 107608.491893 E 107611.478717 3.000000 269.821830 2330 120 0.000000 269.821830 0.000000 0.000000 0 0 /\\n I kworker/7:1H 186 54.192213 E 54.226778 3.000000 0.130453 2 100 0.000000 0.130453 0.000000 0.000000 0 0 /\\n I kworker/7:2 196 64826.238662 E 64829.224947 3.000000 133.597384 774 120 0.000000 133.597384 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 220 260.331222 E 260.365822 3.000000 0.004276 2 100 0.000000 0.004276 0.000000 0.000000 0 0 /\\n S systemd-udevd 351 795.132127 E 797.132674 3.000000 1168.005347 2448 120 0.000000 1168.005347 0.000000 0.000000 0 0 /system.slice/systemd-udevd.service\\n I kworker/u16:6 449 105233.974044 E 105236.797656 3.000000 30.549253 679 120 0.000000 30.549253 0.000000 0.000000 0 0 /\\n Sirq/200-iwlwifi 543 3741.722959 E 3744.721790 3.000000 194.114558 1010 49 0.000000 194.114558 0.000000 0.000000 0 0 /\\n Ssystemd-timesyn 671 11.148111 E 14.012820 3.000000 65.946334 83 120 0.000000 65.946334 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n S gmain 932 5.984093 E 8.944402 3.000000 0.039691 1 120 0.000000 0.039691 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n Spower-profiles- 815 6.306037 E 8.958709 3.000000 42.592465 217 120 0.000000 42.592465 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 849 296.563492 E 299.451852 3.000000 336.107931 16267 120 0.000000 336.107931 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S pool-spawner 952 0.552605 E 2.408198 3.000000 0.084044 2 120 0.000000 0.084044 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S gmain 874 8.807278 E 11.798542 3.000000 0.044986 2 120 0.000000 0.044986 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S rs:main Q:Reg 956 25.730452 E 28.709173 3.000000 124.239181 2678 120 0.000000 124.239181 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S gdbus 1104 37.768442 E 39.540502 3.000000 25.778299 96 120 0.000000 25.778299 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S boltd 1085 23.517329 E 25.690659 3.000000 210.685483 1171 120 0.000000 210.685483 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S sysbox-fs 1120 -1.040991 E 1.951424 3.000000 0.113711 2 120 0.000000 0.113711 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sleep 1149 39.073787 E 39.604681 3.000000 7.280071 3 120 0.000000 7.280071 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1457 397.911414 E 400.908446 3.000000 107.715396 14123 120 0.000000 107.715396 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1493 0.604404 E 2.386227 3.000000 0.063206 3 120 0.000000 0.063206 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 1513 11.763534 E 14.743230 3.000000 12.527238 32 120 0.000000 12.527238 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1525 22.920219 E 25.873281 3.000000 11.380453 155 120 0.000000 11.380453 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sxdg-document-po 1548 22.929418 E 25.920219 3.000000 6.358220 29 120 0.000000 6.358220 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fuse mainloop 1567 19.595470 E 22.587394 3.000000 0.137316 5 120 0.000000 0.137316 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1558 18.304433 E 21.267038 3.000000 0.111080 2 120 0.000000 0.111080 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1607 3301.521958 E 3304.500149 3.000000 105.597955 89 120 0.000000 105.597955 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1665 387.715999 E 390.699088 3.000000 82.085644 1953 120 0.000000 82.085644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1673 0.023012 E 2.973127 3.000000 0.586838 20 120 0.000000 0.586838 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1703 404.236973 E 407.207709 3.000000 45.206785 1218 120 0.000000 45.206785 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1659 19.131514 E 22.099682 3.000000 1.546424 14 120 0.000000 1.546424 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S buildkitd 2818 12.785587 E 15.624806 3.000000 12.971388 33 120 0.000000 12.971388 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Sat-spi-bus-laun 3022 424.559544 E 427.521167 3.000000 3.389602 32 120 0.000000 3.389602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayla:traceq0 3268 365.997005 E 570.481954 3.000000 0.077355 4 139 0.000000 0.077355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3043 57.661466 E 60.641092 3.000000 4.306383 153 120 0.000000 4.306383 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gdbus 3073 207.807359 E 210.334322 3.000000 2.467237 14 120 0.000000 2.467237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3110 30.677526 E 33.625817 3.000000 0.075552 2 120 0.000000 0.075552 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3111 30.630162 E 33.591988 3.000000 0.038174 1 120 0.000000 0.038174 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3135 50.522322 E 53.477690 3.000000 0.080793 3 120 0.000000 0.080793 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3143 51.324937 E 54.279106 3.000000 0.083157 2 120 0.000000 0.083157 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3189 52.566712 E 55.538836 3.000000 0.112926 2 120 0.000000 0.112926 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3211 1467.846211 E 1470.663093 3.000000 19.246036 145 120 0.000000 19.246036 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-screensaver 3149 357.671192 E 360.642427 3.000000 5.256014 42 120 0.000000 5.256014 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3164 357.647615 E 360.580773 3.000000 4.749683 47 120 0.000000 4.749683 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3207 353.954110 E 356.900350 3.000000 0.139738 3 120 0.000000 0.139738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3291 223.408768 E 226.036502 3.000000 1.806394 7 120 0.000000 1.806394 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3343 3092.494350 E 3095.348483 3.000000 1.291563 13 120 0.000000 1.291563 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11:sh0 3385 419.506573 E 422.481074 3.000000 0.025499 1 120 0.000000 0.025499 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3392 424.607454 E 427.559544 3.000000 0.047910 1 120 0.000000 0.047910 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3370 394.943027 E 397.936848 3.000000 0.039410 2 120 0.000000 0.039410 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3380 419.140487 E 422.107152 3.000000 0.033335 1 120 0.000000 0.033335 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S systemd 3449 27.023024 E 28.860798 3.000000 755.385181 511 120 0.000000 755.385181 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S pipewire 3464 22.074172 E 25.016557 3.000000 16.001058 53 120 0.000000 16.001058 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3517 12.573708 E 15.568099 3.000000 0.023024 3 120 0.000000 0.023024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-document-po 3544 22.100524 E 25.096416 3.000000 5.893123 20 120 0.000000 5.893123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3557 22.144924 E 25.141339 3.000000 0.142775 5 120 0.000000 0.142775 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3558 22.141339 E 25.132316 3.000000 0.068673 3 120 0.000000 0.068673 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3598 3.360579 E 6.033303 3.000000 11.821224 56 120 0.000000 11.821224 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/7:3 3755 104454.365410 E 104457.340488 3.000000 16.941908 109 120 0.000000 16.941908 0.000000 0.000000 0 0 /\\n I kworker/7:0 5028 64826.231853 E 64829.229716 3.000000 0.008146 2 120 0.000000 0.008146 0.000000 0.000000 0 0 /\\n S docker 5102 27.814553 E 30.440931 3.000000 2.687934 20 120 0.000000 2.687934 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5129 38.486461 E 41.413433 3.000000 14.279948 330 120 0.000000 14.279948 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5130 32.710798 E 35.321772 3.000000 4.743828 75 120 0.000000 4.743828 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5214 396.628965 E 399.619883 3.000000 1.632861 6 120 0.000000 1.632861 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5216 396.205006 E 399.151410 3.000000 0.149899 4 120 0.000000 0.149899 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5217 396.329416 E 399.319519 3.000000 0.046450 2 120 0.000000 0.046450 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5218 396.450772 E 399.445603 3.000000 0.020033 2 120 0.000000 0.020033 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5219 396.731794 E 399.686069 3.000000 0.045725 1 120 0.000000 0.045725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5222 396.826857 E 399.811763 3.000000 0.015094 1 120 0.000000 0.015094 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5235 270.215607 E 273.195321 3.000000 2.769908 8 120 0.000000 2.769908 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5238 381.722352 E 384.707417 3.000000 3.484287 61 120 0.000000 3.484287 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5268 382.748296 E 385.548410 3.000000 3.158146 34 120 0.000000 3.158146 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_aof 5372 6.171250 E 9.150339 3.000000 0.020911 1 120 0.000000 0.020911 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S postgres 5289 117.159013 E 119.451687 3.000000 70.996204 134 120 0.000000 70.996204 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S docker-proxy 6328 549.309056 E 552.248047 3.000000 1.010855 13 120 0.000000 1.010855 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6178 362.549412 E 365.534457 3.000000 0.839896 6 120 0.000000 0.839896 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5457 284.338260 E 287.332839 3.000000 0.005421 1 120 0.000000 0.005421 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6179 383.770780 E 386.557348 3.000000 1.968910 8 120 0.000000 1.968910 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5562 2.778332 E 4.759018 3.000000 2.874720 9 120 0.000000 2.874720 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5567 0.289699 E 2.872177 3.000000 0.417522 2 120 0.000000 0.417522 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5601 910.364125 E 913.358635 3.000000 41.347394 21 120 0.000000 41.347394 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5662 1681.165612 E 1681.188384 3.000000 52.890599 17 120 0.000000 52.890599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5690 1759.655576 E 1761.689682 3.000000 32.986562 10 120 0.000000 32.986562 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5611 927.013891 E 930.004534 3.000000 30.958221 12 120 0.000000 30.958221 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5673 1716.676043 E 1719.667802 3.000000 47.953219 14 120 0.000000 47.953219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5698 1774.551283 E 1776.580995 3.000000 33.736341 12 120 0.000000 33.736341 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6950 3585.432725 E 3588.280345 3.000000 9.846769 66 120 0.000000 9.846769 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5635 1287.816586 E 1288.577374 3.000000 38.206043 11 120 0.000000 38.206043 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5636 1287.895610 E 1290.746600 3.000000 38.107591 11 120 0.000000 38.107591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5627 989.132258 E 992.064464 3.000000 56.892128 21 120 0.000000 56.892128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5682 1750.007994 E 1752.998981 3.000000 35.980149 10 120 0.000000 35.980149 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6344 3198.674402 E 3201.541368 3.000000 11.659960 15 120 0.000000 11.659960 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6348 3190.540404 E 3193.521302 3.000000 0.070215 3 120 0.000000 0.070215 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5647 1753.844207 E 1756.837808 3.000000 23.001512 8 120 0.000000 23.001512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5650 1495.354451 E 1498.348112 3.000000 23.003437 7 120 0.000000 23.003437 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5651 1498.355809 E 1501.345904 3.000000 25.997880 8 120 0.000000 25.997880 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5653 1499.385527 E 1502.375556 3.000000 27.015431 8 120 0.000000 27.015431 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5721 1803.013378 E 1806.006859 3.000000 29.898894 9 120 0.000000 29.898894 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5722 1807.064009 E 1810.054337 3.000000 33.945514 12 120 0.000000 33.945514 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6351 116.428855 E 119.105967 3.000000 7.747425 17 120 0.000000 7.747425 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 6956 4533.730836 E 4536.708903 3.000000 998.652546 583 120 0.000000 998.652546 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Sjemalloc_bg_thd 7048 3537.883854 E 3540.833650 3.000000 0.050204 1 120 0.000000 0.050204 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\n"}, "Docker Version": "Client: Docker Engine - Community\\n Version: 27.2.1\\n API version: 1.47\\n Go version: go1.22.7\\n Git commit: 9e34c9b\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Context: default\\n\\nServer: Docker Engine - Community\\n Engine:\\n Version: 27.2.1\\n API version: 1.47 (minimum version 1.24)\\n Go version: go1.22.7\\n Git commit: 8b539b8\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Experimental: false\\n containerd:\\n Version: 1.7.21\\n GitCommit: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc:\\n Version: 1.1.13\\n GitCommit: v1.1.13-0-g58aa920\\n docker-init:\\n Version: 0.19.0\\n GitCommit: de40ad0\\n", "Hardware Model": "Laptop", "Virtualization": "Unknown", "CPU Utilization": 1.2, "Hardware Vendor": "Framework", "Hyper Threading": "1", "Hardware Details": "framebook\\n description: Notebook\\n product: Laptop (FRANBMCP0A)\\n vendor: Framework\\n version: AA\\n serial: FRANBMCPAA1484005R\\n width: 64 bits\\n capabilities: smbios-3.3.0 dmi-3.3.0 smp vsyscall32\\n configuration: administrator_password=disabled boot=normal chassis=notebook family=FRANBMCP power-on_password=disabled sku=FRANBMCP0A uuid=1cd24d0f-5c53-ec11-810d-283616200463\\n *-core\\n description: Motherboard\\n product: FRANBMCP0A\\n vendor: Framework\\n physical id: 0\\n version: AA\\n serial: FRANBMCPAA1484005R\\n slot: *\\n *-firmware\\n description: BIOS\\n vendor: INSYDE Corp.\\n physical id: 0\\n version: 03.19\\n date: 05/29/2023\\n size: 128KiB\\n capacity: 12MiB\\n capabilities: pci upgrade shadowing cdboot bootselect int9keyboard int10video acpi usb biosbootspecification uefi\\n *-cpu\\n description: CPU\\n product: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\\n vendor: Intel Corp.\\n physical id: 4\\n bus info: cpu@0\\n version: 6.140.1\\n serial: To Be Filled By O.E.M.\\n slot: U3E1\\n size: 891MHz\\n capacity: 4200MHz\\n width: 64 bits\\n clock: 100MHz\\n capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect md_clear ibt flush_l1d arch_capabilities cpufreq\\n configuration: cores=4 enabledcores=4 microcode=184 threads=8\\n *-cache:0\\n description: L1 cache\\n physical id: 6\\n slot: L1 Cache\\n size: 128KiB\\n capacity: 128KiB\\n capabilities: synchronous internal write-back instruction\\n configuration: level=1\\n *-cache:1\\n description: L2 cache\\n physical id: 7\\n slot: L2 Cache\\n size: 5MiB\\n capacity: 5MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=2\\n *-cache:2\\n description: L3 cache\\n physical id: 8\\n slot: L3 Cache\\n size: 8MiB\\n capacity: 8MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=3\\n *-cache\\n description: L1 cache\\n physical id: 5\\n slot: L1 Cache\\n size: 192KiB\\n capacity: 192KiB\\n capabilities: synchronous internal write-back data\\n configuration: level=1\\n *-memory\\n description: System Memory\\n physical id: 14\\n slot: System board or motherboard\\n size: 32GiB\\n *-bank:0\\n description: [empty]\\n physical id: 0\\n slot: Controller0-ChannelA-DIMM0\\n *-bank:1\\n description: SODIMM DDR4 Synchronous 3200 MHz (0.3 ns)\\n product: CT32G4SFD832A.M16FF\\n vendor: Crucial Technology\\n physical id: 1\\n serial: E63FE743\\n slot: Controller1-ChannelA-DIMM0\\n size: 32GiB\\n width: 64 bits\\n clock: 3200MHz (0.3ns)\\n *-pci\\n description: Host bridge\\n product: 11th Gen Core Processor Host Bridge/DRAM Registers\\n vendor: Intel Corporation\\n physical id: 100\\n bus info: pci@0000:00:00.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n *-display\\n description: VGA compatible controller\\n product: TigerLake-LP GT2 [Iris Xe Graphics]\\n vendor: Intel Corporation\\n physical id: 2\\n bus info: pci@0000:00:02.0\\n logical name: /dev/fb0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb\\n configuration: depth=32 driver=i915 latency=0 mode=2256x1504 resolution=2256,1504 visual=truecolor xres=2256 yres=1504\\n resources: iomemory:600-5ff iomemory:400-3ff irq:204 memory:605c000000-605cffffff memory:4000000000-400fffffff ioport:3000(size=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff\\n *-generic:0\\n description: Signal processing controller\\n product: TigerLake-LP Dynamic Tuning Processor Participant\\n vendor: Intel Corporation\\n physical id: 4\\n bus info: pci@0000:00:04.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: driver=proc_thermal latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d180000-605d19ffff\\n *-pci:0\\n description: PCI bridge\\n product: 11th Gen Core Processor PCIe Controller\\n vendor: Intel Corporation\\n physical id: 6\\n bus info: pci@0000:00:06.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:126 memory:7a300000-7a3fffff\\n *-nvme\\n description: NVMe device\\n product: WDS100T1X0E-00AFY0\\n vendor: Sandisk Corp\\n physical id: 0\\n bus info: pci@0000:01:00.0\\n logical name: /dev/nvme0\\n version: 614900WD\\n serial: 22047A801405\\n width: 64 bits\\n clock: 33MHz\\n capabilities: nvme pm msi msix pciexpress nvm_express bus_master cap_list\\n configuration: driver=nvme latency=0 nqn=nqn.2018-01.com.wdc:nguid:E8238FA6BF53-0001-001B448B45A2BCF6 state=live\\n resources: irq:16 memory:7a300000-7a303fff\\n *-namespace:0\\n description: NVMe disk\\n physical id: 0\\n logical name: hwmon2\\n *-namespace:1\\n description: NVMe disk\\n physical id: 2\\n logical name: /dev/ng0n1\\n *-namespace:2\\n description: NVMe disk\\n physical id: 1\\n bus info: nvme@0:1\\n logical name: /dev/nvme0n1\\n size: 931GiB (1TB)\\n capabilities: gpt-1.00 partitioned partitioned:gpt\\n configuration: guid=45dd4e4e-5082-4f7b-926f-7bfbac3490ba logicalsectorsize=512 sectorsize=512 wwid=eui.e8238fa6bf530001001b448b45a2bcf6\\n *-volume:0 UNCLAIMED\\n description: Windows FAT volume\\n vendor: MSDOS5.0\\n physical id: 1\\n bus info: nvme@0:1,1\\n version: FAT32\\n serial: 74bd-e763\\n size: 95MiB\\n capacity: 99MiB\\n capabilities: boot fat initialized\\n configuration: FATs=2 filesystem=fat name=EFI system partition\\n *-volume:1\\n description: reserved partition\\n vendor: Windows\\n physical id: 2\\n bus info: nvme@0:1,2\\n logical name: /dev/nvme0n1p2\\n serial: 0ea6d81a-270e-4676-b42f-41e3e89d8733\\n capacity: 15MiB\\n capabilities: nofs\\n configuration: name=Microsoft reserved partition\\n *-volume:2\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 3\\n bus info: nvme@0:1,3\\n logical name: /dev/nvme0n1p3\\n version: 3.1\\n serial: c851c6e2-393b-f34f-a874-3f47e3b4d22a\\n size: 465GiB\\n capacity: 465GiB\\n capabilities: ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:22:01 filesystem=ntfs name=Basic data partition state=clean\\n *-volume:3\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 4\\n bus info: nvme@0:1,4\\n logical name: /dev/nvme0n1p4\\n version: 3.1\\n serial: 4c29-9ee3\\n size: 523MiB\\n capacity: 523MiB\\n capabilities: boot precious ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:25:01 filesystem=ntfs state=clean\\n *-volume:4\\n description: EXT4 volume\\n vendor: Linux\\n physical id: 5\\n bus info: nvme@0:1,5\\n logical name: /dev/nvme0n1p5\\n logical name: /\\n logical name: /var/snap/firefox/common/host-hunspell\\n version: 1.0\\n serial: c6c4e62b-4240-443a-8feb-6001a7f1b7b5\\n size: 465GiB\\n capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized\\n configuration: created=2024-03-22 19:59:07 filesystem=ext4 lastmountpoint=/ modified=2024-09-12 18:36:24 mount.fstype=ext4 mount.options=ro,noexec,noatime,errors=remount-ro mounted=2024-09-12 18:36:25 state=mounted\\n *-pci:1\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0\\n vendor: Intel Corporation\\n physical id: 7\\n bus info: pci@0000:00:07.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:127 ioport:4000(size=4096) memory:7c000000-881fffff ioport:6000000000(size=469762048)\\n *-pci:2\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1\\n vendor: Intel Corporation\\n physical id: 7.1\\n bus info: pci@0000:00:07.1\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:128 ioport:5000(size=4096) memory:6e000000-7a1fffff ioport:6020000000(size=469762048)\\n *-pci:3\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2\\n vendor: Intel Corporation\\n physical id: 7.2\\n bus info: pci@0000:00:07.2\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:129 ioport:6000(size=4096) memory:60000000-6c1fffff ioport:6040000000(size=469762048)\\n *-pci:4\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3\\n vendor: Intel Corporation\\n physical id: 7.3\\n bus info: pci@0000:00:07.3\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:130 ioport:7000(size=4096) memory:52000000-5e1fffff ioport:6060000000(size=469762048)\\n *-generic:1 UNCLAIMED\\n description: System peripheral\\n product: GNA Scoring Accelerator module\\n vendor: Intel Corporation\\n physical id: 8\\n bus info: pci@0000:00:08.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff memory:605d1d8000-605d1d8fff\\n *-generic:2\\n description: Signal processing controller\\n product: Tigerlake Telemetry Aggregator Driver\\n vendor: Intel Corporation\\n physical id: a\\n bus info: pci@0000:00:0a.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress pm cap_list\\n configuration: driver=intel_vsec latency=0\\n resources: iomemory:600-5ff irq:0 memory:605d1c0000-605d1c7fff\\n *-usb:0\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 USB Controller\\n vendor: Intel Corporation\\n physical id: d\\n bus info: pci@0000:00:0d.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: iomemory:600-5ff irq:148 memory:605d1b0000-605d1bffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@1\\n logical name: usb1\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=1 speed=480Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@2\\n logical name: usb2\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-usb:1\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #0\\n vendor: Intel Corporation\\n physical id: d.2\\n bus info: pci@0000:00:0d.2\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d140000-605d17ffff memory:605d1d7000-605d1d7fff\\n *-usb:2\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #1\\n vendor: Intel Corporation\\n physical id: d.3\\n bus info: pci@0000:00:0d.3\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d100000-605d13ffff memory:605d1d6000-605d1d6fff\\n *-communication:0\\n description: Serial controller\\n product: Tiger Lake-LP Integrated Sensor Hub\\n vendor: Intel Corporation\\n physical id: 12\\n bus info: pci@0000:00:12.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm 8250 bus_master cap_list\\n configuration: driver=intel_ish_ipc latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1a0000-605d1affff\\n *-usb:3\\n description: USB controller\\n product: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller\\n vendor: Intel Corporation\\n physical id: 14\\n bus info: pci@0000:00:14.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: irq:156 memory:7a400000-7a40ffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@3\\n logical name: usb3\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=12 speed=480Mbit/s\\n *-usb:0\\n description: Human interface device\\n product: HDMI Expansion Card\\n vendor: Framework\\n physical id: 1\\n bus info: usb@3:1\\n version: 0.00\\n serial: 11AD1D0001DB3E1540120B00\\n capabilities: usb-2.01\\n configuration: driver=usbhid maxpower=100mA speed=12Mbit/s\\n *-usb:1\\n description: Video\\n product: Laptop Camera\\n vendor: Generic\\n physical id: 7\\n bus info: usb@3:7\\n version: 0.21\\n serial: 200901010001\\n capabilities: usb-2.01\\n configuration: driver=uvcvideo maxpower=300mA speed=480Mbit/s\\n *-usb:2 UNCLAIMED\\n description: Generic USB device\\n product: Goodix USB2.0 MISC\\n vendor: Goodix Technology Co., Ltd.\\n physical id: 9\\n bus info: usb@3:9\\n version: 1.00\\n serial: UID7D62CCAE_XXXX_MOC_B0\\n capabilities: usb-2.00\\n configuration: maxpower=100mA speed=12Mbit/s\\n *-usb:3\\n description: Bluetooth wireless interface\\n product: AX210 Bluetooth\\n vendor: Intel Corp.\\n physical id: a\\n bus info: usb@3:a\\n version: 0.00\\n capabilities: bluetooth usb-2.01\\n configuration: driver=btusb maxpower=100mA speed=12Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@4\\n logical name: usb4\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-memory UNCLAIMED\\n description: RAM memory\\n product: Tiger Lake-LP Shared SRAM\\n vendor: Intel Corporation\\n physical id: 14.2\\n bus info: pci@0000:00:14.2\\n version: 20\\n width: 64 bits\\n clock: 33MHz (30.3ns)\\n capabilities: pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff memory:605d1cc000-605d1cffff memory:605d1d5000-605d1d5fff\\n *-serial:0\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #0\\n vendor: Intel Corporation\\n physical id: 15\\n bus info: pci@0000:00:15.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:27 memory:4017000000-4017000fff\\n *-serial:1\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #1\\n vendor: Intel Corporation\\n physical id: 15.1\\n bus info: pci@0000:00:15.1\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:40 memory:4017001000-4017001fff\\n *-serial:2\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #3\\n vendor: Intel Corporation\\n physical id: 15.3\\n bus info: pci@0000:00:15.3\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:30 memory:4017002000-4017002fff\\n *-communication:1\\n description: Communication controller\\n product: Tiger Lake-LP Management Engine Interface\\n vendor: Intel Corporation\\n physical id: 16\\n bus info: pci@0000:00:16.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=mei_me latency=0\\n resources: iomemory:600-5ff irq:191 memory:605d1d1000-605d1d1fff\\n *-pci:5\\n description: PCI bridge\\n product: Tiger Lake-LP PCI Express Root Port #10\\n vendor: Intel Corporation\\n physical id: 1d\\n bus info: pci@0000:00:1d.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:131 memory:7a200000-7a2fffff\\n *-network\\n description: Wireless interface\\n product: Wi-Fi 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak]\\n vendor: Intel Corporation\\n physical id: 0\\n bus info: pci@0000:aa:00.0\\n logical name: wlp170s0\\n version: 1a\\n serial: 00:93:37:96:a0:14\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\\n configuration: broadcast=yes driver=iwlwifi driverversion=6.8.0-44-generic firmware=86.fb5c9aeb.0 ty-a0-gf-a0-86.uc ip=192.168.179.3 latency=0 link=yes multicast=yes wireless=IEEE 802.11\\n resources: irq:17 memory:7a200000-7a203fff\\n *-isa\\n description: ISA bridge\\n product: Tiger Lake-LP LPC Controller\\n vendor: Intel Corporation\\n physical id: 1f\\n bus info: pci@0000:00:1f.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: isa bus_master\\n configuration: latency=0\\n *-pnp00:00\\n product: PnP device PNP0303\\n physical id: 0\\n capabilities: pnp\\n configuration: driver=i8042 kbd\\n *-pnp00:01\\n product: PnP device PNP0f03\\n physical id: 1\\n capabilities: pnp\\n configuration: driver=i8042 aux\\n *-pnp00:02\\n product: PnP device PNP0c02\\n physical id: 2\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:03\\n product: PnP device PNP0c02\\n physical id: 3\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:04\\n product: PnP device PNP0c02\\n physical id: 4\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:05\\n product: PnP device PNP0c02\\n physical id: 5\\n capabilities: pnp\\n configuration: driver=system\\n *-multimedia\\n description: Audio device\\n product: Tiger Lake-LP Smart Sound Technology Audio Controller\\n vendor: Intel Corporation\\n physical id: 1f.3\\n bus info: pci@0000:00:1f.3\\n logical name: card0\\n logical name: /dev/snd/controlC0\\n logical name: /dev/snd/hwC0D0\\n logical name: /dev/snd/hwC0D2\\n logical name: /dev/snd/pcmC0D0c\\n logical name: /dev/snd/pcmC0D0p\\n logical name: /dev/snd/pcmC0D3p\\n logical name: /dev/snd/pcmC0D7p\\n logical name: /dev/snd/pcmC0D8p\\n logical name: /dev/snd/pcmC0D9p\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=snd_hda_intel latency=32\\n resources: iomemory:600-5ff iomemory:600-5ff irq:205 memory:605d1c8000-605d1cbfff memory:605d000000-605d0fffff\\n *-input:0\\n product: HDA Intel PCH Mic\\n physical id: 0\\n logical name: input12\\n logical name: /dev/input/event9\\n *-input:1\\n product: HDA Intel PCH Headphone\\n physical id: 1\\n logical name: input13\\n logical name: /dev/input/event10\\n *-input:2\\n product: HDA Intel PCH HDMI/DP,pcm=3\\n physical id: 2\\n logical name: input14\\n logical name: /dev/input/event11\\n *-input:3\\n product: HDA Intel PCH HDMI/DP,pcm=7\\n physical id: 3\\n logical name: input15\\n logical name: /dev/input/event12\\n *-input:4\\n product: HDA Intel PCH HDMI/DP,pcm=8\\n physical id: 4\\n logical name: input16\\n logical name: /dev/input/event13\\n *-input:5\\n product: HDA Intel PCH HDMI/DP,pcm=9\\n physical id: 5\\n logical name: input17\\n logical name: /dev/input/event14\\n *-serial:3\\n description: SMBus\\n product: Tiger Lake-LP SMBus Controller\\n vendor: Intel Corporation\\n physical id: 1f.4\\n bus info: pci@0000:00:1f.4\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n configuration: driver=i801_smbus latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1d0000-605d1d00ff ioport:efa0(size=32)\\n *-serial:4\\n description: Serial bus controller\\n product: Tiger Lake-LP SPI Controller\\n vendor: Intel Corporation\\n physical id: 1f.5\\n bus info: pci@0000:00:1f.5\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: bus_master\\n configuration: driver=intel-spi latency=0\\n resources: irq:0 memory:50400000-50400fff\\n *-battery\\n description: Lithium Ion Battery\\n product: FRANBBAT\\n vendor: FRANBBATA112610BG3\\n physical id: 1\\n version: 2021/7/5\\n serial: 0194\\n slot: Front\\n configuration: voltage=0.0V\\n *-power UNCLAIMED\\n description: OEM Define 1\\n product: OEM Define 5\\n vendor: OEM Define 2\\n physical id: 2\\n version: OEM Define 6\\n serial: OEM Define 3\\n capacity: 75mWh\\n *-input:0\\n product: Lid Switch\\n physical id: 3\\n logical name: input0\\n logical name: /dev/input/event0\\n capabilities: platform\\n *-input:1\\n product: Power Button\\n physical id: 4\\n logical name: input1\\n logical name: /dev/input/event1\\n capabilities: platform\\n *-input:2\\n product: PIXA3854:00 093A:0274 Touchpad\\n physical id: 5\\n logical name: input10\\n logical name: /dev/input/event6\\n logical name: /dev/input/mouse1\\n capabilities: i2c\\n *-input:3\\n product: Video Bus\\n physical id: 6\\n logical name: input11\\n logical name: /dev/input/event8\\n capabilities: platform\\n *-input:4\\n product: AT Translated Set 2 keyboard\\n physical id: 7\\n logical name: input2\\n logical name: /dev/input/event2\\n logical name: input2::capslock\\n logical name: input2::numlock\\n logical name: input2::scrolllock\\n capabilities: i8042\\n *-input:5\\n product: ImExPS/2 Generic Explorer Mouse\\n physical id: 8\\n logical name: input4\\n logical name: /dev/input/event7\\n logical name: /dev/input/mouse2\\n capabilities: i8042\\n *-input:6\\n product: FRMW0001:00 32AC:0006 Wireless Radio Control\\n physical id: 9\\n logical name: input5\\n logical name: /dev/input/event3\\n capabilities: i2c\\n *-input:7\\n product: FRMW0001:00 32AC:0006 Consumer Control\\n physical id: a\\n logical name: input6\\n logical name: /dev/input/event4\\n capabilities: i2c\\n *-input:8\\n product: PIXA3854:00 093A:0274 Mouse\\n physical id: b\\n logical name: input9\\n logical name: /dev/input/event5\\n logical name: /dev/input/mouse0\\n capabilities: i2c\\n", "Operating System": "Ubuntu 24.04.1 LTS", "Scaling Governor": "powersave", "CPU Complete Dump": {"/sys/devices/system/cpu/online": "0-7\\n", "/sys/devices/system/cpu/uevent": "", "/sys/devices/system/cpu/offline": "\\n", "/sys/devices/system/cpu/present": "0-7\\n", "/sys/devices/system/cpu/isolated": "\\n", "/sys/devices/system/cpu/modalias": "cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n", "/sys/devices/system/cpu/possible": "0-7\\n", "/sys/devices/system/cpu/nohz_full": " (null)\\n", "/sys/devices/system/cpu/kernel_max": "8191\\n", "/sys/devices/system/cpu/smt/active": "1\\n", "/sys/devices/system/cpu/cpu0/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu1/online": "1\\n", "/sys/devices/system/cpu/cpu1/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu2/online": "1\\n", "/sys/devices/system/cpu/cpu2/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu3/online": "1\\n", "/sys/devices/system/cpu/cpu3/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu4/online": "1\\n", "/sys/devices/system/cpu/cpu4/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu5/online": "1\\n", "/sys/devices/system/cpu/cpu5/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu6/online": "1\\n", "/sys/devices/system/cpu/cpu6/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu7/online": "1\\n", "/sys/devices/system/cpu/cpu7/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/power/async": "disabled\\n", "/sys/devices/system/cpu/smt/control": "on\\n", "/sys/devices/system/cpu/power/control": "auto\\n", "/sys/devices/system/cpu/hotplug/states": " 0: offline\\n 1: threads:prepare\\n 2: perf:prepare\\n 3: perf/x86:prepare\\n 8: x86/mce:dead\\n 9: virtio/net:dead\\n 11: slub:dead\\n 13: mm/writeback:dead\\n 14: mm/vmstat:dead\\n 15: softirq:dead\\n 20: irq_poll:dead\\n 21: block/softirq:dead\\n 22: block/bio:dead\\n 23: acpi/cpu-drv:dead\\n 25: block/mq:dead\\n 26: fs/buffer:dead\\n 27: printk:dead\\n 28: mm/memctrl:dead\\n 29: lib/percpu_cnt:dead\\n 30: lib/radix:dead\\n 31: mm/page_alloc:pcp\\n 32: net/dev:dead\\n 34: iommu/iova:dead\\n 36: padata:dead\\n 38: random:prepare\\n 39: workqueue:prepare\\n 41: hrtimers:prepare\\n 43: x86/x2apic:prepare\\n 44: smpcfd:prepare\\n 45: relay:prepare\\n 47: RCU/tree:prepare\\n 55: base/topology:prepare\\n 58: trace/RB:prepare\\n 59: mm/zsmalloc:prepare\\n 63: timers:prepare\\n 65: fork:vm_stack_cache\\n 66: crash/cpuhp\\n 86: cpu:kick_ap\\n 87: cpu:bringup\\n 88: idle:dead\\n 89: ap:offline\\n 90: x86/cachectrl:starting\\n 91: sched:starting\\n 92: RCU/tree:dying\\n104: perf/x86:starting\\n106: perf/x86/cstate:starting\\n137: smpcfd:dying\\n138: hrtimers:dying\\n141: ap:online\\n142: cpu:teardown\\n145: kvm/cpu:online\\n146: sched:waitempty\\n147: smpboot/threads:online\\n148: irq/affinity:online\\n149: block/mq:online\\n151: x86/intel/epb:online\\n152: perf:online\\n153: perf/x86:online\\n154: perf/x86/intel/uncore:online\\n157: perf/x86/rapl:online\\n158: perf/x86/cstate:online\\n184: lockup_detector:online\\n185: workqueue:online\\n186: random:online\\n187: RCU/tree:online\\n188: base/cacheinfo:online\\n189: x86/splitlock\\n190: mm/writeback:online\\n191: mm/vmstat:online\\n192: padata:online\\n193: mm/compaction:online\\n194: io-wq/online\\n195: lib/percpu_cnt:online\\n196: idle/intel:online\\n197: acpi/cpu-drv:online\\n198: virtio/net:online\\n199: x86/therm:online\\n200: cpufreq:online\\n201: leds/trigger:starting\\n202: x86/mce:online\\n203: x86/microcode:online\\n204: x86/resctrl/cat:online:\\n205: printk:online\\n206: trace/hwlat:online\\n207: trace/osnoise:online\\n208: swap_slots_cache\\n209: x86/msr:online\\n210: powercap/rapl:online\\n211: perf/x86/intel/i915:online\\n212: powercap/rapl:online\\n213: hwmon/coretemp:online\\n214: thermal/x86_pkg:online\\n215: platform/x86/uncore-freq:online\\n232: sched:active\\n233: online\\n", "/sys/devices/system/cpu/cpu0/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu1/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu2/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu3/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu4/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu5/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu6/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu7/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu0/cache/uevent": "", "/sys/devices/system/cpu/cpu0/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu1/cache/uevent": "", "/sys/devices/system/cpu/cpu1/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu2/cache/uevent": "", "/sys/devices/system/cpu/cpu2/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu3/cache/uevent": "", "/sys/devices/system/cpu/cpu3/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu4/cache/uevent": "", "/sys/devices/system/cpu/cpu4/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu5/cache/uevent": "", "/sys/devices/system/cpu/cpu5/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu6/cache/uevent": "", "/sys/devices/system/cpu/cpu6/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu7/cache/uevent": "", "/sys/devices/system/cpu/cpu7/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu0/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu0/power/control": "auto\\n", "/sys/devices/system/cpu/cpu1/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu1/power/control": "auto\\n", "/sys/devices/system/cpu/cpu2/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu2/power/control": "auto\\n", "/sys/devices/system/cpu/cpu3/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu3/power/control": "auto\\n", "/sys/devices/system/cpu/cpu4/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu4/power/control": "auto\\n", "/sys/devices/system/cpu/cpu5/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu5/power/control": "auto\\n", "/sys/devices/system/cpu/cpu6/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu6/power/control": "auto\\n", "/sys/devices/system/cpu/cpu7/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu7/power/control": "auto\\n", "/sys/devices/system/cpu/cpu0/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu1/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu2/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu3/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu4/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu5/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu6/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu7/hotplug/target": "233\\n", "/sys/devices/system/cpu/intel_pstate/status": "active\\n", "/sys/devices/system/cpu/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/vulnerabilities/mds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu0/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu2/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu3/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu4/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu6/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu7/topology/die_id": "0\\n", "/sys/devices/system/cpu/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/vulnerabilities/l1tf": "Not affected\\n", "/sys/devices/system/cpu/cpu0/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu2/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu3/topology/core_id": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu6/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu7/topology/core_id": "3\\n", "/sys/devices/system/cpu/intel_pstate/no_turbo": "0\\n", "/sys/devices/system/cpu/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/vulnerabilities/srbds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu0/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu0/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu0/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu0/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu0/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu0/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu1/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu1/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu1/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu1/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu1/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu1/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu2/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu2/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu2/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu2/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu2/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu2/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu3/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu3/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu3/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu3/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu3/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu3/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu4/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu4/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu4/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu4/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu4/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu4/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu5/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu5/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu5/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu5/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu5/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu5/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu6/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu6/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu6/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu6/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu6/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu6/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu7/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu7/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu7/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu7/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu7/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu7/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpuidle/current_driver": "intel_idle\\n", "/sys/devices/system/cpu/intel_pstate/turbo_pct": "47\\n", "/sys/devices/system/cpu/cpu0/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu0/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu1/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu1/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu2/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu3/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu3/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu4/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu4/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu5/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu5/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu6/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu7/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu7/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu0/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu0/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/time": "62712\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/time": "19587515\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/time": "23599847\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/time": "414933286\\n", "/sys/devices/system/cpu/cpu0/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu1/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/time": "64048\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/time": "12617480\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/time": "11121695\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/time": "433585098\\n", "/sys/devices/system/cpu/cpu1/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu2/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/time": "58977\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/time": "13906545\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/time": "16504675\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/time": "429687308\\n", "/sys/devices/system/cpu/cpu2/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu3/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu3/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/time": "69625\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/time": "10779368\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/time": "9538751\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/time": "445863300\\n", "/sys/devices/system/cpu/cpu3/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpu4/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu4/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/time": "48588\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/time": "9079342\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/time": "7241393\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/time": "449900248\\n", "/sys/devices/system/cpu/cpu4/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu5/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/time": "59182\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/time": "10324865\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/time": "8904902\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/time": "449671709\\n", "/sys/devices/system/cpu/cpu5/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu6/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/time": "54784\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/time": "10574461\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/time": "8699972\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/time": "451682562\\n", "/sys/devices/system/cpu/cpu6/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu7/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu7/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/time": "66955\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/time": "10474764\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/time": "8559453\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/time": "447327553\\n", "/sys/devices/system/cpu/cpu7/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpuidle/current_governor": "menu\\n", "/sys/devices/system/cpu/intel_pstate/num_pstates": "39\\n", "/sys/devices/system/cpu/vulnerabilities/meltdown": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/retbleed": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/below": "1263\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/usage": "1404\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/above": "1357\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/below": "13109\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/usage": "64370\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/above": "1695\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/below": "12\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/usage": "25721\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/above": "31628\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/usage": "58401\\n", "/sys/devices/system/cpu/cpu0/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/below": "1570\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/usage": "1682\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/above": "1276\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/below": "6824\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/usage": "55291\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/above": "1157\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/below": "16\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/usage": "12200\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/above": "12466\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/usage": "31834\\n", "/sys/devices/system/cpu/cpu1/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/below": "1252\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/usage": "1414\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/above": "1903\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/below": "7160\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/usage": "60687\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/above": "2043\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/below": "11\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/usage": "18111\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/above": "9701\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/usage": "38733\\n", "/sys/devices/system/cpu/cpu2/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/below": "1574\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/usage": "1780\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/above": "2037\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/below": "5737\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/usage": "51294\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/above": "1382\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/below": "31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/usage": "10399\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/above": "7980\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/usage": "27409\\n", "/sys/devices/system/cpu/cpu3/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/below": "1532\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/usage": "1801\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/above": "1204\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/below": "5102\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/usage": "46528\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/above": "866\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/below": "15\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/usage": "7895\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/above": "4514\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/usage": "18379\\n", "/sys/devices/system/cpu/cpu4/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/below": "1445\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/usage": "1541\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/above": "1385\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/below": "5802\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/usage": "50037\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/above": "1180\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/below": "32\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/usage": "9672\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/above": "5439\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/usage": "18648\\n", "/sys/devices/system/cpu/cpu5/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/below": "1233\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/usage": "1333\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/above": "1831\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/below": "5588\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/usage": "51433\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/above": "1062\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/below": "15\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/usage": "9454\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/above": "4521\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/usage": "21736\\n", "/sys/devices/system/cpu/cpu6/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/below": "1549\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/usage": "1832\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/above": "1986\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/below": "5714\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/usage": "50817\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/above": "1079\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/below": "15\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/usage": "9309\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/above": "5263\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/usage": "21304\\n", "/sys/devices/system/cpu/cpu7/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/intel_pstate/max_perf_pct": "100\\n", "/sys/devices/system/cpu/intel_pstate/min_perf_pct": "9\\n", "/sys/devices/system/cpu/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu0/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu1/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu2/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu3/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu4/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu5/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu6/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu7/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v1": "Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v2": "Mitigation: Enhanced / Automatic IBRS; IBPB: conditional; RSB filling; PBRSB-eIBRS: SW sequence; BHI: SW loop, KVM: SW loop\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu0/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu1/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu2/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu3/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu4/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu5/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu6/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu7/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpuidle/available_governors": "ladder menu teo \\n", "/sys/devices/system/cpu/cpuidle/current_governor_ro": "menu\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/feedback_ctrs": "ref:134983448088 del:81316507663\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/feedback_ctrs": "ref:94803001152 del:59580894407\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/feedback_ctrs": "ref:88605357432 del:49376285422\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/feedback_ctrs": "ref:73314305976 del:40729478776\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/feedback_ctrs": "ref:72761789904 del:48415742388\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/feedback_ctrs": "ref:68356272744 del:41535765315\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/feedback_ctrs": "ref:61592302728 del:37415527396\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/feedback_ctrs": "ref:72593622312 del:44991807404\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpufreq/policy0/related_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/related_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/related_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/related_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/related_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/related_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/related_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/related_cpus": "7\\n", "/sys/devices/system/cpu/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpufreq/policy0/affected_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/affected_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/affected_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/affected_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/affected_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/affected_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/affected_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/affected_cpus": "7\\n", "/sys/devices/system/cpu/vulnerabilities/itlb_multihit": "Not affected\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu0/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu1/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu2/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu3/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu4/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu5/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu6/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu7/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy1/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy2/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy3/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy4/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy5/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy6/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy7/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/vulnerabilities/mmio_stale_data": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/tsx_async_abort": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq": "399127\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_cur_freq": "425088\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_cur_freq": "3847984\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_cur_freq": "2231491\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_cur_freq": "3889466\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu0/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/vulnerabilities/spec_store_bypass": "Mitigation: Speculative Store Bypass disabled via prctl\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu1/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu2/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu3/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu4/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu5/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu6/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu7/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_nonlinear_perf": "13\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/vulnerabilities/gather_data_sampling": "Mitigation: Microcode\\n", "/sys/devices/system/cpu/vulnerabilities/spec_rstack_overflow": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/vulnerabilities/reg_file_data_sampling": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us": "67911948\\n", "/sys/devices/system/cpu/cpu0/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us": "15846041\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/min_freq_khz": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_min_freq_khz": "400000\\n"}, "Docker Containers": "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES", "Network Interfaces": "2: wlp170s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1456 qdisc noqueue state UP group default qlen 1000\\n link/ether 00:93:37:96:a0:14 brd ff:ff:ff:ff:ff:ff\\n--\\n4: br-5358121b016d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:31:4c:7c:39 brd ff:ff:ff:ff:ff:ff\\n--\\n5: br-6e0ae77042d6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:29:4c:03:1e brd ff:ff:ff:ff:ff:ff\\n--\\n6: br-7688b5ca7e2d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:e5:22:19:30 brd ff:ff:ff:ff:ff:ff\\n--\\n7: br-9ba2a39b0b1e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:f5:74:c1:66 brd ff:ff:ff:ff:ff:ff\\n--\\n8: br-ce560083466a: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:a4:f4:58:34 brd ff:ff:ff:ff:ff:ff\\n--\\n9: br-17d7b4ff19e9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:40:0a:a9:6e brd ff:ff:ff:ff:ff:ff\\n--\\n10: br-b8fe670a4cd7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:15:10:5f:b5 brd ff:ff:ff:ff:ff:ff\\n--\\n11: br-c26dcd3569f9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:53:0c:b7:f6 brd ff:ff:ff:ff:ff:ff\\n--\\n13: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:2f:19:92:44 brd ff:ff:ff:ff:ff:ff\\n--\\n15: veth4b2531f@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default \\n link/ether 16:4d:d1:07:e9:34 brd ff:ff:ff:ff:ff:ff link-netnsid 0\\n--\\n27: br-cd08359ec224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:cb:56:8d:7d brd ff:ff:ff:ff:ff:ff\\n--\\n29: veth4f67909@if28: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether c2:8b:74:ce:4b:f2 brd ff:ff:ff:ff:ff:ff link-netnsid 2\\n--\\n31: veth3d72cc1@if30: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 56:6f:f8:d3:95:47 brd ff:ff:ff:ff:ff:ff link-netnsid 1\\n--\\n33: veth888843b@if32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 72:81:21:75:96:2a brd ff:ff:ff:ff:ff:ff link-netnsid 3\\n--\\n35: veth0c4fb2f@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 1e:1a:b4:b7:47:13 brd ff:ff:ff:ff:ff:ff link-netnsid 4\\n", "Current Clocksource": "tsc", "RAPL Energy Filtering": "0\\n", "Installed Python Packages": "aiohappyeyeballs==2.4.0\\naiohttp==3.10.3\\naiosignal==1.3.1\\nalembic==1.13.2\\nannotated-types==0.7.0\\nanybadge==1.14.0\\nanyio==4.4.0\\nattrs==24.2.0\\ncertifi==2024.8.30\\ncharset-normalizer==3.3.2\\nclick==8.1.7\\ncolorlog==6.8.2\\ndeepdiff==7.0.1\\ndnspython==2.6.1\\ndocker==7.1.0\\nemail_validator==2.2.0\\nfastapi==0.112.0\\nfastapi-cli==0.0.5\\nfrozenlist==1.4.1\\ngreenlet==3.1.0\\ngunicorn==23.0.0\\nh11==0.14.0\\nhiredis==3.0.0\\nhttpcore==1.0.5\\nhttptools==0.6.1\\nhttpx==0.27.2\\nidna==3.8\\nJinja2==3.1.4\\njoblib==1.4.2\\nMako==1.3.5\\nmarkdown-it-py==3.0.0\\nMarkupSafe==2.1.5\\nmdurl==0.1.2\\nmultidict==6.1.0\\nnumpy==2.0.1\\nnvidia-nccl-cu12==2.22.3\\noptuna==3.6.1\\nordered-set==4.1.0\\norjson==3.10.7\\npackaging==24.1\\npandas==2.2.2\\nplotext==5.2.8\\npsutil==6.0.0\\npsycopg==3.2.1\\npsycopg-binary==3.2.1\\npsycopg-pool==3.2.2\\npyarrow==17.0.0\\npydantic==2.9.1\\npydantic_core==2.23.3\\nPygments==2.18.0\\npyserial==3.5\\npython-dateutil==2.9.0.post0\\npython-dotenv==1.0.1\\npython-multipart==0.0.9\\npytz==2024.2\\nPyYAML==6.0.2\\nredis==5.0.8\\nrequests==2.32.3\\nrich==13.8.1\\nschema==0.7.7\\nscikit-learn==1.5.1\\nscipy==1.14.0\\nshellingham==1.5.4\\nsix==1.16.0\\nsniffio==1.3.1\\nSQLAlchemy==2.0.34\\nstarlette==0.37.2\\nthreadpoolctl==3.5.0\\ntqdm==4.66.5\\ntyper==0.12.5\\ntyping_extensions==4.12.2\\ntzdata==2024.1\\nurllib3==2.2.2\\nuvicorn==0.30.6\\nuvicorn-worker==0.2.0\\nuvloop==0.20.0\\nwatchfiles==0.24.0\\nwebsockets==13.0.1\\nxgboost==2.1.0\\nyarl==1.11.1\\n", "Installed System Packages": "Desired=Unknown/Install/Remove/Purge/Hold\\n| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend\\n|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\\n||/ Name Version Architecture Description\\n+++-=============================================-==========================================-============-===================================================================================\\nii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information\\nii acl 2.3.2-1build1 amd64 access control list - utilities\\nii adduser 3.137ubuntu1 all add and remove users and groups\\nii adwaita-icon-theme 46.0-1 all default icon theme of GNOME\\nii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files\\nii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files\\nii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files\\nii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA\\nii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs\\nii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn\'t go by time\\nii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version\\nii apparmor 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 user-space parser utility for AppArmor\\nii apport 2.28.1-0ubuntu3.1 all automatically generate crash reports for debugging\\nii apport-core-dump-handler 2.28.1-0ubuntu3.1 all Kernel core dump handler for Apport\\nii apport-gtk 2.28.1-0ubuntu3.1 all GTK+ frontend for the apport crash report system\\nii apport-symptoms 0.25 all symptom scripts for apport\\nii appstream 1.0.2-1build6 amd64 Software component metadata management\\nii apt 2.7.14build2 amd64 commandline package manager\\nii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads\\nii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads\\nii apt-utils 2.7.14build2 amd64 package management related utility programs\\nii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service\\nii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients\\nii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker\\nii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell\\nii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)\\nii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)\\nii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon\\nii baobab 46.0-1build1 amd64 GNOME disk usage analyzer\\nii base-files 13ubuntu10.1 amd64 Debian base system miscellaneous files\\nii base-passwd 3.6.3build1 amd64 Debian base system master password and group files\\nii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell\\nii bash-completion 1:2.11-8 all programmable completion for the bash shell\\nii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language\\nii bind9-dnsutils 1:9.18.28-0ubuntu0.24.04.1 amd64 Clients provided with BIND 9\\nii bind9-host 1:9.18.28-0ubuntu0.24.04.1 amd64 DNS Lookup Utility\\nii bind9-libs:amd64 1:9.18.28-0ubuntu0.24.04.1 amd64 Shared Libraries used by BIND 9\\nii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities\\nii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities\\nii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target\\nii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons\\nii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS\\nii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon\\nii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices\\nii boot-repair 4ppa2081 all Graphical tool to repair boot problems\\nii boot-sav 4ppa2081 all Librairies for Boot-Info, OS-uninstaller and Boot-repair\\nii boot-sav-extra 4ppa2081 all Extra librairies for OS-uninstaller and Boot-repair\\nii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)\\nii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF\\nii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display\\nii bsdextrautils 2.39.3-9ubuntu6.1 amd64 extra utilities from 4.4BSD-Lite\\nii bsdutils 1:2.39.3-9ubuntu6.1 amd64 basic utilities from 4.4BSD-Lite\\nii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation\\nii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages\\nii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs\\nii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities\\nii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities\\nii ca-certificates 20240203 all Common CA certificates\\nii ca-certificates-java 20240118 all Common CA certificates (JKS keystore)\\nii cloud-guest-utils 0.33-1 all cloud guest utilities\\nii cloud-init 24.2-0ubuntu1~24.04.2 all initialization and customization tool for cloud instances\\nii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon\\nii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files\\nii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions\\nii console-setup 1.226ubuntu1 all console font and keymap setup program\\nii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup\\nii containerd.io 1.7.21-1 amd64 An open and reliable container runtime\\nii coreutils 9.4-3ubuntu6 amd64 GNU core utilities\\nii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files\\nii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)\\nii cpp-11 11.4.0-9ubuntu1 amd64 GNU C preprocessor\\nii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor\\nii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu\\nii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture\\nii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2\\nii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon\\nii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon\'s configuration files\\nii cups 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface\\nii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed\\nii cups-bsd 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - BSD commands\\nii cups-client 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - client programs (SysV)\\nii cups-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - common files\\nii cups-core-drivers 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - driverless printing\\nii cups-daemon 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - daemon\\nii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package\\nii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing\\nii cups-ipp-utils 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities\\nii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges\\nii cups-ppdc 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities\\nii cups-server-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - server common files\\nii curl 8.5.0-2ubuntu10.3 amd64 command line tool for transferring data with URL syntax\\nii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell\\nii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)\\nii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)\\nii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)\\nii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)\\nii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)\\nii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)\\nii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator\\nii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities\\nii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end\\nii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service\\nii debconf 1.5.86ubuntu1 all Debian configuration management system\\nii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf\\nii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian\\nii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files\\nii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)\\nii dictionaries-common 1.29.7 all spelling dictionaries - common utilities\\nii diffutils 1:3.10-1build1 amd64 File comparison utilities\\nii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service\\nii distro-info 1.7build1 amd64 provides information about the distributions\' releases\\nii distro-info-data 0.60ubuntu0.1 all information about the distributions\' releases (data files)\\nii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder\\nii dmsetup 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme\\nii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key\\nii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable\\nii docbook-xml 4.5-12 all standard XML documentation system for software and systems\\nii docker-buildx-plugin 0.16.2-1~ubuntu.22.04~jammy amd64 Docker Buildx cli plugin.\\nii docker-ce 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker: the open-source application container engine\\nii docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine\\nii docker-ce-rootless-extras 5:27.2.1-1~ubuntu.22.04~jammy amd64 Rootless support for Docker.\\nii docker-compose-plugin 2.29.2-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.\\nii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems\\nii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system\\nii dpkg-dev 1.22.6ubuntu6.1 all Debian package development tools\\nii dracut-install 060+5-1ubuntu3.2 amd64 dracut is an event driven initramfs infrastructure (dracut-install)\\nii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities\\nii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends\\nii ed 1.20.1-1 amd64 classic UNIX line editor\\nii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager\\nii eject 2.39.3-9ubuntu6.1 amd64 ejects CDs and operates CD-Changers under Linux\\nii emacsen-common 3.0.5 all Common facilities for all emacsen\\nii enchant-2 2.3.3-2build2 amd64 Wrapper for various spell checker engines (binary programs)\\nii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program\\nii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files\\nii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings\\nii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer\\nii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files\\nii evolution-data-server 3.52.3-0ubuntu1 amd64 evolution database backend server\\nii evolution-data-server-common 3.52.3-0ubuntu1 all architecture independent files for Evolution Data Server\\nii fakeroot 1.33-1 amd64 tool for simulating superuser privileges\\nii fdisk 2.39.3-9ubuntu6.1 amd64 collection of partitioning utilities\\nii file 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers\\nii file-roller 44.3-0ubuntu1 amd64 archive manager for GNOME\\nii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs\\nii firefox 1:1snap1-0ubuntu5 amd64 Transitional package - firefox -> firefox snap\\nii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed\\nii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries\\nii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration\\nii fonts-beng 2:1.3 all Metapackage to install Bengali and Assamese fonts\\nii fonts-beng-extra 3.3.1-2 all TrueType fonts for Bengali language\\nii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters\\nii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters\\nii fonts-deva 2:1.4 all Meta package to install all Devanagari fonts\\nii fonts-deva-extra 3.0-6 all Free fonts for Devanagari script\\nii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)\\nii fonts-freefont-ttf 20211204+svn4273-2 all Freefont Serif, Sans and Mono Truetype fonts\\nii fonts-gargi 2.0-6 all OpenType Devanagari font\\nii fonts-gubbi 1.3-7 all Gubbi free font for Kannada script\\nii fonts-gujr 2:1.5 all Meta package to install all Gujarati fonts\\nii fonts-gujr-extra 1.0.1-2 all Free fonts for Gujarati script\\nii fonts-guru 2:1.3 all Meta package to install all Punjabi fonts\\nii fonts-guru-extra 2.0-5 all Free fonts for Punjabi language\\nii fonts-indic 2:1.4 all Meta package to install all Indian language fonts\\nii fonts-kalapi 1.0-5 all Kalapi Gujarati Unicode font\\nii fonts-knda 2:1.3 all Meta package for Kannada fonts\\nii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier\\nii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow\\nii fonts-lohit-beng-assamese 2.91.5-2 all Lohit TrueType font for Assamese Language\\nii fonts-lohit-beng-bengali 2.91.5-3 all Lohit TrueType font for Bengali Language\\nii fonts-lohit-deva 2.95.4-5 all Lohit TrueType font for Devanagari script\\nii fonts-lohit-gujr 2.92.4-4 all Lohit TrueType font for Gujarati Language\\nii fonts-lohit-guru 2.91.2-3 all Lohit TrueType font for Punjabi Language\\nii fonts-lohit-knda 2.5.4-3 all Lohit TrueType font for Kannada Language\\nii fonts-lohit-mlym 2.92.2-2 all Lohit TrueType font for Malayalam Language\\nii fonts-lohit-orya 2.91.2-2 all Lohit TrueType font for Oriya Language\\nii fonts-lohit-taml 2.91.3-2 all Lohit TrueType font for Tamil Language\\nii fonts-lohit-taml-classical 2.5.4-2 all Lohit Tamil TrueType fonts for Tamil script\\nii fonts-lohit-telu 2.5.5-2build1 all Lohit TrueType font for Telugu Language\\nii fonts-mlym 2:1.3 all Meta package to install all Malayalam fonts\\nii fonts-nakula 1.0-4 all Free Unicode compliant Devanagari font\\nii fonts-navilu 1.2-4 all Handwriting font for Kannada\\nii fonts-noto-cjk 1:20230817+repack1-3 all \\"No Tofu\\" font families with large Unicode coverage (CJK regular and bold)\\nii fonts-noto-color-emoji 2.042-1 all color emoji font from Google\\nii fonts-noto-core 20201225-2 all \\"No Tofu\\" font families with large Unicode coverage (core)\\nii fonts-noto-mono 20201225-2 all \\"No Tofu\\" monospaced font family with large Unicode coverage\\nii fonts-opensymbol 4:102.12+LibO24.2.5-0ubuntu0.24.04.2 all OpenSymbol TrueType font\\nii fonts-orya 2:1.3 all Meta package to install all Odia fonts\\nii fonts-orya-extra 2.0-6 all Free fonts for Odia script\\nii fonts-pagul 1.0-9 all Free TrueType font for the Sourashtra language\\nii fonts-sahadeva 1.0-5 all Free Unicode compliant Devanagari font\\nii fonts-samyak-deva 1.2.2-6 all Samyak TrueType font for Devanagari script\\nii fonts-samyak-gujr 1.2.2-6 all Samyak TrueType font for Gujarati language\\nii fonts-samyak-mlym 1.2.2-6 all Samyak TrueType font for Malayalam language\\nii fonts-samyak-taml 1.2.2-6 all Samyak TrueType font for Tamil language\\nii fonts-sarai 1.0-3 all truetype font for devanagari script\\nii fonts-sil-annapurna 2.000-2 all smart font for languages using Devanagari script\\nii fonts-smc 1:7.5 all Metapackage for various TrueType fonts for Malayalam Language\\nii fonts-smc-anjalioldlipi 7.1.2-2 all AnjaliOldLipi malayalam font\\nii fonts-smc-chilanka 1.540-2 all Chilanka malayalam font\\nii fonts-smc-dyuthi 3.0.2-2 all Dyuthi malayalam font\\nii fonts-smc-gayathri 1.200-1 all Gayathri Malayalam font\\nii fonts-smc-karumbi 1.1.2-2 all Karumbi malayalam font\\nii fonts-smc-keraleeyam 3.0.2-2 all Keraleeyam malayalam font\\nii fonts-smc-manjari 2.200-1 all Manjari malayalam font\\nii fonts-smc-meera 7.0.3-1 all Meera malayalam font\\nii fonts-smc-rachana 7.0.2-1build1 all Rachana malayalam font\\nii fonts-smc-raghumalayalamsans 2.2.1-1 all RaghuMalayalamSans malayalam font\\nii fonts-smc-suruma 3.2.3-1 all Suruma malayalam font\\nii fonts-smc-uroob 2.0.2-1 all Uroob malayalam font\\nii fonts-taml 2:1.4 all Meta package to install all Tamil fonts\\nii fonts-telu 2:1.3 all Meta package to install all Telugu fonts\\nii fonts-telu-extra 2.0-6 all Free fonts for Telugu script\\nii fonts-teluguvijayam 2.1-1 all TrueType fonts for Telugu script (te)\\nii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu\\nii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts\\nii fonts-yrsa-rasa 2.005-1 all Open-source, libre fonts for Latin + Gujarati\\nii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database\\nii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access\\nii freeipmi-common 1.6.13-3 all GNU implementation of the IPMI protocol - common files\\nii freeipmi-tools 1.6.13-3 amd64 GNU implementation of the IPMI protocol - tools\\nii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly\\nii ftp 20230507-2build3 all dummy transitional package for tnftp\\nii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)\\nii fwupd 1.9.24-1~24.04.1 amd64 Firmware update daemon\\nii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary\\nii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler\\nii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler\\nii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture\\nii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture\\nii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand\\nii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)\\nii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler\\nii gcc-11 11.4.0-9ubuntu1 amd64 GNU C compiler\\nii gcc-11-base:amd64 11.4.0-9ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler\\nii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture\\nii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture\\nii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)\\nii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)\\nii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger\\nii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool\\nii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager\\nii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service\\nii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library\\nii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system\\nii ghostscript 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF\\nii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService\\nii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita\\nii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)\\nii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)\\nii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4\\nii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library\\nii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components\\nii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library\\nii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library\\nii gir1.2-gdesktopenums-3.0:amd64 46.1-0ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas\\nii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library - GObject-Introspection\\nii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager\\nii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)\\nii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library\\nii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule\\nii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library\\nii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar\\nii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)\\nii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth\\nii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)\\nii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)\\nii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)\\nii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library\\nii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data\\nii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library\\nii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy\\nii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)\\nii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data\\nii gir1.2-javascriptcoregtk-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-javascriptcoregtk-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-mutter-14:amd64 46.2-1ubuntu0.24.04.1 amd64 GObject introspection data for Mutter\\nii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library\\nii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4\\nii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)\\nii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library\\nii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings\\nii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)\\nii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit\\nii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files\\nii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)\\nii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1\\nii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library\\nii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data\\nii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library\\nii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower\\nii gir1.2-vte-2.91:amd64 0.76.0-1ubuntu0.1 amd64 GObject introspection data for the VTE library\\nii gir1.2-webkit-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-webkit2-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library\\nii git 1:2.43.0-1ubuntu7.1 amd64 fast, scalable, distributed revision control system\\nii git-man 1:2.43.0-1ubuntu7.1 all fast, scalable, distributed revision control system (manual pages)\\nii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)\\nii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd\\nii glade2script 3.2.4~ppa23 all Glade interface engine for scripts\\nii glade2script-python3 3.2.4~ppa23 all Glade interface engine for scripts (Python3 version)\\nii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib\\nii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files\\nii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services\\nii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons\\nii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files\\nii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app\\nii gnome-calculator 1:46.1-1ubuntu1~24.04.1 amd64 GNOME desktop calculator\\nii gnome-characters 46.0-1build1 amd64 character map application\\nii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support\\nii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop\\nii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files\\nii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images\\nii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps\\nii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media\\nii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME\\nii gnome-initial-setup 46.2-1ubuntu0.24.04.1 amd64 Initial GNOME system setup helper\\nii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)\\nii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library\\nii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal\\nii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii gnome-online-accounts 3.50.4-0ubuntu2 amd64 service to manage online accounts for the GNOME desktop\\nii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop\\nii gnome-remote-desktop 46.3-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire\\nii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime\\nii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events\\nii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files\\nii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings\\nii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files\\nii gnome-shell 46.0-0ubuntu6~24.04.4 amd64 graphical shell for the GNOME desktop\\nii gnome-shell-common 46.0-0ubuntu6~24.04.4 all common files for the GNOME graphical shell\\nii gnome-shell-extension-appindicator 58-1 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell\\nii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell\\nii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell\\nii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1.1 all extension which adds a Windows-like snap assist to GNOME Shell\\nii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam\\nii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME\\nii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME\\nii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application\\nii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator\\nii gnome-text-editor 46.3-0ubuntu2 amd64 simple text editor for GNOME\\nii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine\\nii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files\\nii gnome-user-docs 46.0-1ubuntu1 all GNOME Help\\nii gnome-user-docs-de 46.0-1ubuntu1 all GNOME Help (German)\\nii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement\\nii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files\\nii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs\\nii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations\\nii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent\\nii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client\\nii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities\\nii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version\\nii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool\\nii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep\\nii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)\\nii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)\\nii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)\\nii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)\\nii grub-gfxpayload-lists 0.7build2 amd64 GRUB gfxpayload blacklist\\nii grub-pc 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)\\nii grub-pc-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)\\nii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)\\nii gsettings-desktop-schemas 46.1-0ubuntu1 all GSettings desktop-wide schemas\\nii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu\\nii gstreamer1.0-alsa:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugin for ALSA\\nii gstreamer1.0-gl:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for GL\\nii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)\\nii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit\\nii gstreamer1.0-pipewire:amd64 1.0.5-1ubuntu1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server\\nii gstreamer1.0-plugins-base:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins from the \\"base\\" set\\nii gstreamer1.0-plugins-base-apps 1.24.2-1ubuntu0.1 amd64 GStreamer helper programs from the \\"base\\" set\\nii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the \\"good\\" set\\nii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer\\nii gstreamer1.0-x:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for X11 and Pango\\nii gtk-update-icon-cache 3.24.41-4ubuntu1.1 amd64 icon theme caching utility\\nii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine\\nii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1.1 amd64 pixbuf-based theme for GTK 2\\nii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module\\nii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends\\nii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files\\nii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers\\nii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server\\nii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries\\nii gzip 1.12-1ubuntu3 amd64 GNU compression utilities\\nii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance\\nii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader\\nii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer\\nii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes\\nii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name\\nii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)\\nii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files\\nii humanity-icon-theme 0.6.16 all Humanity Icon theme\\nii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell\\nii hwdata 0.379-1 all hardware identification / configuration data\\nii ibus 1.5.29-2 amd64 Intelligent Input Bus - core\\nii ibus-data 1.5.29-2 all Intelligent Input Bus - data files\\nii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support\\nii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support\\nii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support\\nii ibus-table 1.17.4-2 all table engine for IBus\\nii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs\\nii ieee-data 20220827.1 all OUI and IAB listings\\nii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy\\nii im-config 0.57-2 all Input method configuration framework\\nii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client\\nii info 7.1-3build2 amd64 Standalone GNU Info documentation browser\\nii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed\\nii init-system-helpers 1.66ubuntu1 all helper tools for all init systems\\nii initramfs-tools 0.142ubuntu25.2 all generic modular initramfs generator (automation)\\nii initramfs-tools-bin 0.142ubuntu25.2 amd64 binaries used by initramfs-tools\\nii initramfs-tools-core 0.142ubuntu25.2 all generic modular initramfs generator (core tools)\\nii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem\\nii install-info 7.1-3build2 amd64 Manage installed documentation in info format\\nii intel-microcode 3.20240813.0ubuntu0.24.04.2 amd64 Processor microcode firmware for Intel CPUs\\nii ipmitool 1.8.19-7build2 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)\\nii ipp-usb 0.9.24-0ubuntu3.1 amd64 Daemon for IPP over USB printer support\\nii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools\\nii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT\\nii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts\\nii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host\\nii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations\\nii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool\\nii java-common 0.75+exp1 all Base package for Java runtimes\\nii javascript-common 11+nmu1 all Base support for JavaScript library packages\\nii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor\\nii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities\\nii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker\\nii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences\\nii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service\\nii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot\\nii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules\\nii language-pack-de 1:24.04+20240817 all translation updates for language German\\nii language-pack-de-base 1:24.04+20240817 all translations for language German\\nii language-pack-en 1:24.04+20240817 all translation updates for language English\\nii language-pack-en-base 1:24.04+20240817 all translations for language English\\nii language-pack-gnome-de 1:24.04+20240817 all GNOME translation updates for language German\\nii language-pack-gnome-de-base 1:24.04+20240817 all GNOME translations for language German\\nii language-pack-gnome-en 1:24.04+20240817 all GNOME translation updates for language English\\nii language-pack-gnome-en-base 1:24.04+20240817 all GNOME translations for language English\\nii language-selector-common 0.225 all Language selector for Ubuntu\\nii language-selector-gnome 0.225 all Language selector frontend for Ubuntu\\nii laptop-detect 0.16 all system chassis type checker\\nii less 590-2ubuntu2.1 amd64 pager program similar to more\\nii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library\\nii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library\\nii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries\\nii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library\\nii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones\\nii libaio1t64:amd64 0.3.113-6build1 amd64 Linux kernel AIO access library - shared library\\nii libalgorithm-diff-perl 1.201-1 all module to find differences between files\\nii libalgorithm-diff-xs-perl:amd64 0.04-8build3 amd64 module to find differences between files (XS accelerated)\\nii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data\\nii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)\\nii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library\\nii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library\\nii libapparmor1:amd64 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 changehat AppArmor library\\nii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services\\nii libapr1-dev 1.7.2-3.1build2 amd64 Apache Portable Runtime Library - Development Headers\\nii libapr1t64:amd64 1.7.2-3.1build2 amd64 Apache Portable Runtime Library\\nii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library\\nii libarchive13t64:amd64 3.7.2-2ubuntu0.1 amd64 Multi-format archive and compression library (shared library)\\nii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library\\nii libasan6:amd64 11.4.0-9ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers\\nii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications\\nii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library\\nii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components\\nii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library\\nii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library\\nii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge\\nii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library\\nii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit\\nii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)\\nii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions\\nii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions\\nii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library\\nii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library\\nii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files\\nii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing\\nii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework\\nii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library\\nii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files\\nii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library\\nii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi\'s embeddable mDNS/DNS-SD library\\nii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library\\nii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices\\nii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)\\nii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators\\nii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)\\nii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries\\nii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)\\nii libblkid-dev:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library - headers\\nii libblkid1:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library\\nii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev\\nii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev\\nii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev\\nii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev\\nii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev\\nii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev\\nii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev\\nii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev\\nii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices\\nii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack\\nii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library\\nii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization\\nii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading\\nii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)\\nii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)\\nii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library\\nii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)\\nii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library\\nii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions\\nii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations\\nii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes\\nii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime\\nii libc-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Binaries\\nii libc-dev-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Development binaries\\nii libc-devtools 2.39-0ubuntu8.3 amd64 GNU C Library: Development tools\\nii libc6:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Shared libraries\\nii libc6-dbg:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: detached debugging symbols\\nii libc6-dev:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Development Libraries and Header Files\\nii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library\\nii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl\\nii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)\\nii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library\\nii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)\\nii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library\\nii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)\\nii libcamel-1.2-64t64:amd64 3.52.3-0ubuntu1 amd64 Evolution MIME message handling library\\nii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library\\nii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra\\nii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds\\nii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra\\nii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds\\nii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library\\nii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)\\nii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)\\nii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)\\nii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB\\nii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs\\nii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction\\nii libcdio19t64:amd64 2.1.0-4.1ubuntu1.2 amd64 library to read and control CD-ROM\\nii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)\\nii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library\\nii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library\\nii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes\\nii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)\\nii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)\\nii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord\\nii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime\\nii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime\\nii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library\\nii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library\\nii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files\\nii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library\\nii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.1 amd64 disk encryption support - shared library\\nii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)\\nii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)\\nii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library\\nii libcups2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Core library\\nii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files\\nii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library\\nii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Raster image library\\nii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)\\nii libcurl4t64:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)\\nii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library\\nii libdata-dump-perl 1.25-1 all Perl module to help dump data structures\\nii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library\\nii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]\\nii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)\\nii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC\\nii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus\\nii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version\\nii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library\\nii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation\\nii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)\\nii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server\\nii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)\\nii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library\\nii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK\\nii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib\\nii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression\\nii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre\\nii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format\\nii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files\\nii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules\\nii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime\\nii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files\\nii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime\\nii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime\\nii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime\\nii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime\\nii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library\\nii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)\\nii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information\\nii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library\\nii libebackend-1.2-11t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libebook-1.2-21t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution address books\\nii libebook-contacts-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution contacts books\\nii libecal-2.0-3:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution calendars\\nii libedata-book-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution address books\\nii libedata-cal-2.0-2t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution calendars\\nii libedataserver-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedataserverui-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries\\nii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library\\nii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libegl-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library\\nii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support\\nii libei1:amd64 1.2.1-1 amd64 Emulated Input client library\\nii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library\\nii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files\\nii libenchant-2-2:amd64 2.3.3-2build2 amd64 Wrapper library for various spell checker engines (runtime libs)\\nii libencode-locale-perl 1.05-3 all utility to determine the locale encoding\\nii libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files\\nii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library\\nii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way\\nii libespeak-ng1:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: shared library\\nii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)\\nii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices\\nii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library\\nii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets\\nii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)\\nii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files\\nii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library\\nii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library\\nii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit\\nii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries\\nii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library\\nii libexttextcat-data 3.4.7-1build1 all Language detection library - data files\\nii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions\\nii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries\\nii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C\\nii libfdisk1:amd64 2.39.3-9ubuntu6.1 amd64 fdisk partitioning library\\nii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)\\nii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime\\nii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision\\nii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects\\nii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification\\nii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files\\nii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)\\nii libfile-listing-perl 6.16-1 all module to parse directory listings\\nii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types\\nii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library\\nii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library\\nii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files\\nii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime\\nii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library\\nii libfprint-2-2 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, shared libraries\\nii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, drivers shared libraries\\nii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX\\nii libfreeipmi17 1.6.13-3 amd64 GNU IPMI - libraries\\nii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)\\nii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)\\nii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files\\nii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm\\nii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers\\nii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)\\nii libfwupd2:amd64 1.9.24-1~24.04.1 amd64 Firmware update daemon library\\nii libgail-common:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- common modules\\nii libgail18t64:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- shared libraries\\nii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)\\nii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)\\nii libgbm1:amd64 24.0.9-0ubuntu0.1 amd64 generic buffer management API -- runtime\\nii libgcc-11-dev:amd64 11.4.0-9ubuntu1 amd64 GCC support library (development files)\\nii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)\\nii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library\\nii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks\\nii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks\\nii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks\\nii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library\\nii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library\\nii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files\\nii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries\\nii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version) \\nii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version) \\nii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library\\nii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library (thumbnailer)\\nii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 all GDK Pixbuf library - data files\\nii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)\\nii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library\\nii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service\\nii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim\\nii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library\\nii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)\\nii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)\\nii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data\\nii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform\\nii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support\\nii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules\\nii libgl1-mesa-dri:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules\\nii libglapi-mesa:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the GL API -- shared library\\nii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support\\nii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries\\nii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries\\nrc libglib2.0-0:amd64 2.72.4-0ubuntu2.3 amd64 GLib library of C routines\\nii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines\\nii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library\\nii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library\\nii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library\\nii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library\\nii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)\\nii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)\\nii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library\\nii libglx-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library\\nii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support\\nii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library\\nii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME\\nii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files\\nii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library\\nii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library\\nii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version\\nii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files\\nii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files\\nii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files\\nii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library\\nii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.2 amd64 GNU TLS library - main runtime library\\nii libgoa-1.0-0b:amd64 3.50.4-0ubuntu2 amd64 library for GNOME Online Accounts\\nii libgoa-1.0-common 3.50.4-0ubuntu2 all library for GNOME Online Accounts - common files\\nii libgoa-backend-1.0-2:amd64 3.50.4-0ubuntu2 amd64 backend library for GNOME Online Accounts\\nii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library\\nii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library\\nii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)\\nii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME\\nii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library\\nii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages\\nii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library\\nii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library\\nii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)\\nii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types\\nii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library\\nii libgs-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - ICC profiles\\nii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF - Library\\nii libgs10-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - common files\\nii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version\\nii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files\\nii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds\\nii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications\\nii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files\\nii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism\\nii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP\\nii libgstreamer-gl1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer GL libraries\\nii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer libraries from the \\"base\\" set\\nii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the \\"good\\" set\\nii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements\\nrc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library\\nii libgtk-3-0t64:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library\\nii libgtk-3-bin 3.24.41-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk-3-common 3.24.41-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library\\nii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library\\nii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library\\nii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library\\nrc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-bin 2.24.33-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk2.0-common 2.24.33-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library\\nii libgtkmm-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)\\nii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget\\nii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget\\nii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)\\nii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)\\nii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev\\nii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP\\nii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP\\nii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP\\nii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1\\nii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library\\nii libgweather-4-common 4.4.2-1build1 all GWeather common files\\nii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)\\nii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones\\nii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)\\nii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend\\nii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)\\nii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin\\nii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin\\nii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin\\nii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library\\nii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)\\nii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries\\nii libhtml-form-perl 6.11-1 all module that represents an HTML form element\\nii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats\\nii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents\\nii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML\\nii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees\\nii libhttp-cookies-perl 6.11-1 all HTTP cookie jars\\nii libhttp-daemon-perl 6.16-1 all simple http server class\\nii libhttp-date-perl 6.06-1 all module of date conversion routines\\nii libhttp-message-perl 6.45-1ubuntu1 all perl interface to HTTP style messages\\nii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation\\nii libhunspell-1.7-0:amd64 1.7.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)\\nii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library\\nii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library\\nii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)\\nii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)\\nii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library\\nii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode\\nii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications\\nii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library\\nii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)\\nii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access\\nii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library\\nii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library\\nii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices\\nii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser\\nii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks\\nii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library\\nii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection\\nii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets\\nii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)\\nii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library\\nii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library\\nii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics\\nii libipmiconsole2 1.6.13-3 amd64 GNU IPMI - Serial-over-Lan library\\nii libipmidetect0 1.6.13-3 amd64 GNU IPMI - IPMI node detection library\\nii libipsec-mb1 1.5-1build1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library\\nii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library\\nii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints\\nii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems\\nii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images\\nii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library\\nii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library\\nii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data\\nii libjavascriptcoregtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjavascriptcoregtk-6.0-1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries\\nii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries\\nii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library\\nii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library\\nii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group\'s JPEG runtime library (dependency package)\\nii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library\\nii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications\\nii libjs-sphinxdoc 7.2.6-6 all JavaScript support for Sphinx documentation\\nii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript\'s functional programming helper library\\nii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library\\nii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library\\nii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)\\nii libjudydebian1 1.0.5-5.1build1 amd64 C library for creating and accessing dynamic arrays\\nii libk5crypto3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Crypto Library\\nii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)\\nii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs\\nii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library\\nii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)\\nii libkrb5-3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries\\nii libkrb5support0:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Support library\\nii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library\\nii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data\\nii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages\\nii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)\\nii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library\\nii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)\\nii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)\\nii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)\\nii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries\\nii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries\\nii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library\\nii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library\\nii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library\\nii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl\\nii liblouis-data 3.29.0-1build1 all Braille translation library - data\\nii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs\\nii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities\\nii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data\\nii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs\\nii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)\\nii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool\\nii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)\\nii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)\\nii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)\\nii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4\\nii libluajit-5.1-2:amd64 2.1.0+git20231223.c525bcb+dfsg-1 amd64 Just in time compiler for Lua - library version\\nii libluajit-5.1-common 2.1.0+git20231223.c525bcb+dfsg-1 all Just in time compiler for Lua - common files\\nii liblwp-mediatypes-perl 6.04-2 all module to guess media type for a file or a URL\\nii liblwp-protocol-https-perl 6.13-1 all HTTPS driver for LWP::UserAgent\\nii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime\\nii liblzma5:amd64 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression library\\nii liblzo2-2:amd64 2.10-2build4 amd64 data compression library\\nii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using \\"magic\\" numbers (compiled magic file)\\nrc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs\\nii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library\\nii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library\\nii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol\\nii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports\\nii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line\\nii libmd0:amd64 1.1.0-2build1 amd64 message digest functions from BSD systems - shared library\\nii libmediaart-2.0-0:amd64 1.9.6-1build2 amd64 media art extraction and cache management library\\nii libmhash2:amd64 0.9.9.9-9build3 amd64 Library for cryptographic hashing and message authentication\\nii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries\\nii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library\\nii libmount-dev:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library - headers\\nii libmount1:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library\\nii libmozjs-115-0t64:amd64 115.10.0-1 amd64 SpiderMonkey JavaScript library\\nii libmp3lame0:amd64 3.100-6build1 amd64 MP3 encoding library\\nii libmpc3:amd64 1.3.1-1build1 amd64 multiple precision complex floating-point library\\nii libmpfr6:amd64 4.2.1-1build1 amd64 multiple precision floating-point computation\\nii libmpg123-0t64:amd64 1.32.5-1ubuntu1 amd64 MPEG layer 1/2/3 audio decoder (shared library)\\nii libmsgraph-0-1:amd64 0.2.1-0ubuntu3 amd64 library for accessing the Microsoft Graph API\\nii libmtdev1t64:amd64 1.1.6-1.1build1 amd64 Multitouch Protocol Translation Library - shared library\\nii libmtp-common 1.1.21-3.1build1 all Media Transfer Protocol (MTP) common files\\nii libmtp-runtime 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) runtime tools\\nii libmtp9t64:amd64 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) library\\nii libmutter-14-0:amd64 46.2-1ubuntu0.24.04.1 amd64 window manager library from the Mutter window manager\\nii libmysqlclient21:amd64 8.0.39-0ubuntu0.24.04.2 amd64 MySQL database client library\\nii libmythes-1.2-0:amd64 2:1.2.5-1build1 amd64 simple thesaurus library\\nii libnautilus-extension4:amd64 1:46.2-0ubuntu0.2 amd64 libraries for nautilus components - runtime version\\nii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling\\nii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)\\nii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol\\nii libnet-dbus-perl 1.2.0-2build3 amd64 Perl extension for the DBus bindings\\nii libnet-http-perl 6.23-1 all module providing low-level HTTP connection client\\nii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP\\nii libnet-ssleay-perl:amd64 1.94-1build4 amd64 Perl module for Secure Sockets Layer (SSL)\\nii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library\\nii libnetplan1:amd64 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration runtime library\\nii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)\\nii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik\'s Windowing Toolkit - text mode windowing with slang\\nii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library\\nii libnfs14:amd64 5.0.2-1build1 amd64 NFS client library (shared library)\\nii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library\\nii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library\\nii libnghttp2-14:amd64 1.59.0-1ubuntu0.1 amd64 library implementing HTTP/2 protocol (shared library)\\nii libnl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets\\nii libnl-genl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - generic netlink\\nii libnl-route-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - route interface\\nii libnm0:amd64 1.46.0-1ubuntu2 amd64 GObject-based client library for NetworkManager\\nii libnma-common 1.10.6-3build2 all NetworkManager GUI library - translations\\nii libnma-gtk4-0:amd64 1.10.6-3build2 amd64 NetworkManager GUI GTK4 library\\nii libnma0:amd64 1.10.6-3build2 amd64 NetworkManager GUI library\\nii libnotify-bin 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Utilities)\\nii libnotify4:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon\\nii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads\\nii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library\\nii libnss-mdns:amd64 0.15.1-4build1 amd64 NSS module for Multicast DNS name resolution\\nii libnss-systemd:amd64 255.4-1ubuntu8.4 amd64 nss module providing dynamic user and group name resolution\\nii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries\\nii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)\\nii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy\\nii libnvme1t64 1.8-3build1 amd64 NVMe management library (library)\\nii libogg0:amd64 1.3.5-3build1 amd64 Ogg bitstream library\\nii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library\\nii libopengl0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- OpenGL support\\nii libopenipmi0t64 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface - runtime\\nii libopenjp2-7:amd64 2.5.0-2build3 amd64 JPEG 2000 image compression/decompression library\\nii libopus0:amd64 1.4-1build1 amd64 Opus codec runtime library\\nii liborc-0.4-0t64:amd64 1:0.4.38-1ubuntu0.1 amd64 Library of Optimized Inner Loops Runtime Compiler\\nii liborcus-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents\\nii liborcus-parser-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents - parser library\\nii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime\\nii libpackagekit-glib2-18:amd64 1.2.8-2build3 amd64 Library for accessing PackageKit using GLib\\nii libpam-cap:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (PAM module)\\nii libpam-fprintd:amd64 1.94.3-1 amd64 PAM module for fingerprint authentication through fprintd\\nii libpam-gnome-keyring:amd64 46.1-2build1 amd64 PAM module to unlock the GNOME keyring upon login\\nii libpam-modules:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM\\nii libpam-modules-bin 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM - helper binaries\\nii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength\\nii libpam-runtime 1.5.3-5ubuntu5.1 all Runtime support for the PAM library\\nii libpam-sss:amd64 2.9.4-1.1ubuntu6.1 amd64 Pam module for the System Security Services Daemon\\nii libpam-systemd:amd64 255.4-1ubuntu8.4 amd64 system and service manager - PAM module\\nii libpam0g:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules library\\nii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangomm-2.48-1t64:amd64 2.52.0-1build1 amd64 C++ Wrapper for pango (shared libraries)\\nii libpangoxft-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)\\nii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics\\nii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library\\nii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture\\nii libpcaudio0:amd64 1.2-2build3 amd64 C API to different audio devices - shared library\\nii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)\\nii libpciaccess0:amd64 0.17-3build1 amd64 Generic PCI access library for X\\nii libpcre2-16-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files\\nii libpcre2-32-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 32 bit runtime files\\nii libpcre2-8-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files\\nii libpcre2-dev:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - development files\\nii libpcre2-posix3:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files\\nii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)\\nii libpeas-1.0-0:amd64 1.36.0-3build4 amd64 Application plugin library\\nii libpeas-common 1.36.0-3build4 all Application plugin library (common files)\\nii libperl5.38t64:amd64 5.38.2-3.2build2 amd64 shared Perl library\\nii libphonenumber8:amd64 8.12.57+ds-4.2build3 amd64 parsing/formatting/validating phone numbers\\nii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library\\nii libpipewire-0.3-0t64:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server\\nii libpipewire-0.3-common 1.0.5-1ubuntu1 all libraries for the PipeWire multimedia server - common files\\nii libpipewire-0.3-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - modules\\nii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo\\nii libpkcs11-helper1t64:amd64 1.29.0-2.1build2 amd64 library that simplifies the interaction with PKCS#11\\nii libpkgconf3:amd64 1.8.1-2build1 amd64 shared library for pkgconf\\nii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists\\nii libplymouth5:amd64 24.004.60-1ubuntu7 amd64 graphical boot animation and logger - shared libraries\\nii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)\\nii libpolkit-agent-1-0:amd64 124-2ubuntu1 amd64 polkit Authentication Agent API\\nii libpolkit-gobject-1-0:amd64 124-2ubuntu1 amd64 polkit Authorization API\\nii libpoppler-cpp0t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (CPP shared library)\\nii libpoppler-glib8t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (GLib-based shared library)\\nii libpoppler134:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library\\nii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters\\nii libportal-gtk4-1:amd64 0.7.1-5build5 amd64 Flatpak portal library for GTK 4 GUIs\\nii libportal1:amd64 0.7.1-5build5 amd64 Flatpak portal library - non-GUI part\\nii libppd2:amd64 2:2.0.0-0ubuntu4 amd64 OpenPrinting libppd - Shared library\\nii libppd2-common 2:2.0.0-0ubuntu4 all OpenPrinting libppd - Auxiliary files\\nii libpq5:amd64 16.4-0ubuntu0.24.04.2 amd64 PostgreSQL C client library\\nii libproc2-0:amd64 2:4.0.4-4ubuntu3 amd64 library for accessing process information from /proc\\nii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)\\nii libprotobuf32t64:amd64 3.21.12-8.2build1 amd64 protocol buffers C++ library\\nii libproxy1-plugin-gsettings:amd64 0.5.4-4build1 amd64 transitional package for libproxy GSettings plugin\\nii libproxy1-plugin-networkmanager:amd64 0.5.4-4build1 amd64 transitional package for libproxy NetworkManager plugin\\nii libproxy1v5:amd64 0.5.4-4build1 amd64 automatic proxy configuration management library (shared)\\nii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)\\nii libpulse-mainloop-glib0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries (glib support)\\nii libpulse0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries\\nii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)\\nii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation\\nii libpython3-dev:amd64 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii libpython3.12-dev:amd64 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (standard library, version 3.12)\\nii libpython3.12t64:amd64 3.12.3-1ubuntu0.1 amd64 Shared Python runtime library (version 3.12)\\nii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol\\nii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports\\nii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line\\nii libqpdf29t64:amd64 11.9.0-1.1build1 amd64 runtime library for PDF transformation/inspection software\\nii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol\\nii libquadmath0:amd64 14-20240412-0ubuntu1 amd64 GCC Quad-Precision Math Library\\nii libraptor2-0:amd64 2.0.16-3build3 amd64 Raptor 2 RDF syntax library\\nii libraqm0:amd64 0.10.1-1build1 amd64 Library for complex text layout\\nii librasqal3t64:amd64 0.9.33-2.1build1 amd64 Rasqal RDF query library\\nii libraw1394-11:amd64 2.1.2-2build3 amd64 library for direct access to IEEE 1394 bus (aka FireWire)\\nii librdf0t64:amd64 1.0.17-3.1ubuntu3 amd64 Redland Resource Description Framework (RDF) library\\nii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries\\nii libreoffice-common 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- arch-independent files\\nii libreoffice-core 4:24.2.5-0ubuntu0.24.04.2 amd64 office productivity suite -- arch-dependent files\\nii libreoffice-style-colibre 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- colibre symbol style\\nii libreoffice-style-yaru 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- Yaru symbol style\\nii libreoffice-uiconfig-common 4:24.2.5-0ubuntu0.24.04.2 all UI data (\\"config\\") for LibreOffice (\\"common\\" set)\\nii librest-1.0-0:amd64 0.9.1-6build3 amd64 REST service access library\\nii librevenge-0.0-0:amd64 0.0.5-3build1 amd64 Base Library for writing document interface filters\\nii libroc0.3:amd64 0.3.0+dfsg-7ubuntu2 amd64 real-time audio streaming over the network (shared library)\\nii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)\\nii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)\\nii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)\\nii librygel-core-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - core library\\nii librygel-db-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - db library\\nii librygel-renderer-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - renderer library\\nii librygel-server-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - server library\\nii libsamplerate0:amd64 0.2.2-4build1 amd64 Audio sample rate conversion library\\nii libsane-common 1.2.1-7build4 all API library for scanners -- documentation and support files\\nii libsane-hpaio:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP SANE backend for multi-function peripherals\\nii libsane1:amd64 1.2.1-7build4 amd64 API library for scanners\\nii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library\\nii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules\\nii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)\\nii libsbc1:amd64 2.0-1build1 amd64 Sub Band CODEC library - runtime\\nii libsctp-dev:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - development files\\nii libsctp1:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - shared library\\nii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter\\nii libsecret-1-0:amd64 0.21.4-1build3 amd64 Secret store\\nii libsecret-common 0.21.4-1build3 all Secret store (common files)\\nii libselinux1:amd64 3.5-2ubuntu2 amd64 SELinux runtime shared libraries\\nii libselinux1-dev:amd64 3.5-2ubuntu2 amd64 SELinux development headers\\nii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries\\nii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library\\nii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files\\nii libsensors-dev:amd64 1:3.6.0-9build1 amd64 lm-sensors development kit\\nii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors\\nii libsepol-dev:amd64 3.5-2build1 amd64 SELinux binary policy manipulation library and development files\\nii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies\\nii libsframe1:amd64 2.42-4ubuntu2 amd64 Library to handle the SFrame format (runtime library)\\nii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion\\nii libshout3:amd64 2.4.6-1build2 amd64 MP3/Ogg Vorbis broadcast streaming library\\nii libsigc++-3.0-0:amd64 3.6.0-2 amd64 type-safe Signal Framework for C++ - runtime\\nii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version\\nii libslirp0:amd64 4.7.0-1ubuntu3 amd64 General purpose TCP-IP emulator library\\nii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library\\nii libsmartcols1:amd64 2.39.3-9ubuntu6.1 amd64 smart column output alignment library\\nii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 shared library for communication with SMB/CIFS servers\\nii libsnapd-glib-2-1:amd64 1.64-0ubuntu5 amd64 GLib snapd library\\nii libsndfile1:amd64 1.2.2-1ubuntu5 amd64 Library for reading/writing audio files\\nii libsnmp-base 5.9.4+dfsg-1.1ubuntu3 all SNMP configuration script, MIBs and documentation\\nii libsnmp40t64:amd64 5.9.4+dfsg-1.1ubuntu3 amd64 SNMP (Simple Network Management Protocol) library\\nii libsonic0:amd64 0.2.0-13build1 amd64 Simple library to speed up or slow down speech\\nii libsoup-2.4-1:amd64 2.74.3-6ubuntu1 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-0:amd64 3.4.4-5build2 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-common 3.4.4-5build2 all HTTP library implementation in C -- Common files\\nii libsoup2.4-common 2.74.3-6ubuntu1 all HTTP library implementation in C -- Common files\\nii libsource-highlight-common 3.1.9-4.3build1 all architecture-independent files for source highlighting library\\nii libsource-highlight4t64:amd64 3.1.9-4.3build1 amd64 source highlighting library\\nii libspa-0.2-bluetooth:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - bluetooth plugins\\nii libspa-0.2-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server Simple Plugin API - modules\\nii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents\\nii libspeechd2:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Shared libraries\\nii libspeex1:amd64 1.2.1-2ubuntu2 amd64 The Speex codec runtime library\\nii libspeexdsp1:amd64 1.2.1-1ubuntu3 amd64 DSP library derived from speex\\nii libsqlite3-0:amd64 3.45.1-1ubuntu2 amd64 SQLite 3 shared library\\nii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library\\nii libssh-4:amd64 0.10.6-2build2 amd64 tiny C SSH library (OpenSSL flavor)\\nrc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libssl3t64:amd64 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libstartup-notification0:amd64 0.12-6build3 amd64 library for program launch feedback (shared library)\\nii libstdc++-13-dev:amd64 13.2.0-23ubuntu4 amd64 GNU Standard C++ Library v3 (development files)\\nii libstdc++6:amd64 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3\\nii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval\\nii libsynctex2:amd64 2023.20230311.66589-9build3 amd64 TeX Live: SyncTeX parser library\\nii libsysmetrics1:amd64 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics - shared lib\\nii libsystemd-shared:amd64 255.4-1ubuntu8.4 amd64 systemd shared private library\\nii libsystemd0:amd64 255.4-1ubuntu8.4 amd64 systemd utility library\\nii libtag1v5:amd64 1.13.1-1build1 amd64 audio meta-data library\\nii libtag1v5-vanilla:amd64 1.13.1-1build1 amd64 audio meta-data library - vanilla flavour\\nii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator\\nii libtasn1-6:amd64 4.19.0-3build1 amd64 Manage ASN.1 structures (runtime)\\nii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files\\nii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library\\nii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process\\nii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library\\nii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal\\nii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl\\nii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap\\nii libthai-data 0.1.29-2build1 all Data files for Thai language support library\\nii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library\\nii libtheora0:amd64 1.1.1+dfsg.1-16.1build3 amd64 Theora Video Compression Codec\\nii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays\\nii libtiff6:amd64 4.5.1+git230720-4ubuntu2.2 amd64 Tag Image File Format (TIFF) library\\nii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information\\nii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling\\nii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files\\nii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library\\nii libtotem-plparser-common 3.26.6-1build5 all Totem Playlist Parser library - common files\\nii libtotem-plparser18:amd64 3.26.6-1build5 amd64 Totem Playlist Parser library - runtime files\\nii libtraceevent1:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (shared library)\\nii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (plugins)\\nii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)\\nii libtracker-sparql-3.0-0:amd64 3.7.1-1build1 amd64 metadata database, indexer and search tool - library\\nii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch\\nii libtsan0:amd64 11.4.0-9ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtsan2:amd64 14-20240412-0ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-rc0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-libtpms0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-spi-helper0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tctildr0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtwolame0:amd64 0.4.0-2build3 amd64 MPEG Audio Layer 2 encoding library\\nii libu2f-udev 1.1.10-3build3 all Universal 2nd Factor (U2F) — transitional package\\nii libubsan1:amd64 14-20240412-0ubuntu1 amd64 UBSan -- undefined behaviour sanitizer (runtime)\\nii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library\\nii libudev1:amd64 255.4-1ubuntu8.4 amd64 libudev shared library\\nii libudisks2-0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2\\nii libunistring5:amd64 1.1-2build1 amd64 Unicode string library for C\\nii libunity-protocol-private0:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - private library\\nii libunity-scopes-json-def-desktop 7.1.4+19.04.20190319-6build4 all binding to get places into the launcher - desktop def file\\nii libunity9:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - shared library\\nii libuno-cppu3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU public library\\nii libuno-cppuhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU helper library\\nii libuno-purpenvhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- \\"purpose environment\\" helper\\nii libuno-sal3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL public library\\nii libuno-salhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library\\nii libunwind8:amd64 1.6.2-3build1 amd64 library to determine the call-chain of a program - runtime\\nii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library\\nii liburi-perl 5.27-1 all module to manipulate and access URI strings\\nii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library\\nii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library\\nii libuuid1:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library\\nii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library\\nii libv4l-0t64:amd64 1.26.1-4build3 amd64 Collection of video4linux support libraries\\nii libv4lconvert0t64:amd64 1.26.1-4build3 amd64 Video4linux frame format conversion library\\nii libvisual-0.4-0:amd64 0.4.2-2build1 amd64 audio visualization framework\\nii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases\\nii libvorbis0a:amd64 1.3.7-1build3 amd64 decoder library for Vorbis General Audio Compression Codec\\nii libvorbisenc2:amd64 1.3.7-1build3 amd64 encoder library for Vorbis General Audio Compression Codec\\nii libvorbisfile3:amd64 1.3.7-1build3 amd64 high-level API for Vorbis General Audio Compression Codec\\nii libvpx9:amd64 1.14.0-1ubuntu2.1 amd64 VP8 and VP9 video codec (shared library)\\nii libvte-2.91-0:amd64 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime files\\nii libvte-2.91-common 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - common files\\nii libvulkan1:amd64 1.3.275.0-1build1 amd64 Vulkan loader library\\nii libwacom-common 2.10.0-2 all Wacom model feature query library (common files)\\nii libwacom9:amd64 2.10.0-2 amd64 Wacom model feature query library\\nii libwavpack1:amd64 5.6.0-1build1 amd64 audio codec (lossy and lossless) - library\\nii libwayland-client0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - client library\\nii libwayland-cursor0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - cursor library\\nii libwayland-egl1:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - EGL library\\nii libwayland-server0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - server library\\nii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba winbind client library\\nii libwebkit2gtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebkitgtk-6.0-4:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.\\nii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebrtc-audio-processing1:amd64 0.3.1-0ubuntu6 amd64 AudioProcessing module from the WebRTC project.\\nii libwhoopsie-preferences0 23build3 amd64 Ubuntu error tracker submission settings - shared library\\nii libwhoopsie0:amd64 0.2.77build3 amd64 Ubuntu error tracker submission - shared library\\nii libwinpr3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Windows Portable Runtime library\\nii libwireplumber-0.4-0:amd64 0.4.17-1ubuntu4 amd64 Shared libraries for WirePlumber\\nii libwmf-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion library\\nii libwmf-0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin\\nii libwmf0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin - transitional package\\nii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library\\nii libwnck-3-0:amd64 43.0-3build4 amd64 Window Navigator Construction Kit - runtime files\\nii libwnck-3-common 43.0-3build4 all Window Navigator Construction Kit - common files\\nii libwoff1:amd64 1.0.2-2build1 amd64 library for converting fonts to WOFF 2.0\\nii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema\'s TCP wrappers library\\nii libwww-perl 6.76-1 all simple and consistent interface to the world-wide web\\nii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions\\nii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library\\nii libx11-data 2:1.8.7-1build1 all X11 client-side library\\nii libx11-protocol-perl 0.56-9 all Perl module for the X Window System Protocol, version 11\\nii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library\\nii libxatracker2:amd64 24.0.9-0ubuntu0.1 amd64 X acceleration library -- runtime\\nii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library\\nii libxaw7:amd64 2:1.0.14-1build2 amd64 X11 Athena Widget library\\nii libxcb-damage0:amd64 1.15-1ubuntu2 amd64 X C Binding, damage extension\\nii libxcb-dri2-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri2 extension\\nii libxcb-dri3-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri3 extension\\nii libxcb-glx0:amd64 1.15-1ubuntu2 amd64 X C Binding, glx extension\\nii libxcb-icccm4:amd64 0.4.1-1.1build3 amd64 utility libraries for X C Binding -- icccm\\nii libxcb-image0:amd64 0.4.0-2build1 amd64 utility libraries for X C Binding -- image\\nii libxcb-keysyms1:amd64 0.4.0-1build4 amd64 utility libraries for X C Binding -- keysyms\\nii libxcb-present0:amd64 1.15-1ubuntu2 amd64 X C Binding, present extension\\nii libxcb-randr0:amd64 1.15-1ubuntu2 amd64 X C Binding, randr extension\\nii libxcb-render-util0:amd64 0.3.9-1build4 amd64 utility libraries for X C Binding -- render-util\\nii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension\\nii libxcb-res0:amd64 1.15-1ubuntu2 amd64 X C Binding, res extension\\nii libxcb-shape0:amd64 1.15-1ubuntu2 amd64 X C Binding, shape extension\\nii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension\\nii libxcb-sync1:amd64 1.15-1ubuntu2 amd64 X C Binding, sync extension\\nii libxcb-util1:amd64 0.4.0-1build3 amd64 utility libraries for X C Binding -- atom, aux and event\\nii libxcb-xfixes0:amd64 1.15-1ubuntu2 amd64 X C Binding, xfixes extension\\nii libxcb-xkb1:amd64 1.15-1ubuntu2 amd64 X C Binding, XKEYBOARD extension\\nii libxcb-xv0:amd64 1.15-1ubuntu2 amd64 X C Binding, xv extension\\nii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding\\nii libxcomposite1:amd64 1:0.4.5-1build3 amd64 X11 Composite extension library\\nii libxcursor1:amd64 1:1.2.1-1build1 amd64 X cursor management library\\nii libxcvt0:amd64 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator -- shared library\\nii libxdamage1:amd64 1:1.1.6-1build1 amd64 X11 damaged region extension library\\nii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library\\nii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library\\nii libxfixes3:amd64 1:6.0.0-2build1 amd64 X11 miscellaneous \'fixes\' extension library\\nii libxfont2:amd64 1:2.0.6-1build1 amd64 X11 font rasterisation library\\nii libxft2:amd64 2.3.6-1build1 amd64 FreeType-based font drawing library for X\\nii libxi6:amd64 2:1.8.1-1build1 amd64 X11 Input extension library\\nii libxinerama1:amd64 2:1.1.4-3build1 amd64 X11 Xinerama extension library\\nii libxkbcommon-x11-0:amd64 1.6.0-1build1 amd64 library to create keymaps with the XKB X11 protocol\\nii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library\\nii libxkbfile1:amd64 1:1.1.0-1build4 amd64 X11 keyboard file manipulation library\\nii libxkbregistry0:amd64 1.6.0-1build1 amd64 library to query available RMLVO\\nii libxklavier16:amd64 5.4-5build2 amd64 X Keyboard Extension high-level API\\nii libxml-parser-perl 2.47-1build3 amd64 Perl module for parsing XML files\\nii libxml-twig-perl 1:3.52-2 all Perl module for processing huge XML documents in tree mode\\nii libxml-xpathengine-perl 0.14-2 all re-usable XPath engine for DOM-like trees\\nii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3 amd64 GNOME XML library\\nii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library\\nii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library\\nii libxmlsec1t64-nss:amd64 1.2.39-5build2 amd64 Nss engine for the XML security library\\nii libxmu6:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous utility library\\nii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library\\nii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library\\nii libxrandr2:amd64 2:1.5.2-2build1 amd64 X11 RandR extension library\\nii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library\\nii libxres1:amd64 2:1.2.1-1build1 amd64 X11 Resource extension library\\nii libxshmfence1:amd64 1.3-1build5 amd64 X shared memory fences - shared library\\nii libxslt1.1:amd64 1.1.39-0exp1build1 amd64 XSLT 1.0 processing library - runtime library\\nii libxss1:amd64 1:1.2.3-1build3 amd64 X11 Screen Saver extension library\\nii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library\\nii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library\\nii libxtst6:amd64 2:1.2.3-1.1build1 amd64 X11 Testing -- Record extension library\\nii libxv1:amd64 2:1.0.11-1.1build1 amd64 X11 Video extension library\\nii libxvmc1:amd64 2:1.0.12-2build3 amd64 X11 Video extension library\\nii libxxf86dga1:amd64 2:1.1.5-1build1 amd64 X11 Direct Graphics Access extension library\\nii libxxf86vm1:amd64 1:1.1.4-1build4 amd64 X11 XFree86 video mode extension library\\nii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash\\nii libyajl2:amd64 2.1.0-5build1 amd64 Yet Another JSON Library\\nii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library\\nii libyelp0:amd64 42.2-1build2 amd64 Library for the GNOME help browser\\nii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm\\nii linux-base 4.5ubuntu9 all Linux image base package\\nii linux-firmware 20240318.git3b128b60-0ubuntu2.3 amd64 Firmware for Linux kernel drivers\\nii linux-generic 6.8.0-44.44 amd64 Complete Generic Linux kernel and headers\\nii linux-headers-6.8.0-40 6.8.0-40.40 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-6.8.0-44 6.8.0-44.44 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-generic 6.8.0-44.44 amd64 Generic Linux kernel headers\\nrc linux-image-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Signed kernel image generic\\nii linux-image-6.8.0-40-generic 6.8.0-40.40 amd64 Signed kernel image generic\\nii linux-image-6.8.0-44-generic 6.8.0-44.44 amd64 Signed kernel image generic\\nii linux-image-generic 6.8.0-44.44 amd64 Generic Linux kernel image\\nii linux-libc-dev:amd64 6.8.0-44.44 amd64 Linux Kernel Headers for development\\nrc linux-modules-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-sound-base 1.0.25+dfsg-0ubuntu7 all base package for ALSA and OSS sound systems\\nii linux-tools-6.8.0-40 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-44 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-common 6.8.0-44.44 all Linux kernel version specific tools for version 6.8.0\\nii lm-sensors 1:3.6.0-9build1 amd64 utilities to read temperature/voltage/fan sensors\\nii locales 2.39-0ubuntu8.3 all GNU C Library: National Language (locale) data [support]\\nii login 1:4.13+dfsg1-4ubuntu3 amd64 system login tools\\nii logrotate 3.21.0-2build1 amd64 Log rotation utility\\nii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file\\nii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality\\nii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)\\nii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration\\nii lsof 4.95.0-1build3 amd64 utility to list open files\\nii lto-disabled-list 47 all list of packages not to build with LTO\\nii mailcap 3.70+nmu1ubuntu1 all Debian\'s mailcap system, and support programs\\nii make 4.3-4.1build2 amd64 utility for directing compilation\\nii man-db 2.12.0-4build2 amd64 tools for reading manual pages\\nii manpages 6.7-2 all Manual pages about using a GNU/Linux system\\nii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development\\nii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language\\nii media-types 10.1.0 all List of standard media types and their usual file extension\\nii memtest86+ 7.00-1build1 amd64 stand-alone memory tester for x86 and x86-64\\nii mesa-vulkan-drivers:amd64 24.0.9-0ubuntu0.1 amd64 Mesa Vulkan graphics drivers\\nii mobile-broadband-provider-info 20230416-1 all database of mobile broadband service providers\\nii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems\\nii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys\\nii mongodb-database-tools 100.9.4 amd64 mongodb-database-tools package provides tools for working with the MongoDB server: \\nii mongodb-org-database-tools-extra 7.0.9 amd64 Extra MongoDB database tools\\nii mongodb-org-server 7.0.9 amd64 MongoDB database server\\nii mongodb-org-shell 7.0.9 amd64 MongoDB shell client\\nii mongodb-org-tools 7.0.9 amd64 MongoDB tools\\nii mount 2.39.3-9ubuntu6.1 amd64 tools for mounting and manipulating filesystems\\nii mousetweaks 3.32.0-4build2 amd64 mouse accessibility enhancements for the GNOME desktop\\nii mscompress 0.4-10build1 amd64 Microsoft \\"compress.exe/expand.exe\\" compatible (de)compressor\\nii msr-tools 1.3-5build1 amd64 Utilities for modifying MSRs from userspace\\nii mtr-tiny 0.95-1.1build2 amd64 Full screen ncurses traceroute tool\\nii mutter-common 46.2-1ubuntu0.24.04.1 all shared files for the Mutter window manager\\nii mutter-common-bin 46.2-1ubuntu0.24.04.1 amd64 shared programs for the Mutter window manager\\nii mysql-common 5.8+1.1.0build1 all MySQL database common files, e.g. /etc/mysql/my.cnf\\nii nano 7.2-2build1 amd64 small, friendly text editor inspired by Pico\\nii nautilus 1:46.2-0ubuntu0.2 amd64 file manager and graphical shell for GNOME\\nii nautilus-data 1:46.2-0ubuntu0.2 all data files for nautilus\\nii nautilus-extension-gnome-terminal:amd64 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application - Nautilus extension\\nii nautilus-sendto 3.8.6-7build2 amd64 easily send files via email from within Nautilus\\nii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions\\nii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages\\nii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions\\nii net-tools 2.10-0.1ubuntu4 amd64 NET-3 networking toolkit\\nii netbase 6.4 all Basic TCP/IP networking system\\nii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife\\nii netplan-generator 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration systemd-generator\\nii netplan.io 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration for various backends\\nii network-manager 1.46.0-1ubuntu2 amd64 network management framework (daemon and userspace tools)\\nii network-manager-config-connectivity-ubuntu 1.46.0-1ubuntu2 all NetworkManager configuration to enable connectivity checking\\nii network-manager-gnome 1.34.0-1ubuntu3 amd64 network management framework (GNOME frontend)\\nii network-manager-openvpn 1.10.2-4build2 amd64 network management framework (OpenVPN plugin core)\\nii network-manager-openvpn-gnome 1.10.2-4build2 amd64 network management framework (OpenVPN plugin GNOME GUI)\\nii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)\\nii network-manager-pptp-gnome 1.2.12-3build2 amd64 network management framework (PPTP plugin GNOME GUI)\\nii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes\\nii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project\\nii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE\\nii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool\\nii openipmi 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface (for servers)\\nii openjdk-17-jre-headless:amd64 17.0.12+7-1ubuntu2~24.04 amd64 OpenJDK Java runtime, using Hotspot JIT (headless)\\nii openprinting-ppds 20230202-1 all OpenPrinting printer support - PostScript PPD files\\nii openssh-client 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) client, for secure access to remote machines\\nii openssh-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) server, for secure access from remote machines\\nii openssh-sftp-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines\\nii openssl 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - cryptographic utility\\nii openvpn 2.6.9-1ubuntu4.1 amd64 virtual private network daemon\\nii orca 46.1-1ubuntu1 all Scriptable screen reader\\nii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives\\nii p11-kit 0.25.3-4ubuntu2.1 amd64 p11-glue utilities\\nii p11-kit-modules:amd64 0.25.3-4ubuntu2.1 amd64 p11-glue proxy and trust modules\\nii packagekit 1.2.8-2build3 amd64 Provides a package management service\\nii packagekit-tools 1.2.8-2build3 amd64 Provides PackageKit command-line tools\\nii parted 3.6-4build1 amd64 disk partition manipulator\\nii passwd 1:4.13+dfsg1-4ubuntu3 amd64 change and administer password and group data\\nii pastebinit 1.6.2-1 all command-line pastebin client\\nii patch 2.7.6-7build3 amd64 Apply a diff file to an original\\nii pci.ids 0.0~2024.03.31-1 all PCI ID Repository\\nii pciutils 1:3.10.0-2build1 amd64 PCI utilities\\nii pcmciautils 018-14build1 amd64 PCMCIA utilities for Linux 2.6\\nii perl 5.38.2-3.2build2 amd64 Larry Wall\'s Practical Extraction and Report Language\\nii perl-base 5.38.2-3.2build2 amd64 minimal Perl system\\nii perl-modules-5.38 5.38.2-3.2build2 all Core Perl modules\\nii perl-openssl-defaults:amd64 7build3 amd64 version compatibility baseline for Perl OpenSSL packages\\nii pigz 2.8-1 amd64 Parallel Implementation of GZip\\nii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG\\nii pinentry-gnome3 1.2.1-3ubuntu5 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG\\nii pipewire:amd64 1.0.5-1ubuntu1 amd64 audio and video processing engine multimedia server\\nii pipewire-alsa:amd64 1.0.5-1ubuntu1 amd64 PipeWire ALSA plugin, for ALSA applications to output via PipeWire\\nii pipewire-audio 1.0.5-1ubuntu1 all recommended set of PipeWire packages for a standard audio desktop use\\nii pipewire-bin 1.0.5-1ubuntu1 amd64 PipeWire multimedia server - programs\\nrc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire\\nii pipewire-pulse 1.0.5-1ubuntu1 amd64 PipeWire PulseAudio daemon\\nii pkexec 124-2ubuntu1 amd64 run commands as another user with polkit authorization\\nii pkgconf:amd64 1.8.1-2build1 amd64 manage compile and link flags for libraries\\nii pkgconf-bin 1.8.1-2build1 amd64 manage compile and link flags for libraries (binaries)\\nii plymouth 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer\\nii plymouth-label 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - label control\\nii plymouth-theme-spinner 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - spinner theme\\nii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme\\nii policykit-1 124-2ubuntu1 amd64 transitional package for polkitd and pkexec\\nii policykit-desktop-privileges 0.22 all run common desktop actions without password\\nii polkitd 124-2ubuntu1 amd64 framework for managing administrative policies and privileges\\nii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library\\nii poppler-utils 24.02.0-1ubuntu9.1 amd64 PDF utilities (based on Poppler)\\nii power-profiles-daemon 0.21-1 amd64 Makes power profiles handling available over D-Bus.\\nii powermgmt-base 1.37 all common utils for power management\\nii powertop 2.15-3build1 amd64 diagnose issues with power consumption and management\\nii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon\\nii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client\\nii printer-driver-brlaser 6-3build2 amd64 printer driver for (some) Brother laser printers\\nii printer-driver-c2esp 27-11ubuntu7 amd64 printer driver for Kodak ESP AiO color inkjet Series\\nii printer-driver-foo2zjs 20200505dfsg0-2ubuntu6 amd64 printer driver for ZjStream-based printers\\nii printer-driver-foo2zjs-common 20200505dfsg0-2ubuntu6 all printer driver for ZjStream-based printers - common files\\nii printer-driver-hpcups 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)\\nii printer-driver-m2300w 0.51-15build2 amd64 printer driver for Minolta magicolor 2300W/2400W color laser printers\\nii printer-driver-min12xxw 0.0.9-11build3 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW\\nii printer-driver-pnm2ppa 1.13+nondbs-0ubuntu10 amd64 printer driver for HP-GDI printers\\nii printer-driver-postscript-hp 3.23.12+dfsg0-0ubuntu5 amd64 HP Printers PostScript Descriptions\\nii printer-driver-ptouch 1.7-1build2 amd64 printer driver Brother P-touch label printers\\nii printer-driver-pxljr 1.4+repack0-6build2 amd64 printer driver for HP Color LaserJet 35xx/36xx\\nii printer-driver-sag-gdi 0.1-8 all printer driver for Ricoh Aficio SP 1000s/SP 1100s\\nii printer-driver-splix 2.0.0+svn315-7fakesync1ubuntu1 amd64 Driver for Samsung and Xerox SPL2 and SPLc laser printers\\nii procps 2:4.0.4-4ubuntu3 amd64 /proc file system utilities\\nii psmisc 23.7-1build1 amd64 utilities that use the proc file system\\nii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes\\nrc pulseaudio 1:15.99.1+dfsg1-1ubuntu2.2 amd64 PulseAudio sound server\\nii python-apt-common 2.7.7ubuntu3 all Python interface to libapt-pkg (locales)\\nii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files\\nii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii python3-apport 2.28.1-0ubuntu3.1 all Python 3 library for Apport crash report handling\\nii python3-apt 2.7.7ubuntu3 amd64 Python 3 interface to libapt-pkg\\nii python3-aptdaemon 1.1.1+bzr982-0ubuntu44 all Python 3 module for the server and client of aptdaemon\\nii python3-aptdaemon.gtk3widgets 1.1.1+bzr982-0ubuntu44 all Python 3 GTK+ 3 widgets to run an aptdaemon client\\nii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)\\nii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x\\nii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)\\nii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)\\nii python3-brlapi:amd64 6.6-4ubuntu5 amd64 Braille display access via BRLTTY - Python3 bindings\\nii python3-cairo 1.25.1-2build2 amd64 Python3 bindings for the Cairo vector graphics library\\nii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)\\nii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime\\nii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)\\nii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x\\nii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x\\nii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.\\nii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3\\nii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)\\nii python3-cups:amd64 2.0.1-5build6 amd64 Python3 bindings for CUPS\\nii python3-cupshelpers 1.5.18-1ubuntu9 all Python utility modules around the CUPS printing system\\nii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module\\nii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)\\nii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3\\nii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats\\nii python3-defer 1.0.6-2.1ubuntu1 all Small framework for asynchronous programming (Python 3)\\nii python3-dev 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii python3-distro 1.9.0-1 all Linux OS platform information API\\nii python3-distro-info 1.7build1 all information about distributions\' releases (Python 3 module)\\nii python3-distupgrade 1:24.04.23 all manage release upgrades\\nii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x\\nii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries\\nii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3\\nii python3-ibus-1.0 1.5.29-2 all Intelligent Input Bus - introspection overrides for Python (Python 3)\\nii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)\\nii python3-importlib-metadata 4.12.0-1 all library to access the metadata for a Python package - Python 3.x\\nii python3-jinja2 3.1.2-1ubuntu1.1 all small but fast and easy to use stand-alone template engine\\nii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x\\nii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x\\nii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)\\nii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token\\nii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)\\nii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)\\nii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs\\nii python3-louis 3.29.0-1build1 all Python bindings for liblouis\\nii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins\\nii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library\\nii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package\\nii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)\\nii python3-more-itertools 10.2.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)\\nii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)\\nii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x\\nii python3-netplan 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration Python bindings\\nii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3\\nii python3-olefile 0.46-3 all Python module to read/write MS OLE2 files\\nii python3-packaging 24.0-1 all core utilities for python3 packages\\nii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications\\nii python3-pil:amd64 10.2.0-1ubuntu1 amd64 Python Imaging Library (Python3)\\nii python3-pip 24.0+dfsg-1ubuntu1 all Python package installer\\nii python3-pip-whl 24.0+dfsg-1ubuntu1 all Python package installer (pip wheel)\\nii python3-pkg-resources 68.1.2-2ubuntu1 all Package Discovery and Resource Access using pkg_resources\\nii python3-problem-report 2.28.1-0ubuntu3.1 all Python 3 library to handle problem reports\\nii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3\\nii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3\\nii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x\\nii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python\\nii python3-requests 2.31.0+dfsg-1ubuntu1 all elegant and simple HTTP library for Python3, built for human beings\\nii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more\\nii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port\\nii python3-setuptools 68.1.2-2ubuntu1 all Python3 Distutils Enhancements\\nii python3-setuptools-whl 68.1.2-2ubuntu1 all Python Distutils Enhancements (wheel package)\\nii python3-six 1.16.0-4 all Python 2 and 3 compatibility library\\nii python3-software-properties 0.99.48 all manage the repositories that you install software from\\nii python3-speechd 0.12.0~rc2-2build3 all Python interface to Speech Dispatcher\\nii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd\\nii python3-tz 2024.1-2 all Python3 version of the Olson timezone database\\nii python3-uno 4:24.2.5-0ubuntu0.24.04.2 amd64 Python-UNO bridge\\nii python3-update-manager 1:24.04.6 all Python 3.x module for update-manager\\nii python3-urllib3 2.0.7-1 all HTTP library with thread-safe connection pooling for Python3\\nii python3-venv 3.12.3-0ubuntu2 amd64 venv module for python3 (default python3 version)\\nii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files\\nii python3-wheel 0.42.0-2 all built-package format for Python\\nii python3-xdg 0.28-2 all Python 3 library to access freedesktop.org standards\\nii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)\\nii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3\\nii python3-zipp 1.0.0-6ubuntu0.1 all pathlib-compatible Zipfile object wrapper - Python 3.x\\nrc python3.10-venv 3.10.12-1~22.04.5 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.10)\\nii python3.12 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (version 3.12)\\nii python3.12-dev 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii python3.12-minimal 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii python3.12-venv 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.12)\\nii readline-common 8.2-4build1 all GNU readline and history libraries, common files\\nii rfkill 2.39.3-9ubuntu6.1 amd64 tool for enabling and disabling wireless devices\\nii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions\\nii rsync 3.2.7-1ubuntu1 amd64 fast, versatile, remote (and local) file-copying tool\\nii rsyslog 8.2312.0-3ubuntu9 amd64 reliable system and kernel logging daemon\\nii rtkit 0.13-5build1 amd64 Realtime Policy and Watchdog Daemon\\nii rygel 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services\\nii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba core libraries\\nii sane-airscan 0.99.29-0ubuntu4 amd64 SANE backend for AirScan (eSCL) and WSD document scanner\\nii sane-utils 1.2.1-7build4 amd64 API library for scanners -- utilities\\nii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers\\nii seahorse 43.0-3build2 amd64 GNOME front end for GnuPG\\nii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX\\nii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text\\nii sensible-utils 0.0.22 all Utilities for sensible alternative selection\\nii session-migration 0.3.9build1 amd64 Tool to migrate in user session settings\\nii sgml-base 1.31 all SGML infrastructure and SGML catalog file support\\nii sgml-data 2.0.11+nmu1 all common SGML and XML data\\nii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec\\nii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)\\nii slirp4netns 1.2.1-1build2 amd64 User-mode networking for unprivileged network namespaces\\nii snapd 2.63.1+24.04 amd64 Daemon and tooling that enable snap packages\\nii software-properties-common 0.99.48 all manage the repositories that you install software from (common)\\nii software-properties-gtk 0.99.48 all manage the repositories that you install software from (gtk)\\nii sound-icons 0.1-8 all Sounds for speech enabled applications\\nii sound-theme-freedesktop 0.8-2ubuntu1 all freedesktop.org sound theme\\nii speech-dispatcher 0.12.0~rc2-2build3 amd64 Common interface to speech synthesizers\\nii speech-dispatcher-audio-plugins:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Audio output plugins\\nii speech-dispatcher-espeak-ng 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Espeak-ng output module\\nii spice-vdagent 0.22.1-4build3 amd64 Spice agent for Linux\\nii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems\\nii ssh-import-id 5.11-0ubuntu2 all securely retrieve an SSH public key and install it locally\\nii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL\\nii strace 6.8-0ubuntu2 amd64 System call tracer\\nii stress-ng 0.17.06-1build1 amd64 tool to load and stress a computer\\nii sudo 1.9.15p5-3ubuntu5 amd64 Provide limited super user privileges to specific users\\nii switcheroo-control 2.6-2build2 amd64 D-Bus service to check the availability of dual-GPU\\nii sysbench 1.0.20+ds-6build2 amd64 multi-threaded benchmark tool for database systems\\nii sysbox-ce 0.6.4.linux amd64 Sysbox Community Edition (CE) is a next-generation container runtime,\\nii syslinux-common 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 all collection of bootloaders (common)\\nii sysstat 12.6.1-2 amd64 system performance tools for Linux\\nii system-config-printer-common 1.5.18-1ubuntu9 all backend and the translation files for system-config-printer\\nii system-config-printer-udev 1.5.18-1ubuntu9 amd64 Utilities to detect and configure printers automatically\\nii systemd 255.4-1ubuntu8.4 amd64 system and service manager\\nii systemd-dev 255.4-1ubuntu8.4 all systemd development files\\nii systemd-hwe-hwdb 255.1.3 all udev rules for hardware enablement (HWE)\\nii systemd-oomd 255.4-1ubuntu8.4 amd64 userspace out-of-memory (OOM) killer\\nii systemd-resolved 255.4-1ubuntu8.4 amd64 systemd DNS resolver\\nii systemd-sysv 255.4-1ubuntu8.4 amd64 system and service manager - SysV compatibility symlinks\\nii systemd-timesyncd 255.4-1ubuntu8.4 amd64 minimalistic service to synchronize local time with NTP servers\\nii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities\\nii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility\\nii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell\\nii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell\\nii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer\\nii tecla 46.0-1build1 amd64 keyboard layout viewer for the GNOME desktop\\nii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch\\nii thermald 2.5.6-2build2 amd64 Thermal monitoring and controlling daemon\\nii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage\\nii tinyproxy 1.11.1-3 all Lightweight, non-caching, optionally anonymizing HTTP proxy\\nii tinyproxy-bin 1.11.1-3 amd64 Lightweight, non-caching, optionally anonymizing HTTP proxy (executable only)\\nii tnftp 20230507-2build3 amd64 enhanced ftp client\\nii tpm-udev 0.6ubuntu1 all udev rules for TPM modules\\nii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel\\nii tracker 3.7.1-1build1 amd64 metadata database, indexer and search tool\\nii tracker-extract 3.7.1-1build1 amd64 metadata database, indexer and search tool - metadata extractors\\nii tracker-miner-fs 3.7.1-1build1 amd64 metadata database, indexer and search tool - filesystem indexer\\nii tzdata 2024a-3ubuntu1.1 all time zone and daylight-saving time data\\nii ubuntu-advantage-desktop-daemon 1.11 amd64 Daemon to allow access to ubuntu-advantage via D-Bus\\nii ubuntu-desktop 1.539.1 amd64 Ubuntu desktop system\\nii ubuntu-desktop-minimal 1.539.1 amd64 Ubuntu desktop minimal system\\nii ubuntu-docs 24.04.2 all Ubuntu Desktop Guide\\nii ubuntu-drivers-common 1:0.9.7.6ubuntu3.1 amd64 Detect and install additional Ubuntu driver packages\\nii ubuntu-kernel-accessories 1.539.1 amd64 packages useful to install by default on systems with kernels\\nii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive\\nii ubuntu-minimal 1.539.1 amd64 Minimal core of Ubuntu\\nii ubuntu-mono 24.04-0ubuntu1 all Ubuntu Mono Icon theme\\nii ubuntu-pro-client 33.2~24.04.1 amd64 Management tools for Ubuntu Pro\\nii ubuntu-pro-client-l10n 33.2~24.04.1 amd64 Translations for Ubuntu Pro Client\\nii ubuntu-release-upgrader-core 1:24.04.23 all manage release upgrades\\nii ubuntu-release-upgrader-gtk 1:24.04.23 all manage release upgrades\\nii ubuntu-report 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics\\nii ubuntu-session 46.0-1ubuntu4 all Ubuntu session with GNOME Shell\\nii ubuntu-settings 24.04.4 all default settings for the Ubuntu desktop\\nii ubuntu-standard 1.539.1 amd64 Ubuntu standard system\\nii ubuntu-wallpapers 24.04.2 all Ubuntu Wallpapers\\nii ubuntu-wallpapers-noble 24.04.2 all Ubuntu 24.04 Wallpapers\\nii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files\\nii udev 255.4-1ubuntu8.4 amd64 /dev/ and hotplug management daemon\\nii udisks2 2.10.1-6build1 amd64 D-Bus service to access and manipulate storage devices\\nii ufw 0.36.2-6 all program for managing a Netfilter firewall\\nii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades\\nii unifi 8.1.127-25320-1 all Ubiquiti UniFi server\\nii uno-libs-private 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- private libraries used by public ones\\nii unzip 6.0-28ubuntu4 amd64 De-archiver for .zip files\\nii update-inetd 4.53 all inetd configuration file updater\\nii update-manager 1:24.04.6 all GNOME application that manages apt updates\\nii update-manager-core 1:24.04.6 all manage release upgrades\\nii update-notifier 3.192.68build3 amd64 Daemon which notifies about package updates\\nii update-notifier-common 3.192.68build3 all Files shared between update-notifier and other packages\\nii upower 1.90.3-1 amd64 abstraction for power management\\nii ure 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment\\nii usb-creator-common 0.3.17 all create a startup disk using a CD or disc image (common files)\\nii usb-creator-gtk 0.3.17 all create a startup disk using a CD or disc image (for GNOME)\\nii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling \\"flip flop\\" USB devices\\nii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch\\nii usb.ids 2024.03.18-1 all USB ID Repository\\nii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices\\nii usbutils 1:017-3build1 amd64 Linux USB utilities\\nii util-linux 2.39.3-9ubuntu6.1 amd64 miscellaneous system utilities\\nii uuid-dev:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library - headers and static libraries\\nii uuid-runtime 2.39.3-9ubuntu6.1 amd64 runtime components for the Universally Unique ID library\\nii vim-common 2:9.1.0016-1ubuntu7.2 all Vi IMproved - Common files\\nii vim-tiny 2:9.1.0016-1ubuntu7.2 amd64 Vi IMproved - enhanced vi editor - compact version\\nii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict\\nii wbritish 2020.12.07-2 all British English dictionary words for /usr/share/dict\\nii webp-pixbuf-loader:amd64 0.2.4-2build2 amd64 WebP Image format GdkPixbuf loader\\nii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web\\nii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts\\nii whoopsie 0.2.77build3 amd64 Ubuntu error tracker submission\\nii whoopsie-preferences 23build3 amd64 System preferences for error reporting\\nii wireless-regdb 2022.06.06-0ubuntu2 all wireless regulatory database\\nii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions\\nii wireplumber 0.4.17-1ubuntu4 amd64 modular session / policy manager for PipeWire\\nii wngerman 20161207-12 all New German orthography wordlist\\nii wogerman 1:2-39 all Traditional German wordlist\\nii wpasupplicant 2:2.10-21ubuntu0.1 amd64 client support for WPA and WPA2 (IEEE 802.11i)\\nii wswiss 20161207-12 all Swiss (German) orthography wordlist\\nii x11-apps 7.7+11build3 amd64 X applications\\nii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure\\nii x11-session-utils 7.7+6build2 amd64 X session utilities\\nii x11-utils 7.7+6build2 amd64 X11 utilities\\nii x11-xkb-utils 7.7+8build2 amd64 X11 XKB utilities\\nii x11-xserver-utils 7.7+10build2 amd64 X server utilities\\nii xauth 1:1.1.2-1build1 amd64 X authentication utility\\nii xbitmaps 1.1.1-2.2 all Base X bitmaps\\nii xbrlapi 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display - xbrlapi\\nii xcursor-themes 1.0.6-0ubuntu1 all Base X cursor themes\\nii xcvt 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator\\nii xdg-dbus-proxy 0.1.5-1build2 amd64 filtering D-Bus proxy\\nii xdg-desktop-portal 1.18.4-1ubuntu2 amd64 desktop integration portal for Flatpak and Snap\\nii xdg-desktop-portal-gnome 46.2-0ubuntu1 amd64 GNOME portal backend for xdg-desktop-portal\\nii xdg-desktop-portal-gtk 1.15.1-1build2 amd64 GTK+/GNOME portal backend for xdg-desktop-portal\\nii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories\\nii xdg-user-dirs-gtk 0.11-1build2 amd64 tool to manage well known user directories (Gtk extension)\\nii xdg-utils 1.1.3-4.1ubuntu3 all desktop integration utilities from freedesktop.org\\nii xfonts-base 1:1.0.5+nmu1 all standard fonts for X\\nii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts\\nii xfonts-scalable 1:1.0.3-1.3 all scalable fonts for X\\nii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs\\nii xinit 1.4.1-0ubuntu5 amd64 X server initialisation tool\\nii xinput 1.6.4-1build1 amd64 Runtime configuration and test of XInput devices\\nii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data\\nii xml-core 0.19 all XML infrastructure and XML catalog file support\\nii xorg 1:7.7+23ubuntu3 amd64 X.Org X Window System\\nii xorg-docs-core 1:1.7.1-1.2 all Core documentation for the X.org X Window System\\nii xorriso 1:1.5.6-1.1ubuntu3 amd64 command line ISO-9660 and Rock Ridge manipulation tool\\nii xserver-common 2:21.1.12-1ubuntu1 all common files used by various X servers\\nii xserver-xephyr 2:21.1.12-1ubuntu1 amd64 nested X server\\nii xserver-xorg 1:7.7+23ubuntu3 amd64 X.Org X server\\nii xserver-xorg-core 2:21.1.12-1ubuntu1 amd64 Xorg X server - core server\\nii xserver-xorg-input-all 1:7.7+23ubuntu3 amd64 X.Org X server -- input driver metapackage\\nii xserver-xorg-input-libinput 1.4.0-1build1 amd64 X.Org X server -- libinput input driver\\nii xserver-xorg-input-wacom 1:1.2.0-1ubuntu2 amd64 X.Org X server -- Wacom input driver\\nii xserver-xorg-legacy 2:21.1.12-1ubuntu1 amd64 setuid root Xorg server wrapper\\nii xserver-xorg-video-all 1:7.7+23ubuntu3 amd64 X.Org X server -- output driver metapackage\\nii xserver-xorg-video-amdgpu 23.0.0-1build1 amd64 X.Org X server -- AMDGPU display driver\\nii xserver-xorg-video-ati 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI display driver wrapper\\nii xserver-xorg-video-fbdev 1:0.5.0-2build2 amd64 X.Org X server -- fbdev display driver\\nii xserver-xorg-video-intel 2:2.99.917+git20210115-1build1 amd64 X.Org X server -- Intel i8xx, i9xx display driver\\nii xserver-xorg-video-nouveau 1:1.0.17-2build1 amd64 X.Org X server -- Nouveau display driver\\nii xserver-xorg-video-qxl 0.1.6-1build1 amd64 X.Org X server -- QXL display driver\\nii xserver-xorg-video-radeon 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI Radeon display driver\\nii xserver-xorg-video-vesa 1:2.6.0-1 amd64 X.Org X server -- VESA display driver\\nii xserver-xorg-video-vmware 1:13.4.0-1build1 amd64 X.Org X server -- VMware display driver\\nii xwayland 2:23.2.6-1 amd64 X server for running X clients under Wayland\\nii xxd 2:9.1.0016-1ubuntu7.2 amd64 tool to make (or reverse) a hex dump\\nii xz-utils 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression utilities\\nii yaru-theme-gnome-shell 24.04.2-0ubuntu1 all Yaru GNOME Shell desktop theme from the Ubuntu Community\\nii yaru-theme-gtk 24.04.2-0ubuntu1 all Yaru GTK theme from the Ubuntu Community\\nii yaru-theme-icon 24.04.2-0ubuntu1 all Yaru icon theme from the Ubuntu Community\\nii yaru-theme-sound 24.04.2-0ubuntu1 all Yaru sound theme from the Ubuntu Community\\nii yelp 42.2-1build2 amd64 Help browser for GNOME\\nii yelp-xsl 42.1-2 all XSL stylesheets for the yelp help browser\\nii zenity 4.0.1-1build3 amd64 Display graphical dialog boxes from shell scripts\\nii zenity-common 4.0.1-1build3 all Display graphical dialog boxes from shell scripts (common files)\\nii zip 3.0-13build1 amd64 Archiver for .zip files\\nii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime\\nii zlib1g-dev:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - development\\nii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool\\n", "Turbo Boost (Legacy non intel_pstate)": "File not found"}',E'{"uri": "/home/arne/Sites/green-coding/example-applications/", "uri_type": "folder", "name": "Stress Test #3", "filename": "stress/usage_scenario.yml", "branch": null, "debug_mode": false, "allow_unsafe": false, "skip_system_checks": false, "skip_unsafe": true, "verbose_provider_boot": false, "full_docker_prune": false, "dev_no_sleeps": false, "dev_no_build": true, "dev_no_metrics": false, "dev_flow_timetravel": false, "dev_no_optimizations": false, "docker_prune": false, "job_id": null}',1,E'64134395e83e6e57cf6247a2b0ec11b562d1fa95',E'{"sci": {"I": 436, "EL": 4, "RS": 1, "TE": 181000}, "measurement": {"boot": {"wait_time_dependencies": 60}, "idle-duration": 5, "pre-test-sleep": 5, "total-duration": 3600, "post-test-sleep": 5, "metric-providers": {"linux": {"network.io.cgroup.container.provider.NetworkIoCgroupContainerProvider": {"resolution": 99}, "cpu.energy.rapl.msr.component.provider.CpuEnergyRaplMsrComponentProvider": {"resolution": 99}, "cpu.utilization.procfs.system.provider.CpuUtilizationProcfsSystemProvider": {"resolution": 99}, "memory.total.cgroup.container.provider.MemoryTotalCgroupContainerProvider": {"resolution": 99}, "psu.energy.dc.rapl.msr.machine.provider.PsuEnergyDcRaplMsrMachineProvider": {"resolution": 99}, "cpu.utilization.cgroup.container.provider.CpuUtilizationCgroupContainerProvider": {"resolution": 99}}, "macos": {"powermetrics.provider.PowermetricsProvider": {"resolution": 99}, "cpu.utilization.mach.system.provider.CpuUtilizationMachSystemProvider": {"resolution": 99}}, "common": {"network.connections.proxy.container.provider.NetworkConnectionsProxyContainerProvider": null}}, "baseline-duration": 5, "flow-process-duration": 1800, "phase-transition-time": 1, "system_check_threshold": 3}}',1726159489184011,1726159513834871,E'[{"start": 1726159490184483, "name": "[BASELINE]", "end": 1726159495185130}, {"start": 1726159496186027, "name": "[INSTALLATION]", "end": 1726159496205034}, {"start": 1726159497205282, "name": "[BOOT]", "end": 1726159497515014}, {"start": 1726159500524633, "name": "[IDLE]", "end": 1726159505525178}, {"start": 1726159506526154, "name": "[RUNTIME]", "end": 1726159511833958}, {"start": 1726159506526984, "name": "Stress", "end": 1726159511833918}, {"start": 1726159512834290, "name": "[REMOVE]", "end": 1726159513834846}]',NULL,NULL,FALSE,E'2024-09-13 16:44:37.917402+00',E'2024-09-12 16:45:18.848381+00',1), +(E'3e6554a4-10bc-46d6-93a1-e61bfd1d9808',NULL,E'Stress Test #4',E'/home/arne/Sites/green-coding/example-applications/',E'main',E'58c7a5002c684f41f8d7a355f3ede641d8e45ddc',E'2024-07-10 13:48:46+00',E'manual',NULL,E'{"name": "Stress Container One Core 5 Seconds", "author": "Arne Tarara <arne@green-coding.berlin>", "description": "A simple 5 seconds stress on the system with one core. Expected display result is a rectangle shaped load.", "flow": [{"name": "Stress", "container": "gcb-alpine-stress", "commands": [{"type": "console", "command": "stress-ng -c 1 -t 5 -q", "note": "Starting Stress"}]}], "version": "2", "services": {"gcb-alpine-stress": {"container_name": "gcb-alpine-stress", "image": "gcb_alpine_stress", "build": "."}}}',E'stress/usage_scenario.yml',E'{"SGX": "This CPU does not support Intel SGX", "Uptime": " 18:58:26 up 22 min, 3 users, load average: 0.20, 0.35, 0.39", "Cpu Info": "11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz", "Platform": "Linux", "Processes": "USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\\nroot 1 0.3 0.0 23440 14188 ? Ss 18:36 0:04 /sbin/init splash\\nroot 2 0.0 0.0 0 0 ? S 18:36 0:00 [kthreadd]\\nroot 3 0.0 0.0 0 0 ? S 18:36 0:00 [pool_workqueue_release]\\nroot 4 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_g]\\nroot 5 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_p]\\nroot 6 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-slub_]\\nroot 7 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-netns]\\nroot 8 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:0-kacpi_notify]\\nroot 9 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:0H-events_highpri]\\nroot 10 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:1-pm]\\nroot 12 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mm_pe]\\nroot 13 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_kthread]\\nroot 14 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_rude_kthread]\\nroot 15 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_trace_kthread]\\nroot 16 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/0]\\nroot 17 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_preempt]\\nroot 18 0.0 0.0 0 0 ? S 18:36 0:00 [migration/0]\\nroot 19 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/0]\\nroot 20 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/0]\\nroot 21 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/1]\\nroot 22 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/1]\\nroot 23 0.0 0.0 0 0 ? S 18:36 0:00 [migration/1]\\nroot 24 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/1]\\nroot 26 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:0H-events_highpri]\\nroot 27 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/2]\\nroot 28 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/2]\\nroot 29 0.0 0.0 0 0 ? S 18:36 0:00 [migration/2]\\nroot 30 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/2]\\nroot 32 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:0H-events_highpri]\\nroot 33 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/3]\\nroot 34 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/3]\\nroot 35 0.0 0.0 0 0 ? S 18:36 0:00 [migration/3]\\nroot 36 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/3]\\nroot 38 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:0H-events_highpri]\\nroot 39 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/4]\\nroot 40 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/4]\\nroot 41 0.0 0.0 0 0 ? S 18:36 0:00 [migration/4]\\nroot 42 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/4]\\nroot 43 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:0-events]\\nroot 44 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:0H-events_highpri]\\nroot 45 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/5]\\nroot 46 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/5]\\nroot 47 0.0 0.0 0 0 ? S 18:36 0:00 [migration/5]\\nroot 48 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/5]\\nroot 50 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:0H-events_highpri]\\nroot 51 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/6]\\nroot 52 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/6]\\nroot 53 0.0 0.0 0 0 ? S 18:36 0:00 [migration/6]\\nroot 54 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/6]\\nroot 56 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:0H-kblockd]\\nroot 57 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/7]\\nroot 58 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/7]\\nroot 59 0.0 0.0 0 0 ? S 18:36 0:00 [migration/7]\\nroot 60 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/7]\\nroot 62 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:0H-kblockd]\\nroot 63 0.0 0.0 0 0 ? S 18:36 0:00 [kdevtmpfs]\\nroot 64 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-inet_]\\nroot 65 0.0 0.0 0 0 ? S 18:36 0:00 [kauditd]\\nroot 67 0.0 0.0 0 0 ? S 18:36 0:00 [khungtaskd]\\nroot 68 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:2-flush-259:0]\\nroot 69 0.0 0.0 0 0 ? S 18:36 0:00 [oom_reaper]\\nroot 70 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-write]\\nroot 71 0.0 0.0 0 0 ? S 18:36 0:00 [kcompactd0]\\nroot 72 0.0 0.0 0 0 ? SN 18:36 0:00 [ksmd]\\nroot 74 0.0 0.0 0 0 ? SN 18:36 0:00 [khugepaged]\\nroot 75 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kinte]\\nroot 76 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kbloc]\\nroot 77 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-blkcg]\\nroot 79 0.0 0.0 0 0 ? S 18:36 0:00 [irq/9-acpi]\\nroot 81 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:1-mm_percpu_wq]\\nroot 82 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tpm_d]\\nroot 83 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ata_s]\\nroot 84 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md]\\nroot 85 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md_bi]\\nroot 86 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-edac-]\\nroot 87 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-devfr]\\nroot 88 0.0 0.0 0 0 ? S 18:36 0:00 [watchdogd]\\nroot 90 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:1H-kblockd]\\nroot 91 0.0 0.0 0 0 ? S 18:36 0:00 [kswapd0]\\nroot 92 0.0 0.0 0 0 ? S 18:36 0:00 [ecryptfs-kthread]\\nroot 93 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kthro]\\nroot 94 0.0 0.0 0 0 ? S 18:36 0:00 [irq/127-pciehp]\\nroot 95 0.0 0.0 0 0 ? S 18:36 0:00 [irq/128-pciehp]\\nroot 96 0.0 0.0 0 0 ? S 18:36 0:00 [irq/129-pciehp]\\nroot 97 0.0 0.0 0 0 ? S 18:36 0:00 [irq/130-pciehp]\\nroot 100 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-acpi_]\\nroot 101 0.0 0.0 0 0 ? S 18:36 0:00 [hwrng]\\nroot 103 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mld]\\nroot 104 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:1H]\\nroot 105 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipv6_]\\nroot 112 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kstrp]\\nroot 114 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:0-hci0]\\nroot 128 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-charg]\\nroot 129 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:3-events]\\nroot 153 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:1H-kblockd]\\nroot 157 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:1H-kblockd]\\nroot 185 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:1H-kblockd]\\nroot 186 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:1H]\\nroot 194 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:1H-kblockd]\\nroot 195 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:1H-kblockd]\\nroot 196 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:2-pm]\\nroot 218 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 219 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 220 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 221 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 223 0.1 0.0 0 0 ? I 18:36 0:01 [kworker/2:3-events]\\nroot 225 0.0 0.0 0 0 ? S 18:36 0:00 [irq/173-FRMW0001:00]\\nroot 226 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:2-rcu_gp]\\nroot 227 0.0 0.0 0 0 ? S 18:36 0:00 [irq/174-PIXA3854:00]\\nroot 264 0.0 0.0 0 0 ? S 18:36 0:00 [jbd2/nvme0n1p5-8]\\nroot 265 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ext4-]\\nroot 315 0.0 0.0 67096 17564 ? S<s 18:36 0:00 /usr/lib/systemd/systemd-journald\\nroot 351 0.0 0.0 30832 8576 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-udevd\\nroot 395 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 423 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:5-ext4-rsv-conversion]\\nroot 451 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:8-writeback]\\nroot 514 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cfg80]\\nroot 520 0.0 0.0 0 0 ? S 18:36 0:00 [irq/191-mei_me]\\nroot 531 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-crypt]\\nroot 534 0.1 0.0 0 0 ? R 18:36 0:01 [irq/192-iwlwifi:default_queue]\\nroot 535 0.0 0.0 0 0 ? S 18:36 0:00 [irq/193-iwlwifi:queue_1]\\nroot 536 0.0 0.0 0 0 ? S 18:36 0:00 [irq/194-iwlwifi:queue_2]\\nroot 538 0.2 0.0 0 0 ? S 18:36 0:03 [irq/195-iwlwifi:queue_3]\\nroot 539 0.0 0.0 0 0 ? S 18:36 0:00 [irq/196-iwlwifi:queue_4]\\nroot 540 0.0 0.0 0 0 ? S 18:36 0:00 [irq/197-iwlwifi:queue_5]\\nroot 541 0.0 0.0 0 0 ? S 18:36 0:00 [irq/198-iwlwifi:queue_6]\\nroot 542 0.0 0.0 0 0 ? S 18:36 0:00 [irq/199-iwlwifi:queue_7]\\nroot 543 0.0 0.0 0 0 ? S 18:36 0:00 [irq/200-iwlwifi:queue_8]\\nroot 544 0.0 0.0 0 0 ? S 18:36 0:00 [irq/201-iwlwifi:exception]\\nroot 576 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ttm]\\nroot 583 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cros_]\\nroot 586 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc0]\\nroot 587 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc1]\\nroot 588 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc2]\\nroot 589 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc3]\\nroot 640 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/6:3-events]\\nsystemd+ 660 0.1 0.0 17728 7680 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-oomd\\nsystemd+ 665 0.0 0.0 21584 12800 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-resolved\\nsystemd+ 671 0.0 0.0 91044 7680 ? Ssl 18:36 0:00 /usr/lib/systemd/systemd-timesyncd\\nroot 754 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:3-pm]\\nroot 790 0.0 0.0 314260 8124 ? Ssl 18:36 0:00 /usr/libexec/accounts-daemon\\navahi 793 0.0 0.0 8780 3840 ? Ss 18:36 0:00 avahi-daemon: running [framebook.local]\\nroot 794 0.0 0.0 13684 6528 ? Ss 18:36 0:00 /usr/libexec/bluetooth/bluetoothd\\nroot 795 0.0 0.0 9804 2816 ? Ss 18:36 0:00 /usr/sbin/cron -f -P\\nmessage+ 796 0.2 0.0 11992 6528 ? Ss 18:36 0:03 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngnome-r+ 800 0.0 0.0 439064 16176 ? Ssl 18:36 0:00 /usr/libexec/gnome-remote-desktop-daemon --system\\nroot 804 0.0 0.0 314320 7808 ? Ssl 18:36 0:00 /usr/libexec/iio-sensor-proxy\\npolkitd 812 0.0 0.0 384348 10120 ? Ssl 18:36 0:00 /usr/lib/polkit-1/polkitd --no-debug\\nroot 815 0.0 0.0 314180 7856 ? Ssl 18:36 0:00 /usr/libexec/power-profiles-daemon\\nroot 831 0.1 0.1 2287584 32836 ? Ssl 18:36 0:01 /usr/lib/snapd/snapd\\nroot 836 0.0 0.0 310432 6912 ? Ssl 18:36 0:00 /usr/libexec/switcheroo-control\\nroot 838 0.7 0.0 725084 12996 ? Ssl 18:36 0:10 /usr/bin/sysbox-mgr\\nroot 842 0.1 0.0 18136 9220 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-logind\\nroot 844 0.1 0.0 425420 10368 ? Ssl 18:36 0:01 /usr/sbin/thermald --systemd --dbus-enable --adaptive\\nroot 845 0.0 0.0 469148 13116 ? Ssl 18:36 0:00 /usr/libexec/udisks2/udisksd\\navahi 893 0.0 0.0 8420 1284 ? S 18:36 0:00 avahi-daemon: chroot helper\\nroot 898 0.1 0.0 338968 21172 ? Ssl 18:36 0:02 /usr/sbin/NetworkManager --no-daemon\\nroot 901 0.0 0.0 18400 11264 ? Ss 18:36 0:00 /usr/sbin/wpa_supplicant -u -s -O DIR=/run/wpa_supplicant GROUP=netdev\\nroot 913 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipmi-]\\nsyslog 919 0.0 0.0 222508 6016 ? Ssl 18:36 0:00 /usr/sbin/rsyslogd -n -iNONE\\nroot 971 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:3-inet_frag_wq]\\nroot 1073 0.0 0.0 392104 12664 ? Ssl 18:36 0:00 /usr/sbin/ModemManager\\nroot 1085 0.0 0.0 314184 8224 ? Ssl 18:36 0:00 /usr/libexec/boltd\\nroot 1086 0.0 0.0 317632 9472 ? Ssl 18:36 0:00 /usr/libexec/upowerd\\nroot 1113 0.0 0.0 1166524 11008 ? Ssl 18:36 0:00 /usr/bin/sysbox-fs\\nroot 1121 0.0 0.0 2800 1664 ? Ss 18:36 0:00 /bin/sh -c /usr/bin/sysbox-runc --version && /usr/bin/sysbox-mgr --version && /usr/bin/sysbox-fs --version && /bin/sleep infinity\\nroot 1149 0.0 0.0 9076 2176 ? S 18:36 0:00 /bin/sleep infinity\\nroot 1430 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 1439 0.0 0.0 38488 11392 ? Ss 18:36 0:00 /usr/sbin/cupsd -l\\nroot 1447 0.2 0.1 2249812 64272 ? Ssl 18:36 0:02 /usr/bin/containerd\\nroot 1469 0.0 0.0 315384 9472 ? Ssl 18:36 0:00 /usr/sbin/gdm3\\nroot 1492 0.0 0.0 242664 9856 ? Sl 18:36 0:00 gdm-session-worker [pam/gdm-launch-environment]\\ngdm 1499 0.1 0.0 20988 11904 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\ngdm 1500 0.0 0.0 21400 3600 ? S 18:36 0:00 (sd-pam)\\ngdm 1512 0.0 0.0 114056 12032 ? S<sl 18:36 0:00 /usr/bin/pipewire\\ngdm 1513 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\ngdm 1515 0.0 0.0 407672 18944 ? S<sl 18:36 0:00 /usr/bin/wireplumber\\ngdm 1516 0.0 0.0 110484 11008 ? S<sl 18:36 0:00 /usr/bin/pipewire-pulse\\ngdm 1517 0.0 0.0 236396 6272 tty1 Ssl+ 18:36 0:00 /usr/libexec/gdm-wayland-session dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\ngdm 1525 0.0 0.0 9420 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngdm 1533 0.0 0.0 6500 2432 tty1 S+ 18:36 0:00 dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\nrtkit 1535 0.0 0.0 22940 3456 ? SNsl 18:36 0:00 /usr/libexec/rtkit-daemon\\ngdm 1537 0.0 0.0 9856 5120 tty1 S+ 18:36 0:00 dbus-daemon --nofork --print-address 4 --session\\ngdm 1546 0.0 0.0 521532 18048 tty1 Sl+ 18:36 0:00 /usr/libexec/gnome-session-binary --autostart /usr/share/gdm/greeter/autostart\\ngdm 1548 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\ngdm 1557 0.0 0.0 310008 6400 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 1564 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/128/doc\\ngdm 1590 1.2 0.6 4424672 205408 tty1 Sl+ 18:36 0:16 /usr/bin/gnome-shell\\nroot 1621 0.0 0.0 0 0 ? S< 18:36 0:00 [krfcommd]\\ncups-br+ 1656 0.0 0.0 268504 19840 ? Ssl 18:36 0:00 /usr/sbin/cups-browsed\\nroot 1657 0.3 0.2 3317612 92696 ? Ssl 18:36 0:04 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock\\nkernoops 1659 0.0 0.0 12744 2184 ? Ss 18:36 0:00 /usr/sbin/kerneloops --test\\nkernoops 1662 0.0 0.0 12744 2188 ? Ss 18:36 0:00 /usr/sbin/kerneloops\\nroot 1702 0.0 0.0 12020 8064 ? Ss 18:36 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups\\nroot 2398 0.0 0.0 1238168 13512 ? Sl 18:36 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928 -address /run/containerd/containerd.sock\\nroot 2511 0.0 0.0 1136 512 ? Ss 18:36 0:00 /sbin/docker-init -- buildkitd --allow-insecure-entitlement=network.host\\nroot 2717 0.0 0.1 1271012 34128 ? Sl 18:36 0:00 buildkitd --allow-insecure-entitlement=network.host\\nroot 2863 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tls-s]\\nroot 2998 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:4-kacpi_notify]\\nroot 2999 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:5-kacpi_notify]\\nroot 3000 0.0 0.0 0 0 ? D 18:36 0:00 [kworker/0:6+usb_hub_wq]\\ngdm 3022 0.0 0.0 383120 7680 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi-bus-launcher\\ngdm 3028 0.0 0.0 9420 4992 tty1 S+ 18:36 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/128/at-spi/bus\\ngdm 3030 0.0 0.2 529220 73856 tty1 Sl+ 18:36 0:00 /usr/bin/Xwayland :1024 -rootless -noreset -accessx -core -auth /run/user/128/.mutter-Xwaylandauth.4R00T2 -listenfd 4 -listenfd 5 -displayfd 6 -initfd 7 -byteswappedclients\\ngdm 3034 0.0 0.0 236068 7296 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session\\ncolord 3035 0.0 0.0 320904 14776 ? Ssl 18:36 0:00 /usr/libexec/colord\\ngdm 3069 0.0 0.0 310008 6400 tty1 Sl+ 18:36 0:00 /usr/libexec/xdg-permission-store\\ngdm 3078 0.0 0.0 2663384 26852 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.Shell.Notifications\\ngdm 3080 0.0 0.0 544408 13440 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sharing\\ngdm 3091 0.0 0.0 487204 19200 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-wacom\\ngdm 3095 0.0 0.0 414336 19904 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-color\\ngdm 3100 0.0 0.0 412624 19204 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-keyboard\\ngdm 3109 0.0 0.0 324188 11520 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-print-notifications\\ngdm 3114 0.0 0.0 458120 7040 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-rfkill\\ngdm 3119 0.0 0.0 386768 8192 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-smartcard\\ngdm 3129 0.0 0.0 432620 12416 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-datetime\\ngdm 3146 0.0 0.0 595396 24488 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-media-keys\\ngdm 3149 0.0 0.0 310116 6528 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-screensaver-proxy\\ngdm 3155 0.0 0.0 394584 9984 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sound\\ngdm 3163 0.0 0.0 384468 6912 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-a11y-settings\\ngdm 3169 0.0 0.0 459824 8320 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-housekeeping\\ngdm 3172 0.0 0.0 524880 23336 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-power\\ngdm 3290 0.0 0.0 416764 15232 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-printer\\ngdm 3333 0.0 0.0 2794456 27380 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.ScreenSaver\\ngdm 3345 0.0 0.2 992124 77664 tty1 Sl+ 18:36 0:00 /usr/libexec/mutter-x11-frames\\ngdm 3346 0.0 0.0 389372 12224 tty1 Sl 18:36 0:00 ibus-daemon --panel disable -r --xim\\ngdm 3360 0.0 0.0 311020 7296 tty1 Sl 18:36 0:00 /usr/libexec/ibus-dconf\\ngdm 3362 0.0 0.2 610420 66612 tty1 Sl 18:36 0:00 /usr/libexec/ibus-x11 --kill-daemon\\ngdm 3364 0.0 0.0 310984 7424 tty1 Sl+ 18:36 0:00 /usr/libexec/ibus-portal\\ngdm 3378 0.0 0.0 237196 7424 tty1 Sl 18:36 0:00 /usr/libexec/ibus-engine-simple\\nroot 3437 0.0 0.0 15116 8048 ? Ss 18:36 0:00 sshd: arne [priv]\\narne 3449 0.0 0.0 21024 12288 ? Ss 18:36 0:00 /usr/lib/systemd/systemd --user\\narne 3453 0.0 0.0 21396 3596 ? S 18:36 0:00 (sd-pam)\\narne 3464 0.0 0.0 109524 8576 ? Ssl 18:36 0:00 /usr/bin/pipewire\\narne 3465 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\narne 3468 0.0 0.0 39000 11776 ? Ss 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3472 0.0 0.0 405708 16000 ? Ssl 18:36 0:00 /usr/bin/wireplumber\\narne 3475 0.0 0.0 109904 10496 ? Ssl 18:36 0:00 /usr/bin/pipewire-pulse\\narne 3501 0.0 0.0 9444 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\narne 3542 0.0 0.0 15276 7108 ? S 18:36 0:00 sshd: arne@pts/0\\narne 3544 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\narne 3549 0.0 0.0 309864 6272 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 3556 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc\\narne 3594 0.0 0.0 353012 21644 ? Sl 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3599 0.0 0.0 11980 5632 pts/0 Ss 18:36 0:00 -bash\\nroot 3669 0.0 0.0 15116 8176 ? Ss 18:37 0:00 sshd: arne [priv]\\narne 3711 0.3 0.0 15276 7108 ? S 18:37 0:03 sshd: arne@pts/1\\narne 3712 0.0 0.0 11980 5632 pts/1 Ss 18:37 0:00 -bash\\nroot 3760 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:9-events]\\nroot 3801 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:10-kacpi_notify]\\nroot 3835 0.0 0.0 0 0 ? I 18:38 0:00 [kworker/0:12-kacpi_notify]\\nroot 3878 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:13-kacpi_notify]\\nroot 3879 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:14-pm]\\ngdm 4742 0.0 0.0 317072 9856 ? Ssl 18:40 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/128/keyring\\nroot 4875 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/0:16-pm]\\nroot 4983 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/6:0-events]\\nroot 5028 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/7:0-events]\\narne 5100 0.0 0.0 2068800 26240 pts/0 Sl+ 18:42 0:00 docker compose up\\narne 5122 0.0 0.1 2169824 44872 pts/0 Sl+ 18:42 0:00 /usr/libexec/docker/cli-plugins/docker-compose compose up\\nroot 5207 0.0 0.0 1745288 4352 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5214 0.0 0.0 1745032 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5235 0.0 0.0 1238168 13636 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45 -address /run/containerd/containerd.sock\\nroot 5262 0.0 0.0 1237912 13296 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2 -address /run/containerd/containerd.sock\\n999 5282 2.7 0.0 37240 8576 ? Ssl 18:42 0:25 redis-server *:6379\\n999 5289 0.0 0.0 219720 29824 ? Ss 18:42 0:00 postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key -c work_mem=16MB -p 9573\\nroot 5393 0.0 0.0 2040984 4864 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5405 0.0 0.0 1597568 4096 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5419 0.0 0.0 1237912 13440 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7 -address /run/containerd/containerd.sock\\nroot 5450 0.0 0.0 1238168 13556 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf -address /run/containerd/containerd.sock\\nroot 5471 0.0 0.0 1136 512 ? Ss 18:42 0:00 /sbin/docker-init -- /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5479 0.0 0.0 12120 7984 ? Ss 18:42 0:00 nginx: master process nginx -g daemon off;\\nroot 5535 0.0 0.0 4344 3200 ? S 18:42 0:00 /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5536 0.0 0.0 37560 31352 ? S 18:42 0:00 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5560 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5561 0.0 0.0 12328 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5562 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5563 0.0 0.0 12344 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5564 0.0 0.0 12124 4528 ? S 18:42 0:00 nginx: worker process\\nwww-data 5565 0.0 0.0 12328 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5566 0.0 0.0 12344 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5567 0.0 0.0 12124 4528 ? S 18:42 0:00 nginx: worker process\\nwww-data 5570 0.8 0.4 1173056 145288 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5571 0.7 0.4 1173060 145536 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5572 0.7 0.4 877032 139256 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5573 0.7 0.4 1172940 145604 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5574 0.7 0.4 1173312 146496 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5575 0.7 0.4 877048 139480 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5576 0.7 0.4 1173300 146304 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5577 0.7 0.4 1180304 151040 ? Sl 18:42 0:06 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\n999 5620 0.0 0.0 219864 13208 ? Ss 18:42 0:00 postgres: checkpointer \\n999 5621 0.0 0.0 219864 6936 ? Ss 18:42 0:00 postgres: background writer \\n999 5623 0.0 0.0 219720 10008 ? Ss 18:42 0:00 postgres: walwriter \\n999 5624 0.0 0.0 221312 8984 ? Ss 18:42 0:00 postgres: autovacuum launcher \\n999 5625 0.0 0.0 221288 8088 ? Ss 18:42 0:00 postgres: logical replication launcher \\nroot 5970 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:5-events]\\n999 6349 0.0 0.0 222676 19864 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54084) idle\\n999 6357 0.0 0.0 222520 18328 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54116) idle\\n999 6358 0.0 0.0 222816 19324 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54120) idle\\n999 6359 0.0 0.0 222520 18072 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54118) idle\\n999 6361 0.0 0.0 222852 19224 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54156) idle\\n999 6954 0.0 0.0 222820 18712 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.4(37058) idle\\nroot 7549 0.1 0.1 574948 42980 ? Ssl 18:46 0:01 /usr/libexec/fwupd/fwupd\\nroot 7565 0.0 0.0 0 0 ? I< 18:46 0:00 [kworker/u17:1-hci0]\\nroot 7599 0.0 0.0 0 0 ? I 18:47 0:00 [kworker/0:7-pm]\\nroot 7614 0.0 0.0 0 0 ? I 18:50 0:00 [kworker/2:0-events]\\nroot 7615 0.0 0.0 0 0 ? I 18:50 0:00 [kworker/2:2-events]\\nroot 7621 0.0 0.0 0 0 ? I 18:51 0:00 [kworker/5:1-cgroup_destroy]\\nroot 7622 0.0 0.0 0 0 ? I 18:51 0:00 [kworker/3:0-events]\\nroot 7629 0.0 0.0 0 0 ? I 18:52 0:00 [kworker/3:1-events]\\nroot 7632 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/0:2-events]\\nroot 7633 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/6:1-events]\\nroot 7634 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/4:2-mm_percpu_wq]\\nroot 7636 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/7:1-pm]\\nroot 7638 0.0 0.0 0 0 ? I 18:54 0:00 [kworker/6:2-events]\\nroot 7648 0.0 0.0 0 0 ? I 18:56 0:00 [kworker/1:0-events]\\nroot 7649 0.0 0.0 0 0 ? I 18:56 0:00 [kworker/1:1-events]\\nroot 7894 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:1-events]\\nroot 7895 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:4-events]\\nroot 7896 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:5-i915-unordered]\\nroot 7897 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:6-events]\\nroot 7898 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:7]\\nroot 7899 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/7:3]\\nroot 8019 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/u16:0-events_unbound]\\nroot 8151 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/u16:1]\\ngdm 8166 0.0 0.0 0 0 tty1 Z+ 18:58 0:00 [dbus-daemon] <defunct>\\nroot 8172 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/5:0-cgroup_destroy]\\narne 8200 67.0 0.3 928148 130000 pts/1 Sl+ 18:58 0:01 python3 runner.py --uri /home/arne/Sites/green-coding/example-applications/ --filename stress/usage_scenario.yml --name Stress Test #4-Real --dev-no-build --skip-unsafe\\n999 8206 0.0 0.0 222120 19736 ? Ss 18:58 0:00 postgres: postgres green-coding 172.25.0.1(35374) idle\\n999 8207 0.0 0.0 222048 19352 ? Ss 18:58 0:00 postgres: postgres green-coding 172.25.0.1(35376) idle\\nroot 8338 20.3 0.0 17276 7552 ? Ss 18:58 0:00 /usr/lib/systemd/systemd-hostnamed\\narne 8426 0.0 0.0 2800 1664 pts/1 S+ 18:58 0:00 /bin/sh -c /usr/bin/ps -aux\\narne 8427 0.0 0.0 15504 5376 pts/1 R+ 18:58 0:00 /usr/bin/ps -aux\\n", "Disk Usage": 322987950080, "Docker Info": "Client: Docker Engine - Community\\n Version: 27.2.1\\n Context: default\\n Debug Mode: false\\n Plugins:\\n buildx: Docker Buildx (Docker Inc.)\\n Version: v0.16.2\\n Path: /usr/libexec/docker/cli-plugins/docker-buildx\\n compose: Docker Compose (Docker Inc.)\\n Version: v2.29.2\\n Path: /usr/libexec/docker/cli-plugins/docker-compose\\n\\nServer:\\n Containers: 5\\n Running: 5\\n Paused: 0\\n Stopped: 0\\n Images: 13\\n Server Version: 27.2.1\\n Storage Driver: overlayfs\\n driver-type: io.containerd.snapshotter.v1\\n Logging Driver: json-file\\n Cgroup Driver: systemd\\n Cgroup Version: 2\\n Plugins:\\n Volume: local\\n Network: bridge host ipvlan macvlan null overlay\\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\\n Swarm: inactive\\n Runtimes: io.containerd.runc.v2 runc sysbox-runc\\n Default Runtime: runc\\n Init Binary: docker-init\\n containerd version: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc version: v1.1.13-0-g58aa920\\n init version: de40ad0\\n Security Options:\\n apparmor\\n seccomp\\n Profile: builtin\\n cgroupns\\n Kernel Version: 6.8.0-44-generic\\n Operating System: Ubuntu 24.04.1 LTS\\n OSType: linux\\n Architecture: x86_64\\n CPUs: 8\\n Total Memory: 31.13GiB\\n Name: framebook\\n ID: 492c90f2-99f1-437f-a14b-9f1e5d514ca9\\n Docker Root Dir: /var/lib/docker\\n Debug Mode: false\\n Username: greencoding\\n Experimental: false\\n Insecure Registries:\\n 127.0.0.0/8\\n Live Restore Enabled: false\\n Default Address Pools:\\n Base: 172.25.0.0/16, Size: 24\\n\\n", "Free Memory": 31179706368, "Turbo Boost": "0", "Architecture": "x86-64", "Memory Total": "32646584 kB", "Power Limits": {"/sys/devices/virtual/powercap/intel-rapl/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/name": "package-0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/name": "psys\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj": "2967143710\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/energy_uj": "5776774701\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_name": "peak_power\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/name": "core\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/name": "uncore\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/energy_uj": "794260967\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/energy_uj": "17870376\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_max_power_uw": "28000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_power_limit_uw": "200000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_time_window_us": "31981568\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_power_limit_uw": "64000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_time_window_us": "2440\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_power_limit_uw": "121000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_time_window_us": "27983872\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_suspended_time": "0\\n"}, "IO Scheduling": "File not found", "Linux Version": "Linux 6.8.0-44-generic", "CPU Scheduling": {"/sys/kernel/debug/sched/debug": "Sched Debug Version: v0.11, 6.8.0-44-generic #44-Ubuntu\\nktime : 1324640.946080\\nsched_clk : 1324710.020730\\ncpu_clk : 1324665.579629\\njiffies : 4295991777\\nsched_clock_stable() : 1\\n\\nsysctl_sched\\n .sysctl_sched_base_slice : 3.000000\\n .sysctl_sched_features : 6237751\\n .sysctl_sched_tunable_scaling : 1 (logarithmic)\\n\\ncpu#0, 2400.000 MHz\\n .nr_running : 1\\n .nr_switches : 236885\\n .nr_uninterruptible : -42\\n .next_balance : 4295.991815\\n .curr->pid : 8437\\n .clock : 1324665.634800\\n .clock_task : 1324665.634800\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[0]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 8548.096951\\n .avg_vruntime : 8548.096951\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 1048576\\n .load_avg : 1024\\n .runnable_avg : 704\\n .util_avg : 704\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1024\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324665.634800\\n .se->vruntime : 19577.745258\\n .se->sum_exec_runtime : 9159.811656\\n .se->load.weight : 417798\\n .se->avg.load_avg : 408\\n .se->avg.util_avg : 704\\n .se->avg.runnable_avg : 704\\n\\ncfs_rq[0]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19577.745258\\n .avg_vruntime : 19577.745258\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 417798\\n .load_avg : 408\\n .runnable_avg : 704\\n .util_avg : 704\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 408\\n .tg_load_avg : 833\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324665.634800\\n .se->vruntime : 27181.894144\\n .se->sum_exec_runtime : 9461.979215\\n .se->load.weight : 513588\\n .se->avg.load_avg : 501\\n .se->avg.util_avg : 704\\n .se->avg.runnable_avg : 704\\n\\ncfs_rq[0]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6860.280275\\n .avg_vruntime : 6860.280275\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324358.218520\\n .se->vruntime : 79353.470584\\n .se->sum_exec_runtime : 7479.580271\\n .se->load.weight : 524288\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 837.074252\\n .avg_vruntime : 837.074252\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324378.549827\\n .se->vruntime : 79359.674444\\n .se->sum_exec_runtime : 857.287528\\n .se->load.weight : 28980\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 725.937420\\n .avg_vruntime : 725.937420\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.888639\\n .se->vruntime : 79360.183694\\n .se->sum_exec_runtime : 744.478268\\n .se->load.weight : 160398\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4265.391839\\n .avg_vruntime : 4265.391839\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324261.285225\\n .se->vruntime : 79348.164300\\n .se->sum_exec_runtime : 4266.444615\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 85.178429\\n .avg_vruntime : 85.178429\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.946581\\n .se->vruntime : 79348.760903\\n .se->sum_exec_runtime : 87.638310\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 35.067451\\n .avg_vruntime : 35.067451\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.729852\\n .se->vruntime : 79360.245214\\n .se->sum_exec_runtime : 36.973999\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 79360.245214\\n .avg_vruntime : 79360.245214\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.729852\\n .se->vruntime : 128641.994415\\n .se->sum_exec_runtime : 26744.637694\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 27181.894144\\n .avg_vruntime : 27181.894144\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 513588\\n .load_avg : 501\\n .runnable_avg : 704\\n .util_avg : 704\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 501\\n .tg_load_avg : 875\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324665.634800\\n .se->vruntime : 128696.368082\\n .se->sum_exec_runtime : 13042.352752\\n .se->load.weight : 600384\\n .se->avg.load_avg : 586\\n .se->avg.util_avg : 704\\n .se->avg.runnable_avg : 704\\n\\ncfs_rq[0]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 128696.368082\\n .avg_vruntime : 128696.368082\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 600384\\n .load_avg : 607\\n .runnable_avg : 725\\n .util_avg : 705\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[0]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[0]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n Spool_workqueue_ 3 50.484081 E 53.473963 3.000000 0.010118 3 120 0.000000 0.010118 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_g 4 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_p 5 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-slub_ 6 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-netns 7 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n I kworker/0:0 8 126689.188964 E 126692.143687 3.000000 292.840274 714 120 0.000000 292.840274 0.000000 0.000000 0 0 /\\n I kworker/0:0H 9 61.484472 E 61.518998 3.000000 0.013159 4 100 0.000000 0.013159 0.000000 0.000000 0 0 /\\n I kworker/0:1 10 126776.026294 E 126778.949185 3.000000 728.421111 2809 120 0.000000 728.421111 0.000000 0.000000 0 0 /\\n Ikworker/R-mm_pe 12 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_kthre 13 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_rude_ 14 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_trace 15 429.940627 E 432.911629 3.000000 0.267245 7 120 0.000000 0.267245 0.000000 0.000000 0 0 /\\n S ksoftirqd/0 16 128627.601521 E 128630.600646 3.000000 95.798372 4777 120 0.000000 95.798372 0.000000 0.000000 0 0 /\\n S migration/0 18 0.626525 E 0.123004 0.750000 14.584364 398 0 0.000000 14.584364 0.000000 0.000000 0 0 /\\n S idle_inject/0 19 0.467865 E 0.280188 0.750000 0.005407 3 49 0.000000 0.005407 0.000000 0.000000 0 0 /\\n S cpuhp/0 20 8335.382094 E 8338.316225 3.000000 1.150907 26 120 0.000000 1.150907 0.000000 0.000000 0 0 /\\n Ikworker/R-charg 128 50.473963 E 50.508549 3.000000 0.093293 2 100 0.000000 0.093293 0.000000 0.000000 0 0 /\\n I kworker/0:1H 157 128242.164463 E 128242.199004 3.000000 11.112570 606 100 0.000000 11.112570 0.000000 0.000000 0 0 /\\n S systemd-udevd 351 614.774279 E 617.560668 3.000000 1220.470847 2557 120 0.000000 1220.470847 0.000000 0.000000 0 0 /system.slice/systemd-udevd.service\\n Sirq/193-iwlwifi 535 3646.117837 E 3649.116436 3.000000 4.518420 29 49 0.000000 4.518420 0.000000 0.000000 0 0 /\\n Ikworker/R-cros_ 583 4098.545142 E 4098.579743 3.000000 0.004733 2 100 0.000000 0.004733 0.000000 0.000000 0 0 /\\n S card1-crtc0 586 4105.692415 E 4108.689897 3.000000 0.071775 4 49 0.000000 0.071775 0.000000 0.000000 0 0 /\\n S card1-crtc1 587 4105.694050 E 4108.692415 3.000000 0.002284 2 49 0.000000 0.002284 0.000000 0.000000 0 0 /\\n S card1-crtc2 588 4105.695887 E 4108.694050 3.000000 0.002459 2 49 0.000000 0.002459 0.000000 0.000000 0 0 /\\n S card1-crtc3 589 4105.697510 E 4108.695887 3.000000 0.002237 2 49 0.000000 0.002237 0.000000 0.000000 0 0 /\\n S sd-resolve 762 2.805469 E 4.473698 3.000000 3.300131 16 120 0.000000 3.300131 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n I kworker/0:3 754 126846.374958 E 126849.361353 3.000000 568.432287 1742 120 0.000000 568.432287 0.000000 0.000000 0 0 /\\n Saccounts-daemon 790 14.253092 E 16.355003 3.000000 133.580546 272 120 0.000000 133.580546 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 936 13.969662 E 16.117388 3.000000 134.487699 479 120 0.000000 134.487699 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S polkitd 812 85.178429 E 88.130783 3.000000 682.212791 1299 120 0.000000 682.212791 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S gmain 1041 0.924491 E 2.068097 3.000000 0.059449 2 120 0.000000 0.059449 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S cleanup 1103 7.256534 E 10.181598 3.000000 0.315513 4 120 0.000000 0.315513 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S avahi-daemon 893 0.811987 E 2.186352 3.000000 0.137179 4 120 0.000000 0.137179 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S gdbus 939 360.197026 E 363.094220 3.000000 585.440633 3745 120 0.000000 585.440633 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S rs:main Q:Reg 956 35.067451 E 38.062045 3.000000 138.908267 2857 120 0.000000 138.908267 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S boltd 1085 19.981677 E 22.867914 3.000000 219.282747 1270 120 0.000000 219.282747 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1098 5.410405 E 7.152417 3.000000 21.180934 75 120 0.000000 21.180934 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1473 725.937420 E 728.934254 3.000000 285.410739 6367 120 0.000000 285.410739 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1475 0.003081 E 2.997094 3.000000 0.496009 16 120 0.000000 0.496009 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gmain 1483 3.022894 E 5.996257 3.000000 0.026637 1 120 0.000000 0.026637 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pw-data-loop 1534 8.779134 E 11.773129 3.000000 0.034056 3 79 0.000000 0.034056 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1569 1880.003146 E 1881.958162 3.000000 41.683534 431 120 0.000000 41.683534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1554 9.640752 E 12.603939 3.000000 0.065887 2 120 0.000000 0.065887 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1556 10.631341 E 13.583311 3.000000 0.917172 22 120 0.000000 0.917172 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fusermount3 1564 9.813596 E 12.812048 3.000000 0.930269 5 120 0.000000 0.930269 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1601 2760.680386 E 2763.417879 3.000000 833.240447 2479 120 0.000000 833.240447 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1603 2761.147784 E 2764.087912 3.000000 18.669259 179 120 0.000000 18.669259 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1609 2761.585320 E 2764.398357 3.000000 19.709195 165 120 0.000000 19.709195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 2416 374.234438 E 377.219668 3.000000 35.780266 1608 120 0.000000 35.780266 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2524 832.307398 E 834.408909 3.000000 426.475701 8370 120 0.000000 426.475701 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1662 0.502217 E 3.431756 3.000000 2.754300 28 120 0.000000 2.754300 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S docker-init 2511 58.555347 E 61.430356 3.000000 120.648548 1367 120 0.000000 120.648548 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2764 56.187277 E 57.546079 3.000000 43.581546 203 120 0.000000 43.581546 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/0:4 2998 126703.903997 E 126706.783131 3.000000 273.077760 1177 120 0.000000 273.077760 0.000000 0.000000 0 0 /\\n I kworker/0:5 2999 126687.487144 E 126690.445286 3.000000 139.338476 487 120 0.000000 139.338476 0.000000 0.000000 0 0 /\\n D kworker/0:6 3000 128627.009489 E 128630.008737 3.000000 457.842204 1706 120 0.000000 457.842204 0.000000 0.000000 0 0 /\\n S Xwayland 3030 823.312878 E 826.243091 3.000000 73.675981 404 120 0.000000 73.675981 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:sh0 3265 798.437067 E 801.432850 3.000000 0.043697 5 120 0.000000 0.043697 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3082 846.693163 E 849.149172 3.000000 0.987458 8 120 0.000000 0.987458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3105 850.647701 E 853.480247 3.000000 0.288156 7 120 0.000000 0.288156 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3117 753.415062 E 755.693222 3.000000 0.802525 2 120 0.000000 0.802525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3122 46.671710 E 49.646140 3.000000 0.025570 1 120 0.000000 0.025570 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3133 795.342480 E 798.312721 3.000000 2.282013 41 120 0.000000 2.282013 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3128 789.541948 E 792.521534 3.000000 0.623284 13 120 0.000000 0.623284 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-print-notif 3109 794.936793 E 797.917349 3.000000 26.108835 70 120 0.000000 26.108835 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3157 53.427679 E 56.401651 3.000000 0.026028 1 120 0.000000 0.026028 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-a11y-settin 3163 794.888778 E 797.870455 3.000000 6.166578 47 120 0.000000 6.166578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3176 794.880654 E 797.815559 3.000000 5.039055 51 120 0.000000 5.039055 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3340 1927.697033 E 1927.760897 3.000000 47.743714 9 120 0.000000 47.743714 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3349 808.794366 E 811.794366 3.000000 10.264307 5 120 0.000000 10.264307 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x11:sh0 3377 816.300810 E 819.286174 3.000000 0.014636 1 120 0.000000 0.014636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter:traceq0 3381 817.363254 E 1021.171202 3.000000 0.084925 1 139 0.000000 0.084925 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3386 818.412051 E 821.351989 3.000000 0.093107 2 120 0.000000 0.093107 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3387 817.414689 E 820.396299 3.000000 0.018390 1 120 0.000000 0.018390 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3389 818.351989 E 821.340314 3.000000 0.199289 7 120 0.000000 0.199289 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3366 811.073812 E 814.040000 3.000000 0.033812 1 120 0.000000 0.033812 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3393 819.206920 E 822.175436 3.000000 0.075475 3 120 0.000000 0.075475 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3465 4.873835 E 7.857378 3.000000 12.993458 14 120 0.000000 12.993458 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3507 5.151991 E 8.096082 3.000000 0.172631 6 120 0.000000 0.172631 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3506 5.696636 E 8.662738 3.000000 0.223461 7 120 0.000000 0.223461 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-permission- 3549 8.115189 E 11.087827 3.000000 4.193195 7 120 0.000000 4.193195 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/0:9 3760 126739.555664 E 126742.477575 3.000000 3.249723 81 120 0.000000 3.249723 0.000000 0.000000 0 0 /\\n I kworker/0:10 3801 126689.323468 E 126692.293616 3.000000 1.711604 56 120 0.000000 1.711604 0.000000 0.000000 0 0 /\\n I kworker/0:12 3835 120781.236961 E 120784.182319 3.000000 300.026588 925 120 0.000000 300.026588 0.000000 0.000000 0 0 /\\n I kworker/0:13 3878 126689.374967 E 126692.350831 3.000000 230.628759 1502 120 0.000000 230.628759 0.000000 0.000000 0 0 /\\n I kworker/0:14 3879 126771.030945 E 126773.968650 3.000000 405.732664 2011 120 0.000000 405.732664 0.000000 0.000000 0 0 /\\n I kworker/0:16 4875 126789.192627 E 126789.298899 3.000000 252.303933 1088 120 0.000000 252.303933 0.000000 0.000000 0 0 /\\n S docker 5103 178.964001 E 181.920101 3.000000 3.264490 27 120 0.000000 3.264490 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5108 142.053576 E 144.677977 3.000000 0.445408 2 120 0.000000 0.445408 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5125 145.841713 E 148.838155 3.000000 2.587746 33 120 0.000000 2.587746 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5129 179.154887 E 182.087159 3.000000 45.344158 410 120 0.000000 45.344158 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5138 147.883780 E 150.508821 3.000000 3.072613 60 120 0.000000 3.072613 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5207 380.169185 E 383.159727 3.000000 1.776241 5 120 0.000000 1.776241 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5209 380.159727 E 383.144516 3.000000 0.125477 4 120 0.000000 0.125477 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5265 317.900081 E 320.886003 3.000000 0.088538 5 120 0.000000 0.088538 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5268 692.688624 E 695.640354 3.000000 19.142977 85 120 0.000000 19.142977 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5269 692.640354 E 694.398098 3.000000 63.999147 159 120 0.000000 63.999147 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_close_file 5371 0.996541 E 1.988580 3.000000 0.014879 1 120 0.000000 0.014879 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S bio_lazy_free 5373 0.971337 E 2.003459 3.000000 0.025204 2 120 0.000000 0.025204 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5402 391.629910 E 394.593552 3.000000 0.036358 1 120 0.000000 0.036358 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5404 440.410950 E 443.311576 3.000000 0.200935 4 120 0.000000 0.200935 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5426 321.885108 E 324.879367 3.000000 0.005741 1 120 0.000000 0.005741 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5459 331.501159 E 334.467439 3.000000 1.138122 31 120 0.000000 1.138122 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bash 5535 0.374091 E 2.004330 3.000000 1.369761 2 120 0.000000 1.369761 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5536 6852.231549 E 6854.544928 3.000000 707.815377 1012 120 0.000000 707.815377 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5560 1.881197 E 4.297811 3.000000 87.562664 10 120 0.000000 87.562664 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5567 3.450638 E 6.377025 3.000000 1.003093 12 120 0.000000 1.003093 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5598 1096.827304 E 1099.827304 3.000000 67.403138 16 120 0.000000 67.403138 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5664 1810.667125 E 1813.659738 3.000000 48.028793 19 120 0.000000 48.028793 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6353 2962.498940 E 2965.273620 3.000000 9.925404 79 120 0.000000 9.925404 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6354 2962.532768 E 2965.492613 3.000000 10.767032 25 120 0.000000 10.767032 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6356 5639.747296 E 5641.131905 3.000000 1.752954 5 120 0.000000 1.752954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5613 1154.546552 E 1157.489793 3.000000 50.490838 17 120 0.000000 50.490838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5688 1886.290395 E 1889.290395 3.000000 33.583605 11 120 0.000000 33.583605 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5689 1886.727601 E 1889.716108 3.000000 34.006642 14 120 0.000000 34.006642 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5691 1887.153050 E 1890.141066 3.000000 34.415056 12 120 0.000000 34.415056 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5605 1128.699724 E 1130.733412 3.000000 59.322321 20 120 0.000000 59.322321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5674 1837.950616 E 1840.941193 3.000000 34.976674 14 120 0.000000 34.976674 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5676 1842.845926 E 1842.887818 3.000000 39.859633 14 120 0.000000 39.859633 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5645 1691.475316 E 1694.467524 3.000000 28.433086 12 120 0.000000 28.433086 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5646 1692.040496 E 1695.034677 3.000000 28.990755 9 120 0.000000 28.990755 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5639 1491.853459 E 1492.774908 3.000000 56.154692 21 120 0.000000 56.154692 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5706 1914.066082 E 1916.114488 3.000000 31.948839 9 120 0.000000 31.948839 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5708 1917.130715 E 1920.121651 3.000000 35.002311 12 120 0.000000 35.002311 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5626 1181.663383 E 1181.681283 3.000000 50.832084 14 120 0.000000 50.832084 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5655 1726.481090 E 1729.473436 3.000000 36.998391 11 120 0.000000 36.998391 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5717 1958.888518 E 1961.882843 3.000000 34.652408 11 120 0.000000 34.652408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6347 2960.545968 E 2963.333661 3.000000 9.357649 17 120 0.000000 9.357649 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6348 5638.050283 E 5638.597957 3.000000 2.607295 5 120 0.000000 2.607295 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5724 1963.859694 E 1966.846384 3.000000 63.747694 20 120 0.000000 63.747694 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S pool-spawner 7553 0.748291 E 2.091709 3.000000 0.160000 1 120 0.000000 0.160000 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n S gdbus 7555 32.101060 E 34.926556 3.000000 42.383895 2391 120 0.000000 42.383895 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/0:7 7599 126859.671227 E 126862.671227 3.000000 80.774835 201 120 0.000000 80.774835 0.000000 0.000000 0 0 /\\n I kworker/0:2 7632 128656.789396 E 128659.779088 3.000000 40.726931 73 120 0.000000 40.726931 0.000000 0.000000 0 0 /\\n S python3 8203 8114.633566 E 8117.588711 3.000000 10.322239 126 120 0.000000 10.322239 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8293 8245.173424 E 8246.089296 3.000000 110.841164 6 120 0.000000 110.841164 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 8207 416.515444 E 419.452992 3.000000 4.975414 17 120 0.000000 4.975414 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n>R python3 8437 8549.097082 E 8551.096951 3.000000 24.592538 1 120 0.000000 24.592538 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#1, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 225312\\n .nr_uninterruptible : 44\\n .next_balance : 4295.991779\\n .curr->pid : 0\\n .clock : 1324665.746366\\n .clock_task : 1324665.746366\\n .avg_idle : 769738\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[1]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6749.864742\\n .avg_vruntime : 6749.864742\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2570\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324614.340454\\n .se->vruntime : 17448.114936\\n .se->sum_exec_runtime : 6758.801041\\n .se->load.weight : 560789\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 17448.114936\\n .avg_vruntime : 17448.114936\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 833\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324614.340454\\n .se->vruntime : 31429.051695\\n .se->sum_exec_runtime : 6996.085048\\n .se->load.weight : 581590\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5542.008717\\n .avg_vruntime : 5542.008717\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324618.701711\\n .se->vruntime : 82134.096320\\n .se->sum_exec_runtime : 6080.952558\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 849.919835\\n .avg_vruntime : 849.919835\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.720827\\n .se->vruntime : 82132.834369\\n .se->sum_exec_runtime : 859.418038\\n .se->load.weight : 172767\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 654.604587\\n .avg_vruntime : 654.604587\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.330133\\n .se->vruntime : 82132.671910\\n .se->sum_exec_runtime : 672.722492\\n .se->load.weight : 320276\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1584.375115\\n .avg_vruntime : 1584.375115\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324635.295875\\n .se->vruntime : 82134.147276\\n .se->sum_exec_runtime : 1586.828649\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 72.409135\\n .avg_vruntime : 72.409135\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.913492\\n .se->vruntime : 82121.805049\\n .se->sum_exec_runtime : 73.711852\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/accounts-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 54.786619\\n .avg_vruntime : 54.786619\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.735277\\n .se->vruntime : 82134.187944\\n .se->sum_exec_runtime : 56.744759\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4596.640169\\n .avg_vruntime : 4596.640169\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324663.284628\\n .se->vruntime : 82134.500962\\n .se->sum_exec_runtime : 4597.688745\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 82134.500962\\n .avg_vruntime : 82134.500962\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324663.284628\\n .se->vruntime : 127016.086651\\n .se->sum_exec_runtime : 30214.918630\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 2\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[1]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 31429.051695\\n .avg_vruntime : 31429.051695\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 875\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324614.340454\\n .se->vruntime : 127019.412401\\n .se->sum_exec_runtime : 13224.071841\\n .se->load.weight : 453897\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 127016.086651\\n .avg_vruntime : 127016.086651\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 29\\n .runnable_avg : 15\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[1]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[1]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/1 21 7932.094818 E 7935.015583 3.000000 0.356355 26 120 0.000000 0.356355 0.000000 0.000000 0 0 /\\n S idle_inject/1 22 -1.046696 E 0.298424 0.750000 0.006020 3 49 0.000000 0.006020 0.000000 0.000000 0 0 /\\n S migration/1 23 0.056269 E 0.693236 0.750000 179.527644 384 0 0.000000 179.527644 0.000000 0.000000 0 0 /\\n S ksoftirqd/1 24 127015.554104 E 127018.550007 3.000000 32.117328 808 120 0.000000 32.117328 0.000000 0.000000 0 0 /\\n I kworker/1:0H 26 21.947051 E 21.981566 3.000000 0.017963 4 100 0.000000 0.017963 0.000000 0.000000 0 0 /\\n Ikworker/R-write 70 -1.034874 E -1.000265 3.000000 0.000849 2 100 0.000000 0.000849 0.000000 0.000000 0 0 /\\n S ksmd 72 -1.034874 E 8.135275 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/9-acpi 79 0.888458 E 2.110113 3.000000 65.916327 202 49 0.000000 65.916327 0.000000 0.000000 0 0 /\\n I kworker/u17:0 114 127015.701593 E 127015.735911 3.000000 367.272954 7397 100 0.000000 367.272954 0.000000 0.000000 0 0 /\\n I kworker/1:1H 185 124788.774911 E 124788.809503 3.000000 8.528426 494 100 0.000000 8.528426 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 221 392.789305 E 392.823904 3.000000 0.005027 2 100 0.000000 0.005027 0.000000 0.000000 0 0 /\\n Ikworker/R-crypt 531 2507.555715 E 2507.590316 3.000000 0.005940 2 100 0.000000 0.005940 0.000000 0.000000 0 0 /\\n Sirq/194-iwlwifi 536 3740.895044 E 3743.891071 3.000000 27.620509 158 49 0.000000 27.620509 0.000000 0.000000 0 0 /\\n S gmain 930 54.786619 E 57.782363 3.000000 130.960955 1296 120 0.000000 130.960955 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gmain 910 0.472046 E 3.459363 3.000000 0.047699 2 120 0.000000 0.047699 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S gdbus 1047 72.409135 E 75.261401 3.000000 218.224790 983 120 0.000000 218.224790 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S gmain 923 3.433860 E 6.421449 3.000000 0.067212 2 120 0.000000 0.067212 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S gdbus 924 7.269924 E 9.126327 3.000000 20.415944 94 120 0.000000 20.415944 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 925 255.291839 E 258.236447 3.000000 225.127089 598 120 0.000000 225.127089 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 3003 253.936887 E 256.669075 3.000000 106.640751 139 120 0.000000 106.640751 0.000000 0.000000 0 0 /system.slice/snapd.service\\n Sswitcheroo-cont 836 7.518062 E 10.434047 3.000000 44.143872 152 120 0.000000 44.143872 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 851 1584.375115 E 1587.358689 3.000000 3857.802786 52748 120 0.000000 3857.802786 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 856 2.227776 E 5.225721 3.000000 94.523149 368 120 0.000000 94.523149 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 1119 504.380725 E 506.777333 3.000000 1358.892676 690 120 0.000000 1358.892676 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S rsyslogd 919 38.221763 E 41.093768 3.000000 30.598632 92 120 0.000000 30.598632 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S in:imklog 955 39.351695 E 42.276820 3.000000 16.451910 169 120 0.000000 16.451910 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n I kworker/1:3 971 125193.340510 E 125196.332546 3.000000 129.783581 1600 120 0.000000 129.783581 0.000000 0.000000 0 0 /\\n S pool-spawner 1106 14.206991 E 17.144135 3.000000 0.125154 3 120 0.000000 0.125154 0.000000 0.000000 0 0 /system.slice/upower.service\\n S gmain 1107 14.144135 E 17.122581 3.000000 0.021554 1 120 0.000000 0.021554 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1114 0.963909 E 3.921923 3.000000 3.656283 102 120 0.000000 3.656283 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1118 0.488564 E 2.489338 3.000000 0.204262 22 120 0.000000 0.204262 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S cupsd 1439 6.107646 E 8.696552 3.000000 24.305730 98 120 0.000000 24.305730 0.000000 0.000000 0 0 /system.slice/cups.service\\n S containerd 1459 652.099478 E 655.088230 3.000000 215.981761 7406 120 0.000000 215.981761 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1477 654.604587 E 657.602095 3.000000 322.483773 5885 120 0.000000 322.483773 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdm3 1469 28.866371 E 31.777617 3.000000 29.629979 80 120 0.000000 29.629979 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pipewire 1512 16.254098 E 16.510392 3.000000 32.093335 224 109 0.000000 32.093335 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1527 11.267137 E 14.210616 3.000000 0.188517 6 120 0.000000 0.188517 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1541 11.066776 E 14.063472 3.000000 0.112549 13 79 0.000000 0.112549 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1551 11.210616 E 14.180555 3.000000 0.056827 2 120 0.000000 0.056827 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1553 14.775624 E 17.722860 3.000000 0.661282 10 120 0.000000 0.661282 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1526 0.567104 E 2.363017 3.000000 0.680927 15 120 0.000000 0.680927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgnome-session-b 1546 4026.427161 E 4028.816499 3.000000 72.220451 386 120 0.000000 72.220451 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1555 11.411258 E 14.381068 3.000000 0.030190 1 120 0.000000 0.030190 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1559 11.464077 E 14.455527 3.000000 0.052819 2 120 0.000000 0.052819 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dconf worker 1602 241.182424 E 244.164119 3.000000 1.813576 72 120 0.000000 1.813576 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1606 5149.248826 E 5152.191723 3.000000 18.999233 166 120 0.000000 18.999233 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S KMS thread 1618 4040.643096 E 4043.470042 3.000000 312.191032 825 79 0.000000 312.191032 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-s:disk$0 3004 8.656514 E 213.116341 3.000000 0.090177 1 139 0.000000 0.090177 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3014 167.316606 E 170.276345 3.000000 71.365629 133 120 0.000000 71.365629 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1670 304.900140 E 305.802357 3.000000 107.084760 2032 120 0.000000 107.084760 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1672 144.769731 E 147.755909 3.000000 0.723957 32 120 0.000000 0.723957 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2406 845.572690 E 848.566357 3.000000 306.956631 6048 120 0.000000 306.956631 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2525 849.919835 E 852.914882 3.000000 164.873503 4200 120 0.000000 164.873503 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2526 305.308381 E 307.900140 3.000000 3.053644 65 120 0.000000 3.053644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2527 290.625017 E 293.618099 3.000000 99.602375 2905 120 0.000000 99.602375 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2422 609.578690 E 611.524400 3.000000 86.348213 234 120 0.000000 86.348213 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 3726 609.747329 E 612.578690 3.000000 70.170828 140 120 0.000000 70.170828 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2814 21.318230 E 23.345470 3.000000 21.556769 24 120 0.000000 21.556769 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3024 60.304780 E 63.271147 3.000000 0.033633 1 120 0.000000 0.033633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:gdrv0 3269 566.947492 E 569.942158 3.000000 0.048510 3 120 0.000000 0.048510 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3038 563.666293 E 566.641667 3.000000 4.306399 54 120 0.000000 4.306399 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3081 645.782212 E 648.340009 3.000000 0.896962 8 120 0.000000 0.896962 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3085 646.371136 E 648.782212 3.000000 1.123443 8 120 0.000000 1.123443 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-wacom 3091 644.537177 E 647.284944 3.000000 366.045403 439 120 0.000000 366.045403 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3118 160.094256 E 163.069340 3.000000 0.024916 1 120 0.000000 0.024916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-color 3095 5089.154930 E 5091.950816 3.000000 137.053567 72 120 0.000000 137.053567 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-keyboard 3100 648.247208 E 651.166836 3.000000 121.441087 43 120 0.000000 121.441087 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3123 160.645856 E 163.586872 3.000000 0.058984 1 120 0.000000 0.058984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-smartcard 3119 563.386800 E 566.368384 3.000000 7.380501 47 120 0.000000 7.380501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3141 163.322124 E 166.295023 3.000000 0.027101 1 120 0.000000 0.027101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3152 563.387981 E 566.317884 3.000000 5.186420 57 120 0.000000 5.186420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-datetime 3129 563.405186 E 566.383009 3.000000 11.094354 49 120 0.000000 11.094354 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3201 553.536426 E 556.465699 3.000000 0.162455 3 120 0.000000 0.162455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3219 184.113084 E 187.101602 3.000000 0.087152 2 120 0.000000 0.087152 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3292 378.083610 E 380.401752 3.000000 0.681858 1 120 0.000000 0.681858 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3342 4042.206196 E 4044.992366 3.000000 1.492101 12 120 0.000000 1.492101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3345 634.080030 E 637.037078 3.000000 79.580450 171 120 0.000000 79.580450 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-:disk$0 3376 606.974571 E 811.460271 3.000000 0.041875 2 139 0.000000 0.041875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x:gdrv0 3383 611.246200 E 614.198837 3.000000 0.047363 1 120 0.000000 0.047363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-portal 3364 5132.065958 E 5135.051107 3.000000 3.631144 27 120 0.000000 3.631144 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3382 611.727160 E 614.717547 3.000000 0.569298 17 120 0.000000 0.569298 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S sshd 3437 7.898835 E 10.142566 3.000000 77.928271 33 120 0.000000 77.928271 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S pipewire-pulse 3475 5.257457 E 8.249472 3.000000 16.156993 25 120 0.000000 16.156993 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sgnome-keyring-d 4742 60.402025 E 63.218079 3.000000 7.402169 26 120 0.000000 7.402169 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5111 76.881186 E 79.675463 3.000000 2.727325 5 120 0.000000 2.727325 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5128 94.298837 E 97.251569 3.000000 23.445852 267 120 0.000000 23.445852 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S redis-server 5282 4596.640169 E 4599.327151 3.000000 25991.945570 9350 120 0.000000 25991.945570 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5395 807.794302 E 810.740031 3.000000 4.487222 188 120 0.000000 4.487222 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5427 624.965436 E 627.173595 3.000000 63.284495 166 120 0.000000 63.284495 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5528 290.121910 E 293.092020 3.000000 0.588842 12 120 0.000000 0.588842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5561 0.497753 E 2.458558 3.000000 8.561149 19 120 0.000000 8.561149 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5600 849.366916 E 852.353840 3.000000 39.919317 22 120 0.000000 39.919317 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5665 1661.043325 E 1661.083812 3.000000 55.912313 17 120 0.000000 55.912313 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5616 882.220441 E 885.175429 3.000000 29.865267 12 120 0.000000 29.865267 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5618 881.421942 E 884.354331 3.000000 29.053625 11 120 0.000000 29.053625 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5687 1785.074279 E 1788.064636 3.000000 41.826708 13 120 0.000000 41.826708 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5697 1797.414029 E 1798.448640 3.000000 30.959422 9 120 0.000000 30.959422 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5700 1798.495212 E 1801.486113 3.000000 32.018896 11 120 0.000000 32.018896 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5633 1752.220599 E 1755.211488 3.000000 57.584088 17 120 0.000000 57.584088 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6334 3165.588717 E 3168.411649 3.000000 10.885334 28 120 0.000000 10.885334 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5715 1835.502622 E 1838.493962 3.000000 42.959724 13 120 0.000000 42.959724 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5577 5542.008717 E 5544.896288 3.000000 6432.030962 10271 120 0.000000 6432.030962 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n I kworker/1:5 5970 127015.716539 E 127018.701593 3.000000 134.399560 2387 120 0.000000 134.399560 0.000000 0.000000 0 0 /\\n S postgres 6358 197.555296 E 200.474989 3.000000 18.432057 24 120 0.000000 18.432057 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S fwupd 7549 111.721430 E 112.376821 3.000000 1230.682800 1595 120 0.000000 1230.682800 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/1:0 7648 120357.505373 E 120360.493702 3.000000 0.096133 4 120 0.000000 0.096133 0.000000 0.000000 0 0 /\\n I kworker/1:1 7649 120357.513029 E 120360.510348 3.000000 0.048300 4 120 0.000000 0.048300 0.000000 0.000000 0 0 /\\n S python3 8292 6682.328387 E 6684.258674 3.000000 110.258989 13 120 0.000000 110.258989 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#2, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 268629\\n .nr_uninterruptible : -235\\n .next_balance : 4295.991777\\n .curr->pid : 0\\n .clock : 1324661.656255\\n .clock_task : 1324661.656255\\n .avg_idle : 774847\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[2]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1523.793195\\n .avg_vruntime : 1523.793195\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324609.176744\\n .se->vruntime : 4335.702872\\n .se->sum_exec_runtime : 1537.865458\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12630.786590\\n .avg_vruntime : 12630.786590\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324638.004605\\n .se->vruntime : 19135.076576\\n .se->sum_exec_runtime : 3312.610299\\n .se->load.weight : 317781\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6156.271845\\n .avg_vruntime : 6156.271845\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324576.386016\\n .se->vruntime : 88242.856445\\n .se->sum_exec_runtime : 6638.734438\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 779.039145\\n .avg_vruntime : 779.039145\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.228311\\n .se->vruntime : 88242.950823\\n .se->sum_exec_runtime : 793.960124\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 751.979175\\n .avg_vruntime : 751.979175\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.893395\\n .se->vruntime : 88242.267135\\n .se->sum_exec_runtime : 768.231824\\n .se->load.weight : 99758\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15.556752\\n .avg_vruntime : 15.556752\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.920028\\n .se->vruntime : 88230.953999\\n .se->sum_exec_runtime : 17.362547\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 88242.950823\\n .avg_vruntime : 88242.950823\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.228311\\n .se->vruntime : 128255.626793\\n .se->sum_exec_runtime : 31695.689498\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[2]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4335.702872\\n .avg_vruntime : 4335.702872\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324609.176744\\n .se->vruntime : 19130.963501\\n .se->sum_exec_runtime : 1791.889572\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19135.076576\\n .avg_vruntime : 19135.076576\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324638.004605\\n .se->vruntime : 128255.523355\\n .se->sum_exec_runtime : 5566.956933\\n .se->load.weight : 299453\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 128255.635863\\n .avg_vruntime : 128255.635863\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[2]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 1.477168\\n .rt_runtime : 950.000000\\n\\ndl_rq[2]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/2 27 10232.512266 E 10235.476962 3.000000 0.310145 26 120 0.000000 0.310145 0.000000 0.000000 0 0 /\\n S idle_inject/2 28 -1.048574 E 0.451426 1.500000 0.000962 3 49 0.000000 0.000962 0.000000 0.000000 0 0 /\\n S migration/2 29 0.100700 E 0.850203 0.750000 180.173185 402 0 0.000000 180.173185 0.000000 0.000000 0 0 /\\n S ksoftirqd/2 30 128246.591654 E 128249.578952 3.000000 38.766629 1791 120 0.000000 38.766629 0.000000 0.000000 0 0 /\\n I kworker/2:0H 32 103.304456 E 103.338997 3.000000 0.014834 5 100 0.000000 0.014834 0.000000 0.000000 0 0 /\\n S oom_reaper 69 -1.013776 E 1.986224 3.000000 0.000042 2 120 0.000000 0.000042 0.000000 0.000000 0 0 /\\n I kworker/2:1H 195 126941.031562 E 126941.066101 3.000000 7.875566 384 100 0.000000 7.875566 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 218 470.398502 E 470.433104 3.000000 0.005099 2 100 0.000000 0.005099 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 219 470.401038 E 470.435644 3.000000 0.002850 2 100 0.000000 0.002850 0.000000 0.000000 0 0 /\\n I kworker/2:3 223 126812.260207 E 126815.176754 3.000000 1522.428695 16094 120 0.000000 1522.428695 0.000000 0.000000 0 0 /\\n S irq/191-mei_me 520 2425.538335 E 2428.535129 3.000000 2.494755 62 49 0.000000 2.494755 0.000000 0.000000 0 0 /\\n Sirq/195-iwlwifi 538 3925.397830 E 3928.395543 3.000000 3516.223243 18050 49 0.000000 3516.223243 0.000000 0.000000 0 0 /\\n S systemd-oomd 660 385.419204 E 388.352283 3.000000 1385.278469 1341 120 0.000000 1385.278469 0.000000 0.000000 0 0 /system.slice/systemd-oomd.service\\n S snapd 854 181.532524 E 181.847161 3.000000 74.669991 322 120 0.000000 74.669991 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S thermald 844 15.556752 E 18.504721 3.000000 40.371439 476 120 0.000000 40.371439 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S pool-spawner 876 20.742468 E 23.348156 3.000000 0.617271 5 120 0.000000 0.617271 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S NetworkManager 898 139.671529 E 142.606976 3.000000 1463.375880 2263 120 0.000000 1463.375880 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n Ikworker/R-ipmi- 913 6961.772658 E 6961.807253 3.000000 0.015936 2 100 0.000000 0.015936 0.000000 0.000000 0 0 /\\n S pool-spawner 1100 6.890317 E 9.858408 3.000000 0.106301 5 120 0.000000 0.106301 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1116 2.347087 E 5.294553 3.000000 0.174658 34 120 0.000000 0.174658 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sh 1121 12.505172 E 15.381318 3.000000 5.274342 15 120 0.000000 5.274342 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1458 751.367774 E 754.361488 3.000000 358.991175 5527 120 0.000000 358.991175 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1460 356.789566 E 359.222037 3.000000 226.995066 5509 120 0.000000 226.995066 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1461 0.881565 E 2.097726 3.000000 0.020709 1 120 0.000000 0.020709 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1474 751.979175 E 754.974204 3.000000 131.743207 5880 120 0.000000 131.743207 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sgdm-session-wor 1492 0.021664 E 2.378098 3.000000 7.685172 93 120 0.000000 7.685172 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 1500 0.906613 E 1.951424 3.000000 0.141963 1 120 0.000000 0.141963 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pw-data-loop 1536 3.469723 E 6.464575 3.000000 0.024781 3 79 0.000000 0.024781 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sgdm-wayland-ses 1517 0.890985 E 3.860521 3.000000 4.316422 18 120 0.000000 4.316422 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1565 410.548304 E 413.512933 3.000000 0.246882 6 120 0.000000 0.246882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 1590 1523.793195 E 1526.719013 3.000000 14632.772974 14667 120 0.000000 14632.772974 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1608 1522.411810 E 1525.298219 3.000000 19.846417 197 120 0.000000 19.846417 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shel:sh0 3005 31.707816 E 34.581346 3.000000 0.126470 1 120 0.000000 0.126470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3012 33.382173 E 238.030347 3.000000 0.007470 1 139 0.000000 0.007470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3013 33.387365 E 36.382173 3.000000 0.005192 1 120 0.000000 0.005192 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3276 121.709419 E 124.678683 3.000000 0.030736 1 120 0.000000 0.030736 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1666 779.039145 E 782.032579 3.000000 94.914208 2486 120 0.000000 94.914208 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1699 777.986370 E 780.968381 3.000000 285.780312 8382 120 0.000000 285.780312 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2528 772.452256 E 774.538682 3.000000 175.553896 5611 120 0.000000 175.553896 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2721 10.646865 E 13.502689 3.000000 11.493527 319 120 0.000000 11.493527 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2722 1.991100 E 4.985710 3.000000 0.640714 24 120 0.000000 0.640714 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Ikworker/R-tls-s 2863 22769.817423 E 22769.852008 3.000000 0.015449 2 100 0.000000 0.015449 0.000000 0.000000 0 0 /\\n S dconf worker 3025 46.149564 E 49.142692 3.000000 0.447278 11 120 0.000000 0.447278 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S colord 3035 21.580781 E 24.092855 3.000000 92.765102 187 120 0.000000 92.765102 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gmain 3041 0.737224 E 2.242460 3.000000 0.155686 2 120 0.000000 0.155686 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gjs 3078 487.170160 E 488.823207 3.000000 59.101805 83 120 0.000000 59.101805 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3107 1521.896308 E 1524.603955 3.000000 403.232411 1163 120 0.000000 403.232411 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3130 407.533407 E 410.525336 3.000000 0.766318 14 120 0.000000 0.766318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3187 98.848084 E 101.823175 3.000000 0.095370 2 120 0.000000 0.095370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-media-keys 3146 953.008761 E 955.920109 3.000000 135.098877 137 120 0.000000 135.098877 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3202 99.517382 E 102.480455 3.000000 0.036927 1 120 0.000000 0.036927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3344 968.712808 E 971.613739 3.000000 1.076193 11 120 0.000000 1.076193 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3354 424.550236 E 427.529183 3.000000 0.083867 3 120 0.000000 0.083867 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3369 435.646524 E 438.628102 3.000000 0.253340 7 120 0.000000 0.253340 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3372 1521.603955 E 1524.526218 3.000000 1.475187 20 120 0.000000 1.475187 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3379 436.877871 E 439.851438 3.000000 0.116796 2 120 0.000000 0.116796 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S systemd 3449 62.910189 E 65.662464 3.000000 864.349949 570 120 0.000000 864.349949 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n Ssnapd-desktop-i 3468 39.501067 E 42.224366 3.000000 18.969394 43 120 0.000000 18.969394 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S docker 5101 228.355537 E 231.311406 3.000000 12.741297 224 120 0.000000 12.741297 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5107 171.690383 E 174.331107 3.000000 0.500947 6 120 0.000000 0.500947 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5124 193.061150 E 195.671496 3.000000 8.594148 49 120 0.000000 8.594148 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5211 726.144252 E 729.124510 3.000000 28.844753 724 120 0.000000 28.844753 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5263 730.954232 E 733.857223 3.000000 8.509141 626 120 0.000000 8.509141 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6328 612.990249 E 615.969993 3.000000 1.643493 33 120 0.000000 1.643493 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 6331 612.124173 E 615.017979 3.000000 1.515141 12 120 0.000000 1.515141 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5408 390.450618 E 393.442277 3.000000 0.052751 3 120 0.000000 0.052751 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5420 731.447433 E 734.397856 3.000000 10.948255 643 120 0.000000 10.948255 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 8195 731.397856 E 734.166122 3.000000 0.382943 2 120 0.000000 0.382943 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6179 698.463026 E 701.068142 3.000000 60.576483 108 120 0.000000 60.576483 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5565 27.505903 E 30.461672 3.000000 0.909916 7 120 0.000000 0.909916 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5599 1243.917125 E 1246.899112 3.000000 28.626410 23 120 0.000000 28.626410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5602 1243.759704 E 1246.752160 3.000000 26.340665 20 120 0.000000 26.340665 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5603 1244.273695 E 1246.859634 3.000000 28.925019 24 120 0.000000 28.925019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5667 2030.812810 E 2033.802093 3.000000 56.273299 24 120 0.000000 56.273299 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5571 6156.213878 E 6159.120920 3.000000 6958.107229 10422 120 0.000000 6958.107229 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5615 1308.530001 E 1309.304684 3.000000 24.830628 15 120 0.000000 24.830628 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5573 6156.271845 E 6159.213878 3.000000 6798.270832 9913 120 0.000000 6798.270832 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5643 1834.821469 E 1835.836851 3.000000 61.193099 20 120 0.000000 61.193099 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6952 5678.893157 E 5679.334814 3.000000 2.606224 4 120 0.000000 2.606224 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5634 1604.905533 E 1607.825141 3.000000 53.244457 20 120 0.000000 53.244457 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5704 2161.079209 E 2164.073284 3.000000 28.505268 11 120 0.000000 28.505268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5705 2161.257548 E 2162.782519 3.000000 28.668075 12 120 0.000000 28.668075 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5710 2162.173294 E 2164.602104 3.000000 29.547294 16 120 0.000000 29.547294 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6333 3512.110147 E 3514.864100 3.000000 10.868019 29 120 0.000000 10.868019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5575 6156.120920 E 6159.039849 3.000000 6669.060312 10133 120 0.000000 6669.060312 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5630 1334.192609 E 1335.792534 3.000000 36.310197 11 120 0.000000 36.310197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5680 2127.508196 E 2130.499659 3.000000 35.630276 19 120 0.000000 35.630276 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5685 2131.985144 E 2134.985144 3.000000 40.053783 21 120 0.000000 40.053783 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5656 1932.156392 E 1935.156392 3.000000 101.676739 50 120 0.000000 101.676739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n I kworker/2:0 7614 126793.503089 E 126796.454297 3.000000 73.794455 496 120 0.000000 73.794455 0.000000 0.000000 0 0 /\\n I kworker/2:2 7615 128255.635863 E 128258.634068 3.000000 85.390924 671 120 0.000000 85.390924 0.000000 0.000000 0 0 /\\n I kworker/2:1 7894 125955.038632 E 125957.931027 3.000000 2.375222 15 120 0.000000 2.375222 0.000000 0.000000 0 0 /\\n I kworker/2:4 7895 125955.637846 E 125958.489624 3.000000 6.693093 25 120 0.000000 6.693093 0.000000 0.000000 0 0 /\\n I kworker/2:5 7896 126717.631718 E 126720.624702 3.000000 6.396287 23 120 0.000000 6.396287 0.000000 0.000000 0 0 /\\n I kworker/2:6 7897 125909.302306 E 125912.295314 3.000000 0.070675 4 120 0.000000 0.070675 0.000000 0.000000 0 0 /\\n I kworker/2:7 7898 125909.300451 E 125912.299094 3.000000 0.027822 2 120 0.000000 0.027822 0.000000 0.000000 0 0 /\\n S python3 8290 2825.950267 E 2826.915361 3.000000 110.683658 16 120 0.000000 110.683658 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 8206 627.467897 E 630.428347 3.000000 4.929061 21 120 0.000000 4.929061 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n\\ncpu#3, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 237141\\n .nr_uninterruptible : 23\\n .next_balance : 4295.991775\\n .curr->pid : 0\\n .clock : 1324661.668235\\n .clock_task : 1324661.668235\\n .avg_idle : 351025\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3484.285470\\n .avg_vruntime : 3484.285470\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 683\\n .runnable_avg : 344\\n .util_avg : 344\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 683\\n .tg_load_avg : 2517\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.374829\\n .se->vruntime : 13924.039713\\n .se->sum_exec_runtime : 3491.604826\\n .se->load.weight : 316207\\n .se->avg.load_avg : 205\\n .se->avg.util_avg : 343\\n .se->avg.runnable_avg : 343\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-4.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 344.840285\\n .avg_vruntime : 344.840285\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324554.221837\\n .se->vruntime : 13918.259304\\n .se->sum_exec_runtime : 346.244841\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13924.039713\\n .avg_vruntime : 13924.039713\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 205\\n .runnable_avg : 343\\n .util_avg : 343\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 205\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.374829\\n .se->vruntime : 20222.028713\\n .se->sum_exec_runtime : 4156.439193\\n .se->load.weight : 261084\\n .se->avg.load_avg : 169\\n .se->avg.util_avg : 343\\n .se->avg.runnable_avg : 343\\n\\ncfs_rq[3]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 917.791045\\n .avg_vruntime : 917.791045\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324378.255234\\n .se->vruntime : 80969.407608\\n .se->sum_exec_runtime : 944.759726\\n .se->load.weight : 113728\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1382.284503\\n .avg_vruntime : 1382.284503\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324625.364050\\n .se->vruntime : 80970.080353\\n .se->sum_exec_runtime : 1383.543698\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 855.336111\\n .avg_vruntime : 855.336111\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.286277\\n .se->vruntime : 80970.167422\\n .se->sum_exec_runtime : 874.056465\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/dbus.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 987.962127\\n .avg_vruntime : 987.962127\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 54\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.813537\\n .se->vruntime : 80961.005356\\n .se->sum_exec_runtime : 989.135600\\n .se->load.weight : 190650\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4753.652294\\n .avg_vruntime : 4753.652294\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324617.447710\\n .se->vruntime : 80970.058206\\n .se->sum_exec_runtime : 5118.903415\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 56.151528\\n .avg_vruntime : 56.151528\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.724338\\n .se->vruntime : 80970.121776\\n .se->sum_exec_runtime : 57.756466\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 80970.167422\\n .avg_vruntime : 80970.167422\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.286277\\n .se->vruntime : 109976.919639\\n .se->sum_exec_runtime : 23970.840475\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 20222.028713\\n .avg_vruntime : 20222.028713\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 169\\n .runnable_avg : 343\\n .util_avg : 343\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 169\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.374829\\n .se->vruntime : 109976.873993\\n .se->sum_exec_runtime : 5903.619615\\n .se->load.weight : 201618\\n .se->avg.load_avg : 130\\n .se->avg.util_avg : 343\\n .se->avg.runnable_avg : 343\\n\\ncfs_rq[3]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 109976.919639\\n .avg_vruntime : 109976.919639\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 131\\n .runnable_avg : 344\\n .util_avg : 344\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[3]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.503004\\n .rt_runtime : 950.000000\\n\\ndl_rq[3]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/3 33 7886.138537 E 7889.102720 3.000000 0.348500 26 120 0.000000 0.348500 0.000000 0.000000 0 0 /\\n S idle_inject/3 34 -1.048518 E 0.451482 1.500000 0.001036 3 49 0.000000 0.001036 0.000000 0.000000 0 0 /\\n S migration/3 35 0.198781 E 0.948241 0.750000 180.636679 403 0 0.000000 180.636679 0.000000 0.000000 0 0 /\\n S ksoftirqd/3 36 109947.538278 E 109950.529626 3.000000 27.327519 1060 120 0.000000 27.327519 0.000000 0.000000 0 0 /\\n I kworker/3:0H 38 6.472894 E 6.507461 3.000000 0.011946 4 100 0.000000 0.011946 0.000000 0.000000 0 0 /\\n Ikworker/R-inet_ 64 -1.038883 E -1.004274 3.000000 0.009635 2 100 0.000000 0.009635 0.000000 0.000000 0 0 /\\n S kauditd 65 46475.465473 E 46478.440242 3.000000 2.812791 141 120 0.000000 2.812791 0.000000 0.000000 0 0 /\\n S kcompactd0 71 109910.234502 E 109913.205564 3.000000 130.582552 2629 120 0.000000 130.582552 0.000000 0.000000 0 0 /\\n S khugepaged 74 108546.250145 E 108744.707625 3.000000 17.563265 335 139 0.000000 17.563265 0.000000 0.000000 0 0 /\\n Ikworker/R-kinte 75 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-kbloc 76 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-blkcg 77 0.992084 E 0.957475 3.000000 0.000070 2 100 0.000000 0.000070 0.000000 0.000000 0 0 /\\n Ikworker/R-tpm_d 82 0.481367 E 0.446758 3.000000 0.000111 2 100 0.000000 0.000111 0.000000 0.000000 0 0 /\\n I kworker/R-md 84 0.480619 E 0.446010 3.000000 0.000748 2 100 0.000000 0.000748 0.000000 0.000000 0 0 /\\n Ikworker/R-edac- 86 0.479971 E 0.445362 3.000000 0.000648 2 100 0.000000 0.000648 0.000000 0.000000 0 0 /\\n S watchdogd 88 0.469682 E 2.529619 3.000000 0.000699 2 49 0.000000 0.000699 0.000000 0.000000 0 0 /\\n Ikworker/R-kthro 93 0.358457 E 0.323888 3.000000 0.021180 2 100 0.000000 0.021180 0.000000 0.000000 0 0 /\\n S irq/127-pciehp 94 0.342701 E 2.655906 3.000000 0.020513 2 49 0.000000 0.020513 0.000000 0.000000 0 0 /\\n I kworker/3:1H 153 108461.429427 E 108461.463962 3.000000 29.313974 1844 100 0.000000 29.313974 0.000000 0.000000 0 0 /\\n I kworker/3:2 226 108484.612476 E 108487.611547 3.000000 151.366207 1672 120 0.000000 151.366207 0.000000 0.000000 0 0 /\\n I kworker/u16:5 423 108473.585823 E 108476.581489 3.000000 450.000056 7167 120 0.000000 450.000056 0.000000 0.000000 0 0 /\\n I kworker/u16:8 451 109910.258489 E 109913.234502 3.000000 332.978246 3001 120 0.000000 332.978246 0.000000 0.000000 0 0 /\\n Sirq/192-iwlwifi 534 4059.665296 E 4062.645526 3.000000 1799.215615 15221 49 0.000000 1799.215615 0.000000 0.000000 0 0 /\\n Sirq/196-iwlwifi 539 3926.018591 E 3929.015940 3.000000 22.069661 115 49 0.000000 22.069661 0.000000 0.000000 0 0 /\\n I kworker/R-ttm 576 4266.892470 E 4266.927070 3.000000 0.005129 2 100 0.000000 0.005129 0.000000 0.000000 0 0 /\\n S gdbus 938 6.914745 E 9.332271 3.000000 25.658172 104 120 0.000000 25.658172 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S bluetoothd 794 9.926551 E 12.856955 3.000000 95.697157 403 120 0.000000 95.697157 0.000000 0.000000 0 0 /system.slice/bluetooth.service\\n S cron 795 11.121490 E 13.781281 3.000000 11.000872 33 120 0.000000 11.000872 0.000000 0.000000 0 0 /system.slice/cron.service\\n S dbus-daemon 796 987.962127 E 990.714299 3.000000 3909.305126 7635 120 0.000000 3909.305126 0.000000 0.000000 0 0 /system.slice/dbus.service\\n Sgnome-remote-de 800 6.461804 E 9.080981 3.000000 30.145068 265 120 0.000000 30.145068 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 922 3.894639 E 6.842135 3.000000 0.090432 2 120 0.000000 0.090432 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 831 206.525041 E 209.519124 3.000000 30.118582 233 120 0.000000 30.118582 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 852 310.199492 E 310.516321 3.000000 174.131223 492 120 0.000000 174.131223 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 853 2.078318 E 5.068150 3.000000 0.396308 18 120 0.000000 0.396308 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 859 -1.009569 E 1.951424 3.000000 0.039007 1 120 0.000000 0.039007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 838 1382.284503 E 1385.262356 3.000000 1775.852166 22290 120 0.000000 1775.852166 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 855 1213.691576 E 1216.570170 3.000000 262.513976 3397 120 0.000000 262.513976 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S wpa_supplicant 901 0.268710 E 2.669961 3.000000 382.615839 646 120 0.000000 382.615839 0.000000 0.000000 0 0 /system.slice/wpa_supplicant.service\\n S in:imuxsock 954 56.151528 E 59.145735 3.000000 107.949550 2887 120 0.000000 107.949550 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S sysbox-fs 1117 -1.009201 E 1.951424 3.000000 0.039375 1 120 0.000000 0.039375 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S pool-spawner 1482 0.012894 E 2.894979 3.000000 0.583316 4 120 0.000000 0.583316 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gdbus 1496 0.233532 E 2.720526 3.000000 1.188965 22 120 0.000000 1.188965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S systemd 1499 69.949753 E 72.719757 3.000000 1603.200178 704 120 0.000000 1603.200178 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S wireplumber 1515 9.144716 E 9.344452 3.000000 112.045348 651 109 0.000000 112.045348 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1528 7.387174 E 10.325290 3.000000 0.194691 7 120 0.000000 0.194691 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1538 7.325290 E 10.316534 3.000000 0.041734 2 120 0.000000 0.041734 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1518 2.669021 E 5.657668 3.000000 0.061989 3 120 0.000000 0.061989 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1568 8.156596 E 11.144147 3.000000 0.100728 3 120 0.000000 0.100728 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1561 8.265857 E 11.247889 3.000000 0.366731 9 120 0.000000 0.366731 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1598 939.350119 E 942.271140 3.000000 1.174062 16 120 0.000000 1.174062 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1610 940.229523 E 943.029924 3.000000 25.277575 172 120 0.000000 25.277575 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3008 5.879336 E 210.308511 3.000000 0.040484 1 139 0.000000 0.040484 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3009 5.885425 E 8.879336 3.000000 0.006089 1 120 0.000000 0.006089 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1681 0.987359 E 2.007769 3.000000 0.061217 2 120 0.000000 0.061217 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1664 855.336111 E 858.333616 3.000000 715.237650 41506 120 0.000000 715.237650 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2442 200.802238 E 203.083797 3.000000 2.686930 84 120 0.000000 2.686930 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2723 7.813904 E 10.463575 3.000000 10.333825 88 120 0.000000 10.333825 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2727 0.657300 E 2.325290 3.000000 0.078513 3 120 0.000000 0.078513 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S Xwaylan:disk$0 3264 278.898908 E 483.348085 3.000000 0.083880 3 139 0.000000 0.083880 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sat-spi2-registr 3034 320.892867 E 323.863419 3.000000 9.827853 77 120 0.000000 9.827853 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3084 396.608166 E 398.928697 3.000000 1.378050 9 120 0.000000 1.378050 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3104 50.860674 E 53.826398 3.000000 0.155648 6 120 0.000000 0.155648 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3161 51.477948 E 54.430767 3.000000 0.086363 2 120 0.000000 0.086363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3165 265.319650 E 268.242694 3.000000 4.804589 50 120 0.000000 4.804589 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sound 3155 264.524415 E 267.507911 3.000000 10.096889 65 120 0.000000 10.096889 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3200 264.748433 E 267.666962 3.000000 4.545875 44 120 0.000000 4.545875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3173 52.876485 E 55.844305 3.000000 0.094693 4 120 0.000000 0.094693 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3195 53.525055 E 56.511106 3.000000 0.140273 3 120 0.000000 0.140273 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3212 262.457088 E 265.449831 3.000000 0.389984 12 120 0.000000 0.389984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-printer 3290 687.615620 E 690.465261 3.000000 187.874291 30 120 0.000000 187.874291 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3339 700.168791 E 703.029139 3.000000 0.936467 13 120 0.000000 0.936467 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3351 699.316593 E 701.734734 3.000000 3.194350 33 120 0.000000 3.194350 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3355 311.731393 E 314.671777 3.000000 0.146965 3 120 0.000000 0.146965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3356 408.298560 E 411.135610 3.000000 9.785534 67 120 0.000000 9.785534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-dconf 3360 312.231880 E 315.209559 3.000000 3.710779 6 120 0.000000 3.710779 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3365 311.671777 E 314.666437 3.000000 0.056426 2 120 0.000000 0.056426 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3368 312.703029 E 315.657097 3.000000 0.439195 10 120 0.000000 0.439195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3509 -1.026522 E 1.969433 3.000000 0.022054 3 120 0.000000 0.022054 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3511 3.665450 E 6.655609 3.000000 0.052600 3 120 0.000000 0.052600 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3551 9.844973 E 12.792466 3.000000 0.052507 1 120 0.000000 0.052507 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3599 197.020590 E 197.487604 3.000000 67.673866 80 120 0.000000 67.673866 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S sshd 3669 24.119215 E 26.352417 3.000000 60.985253 32 120 0.000000 60.985253 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S pool-spawner 4748 11.609030 E 14.551046 3.000000 0.057984 1 120 0.000000 0.057984 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5100 224.686053 E 227.677039 3.000000 61.547451 14 120 0.000000 61.547451 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5110 343.548846 E 346.521771 3.000000 29.588517 40 120 0.000000 29.588517 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5123 344.840285 E 347.812386 3.000000 52.998664 1378 120 0.000000 52.998664 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5127 268.080230 E 270.854937 3.000000 0.225293 1 120 0.000000 0.225293 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5208 850.513236 E 853.511607 3.000000 32.292108 2347 120 0.000000 32.292108 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5238 860.343619 E 862.504098 3.000000 65.029340 180 120 0.000000 65.029340 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6176 581.772309 E 584.524663 3.000000 23.702247 70 120 0.000000 23.702247 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5262 307.365255 E 310.358223 3.000000 2.509248 7 120 0.000000 2.509248 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5270 864.107153 E 867.068195 3.000000 60.720338 153 120 0.000000 60.720338 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5393 441.075088 E 444.057442 3.000000 1.906891 4 120 0.000000 1.906891 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5397 441.007142 E 443.951633 3.000000 0.134457 6 120 0.000000 0.134457 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6178 865.053197 E 867.837169 3.000000 23.671044 63 120 0.000000 23.671044 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5455 329.155687 E 332.140177 3.000000 0.106899 6 120 0.000000 0.106899 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 5471 4753.652294 E 4756.638658 3.000000 91.452842 969 120 0.000000 91.452842 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5566 0.867397 E 3.800664 3.000000 6.451868 10 120 0.000000 6.451868 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5666 1455.901773 E 1455.931322 3.000000 52.537643 16 120 0.000000 52.537643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5692 1542.872428 E 1545.867503 3.000000 39.486389 14 120 0.000000 39.486389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6337 3770.130574 E 3772.832043 3.000000 1.045980 6 120 0.000000 1.045980 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6339 2749.264215 E 2752.131956 3.000000 10.760643 17 120 0.000000 10.760643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6342 2748.954739 E 2751.740522 3.000000 9.140090 22 120 0.000000 9.140090 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5607 675.005069 E 677.994134 3.000000 108.505409 56 120 0.000000 108.505409 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5675 1497.517568 E 1500.507764 3.000000 53.995739 18 120 0.000000 53.995739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5642 1261.164512 E 1264.157881 3.000000 21.195408 8 120 0.000000 21.195408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5701 1573.282016 E 1576.275123 3.000000 54.439900 15 120 0.000000 54.439900 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6335 3769.832043 E 3772.073778 3.000000 3.802600 4 120 0.000000 3.802600 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5631 796.046325 E 798.991768 3.000000 40.045155 23 120 0.000000 40.045155 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5681 1527.879182 E 1529.909057 3.000000 33.967325 14 120 0.000000 33.967325 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5684 1530.679057 E 1533.672041 3.000000 36.744957 12 120 0.000000 36.744957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5711 1596.022219 E 1599.010783 3.000000 26.922198 10 120 0.000000 26.922198 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5712 1598.317683 E 1601.311774 3.000000 27.952471 10 120 0.000000 27.952471 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5713 1598.100775 E 1601.093750 3.000000 28.977268 10 120 0.000000 28.977268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5716 1603.713181 E 1606.705277 3.000000 27.988249 8 120 0.000000 27.988249 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6340 3770.272623 E 3773.130574 3.000000 0.935232 6 120 0.000000 0.935232 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5648 1264.334911 E 1267.326576 3.000000 21.039304 8 120 0.000000 21.039304 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5649 1267.119289 E 1270.110336 3.000000 23.813972 11 120 0.000000 23.813972 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5652 1267.460598 E 1270.456344 3.000000 24.138886 11 120 0.000000 24.138886 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5718 1603.710384 E 1606.705277 3.000000 34.052954 13 120 0.000000 34.052954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5621 1135.587476 E 1138.556525 3.000000 78.962899 785 120 0.000000 78.962899 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S gmain 7550 533.069796 E 535.759562 3.000000 33.341424 218 120 0.000000 33.341424 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/3:0 7622 109961.620097 E 109964.594176 3.000000 96.502890 889 120 0.000000 96.502890 0.000000 0.000000 0 0 /\\n I kworker/3:1 7629 104518.107058 E 104521.101731 3.000000 0.105449 6 120 0.000000 0.105449 0.000000 0.000000 0 0 /\\n Z dbus-daemon 8166 939.817450 E 942.449606 3.000000 0.891691 2 120 0.000000 0.891691 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S python3 8291 3388.952180 E 3391.902430 3.000000 110.832888 13 120 0.000000 110.832888 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 8436 3484.285470 E 3487.253215 3.000000 0.286378 2 120 0.000000 0.286378 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#4, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 202104\\n .nr_uninterruptible : 183\\n .next_balance : 4295.991778\\n .curr->pid : 0\\n .clock : 1324661.680897\\n .clock_task : 1324661.680897\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[4]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2476.416696\\n .avg_vruntime : 2476.416696\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 3\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 3\\n .tg_load_avg : 2517\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324651.551051\\n .se->vruntime : 12176.180432\\n .se->sum_exec_runtime : 2482.590090\\n .se->load.weight : 701\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[4]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 12176.180432\\n .avg_vruntime : 12176.180432\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324651.551051\\n .se->vruntime : 19862.805246\\n .se->sum_exec_runtime : 2800.179939\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[4]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4607.391202\\n .avg_vruntime : 4607.391202\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324275.311324\\n .se->vruntime : 82618.225494\\n .se->sum_exec_runtime : 4978.610206\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1232.281149\\n .avg_vruntime : 1232.281149\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324625.342522\\n .se->vruntime : 82628.989560\\n .se->sum_exec_runtime : 1234.233584\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 736.018741\\n .avg_vruntime : 736.018741\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.840273\\n .se->vruntime : 82628.966121\\n .se->sum_exec_runtime : 772.107661\\n .se->load.weight : 139662\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 761.528078\\n .avg_vruntime : 761.528078\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324380.012228\\n .se->vruntime : 82628.971930\\n .se->sum_exec_runtime : 768.250318\\n .se->load.weight : 24923\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/dbus.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 347.230698\\n .avg_vruntime : 347.230698\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 54\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324280.860720\\n .se->vruntime : 82619.969142\\n .se->sum_exec_runtime : 348.567076\\n .se->load.weight : 149796\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5.832136\\n .avg_vruntime : 5.832136\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324288.435858\\n .se->vruntime : 82620.067771\\n .se->sum_exec_runtime : 6.943289\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 82628.989560\\n .avg_vruntime : 82628.989560\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324625.342522\\n .se->vruntime : 116160.547706\\n .se->sum_exec_runtime : 25133.486839\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19862.805246\\n .avg_vruntime : 19862.805246\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324651.551051\\n .se->vruntime : 116161.156046\\n .se->sum_exec_runtime : 6634.051609\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 3\\n .se->avg.runnable_avg : 3\\n\\ncfs_rq[4]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 116161.156046\\n .avg_vruntime : 116161.156046\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[4]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[4]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/4 39 8611.189859 E 8614.138975 3.000000 0.358588 26 120 0.000000 0.358588 0.000000 0.000000 0 0 /\\n S idle_inject/4 40 -1.048576 E 1.201424 2.250000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S migration/4 41 1.176891 E 3.426891 2.250000 178.194082 398 0 0.000000 178.194082 0.000000 0.000000 0 0 /\\n S ksoftirqd/4 42 116157.086503 E 116160.081264 3.000000 21.907149 920 120 0.000000 21.907149 0.000000 0.000000 0 0 /\\n I kworker/4:0 43 116157.461386 E 116160.456867 3.000000 290.466597 2281 120 0.000000 290.466597 0.000000 0.000000 0 0 /\\n I kworker/4:0H 44 132.163682 E 132.198197 3.000000 0.019668 4 100 0.000000 0.019668 0.000000 0.000000 0 0 /\\n S khungtaskd 67 112404.057085 E 112406.897110 3.000000 2.685956 12 120 0.000000 2.685956 0.000000 0.000000 0 0 /\\n I kworker/4:1 81 111404.735898 E 111407.726928 3.000000 312.565543 2708 120 0.000000 312.565543 0.000000 0.000000 0 0 /\\n Ikworker/R-ata_s 83 5.270300 E 5.304909 3.000000 0.000746 2 100 0.000000 0.000746 0.000000 0.000000 0 0 /\\n Ikworker/R-md_bi 85 5.270300 E 5.304909 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-devfr 87 5.273628 E 5.308237 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/128-pciehp 95 0.339759 E 2.659354 3.000000 0.006738 3 49 0.000000 0.006738 0.000000 0.000000 0 0 /\\n S hwrng 101 116095.215977 E 116097.865307 3.000000 56.896152 233 120 0.000000 56.896152 0.000000 0.000000 0 0 /\\n I kworker/4:1H 194 114649.388879 E 114649.423117 3.000000 11.744018 979 100 0.000000 11.744018 0.000000 0.000000 0 0 /\\n Ikworker/R-cfg80 514 3339.240577 E 3339.275140 3.000000 0.012808 2 100 0.000000 0.012808 0.000000 0.000000 0 0 /\\n Sirq/197-iwlwifi 540 3926.376252 E 3929.374115 3.000000 18.146709 69 49 0.000000 18.146709 0.000000 0.000000 0 0 /\\n Sirq/201-iwlwifi 544 3926.622118 E 3929.620867 3.000000 0.136252 5 49 0.000000 0.136252 0.000000 0.000000 0 0 /\\n Ssystemd-timesyn 671 9.652012 E 12.416718 3.000000 73.477447 98 120 0.000000 73.477447 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n S pool-spawner 929 0.427240 E 3.421670 3.000000 0.182155 7 120 0.000000 0.182155 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 918 4.224344 E 6.070337 3.000000 17.705503 95 120 0.000000 17.705503 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 1042 1.501824 E 4.479627 3.000000 0.055072 2 120 0.000000 0.055072 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 1046 138.898184 E 141.878430 3.000000 221.887533 899 120 0.000000 221.887533 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S sysbox-mgr 950 1232.281149 E 1235.263519 3.000000 1581.725542 20683 120 0.000000 1581.725542 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gmain 935 905.812680 E 908.721991 3.000000 57.780095 332 120 0.000000 57.780095 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S gmain 1094 3.946236 E 6.930995 3.000000 0.050521 2 120 0.000000 0.050521 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gmain 1093 3.276503 E 6.269558 3.000000 0.066470 2 120 0.000000 0.066470 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1490 736.018741 E 738.940772 3.000000 250.285967 5761 120 0.000000 250.285967 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1505 733.052743 E 736.047257 3.000000 265.717918 6333 120 0.000000 265.717918 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1532 0.548481 E 3.506291 3.000000 0.195304 7 120 0.000000 0.195304 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1547 0.212741 E 3.208152 3.000000 0.019168 3 79 0.000000 0.019168 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1519 -1.009572 E 1.951424 3.000000 0.039004 1 120 0.000000 0.039004 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1535 10.910098 E 14.575757 3.000000 65.949337 133 121 0.000000 65.949337 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S fuse mainloop 1563 0.636104 E 3.602310 3.000000 0.327847 4 120 0.000000 0.327847 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1599 2235.639515 E 2238.605289 3.000000 59.044608 352 120 0.000000 59.044608 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1607 2235.605289 E 2238.078102 3.000000 114.618935 162 120 0.000000 114.618935 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Spool-gnome-shel 8165 2234.058274 E 2237.008680 3.000000 0.139526 2 120 0.000000 0.139526 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1682 -1.007916 E 1.951424 3.000000 0.040660 1 120 0.000000 0.040660 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S gdbus 1683 11.569066 E 14.320602 3.000000 54.632888 346 120 0.000000 54.632888 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1700 295.680439 E 298.486174 3.000000 10.233894 150 120 0.000000 10.233894 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2443 284.936640 E 287.916427 3.000000 35.663598 1701 120 0.000000 35.663598 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2402 44.216112 E 47.201754 3.000000 0.083347 6 120 0.000000 0.083347 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2404 550.819950 E 553.768684 3.000000 60.418806 136 120 0.000000 60.418806 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2420 44.291955 E 47.265037 3.000000 1.429798 32 120 0.000000 1.429798 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 3027 494.594461 E 497.580076 3.000000 1.096695 37 120 0.000000 1.096695 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dbus-daemon 3028 871.982914 E 874.971379 3.000000 8.820633 75 120 0.000000 8.820633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3040 23.893471 E 26.854493 3.000000 0.075685 2 120 0.000000 0.075685 0.000000 0.000000 0 0 /system.slice/colord.service\\n S pool-spawner 3070 84.801335 E 87.763845 3.000000 0.076250 2 120 0.000000 0.076250 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3071 84.763845 E 87.725839 3.000000 0.038006 1 120 0.000000 0.038006 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3086 585.187130 E 587.886236 3.000000 0.803427 9 120 0.000000 0.803427 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3113 121.997580 E 124.912918 3.000000 1.251295 53 120 0.000000 1.251295 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3120 104.510615 E 107.420360 3.000000 0.090255 1 120 0.000000 0.090255 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3132 104.942110 E 107.902899 3.000000 0.039211 1 120 0.000000 0.039211 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3147 432.291787 E 435.215403 3.000000 15.128436 45 120 0.000000 15.128436 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-housekeepin 3169 2230.524398 E 2231.213833 3.000000 310.971397 163 120 0.000000 310.971397 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3199 432.208898 E 435.123843 3.000000 4.825108 55 120 0.000000 4.825108 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-power 3172 934.048735 E 936.983961 3.000000 531.922828 648 120 0.000000 531.922828 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gjs 3333 961.492427 E 962.754198 3.000000 64.931215 51 120 0.000000 64.931215 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3388 494.502646 E 497.479395 3.000000 0.383639 13 120 0.000000 0.383639 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x1:disk$0 3384 493.429311 E 698.009560 3.000000 0.064318 1 139 0.000000 0.064318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3391 494.823326 E 497.820442 3.000000 0.047210 2 120 0.000000 0.047210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 3453 0.638992 E 1.951424 3.000000 0.409584 1 120 0.000000 0.409584 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S module-rt 3508 16.982589 E 19.952500 3.000000 0.177132 8 120 0.000000 0.177132 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3512 16.731938 E 19.727789 3.000000 0.017591 3 120 0.000000 0.017591 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3519 17.278259 E 20.249377 3.000000 0.054962 2 120 0.000000 0.054962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S dbus-daemon 3501 17.501364 E 20.425841 3.000000 9.308695 60 120 0.000000 9.308695 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3547 17.425841 E 20.278259 3.000000 0.147582 1 120 0.000000 0.147582 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3596 0.171413 E 2.703804 3.000000 0.124783 1 120 0.000000 0.124783 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S sshd 3711 2476.416696 E 2479.311189 3.000000 3979.598312 11595 120 0.000000 3979.598312 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S gdbus 4750 0.089371 E 2.823358 3.000000 0.503147 15 120 0.000000 0.503147 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S timer 4751 0.479745 E 2.495817 3.000000 0.024438 1 120 0.000000 0.024438 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5109 240.592164 E 243.549316 3.000000 11.170384 13 120 0.000000 11.170384 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5122 196.344791 E 199.329849 3.000000 63.034858 39 120 0.000000 63.034858 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5215 671.515673 E 674.461604 3.000000 2.120452 50 120 0.000000 2.120452 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5242 260.021354 E 262.990538 3.000000 1.439470 33 120 0.000000 1.439470 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5244 705.594625 E 708.477749 3.000000 70.776582 153 120 0.000000 70.776582 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5267 249.428702 E 252.410406 3.000000 0.050853 2 120 0.000000 0.050853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7611 637.230743 E 640.230743 3.000000 25.728522 29 120 0.000000 25.728522 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sjemalloc_bg_thd 5374 138.590327 E 141.506388 3.000000 0.462401 8 120 0.000000 0.462401 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Sjemalloc_bg_thd 5375 0.560167 E 2.423287 3.000000 0.016546 1 120 0.000000 0.016546 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5406 671.698154 E 674.640976 3.000000 2.190423 47 120 0.000000 2.190423 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5407 291.517519 E 294.508545 3.000000 0.110756 6 120 0.000000 0.110756 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5423 706.328736 E 709.305783 3.000000 69.255734 167 120 0.000000 69.255734 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5428 264.775703 E 267.763855 3.000000 0.397285 12 120 0.000000 0.397285 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5458 707.212523 E 710.118289 3.000000 51.202233 120 120 0.000000 51.202233 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5479 5.910874 E 8.239062 3.000000 24.294118 29 120 0.000000 24.294118 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5564 5.960558 E 8.911409 3.000000 0.756076 9 120 0.000000 0.756076 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 6352 3779.306625 E 3782.026102 3.000000 0.963905 5 120 0.000000 0.963905 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5693 2182.334914 E 2185.327152 3.000000 38.955454 14 120 0.000000 38.955454 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5670 2131.268004 E 2134.260351 3.000000 36.996673 11 120 0.000000 36.996673 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5671 2135.196688 E 2138.196688 3.000000 40.909890 14 120 0.000000 40.909890 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5640 1921.565079 E 1924.559625 3.000000 28.984572 12 120 0.000000 28.984572 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5644 1921.963150 E 1922.987767 3.000000 52.350338 20 120 0.000000 52.350338 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5696 2197.393849 E 2200.390282 3.000000 31.127998 15 120 0.000000 31.127998 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5699 2197.192376 E 2200.184357 3.000000 30.902525 11 120 0.000000 30.902525 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6949 3855.962894 E 3858.538841 3.000000 1.387175 6 120 0.000000 1.387175 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5632 1326.785621 E 1326.892101 3.000000 100.083757 4 120 0.000000 100.083757 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5658 1985.657062 E 1988.647654 3.000000 37.909073 12 120 0.000000 37.909073 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5660 1989.692299 E 1989.732082 3.000000 55.543120 15 120 0.000000 55.543120 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5719 2242.781412 E 2242.811558 3.000000 49.489219 18 120 0.000000 49.489219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6341 3778.491564 E 3778.505314 3.000000 3.051447 4 120 0.000000 3.051447 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6357 182.978177 E 185.921894 3.000000 6.343402 17 120 0.000000 6.343402 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/4:2 7634 114024.754785 E 114027.696823 3.000000 0.283289 13 120 0.000000 0.283289 0.000000 0.000000 0 0 /\\n S python3 8204 2319.993085 E 2322.935524 3.000000 9.153384 85 120 0.000000 9.153384 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8289 2441.236992 E 2443.209233 3.000000 110.816405 16 120 0.000000 110.816405 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#5, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 242002\\n .nr_uninterruptible : -11\\n .next_balance : 4295.991782\\n .curr->pid : 0\\n .clock : 1324666.719251\\n .clock_task : 1324666.719251\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[5]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4513.430956\\n .avg_vruntime : 4513.430956\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 617\\n .runnable_avg : 191\\n .util_avg : 191\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 617\\n .tg_load_avg : 2517\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.048411\\n .se->vruntime : 14813.973963\\n .se->sum_exec_runtime : 4519.139236\\n .se->load.weight : 318675\\n .se->avg.load_avg : 185\\n .se->avg.util_avg : 190\\n .se->avg.runnable_avg : 190\\n\\ncfs_rq[5]:/user.slice/user-1000.slice/session-4.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 108.707549\\n .avg_vruntime : 108.707549\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324548.112261\\n .se->vruntime : 14784.810266\\n .se->sum_exec_runtime : 109.888484\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 14813.973963\\n .avg_vruntime : 14813.973963\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 186\\n .runnable_avg : 190\\n .util_avg : 190\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 186\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.048411\\n .se->vruntime : 22344.824559\\n .se->sum_exec_runtime : 4861.538050\\n .se->load.weight : 314267\\n .se->avg.load_avg : 182\\n .se->avg.util_avg : 190\\n .se->avg.runnable_avg : 190\\n\\ncfs_rq[5]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 732.852116\\n .avg_vruntime : 732.852116\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324377.620039\\n .se->vruntime : 77707.114003\\n .se->sum_exec_runtime : 752.839222\\n .se->load.weight : 122625\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 816.229705\\n .avg_vruntime : 816.229705\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.223937\\n .se->vruntime : 77708.103013\\n .se->sum_exec_runtime : 839.891160\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10904.400077\\n .avg_vruntime : 10904.400077\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324569.046098\\n .se->vruntime : 77708.077750\\n .se->sum_exec_runtime : 11482.389253\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/systemd-hostnamed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 86.720596\\n .avg_vruntime : 86.720596\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324290.324714\\n .se->vruntime : 77700.682895\\n .se->sum_exec_runtime : 87.769172\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 87.953522\\n .avg_vruntime : 87.953522\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324478.697362\\n .se->vruntime : 77707.977012\\n .se->sum_exec_runtime : 111.207415\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/cups-browsed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 33.116905\\n .avg_vruntime : 33.116905\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.822410\\n .se->vruntime : 77700.755677\\n .se->sum_exec_runtime : 35.094089\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 77708.103013\\n .avg_vruntime : 77708.103013\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324656.223937\\n .se->vruntime : 114187.794595\\n .se->sum_exec_runtime : 27310.194121\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 22344.824559\\n .avg_vruntime : 22344.824559\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 183\\n .runnable_avg : 190\\n .util_avg : 190\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 183\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324642.048411\\n .se->vruntime : 114187.769332\\n .se->sum_exec_runtime : 7352.559578\\n .se->load.weight : 396476\\n .se->avg.load_avg : 231\\n .se->avg.util_avg : 190\\n .se->avg.runnable_avg : 190\\n\\ncfs_rq[5]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 471.857095\\n .avg_vruntime : 471.857095\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324611.805031\\n .se->vruntime : 114142.684520\\n .se->sum_exec_runtime : 475.908327\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 1\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[5]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 114187.794595\\n .avg_vruntime : 114187.794595\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 236\\n .runnable_avg : 195\\n .util_avg : 192\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[5]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[5]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S systemd 1 471.857095 E 474.838853 3.000000 4262.674042 4693 120 0.000000 4262.674042 0.000000 0.000000 0 0 /init.scope\\n S cpuhp/5 45 6999.749005 E 7002.677723 3.000000 0.271587 26 120 0.000000 0.271587 0.000000 0.000000 0 0 /\\n S idle_inject/5 46 -1.043636 E 1.204967 2.250000 0.004272 3 49 0.000000 0.004272 0.000000 0.000000 0 0 /\\n S migration/5 47 3.168235 E 5.417506 2.250000 179.909598 404 0 0.000000 179.909598 0.000000 0.000000 0 0 /\\n S ksoftirqd/5 48 114128.701078 E 114131.691402 3.000000 35.586303 1476 120 0.000000 35.586303 0.000000 0.000000 0 0 /\\n I kworker/5:0H 50 785.846494 E 785.880922 3.000000 0.029057 4 100 0.000000 0.029057 0.000000 0.000000 0 0 /\\n I kworker/u16:2 68 111764.622473 E 111767.225983 3.000000 228.725635 4171 120 0.000000 228.725635 0.000000 0.000000 0 0 /\\n I kworker/5:1H 90 112188.317655 E 112188.352130 3.000000 8.942135 451 100 0.000000 8.942135 0.000000 0.000000 0 0 /\\n S irq/129-pciehp 96 0.336759 E 2.662268 3.000000 0.006014 3 49 0.000000 0.006014 0.000000 0.000000 0 0 /\\n Ikworker/R-acpi_ 100 803.615043 E 803.649645 3.000000 0.003136 2 100 0.000000 0.003136 0.000000 0.000000 0 0 /\\n I kworker/R-mld 103 822.822143 E 822.856734 3.000000 0.020268 2 100 0.000000 0.020268 0.000000 0.000000 0 0 /\\n Ikworker/R-ipv6_ 105 822.824530 E 822.859136 3.000000 0.002654 2 100 0.000000 0.002654 0.000000 0.000000 0 0 /\\n Ikworker/R-kstrp 112 825.212532 E 825.247134 3.000000 0.002925 2 100 0.000000 0.002925 0.000000 0.000000 0 0 /\\n I kworker/5:3 129 114174.440195 E 114177.413374 3.000000 200.213696 2282 120 0.000000 200.213696 0.000000 0.000000 0 0 /\\n Sirq/173-FRMW000 225 1210.147450 E 1213.127987 3.000000 0.350809 4 49 0.000000 0.350809 0.000000 0.000000 0 0 /\\n Sirq/174-PIXA385 227 1218.791465 E 1221.760797 3.000000 0.479717 4 49 0.000000 0.479717 0.000000 0.000000 0 0 /\\n Sjbd2/nvme0n1p5- 264 112188.339118 E 112191.317655 3.000000 112.288874 1889 120 0.000000 112.288874 0.000000 0.000000 0 0 /\\n S psimon 395 1769.940955 E 1772.934339 3.000000 0.031393 2 98 0.000000 0.031393 0.000000 0.000000 0 0 /\\n Sirq/198-iwlwifi 541 3741.717084 E 3744.716044 3.000000 10.871960 54 49 0.000000 10.871960 0.000000 0.000000 0 0 /\\n Ssystemd-resolve 665 99.458935 E 101.917007 3.000000 866.812376 1163 120 0.000000 866.812376 0.000000 0.000000 0 0 /system.slice/systemd-resolved.service\\n S pool-spawner 917 0.598568 E 2.374275 3.000000 0.139307 3 120 0.000000 0.139307 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S snapd 2921 150.000733 E 153.000733 3.000000 139.295594 243 120 0.000000 139.295594 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2922 171.864821 E 174.787822 3.000000 132.003097 164 120 0.000000 132.003097 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gmain 953 0.274092 E 3.243919 3.000000 0.030173 1 120 0.000000 0.030173 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 858 3.421352 E 6.394871 3.000000 1.493133 34 120 0.000000 1.493133 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 951 1526.105386 E 1529.072090 3.000000 2641.593505 32640 120 0.000000 2641.593505 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S pool-spawner 877 0.968110 E 1.951424 3.000000 0.080466 1 120 0.000000 0.080466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gdbus 888 35.909079 E 38.365218 3.000000 26.761403 424 120 0.000000 26.761403 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 1096 5.835716 E 8.797854 3.000000 0.070490 2 120 0.000000 0.070490 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1108 27.269180 E 29.745638 3.000000 31.155174 154 120 0.000000 31.155174 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1113 1.961790 E 4.958126 3.000000 10.058361 153 120 0.000000 10.058361 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1115 1.948170 E 4.912969 3.000000 0.190242 20 120 0.000000 0.190242 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1447 2.681121 E 5.678513 3.000000 22.987360 343 120 0.000000 22.987360 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 1485 3.989182 E 6.948338 3.000000 16.521431 131 120 0.000000 16.521431 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gmain 1494 2.779321 E 5.771975 3.000000 0.065744 3 120 0.000000 0.065744 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire-pulse 1516 26.233418 E 26.485480 3.000000 19.482467 71 109 0.000000 19.482467 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1537 1740.275778 E 1743.263615 3.000000 138.194824 776 120 0.000000 138.194824 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 1557 26.114410 E 28.921546 3.000000 4.480217 9 120 0.000000 4.480217 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1605 1740.971958 E 1743.630714 3.000000 21.058195 178 120 0.000000 21.058195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S cups-browsed 1656 33.116905 E 36.044123 3.000000 244.338534 1045 120 0.000000 244.338534 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1657 171.907138 E 174.896341 3.000000 206.971759 2083 120 0.000000 206.971759 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1669 344.620239 E 347.584650 3.000000 69.767271 2073 120 0.000000 69.767271 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1674 813.130781 E 815.142229 3.000000 224.299049 3503 120 0.000000 224.299049 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2394 356.668054 E 359.629743 3.000000 47.946204 1790 120 0.000000 47.946204 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2691 816.229705 E 819.204442 3.000000 489.241031 9090 120 0.000000 489.241031 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2401 684.796403 E 687.573262 3.000000 30.759329 141 120 0.000000 30.759329 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2817 0.969895 E 2.006035 3.000000 0.078681 2 120 0.000000 0.078681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S pool-spawner 3023 33.403610 E 36.375096 3.000000 0.062687 2 120 0.000000 0.062687 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3036 49.145973 E 52.105602 3.000000 0.040371 1 120 0.000000 0.040371 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 3069 409.720330 E 411.795486 3.000000 3.645960 9 120 0.000000 3.645960 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3087 923.987178 E 926.920563 3.000000 0.691954 9 120 0.000000 0.691954 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3102 260.315442 E 263.308450 3.000000 0.043178 2 120 0.000000 0.043178 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3125 271.161595 E 274.095199 3.000000 0.721540 8 120 0.000000 0.721540 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3134 695.253497 E 698.160802 3.000000 18.015111 51 120 0.000000 18.015111 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3142 271.415232 E 274.408854 3.000000 0.052239 2 120 0.000000 0.052239 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3144 283.234823 E 286.195976 3.000000 0.156948 5 120 0.000000 0.156948 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3160 274.593574 E 277.561112 3.000000 0.032462 1 120 0.000000 0.032462 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3205 694.073828 E 697.059396 3.000000 0.539966 11 120 0.000000 0.539966 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3190 291.047172 E 294.041558 3.000000 0.069455 3 120 0.000000 0.069455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3191 291.082083 E 294.047172 3.000000 0.064373 2 120 0.000000 0.064373 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3171 277.903854 E 280.871361 3.000000 0.032493 1 120 0.000000 0.032493 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3208 289.768671 E 292.723596 3.000000 0.045075 1 120 0.000000 0.045075 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3341 1268.500237 E 1271.417686 3.000000 1.040132 11 120 0.000000 1.040132 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3347 710.823685 E 713.793865 3.000000 0.043738 2 120 0.000000 0.043738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3348 710.793865 E 713.767416 3.000000 0.026449 1 120 0.000000 0.026449 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-daemon 3346 949.332769 E 952.288245 3.000000 42.959636 73 120 0.000000 42.959636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11 3362 923.587585 E 926.310829 3.000000 45.522706 130 120 0.000000 45.522706 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3371 726.850047 E 729.799574 3.000000 0.076524 2 120 0.000000 0.076524 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sibus-engine-sim 3378 728.885393 E 731.863437 3.000000 4.625539 14 120 0.000000 4.625539 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3513 1.729229 E 4.725188 3.000000 0.034825 5 120 0.000000 0.034825 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S wireplumber 3472 11.462644 E 13.755284 3.000000 40.504423 63 120 0.000000 40.504423 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S sshd 3542 90.302397 E 93.214918 3.000000 200.217407 782 120 0.000000 200.217407 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S fuse mainloop 3555 8.358478 E 11.299358 3.000000 0.319715 3 120 0.000000 0.319715 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3550 7.088145 E 10.059456 3.000000 0.088092 2 120 0.000000 0.088092 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3553 7.326957 E 10.315957 3.000000 0.238812 7 120 0.000000 0.238812 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fusermount3 3556 8.289925 E 10.425022 3.000000 0.864903 1 120 0.000000 0.864903 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Ssnapd-desktop-i 3594 12.810910 E 15.645251 3.000000 16.524009 26 120 0.000000 16.524009 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gmain 3597 12.645251 E 15.600431 3.000000 0.044820 1 120 0.000000 0.044820 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S docker 5102 107.870447 E 110.830169 3.000000 5.213757 31 120 0.000000 5.213757 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5104 76.789473 E 79.661122 3.000000 0.935648 8 120 0.000000 0.935648 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5105 76.471056 E 79.122576 3.000000 0.348480 1 120 0.000000 0.348480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5126 108.707549 E 111.636618 3.000000 23.829877 155 120 0.000000 23.829877 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5131 107.781254 E 110.291644 3.000000 18.514315 43 120 0.000000 18.514315 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5212 345.929760 E 348.904077 3.000000 0.025683 1 120 0.000000 0.025683 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5221 346.057686 E 349.014905 3.000000 0.042781 1 120 0.000000 0.042781 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5236 695.378723 E 698.289479 3.000000 5.757493 260 120 0.000000 5.757493 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5237 695.466483 E 698.378723 3.000000 4.039035 52 120 0.000000 4.039035 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5239 318.088842 E 321.070226 3.000000 0.081546 6 120 0.000000 0.081546 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5241 695.289479 E 697.896337 3.000000 63.641726 154 120 0.000000 63.641726 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S postgres 5289 111.770126 E 114.233419 3.000000 136.981404 226 120 0.000000 136.981404 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S docker-proxy 5396 393.299699 E 396.076725 3.000000 0.339736 7 120 0.000000 0.339736 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5401 606.630397 E 609.595944 3.000000 1.026440 24 120 0.000000 1.026440 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5405 356.859342 E 359.855343 3.000000 1.795184 14 120 0.000000 1.795184 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5409 356.858058 E 359.853277 3.000000 0.086967 4 120 0.000000 0.086967 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5410 356.739028 E 359.714574 3.000000 0.024454 1 120 0.000000 0.024454 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5419 323.414770 E 326.408620 3.000000 2.963462 8 120 0.000000 2.963462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5421 323.427369 E 326.411167 3.000000 0.463860 15 120 0.000000 0.463860 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5429 696.339011 E 699.287069 3.000000 55.753035 166 120 0.000000 55.753035 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5454 327.251540 E 330.239598 3.000000 0.078194 9 120 0.000000 0.078194 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7654 697.131944 E 700.121030 3.000000 3.880674 18 120 0.000000 3.880674 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5563 4.567941 E 7.480591 3.000000 6.436335 18 120 0.000000 6.436335 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5614 1204.439296 E 1207.439296 3.000000 25.601066 7 120 0.000000 25.601066 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5617 1206.891768 E 1209.822325 3.000000 28.034014 9 120 0.000000 28.034014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5619 1208.780352 E 1210.861964 3.000000 29.914255 9 120 0.000000 29.914255 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5608 1185.932477 E 1188.922565 3.000000 37.946501 14 120 0.000000 37.946501 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5672 1995.255322 E 1995.274003 3.000000 73.850813 20 120 0.000000 73.850813 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5641 1768.202285 E 1771.193258 3.000000 54.929183 14 120 0.000000 54.929183 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5695 2071.651562 E 2071.688139 3.000000 32.936801 11 120 0.000000 32.936801 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6951 3276.159243 E 3279.007946 3.000000 6.751696 107 120 0.000000 6.751696 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5574 10904.400077 E 10907.309531 3.000000 6677.392599 10412 120 0.000000 6677.392599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5637 1539.174198 E 1540.010364 3.000000 38.326835 12 120 0.000000 38.326835 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5638 1538.793722 E 1540.152260 3.000000 37.736919 12 120 0.000000 37.736919 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5709 2084.464804 E 2087.450225 3.000000 29.991031 9 120 0.000000 29.991031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5654 2046.336174 E 2049.326048 3.000000 38.012486 12 120 0.000000 38.012486 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5657 1803.954929 E 1805.989704 3.000000 38.959841 12 120 0.000000 38.959841 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5659 1807.015254 E 1809.026693 3.000000 42.007189 11 120 0.000000 42.007189 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5714 2109.823685 E 2109.851682 3.000000 36.490008 12 120 0.000000 36.490008 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6345 3187.769027 E 3190.605767 3.000000 11.445595 34 120 0.000000 11.445595 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5625 110.383771 E 113.309640 3.000000 1.380581 6 120 0.000000 1.380581 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6359 47.603920 E 50.553935 3.000000 6.378483 16 120 0.000000 6.378483 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6361 28.804050 E 31.622006 3.000000 6.682534 15 120 0.000000 6.682534 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/u17:1 7565 108539.619300 E 108539.653039 3.000000 566.174467 8892 100 0.000000 566.174467 0.000000 0.000000 0 0 /\\n I kworker/5:1 7621 111810.377989 E 111813.372620 3.000000 0.181298 6 120 0.000000 0.181298 0.000000 0.000000 0 0 /\\n I kworker/u16:1 8151 111764.425047 E 111767.420549 3.000000 0.010610 2 120 0.000000 0.010610 0.000000 0.000000 0 0 /\\n I kworker/5:0 8172 111958.892118 E 111961.852183 3.000000 0.086481 5 120 0.000000 0.086481 0.000000 0.000000 0 0 /\\n Sjemalloc_bg_thd 8296 4231.226042 E 4234.178197 3.000000 0.047845 1 120 0.000000 0.047845 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Ssystemd-hostnam 8338 86.720596 E 87.848405 3.000000 127.029245 35 120 0.000000 127.029245 0.000000 0.000000 0 0 /system.slice/systemd-hostnamed.service\\n S sudo 8435 4513.430956 E 4516.425074 3.000000 3.653734 2 120 0.000000 3.653734 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#6, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 219949\\n .nr_uninterruptible : 112\\n .next_balance : 4295.991779\\n .curr->pid : 0\\n .clock : 1324665.763020\\n .clock_task : 1324665.763020\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[6]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3174.400199\\n .avg_vruntime : 3174.400199\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 190\\n .runnable_avg : 191\\n .util_avg : 191\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 190\\n .tg_load_avg : 2517\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324638.299982\\n .se->vruntime : 13051.403933\\n .se->sum_exec_runtime : 3179.447154\\n .se->load.weight : 98090\\n .se->avg.load_avg : 17\\n .se->avg.util_avg : 191\\n .se->avg.runnable_avg : 191\\n\\ncfs_rq[6]:/user.slice/user-1000.slice/session-4.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 126.474331\\n .avg_vruntime : 126.474331\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324548.184268\\n .se->vruntime : 13036.683620\\n .se->sum_exec_runtime : 128.655587\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13051.403933\\n .avg_vruntime : 13051.403933\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 18\\n .runnable_avg : 191\\n .util_avg : 191\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 18\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324638.299982\\n .se->vruntime : 20597.147253\\n .se->sum_exec_runtime : 3407.983521\\n .se->load.weight : 40960\\n .se->avg.load_avg : 7\\n .se->avg.util_avg : 191\\n .se->avg.runnable_avg : 191\\n\\ncfs_rq[6]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 20597.147253\\n .avg_vruntime : 20597.147253\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 7\\n .runnable_avg : 191\\n .util_avg : 191\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 7\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324638.299982\\n .se->vruntime : 118060.654794\\n .se->sum_exec_runtime : 5981.807939\\n .se->load.weight : 15650\\n .se->avg.load_avg : 2\\n .se->avg.util_avg : 191\\n .se->avg.runnable_avg : 191\\n\\ncfs_rq[6]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 623.721490\\n .avg_vruntime : 623.721490\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.930574\\n .se->vruntime : 85110.553362\\n .se->sum_exec_runtime : 646.748788\\n .se->load.weight : 146312\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 638.843378\\n .avg_vruntime : 638.843378\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324379.412678\\n .se->vruntime : 85110.524497\\n .se->sum_exec_runtime : 650.246800\\n .se->load.weight : 73202\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 78.858044\\n .avg_vruntime : 78.858044\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.843939\\n .se->vruntime : 85100.993473\\n .se->sum_exec_runtime : 79.968393\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1314.956593\\n .avg_vruntime : 1314.956593\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324624.225057\\n .se->vruntime : 85111.002818\\n .se->sum_exec_runtime : 1317.689636\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9345.370698\\n .avg_vruntime : 9345.370698\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324575.753633\\n .se->vruntime : 85110.973232\\n .se->sum_exec_runtime : 9900.314300\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/fwupd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 116.351585\\n .avg_vruntime : 116.351585\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324431.476074\\n .se->vruntime : 85110.636879\\n .se->sum_exec_runtime : 117.400161\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/rtkit-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 14.898873\\n .avg_vruntime : 14.898873\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324569.102274\\n .se->vruntime : 85110.801272\\n .se->sum_exec_runtime : 13.114845\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 77.053928\\n .avg_vruntime : 77.053928\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 1\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 1\\n .tg_load_avg : 1\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.738691\\n .se->vruntime : 85111.351550\\n .se->sum_exec_runtime : 97.555730\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 85111.351550\\n .avg_vruntime : 85111.351550\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.738691\\n .se->vruntime : 118061.006982\\n .se->sum_exec_runtime : 30358.120935\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[6]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 118061.132049\\n .avg_vruntime : 118061.132049\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 14\\n .runnable_avg : 191\\n .util_avg : 181\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[6]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.016400\\n .rt_runtime : 950.000000\\n\\ndl_rq[6]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n I rcu_preempt 17 118061.132049 E 118064.110284 3.000000 754.063653 21389 120 0.000000 754.063653 0.000000 0.000000 0 0 /\\n S cpuhp/6 51 8615.222785 E 8618.158454 3.000000 0.252486 26 120 0.000000 0.252486 0.000000 0.000000 0 0 /\\n S idle_inject/6 52 -1.048596 E 1.201404 2.250000 0.001435 3 49 0.000000 0.001435 0.000000 0.000000 0 0 /\\n S migration/6 53 3.285100 E 5.534388 2.250000 180.348788 402 0 0.000000 180.348788 0.000000 0.000000 0 0 /\\n S ksoftirqd/6 54 118007.465929 E 118010.441380 3.000000 28.100872 795 120 0.000000 28.100872 0.000000 0.000000 0 0 /\\n I kworker/6:0H 56 115610.911527 E 115610.946119 3.000000 8.061906 471 100 0.000000 8.061906 0.000000 0.000000 0 0 /\\n S irq/130-pciehp 97 0.333820 E 2.665268 3.000000 0.005759 3 49 0.000000 0.005759 0.000000 0.000000 0 0 /\\n I kworker/6:1H 104 0.901750 E 0.936338 3.000000 0.024295 2 100 0.000000 0.024295 0.000000 0.000000 0 0 /\\n Ikworker/R-ext4- 265 715.149068 E 715.183650 3.000000 0.016782 2 100 0.000000 0.016782 0.000000 0.000000 0 0 /\\n Ssystemd-journal 315 77.053928 E 79.385613 3.000000 799.213986 2108 119 0.000000 799.213986 0.000000 0.000000 0 0 /system.slice/systemd-journald.service\\n Sirq/199-iwlwifi 542 3741.720024 E 3744.718960 3.000000 4.839599 51 49 0.000000 4.839599 0.000000 0.000000 0 0 /\\n I kworker/6:3 640 110519.636780 E 110522.617336 3.000000 138.671157 2206 120 0.000000 138.671157 0.000000 0.000000 0 0 /\\n S avahi-daemon 793 78.858044 E 81.781536 3.000000 693.919657 2488 120 0.000000 693.919657 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n Siio-sensor-prox 804 51.794222 E 54.650306 3.000000 342.582748 667 120 0.000000 342.582748 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S pool-spawner 931 3.995045 E 6.943176 3.000000 0.051869 1 120 0.000000 0.051869 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S snapd 926 441.259747 E 444.220981 3.000000 119.509082 475 120 0.000000 119.509082 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1045 246.848037 E 249.653279 3.000000 94.409312 356 120 0.000000 94.409312 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2920 444.052352 E 447.021694 3.000000 87.866976 248 120 0.000000 87.866976 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 958 9.238449 E 12.208952 3.000000 0.475075 10 120 0.000000 0.475075 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 949 3.796978 E 6.673936 3.000000 0.123042 1 120 0.000000 0.123042 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 1112 5.262021 E 8.244316 3.000000 0.017705 1 120 0.000000 0.017705 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S udisksd 845 69.372631 E 69.715149 3.000000 157.873459 561 120 0.000000 157.873459 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gmain 875 70.250837 E 73.168329 3.000000 48.554062 338 120 0.000000 48.554062 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S probing-thread 1075 6.567609 E 9.544668 3.000000 0.022941 1 120 0.000000 0.022941 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 937 1.153308 E 4.086953 3.000000 0.098542 2 120 0.000000 0.098542 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S upowerd 1086 110.824183 E 111.692238 3.000000 286.714120 222 120 0.000000 286.714120 0.000000 0.000000 0 0 /system.slice/upower.service\\n S psimon 1430 9260.147662 E 9263.146878 3.000000 0.006730 2 98 0.000000 0.006730 0.000000 0.000000 0 0 /\\n S containerd 1457 623.721490 E 626.719367 3.000000 326.269032 20655 120 0.000000 326.269032 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1476 621.639074 E 624.634020 3.000000 308.120715 7294 120 0.000000 308.120715 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 5141 575.776045 E 577.990513 3.000000 74.333662 3166 120 0.000000 74.333662 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1530 2.618657 E 5.543553 3.000000 0.223127 6 120 0.000000 0.223127 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sdbus-run-sessio 1533 0.258773 E 2.587285 3.000000 1.487986 5 120 0.000000 1.487986 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1549 14.898873 E 17.866387 3.000000 15.457377 196 120 0.000000 15.457377 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S rtkit-daemon 1550 -1.032441 E 2.697765 3.000000 10.838371 179 0 0.000000 10.838371 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S gmain 1566 17.297077 E 20.277928 3.000000 0.097746 7 120 0.000000 0.097746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1570 17.355420 E 20.297077 3.000000 0.588370 21 120 0.000000 0.588370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3029 275.589042 E 276.659165 3.000000 15.079471 7 120 0.000000 15.079471 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S krfcommd 1621 10074.755342 E 10075.075292 3.000000 0.065550 2 110 0.000000 0.065550 0.000000 0.000000 0 0 /\\n S dockerd 1667 360.733205 E 363.572264 3.000000 44.912651 1440 120 0.000000 44.912651 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1668 10.959996 E 13.909631 3.000000 0.136753 4 120 0.000000 0.136753 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1671 376.622448 E 379.612498 3.000000 35.314543 1107 120 0.000000 35.314543 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1659 1.116025 E 4.050994 3.000000 3.821425 28 120 0.000000 3.821425 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S sshd 1702 74.518561 E 77.246586 3.000000 11.486317 11 120 0.000000 11.486317 0.000000 0.000000 0 0 /system.slice/ssh.service\\n Scontainerd-shim 2398 30.228595 E 33.220919 3.000000 3.863503 51 120 0.000000 3.863503 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2400 554.337210 E 557.242747 3.000000 10.751978 407 120 0.000000 10.751978 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2417 28.278836 E 31.246599 3.000000 0.032237 1 120 0.000000 0.032237 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2418 30.220839 E 33.148343 3.000000 0.624572 15 120 0.000000 0.624572 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2419 554.242747 E 557.182381 3.000000 74.970025 201 120 0.000000 74.970025 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2717 7.476168 E 10.461486 3.000000 28.234681 817 120 0.000000 28.234681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2724 8.330328 E 11.312981 3.000000 0.730104 41 120 0.000000 0.730104 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2729 0.009183 E 2.987065 3.000000 0.474507 16 120 0.000000 0.474507 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2763 71.490749 E 74.323031 3.000000 33.909180 130 120 0.000000 33.909180 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3037 69.004645 E 71.977650 3.000000 0.026995 1 120 0.000000 0.026995 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3083 288.025683 E 289.715393 3.000000 1.607031 8 120 0.000000 1.607031 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3088 286.715393 E 289.284690 3.000000 1.401843 9 120 0.000000 1.401843 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3124 87.455847 E 90.416578 3.000000 0.039269 1 120 0.000000 0.039269 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3131 302.640897 E 305.308430 3.000000 2.994609 50 120 0.000000 2.994609 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-rfkill 3114 1990.336722 E 1993.261817 3.000000 24.043231 284 120 0.000000 24.043231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3148 1990.294096 E 1993.065809 3.000000 49.947497 302 120 0.000000 49.947497 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3158 93.881548 E 96.817284 3.000000 0.064264 1 120 0.000000 0.064264 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3182 109.126031 E 111.562635 3.000000 0.591888 2 120 0.000000 0.591888 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3184 108.724420 E 111.678855 3.000000 0.093578 2 120 0.000000 0.093578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3216 109.368449 E 112.350997 3.000000 0.217820 14 120 0.000000 0.217820 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3213 602.863968 E 605.510516 3.000000 272.558231 744 120 0.000000 272.558231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3293 586.573053 E 589.290637 3.000000 24.862703 32 120 0.000000 24.862703 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3337 606.691952 E 609.593211 3.000000 1.370128 13 120 0.000000 1.370128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3338 606.814834 E 609.691952 3.000000 1.139504 13 120 0.000000 1.139504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S module-rt 3510 4.969118 E 7.891565 3.000000 0.240480 6 120 0.000000 0.240480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3523 5.394138 E 8.306091 3.000000 0.426467 6 120 0.000000 0.426467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3546 5.427172 E 8.394138 3.000000 0.089890 2 120 0.000000 0.089890 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3548 5.547188 E 8.427172 3.000000 0.773129 24 120 0.000000 0.773129 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3712 2983.668073 E 2985.997525 3.000000 274.816112 590 120 0.000000 274.816112 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S gmain 4749 16.047752 E 18.987863 3.000000 0.059889 1 120 0.000000 0.059889 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/6:0 4983 118061.050670 E 118064.027623 3.000000 176.590400 2256 120 0.000000 176.590400 0.000000 0.000000 0 0 /\\n S docker 5106 125.613300 E 128.582270 3.000000 43.211643 37 120 0.000000 43.211643 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5139 126.474331 E 129.460073 3.000000 51.415960 367 120 0.000000 51.415960 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5213 636.548267 E 639.530332 3.000000 1.596531 70 120 0.000000 1.596531 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5240 265.802650 E 268.788465 3.000000 0.020995 2 120 0.000000 0.020995 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5243 266.286329 E 269.275178 3.000000 0.261505 4 120 0.000000 0.261505 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5264 273.123925 E 276.097681 3.000000 1.821770 25 120 0.000000 1.821770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5266 267.028584 E 270.019464 3.000000 0.210716 13 120 0.000000 0.210716 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5339 579.933398 E 582.803466 3.000000 67.279197 286 120 0.000000 67.279197 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6329 517.535375 E 520.502377 3.000000 7.293136 45 120 0.000000 7.293136 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 6330 482.410504 E 485.226121 3.000000 2.054356 6 120 0.000000 2.054356 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5422 580.803314 E 583.761670 3.000000 63.972142 135 120 0.000000 63.972142 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5450 279.103396 E 282.098400 3.000000 2.396339 8 120 0.000000 2.396339 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5453 580.761670 E 583.723032 3.000000 34.844881 121 120 0.000000 34.844881 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5460 580.723032 E 583.505193 3.000000 61.315981 182 120 0.000000 61.315981 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5604 954.763097 E 957.751202 3.000000 28.240943 116 120 0.000000 28.240943 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5663 1792.640288 E 1795.640288 3.000000 38.952545 12 120 0.000000 38.952545 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5668 1789.732642 E 1791.724291 3.000000 35.988177 10 120 0.000000 35.988177 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5606 969.507874 E 972.497742 3.000000 25.491566 11 120 0.000000 25.491566 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5609 971.056429 E 974.046014 3.000000 27.020193 26 120 0.000000 27.020193 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5610 971.458654 E 974.453476 3.000000 27.417031 12 120 0.000000 27.417031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5707 1930.771185 E 1933.761817 3.000000 30.988047 9 120 0.000000 30.988047 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6332 7107.306165 E 7109.972962 3.000000 1.236847 6 120 0.000000 1.236847 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5628 1001.868572 E 1004.809337 3.000000 27.930046 12 120 0.000000 27.930046 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5629 1002.170072 E 1005.109190 3.000000 33.107018 10 120 0.000000 33.107018 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5679 1895.668218 E 1898.660660 3.000000 32.971433 10 120 0.000000 32.971433 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5683 1896.759957 E 1898.798855 3.000000 34.012241 10 120 0.000000 34.012241 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5576 9345.370698 E 9348.262087 3.000000 6409.269122 9844 120 0.000000 6409.269122 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5720 1943.308345 E 1946.308345 3.000000 26.777888 7 120 0.000000 26.777888 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5723 1942.666364 E 1944.688960 3.000000 26.120826 8 120 0.000000 26.120826 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6338 3080.378005 E 3083.193564 3.000000 9.671179 24 120 0.000000 9.671179 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5620 234.680396 E 237.623322 3.000000 109.511939 523 120 0.000000 109.511939 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6954 97.530568 E 100.452191 3.000000 6.320513 15 120 0.000000 6.320513 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n SGUsbEventThread 7552 116.351585 E 119.324586 3.000000 42.907707 410 120 0.000000 42.907707 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/6:1 7633 116163.429720 E 116166.402601 3.000000 56.989598 404 120 0.000000 56.989598 0.000000 0.000000 0 0 /\\n I kworker/6:2 7638 110519.642322 E 110522.639838 3.000000 0.105822 4 120 0.000000 0.105822 0.000000 0.000000 0 0 /\\n S python3 8200 3174.400199 E 3177.380250 3.000000 436.402123 538 120 0.000000 436.402123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8202 2983.839844 E 2986.828296 3.000000 0.093152 3 120 0.000000 0.093152 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8205 2983.828296 E 2986.817894 3.000000 0.078619 5 120 0.000000 0.078619 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8294 3111.907958 E 3114.800953 3.000000 110.873270 6 120 0.000000 110.873270 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#7, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 206358\\n .nr_uninterruptible : -73\\n .next_balance : 4295.991778\\n .curr->pid : 0\\n .clock : 1324661.684881\\n .clock_task : 1324661.684881\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[7]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5284.777159\\n .avg_vruntime : 5284.777159\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2517\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324381.572648\\n .se->vruntime : 15026.854191\\n .se->sum_exec_runtime : 5291.335971\\n .se->load.weight : 84747\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15026.854191\\n .avg_vruntime : 15026.854191\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 817\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324381.572648\\n .se->vruntime : 24666.700600\\n .se->sum_exec_runtime : 5462.036964\\n .se->load.weight : 83595\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6856.816351\\n .avg_vruntime : 6856.816351\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324658.919221\\n .se->vruntime : 80711.455717\\n .se->sum_exec_runtime : 7497.919267\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 761.656662\\n .avg_vruntime : 761.656662\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324490.844927\\n .se->vruntime : 80710.988718\\n .se->sum_exec_runtime : 780.672329\\n .se->load.weight : 104857\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 754.102890\\n .avg_vruntime : 754.102890\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324372.303740\\n .se->vruntime : 80707.913739\\n .se->sum_exec_runtime : 765.681337\\n .se->load.weight : 90687\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 364.932314\\n .avg_vruntime : 364.932314\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324291.884600\\n .se->vruntime : 80696.640102\\n .se->sum_exec_runtime : 366.050027\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/systemd-logind.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 208.980820\\n .avg_vruntime : 208.980820\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324641.430299\\n .se->vruntime : 80711.360220\\n .se->sum_exec_runtime : 210.055684\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 80711.455717\\n .avg_vruntime : 80711.455717\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324658.919221\\n .se->vruntime : 126834.324524\\n .se->sum_exec_runtime : 30203.211945\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 24666.700600\\n .avg_vruntime : 24666.700600\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 860\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1324381.572648\\n .se->vruntime : 126833.600904\\n .se->sum_exec_runtime : 10024.489206\\n .se->load.weight : 81636\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 126834.324524\\n .avg_vruntime : 126834.324524\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[7]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[7]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S kthreadd 2 125182.756019 E 125185.738945 3.000000 8.793832 235 120 0.000000 8.793832 0.000000 0.000000 0 0 /\\n S cpuhp/7 57 8699.309454 E 8702.275668 3.000000 0.282413 26 120 0.000000 0.282413 0.000000 0.000000 0 0 /\\n S idle_inject/7 58 -1.048578 E 1.201422 2.250000 0.001352 3 49 0.000000 0.001352 0.000000 0.000000 0 0 /\\n S migration/7 59 3.384442 E 5.633801 2.250000 180.563786 396 0 0.000000 180.563786 0.000000 0.000000 0 0 /\\n S ksoftirqd/7 60 126824.477970 E 126827.473460 3.000000 19.683308 530 120 0.000000 19.683308 0.000000 0.000000 0 0 /\\n I kworker/7:0H 62 125232.866247 E 125232.899417 3.000000 10.910973 378 100 0.000000 10.910973 0.000000 0.000000 0 0 /\\n S kdevtmpfs 63 9325.916585 E 9328.878568 3.000000 8.686237 285 120 0.000000 8.686237 0.000000 0.000000 0 0 /\\n S kswapd0 91 0.799409 E 2.181565 3.000000 0.034879 3 120 0.000000 0.034879 0.000000 0.000000 0 0 /\\n Secryptfs-kthrea 92 -1.016388 E 1.982554 3.000000 0.003235 2 120 0.000000 0.003235 0.000000 0.000000 0 0 /\\n I kworker/7:1H 186 54.192213 E 54.226778 3.000000 0.130453 2 100 0.000000 0.130453 0.000000 0.000000 0 0 /\\n I kworker/7:2 196 124230.621364 E 124233.229508 3.000000 226.700269 1019 120 0.000000 226.700269 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 220 260.331222 E 260.365822 3.000000 0.004276 2 100 0.000000 0.004276 0.000000 0.000000 0 0 /\\n Sirq/200-iwlwifi 543 3741.722959 E 3744.721790 3.000000 198.479866 1031 49 0.000000 198.479866 0.000000 0.000000 0 0 /\\n S gmain 932 5.984093 E 8.944402 3.000000 0.039691 1 120 0.000000 0.039691 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n Spower-profiles- 815 6.306037 E 8.958709 3.000000 42.592465 217 120 0.000000 42.592465 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 849 306.681853 E 309.672843 3.000000 347.607409 16995 120 0.000000 347.607409 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2924 306.627817 E 309.481564 3.000000 179.155143 169 120 0.000000 179.155143 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S pool-spawner 952 0.552605 E 2.408198 3.000000 0.084044 2 120 0.000000 0.084044 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S systemd-logind 842 208.980820 E 211.888526 3.000000 1446.920295 6003 120 0.000000 1446.920295 0.000000 0.000000 0 0 /system.slice/systemd-logind.service\\n S gmain 874 8.807278 E 11.798542 3.000000 0.044986 2 120 0.000000 0.044986 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gdbus 906 364.932314 E 367.803722 3.000000 86.335300 376 120 0.000000 86.335300 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S ModemManager 1073 40.415939 E 43.226164 3.000000 83.160441 399 120 0.000000 83.160441 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gdbus 1104 39.518224 E 42.502553 3.000000 25.922954 100 120 0.000000 25.922954 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1120 -1.040991 E 1.951424 3.000000 0.113711 2 120 0.000000 0.113711 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sleep 1149 39.073787 E 39.604681 3.000000 7.280071 3 120 0.000000 7.280071 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S pool-spawner 1493 0.604404 E 2.386227 3.000000 0.063206 3 120 0.000000 0.063206 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 1513 11.763534 E 14.743230 3.000000 12.527238 32 120 0.000000 12.527238 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1525 22.920219 E 25.873281 3.000000 11.380453 155 120 0.000000 11.380453 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sxdg-document-po 1548 22.929418 E 25.920219 3.000000 6.358220 29 120 0.000000 6.358220 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fuse mainloop 1567 19.595470 E 22.587394 3.000000 0.137316 5 120 0.000000 0.137316 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1558 18.304433 E 21.267038 3.000000 0.111080 2 120 0.000000 0.111080 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1604 3789.243322 E 3791.150441 3.000000 25.220669 171 120 0.000000 25.220669 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1665 387.715999 E 390.699088 3.000000 82.085644 1953 120 0.000000 82.085644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1673 0.023012 E 2.973127 3.000000 0.586838 20 120 0.000000 0.586838 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1703 404.236973 E 407.207709 3.000000 45.206785 1218 120 0.000000 45.206785 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2677 718.478020 E 721.302116 3.000000 92.515374 3187 120 0.000000 92.515374 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2718 761.656662 E 764.627825 3.000000 328.727313 6677 120 0.000000 328.727313 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 7623 691.826320 E 694.096695 3.000000 28.115356 61 120 0.000000 28.115356 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2818 28.618281 E 31.575140 3.000000 15.566931 58 120 0.000000 15.566931 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Sat-spi-bus-laun 3022 424.559544 E 427.521167 3.000000 3.389602 32 120 0.000000 3.389602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayla:traceq0 3268 365.997005 E 570.481954 3.000000 0.077355 4 139 0.000000 0.077355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3043 57.661466 E 60.641092 3.000000 4.306383 153 120 0.000000 4.306383 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gdbus 3073 207.807359 E 210.334322 3.000000 2.467237 14 120 0.000000 2.467237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3110 30.677526 E 33.625817 3.000000 0.075552 2 120 0.000000 0.075552 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3111 30.630162 E 33.591988 3.000000 0.038174 1 120 0.000000 0.038174 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sharing 3080 3787.946030 E 3790.839335 3.000000 229.914838 1476 120 0.000000 229.914838 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3135 50.522322 E 53.477690 3.000000 0.080793 3 120 0.000000 0.080793 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3143 51.324937 E 54.279106 3.000000 0.083157 2 120 0.000000 0.083157 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3189 52.566712 E 55.538836 3.000000 0.112926 2 120 0.000000 0.112926 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3211 1467.846211 E 1470.663093 3.000000 19.246036 145 120 0.000000 19.246036 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-screensaver 3149 357.671192 E 360.642427 3.000000 5.256014 42 120 0.000000 5.256014 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3164 357.647615 E 360.580773 3.000000 4.749683 47 120 0.000000 4.749683 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3207 353.954110 E 356.900350 3.000000 0.139738 3 120 0.000000 0.139738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3291 223.408768 E 226.036502 3.000000 1.806394 7 120 0.000000 1.806394 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3343 3092.494350 E 3095.348483 3.000000 1.291563 13 120 0.000000 1.291563 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11:sh0 3385 419.506573 E 422.481074 3.000000 0.025499 1 120 0.000000 0.025499 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3392 424.607454 E 427.559544 3.000000 0.047910 1 120 0.000000 0.047910 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3370 394.943027 E 397.936848 3.000000 0.039410 2 120 0.000000 0.039410 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3380 419.140487 E 422.107152 3.000000 0.033335 1 120 0.000000 0.033335 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3464 22.074172 E 25.016557 3.000000 16.001058 53 120 0.000000 16.001058 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3517 12.573708 E 15.568099 3.000000 0.023024 3 120 0.000000 0.023024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-document-po 3544 22.100524 E 25.096416 3.000000 5.893123 20 120 0.000000 5.893123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3557 22.144924 E 25.141339 3.000000 0.142775 5 120 0.000000 0.142775 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3558 22.141339 E 25.132316 3.000000 0.068673 3 120 0.000000 0.068673 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3598 3.360579 E 6.033303 3.000000 11.821224 56 120 0.000000 11.821224 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n I kworker/7:0 5028 126834.047891 E 126837.038871 3.000000 248.977012 1610 120 0.000000 248.977012 0.000000 0.000000 0 0 /\\n S docker-compose 5130 32.710798 E 35.321772 3.000000 4.743828 75 120 0.000000 4.743828 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5140 74.659401 E 77.423545 3.000000 30.888390 201 120 0.000000 30.888390 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5210 725.079408 E 728.058561 3.000000 56.358725 1095 120 0.000000 56.358725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5731 724.907868 E 727.900010 3.000000 0.466392 18 120 0.000000 0.466392 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5214 396.628965 E 399.619883 3.000000 1.632861 6 120 0.000000 1.632861 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5216 396.205006 E 399.151410 3.000000 0.149899 4 120 0.000000 0.149899 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5217 396.329416 E 399.319519 3.000000 0.046450 2 120 0.000000 0.046450 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5218 396.450772 E 399.445603 3.000000 0.020033 2 120 0.000000 0.020033 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5219 396.731794 E 399.686069 3.000000 0.045725 1 120 0.000000 0.045725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5222 396.826857 E 399.811763 3.000000 0.015094 1 120 0.000000 0.015094 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5235 270.215607 E 273.195321 3.000000 2.769908 8 120 0.000000 2.769908 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7610 706.354540 E 708.794211 3.000000 36.455905 61 120 0.000000 36.455905 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6177 711.258205 E 713.248273 3.000000 34.127673 64 120 0.000000 34.127673 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_aof 5372 6.171250 E 9.150339 3.000000 0.020911 1 120 0.000000 0.020911 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5403 610.053819 E 613.047265 3.000000 3.226369 18 120 0.000000 3.226369 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5452 712.060199 E 715.016528 3.000000 7.705601 462 120 0.000000 7.705601 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5457 284.338260 E 287.332839 3.000000 0.005421 1 120 0.000000 0.005421 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5539 712.016528 E 714.804061 3.000000 50.990681 145 120 0.000000 50.990681 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5562 2.778332 E 4.759018 3.000000 2.874720 9 120 0.000000 2.874720 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5570 6856.720947 E 6859.632012 3.000000 7033.650957 10833 120 0.000000 7033.650957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5601 910.364125 E 913.358635 3.000000 41.347394 21 120 0.000000 41.347394 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5662 1681.165612 E 1681.188384 3.000000 52.890599 17 120 0.000000 52.890599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5690 1759.655576 E 1761.689682 3.000000 32.986562 10 120 0.000000 32.986562 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6346 5129.599606 E 5130.300726 3.000000 2.373161 4 120 0.000000 2.373161 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5572 6856.816351 E 6859.720947 3.000000 6839.241484 9776 120 0.000000 6839.241484 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5611 927.013891 E 930.004534 3.000000 30.958221 12 120 0.000000 30.958221 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5673 1716.676043 E 1719.667802 3.000000 47.953219 14 120 0.000000 47.953219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5698 1774.551283 E 1776.580995 3.000000 33.736341 12 120 0.000000 33.736341 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6950 3585.432725 E 3588.280345 3.000000 9.846769 66 120 0.000000 9.846769 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5635 1287.816586 E 1288.577374 3.000000 38.206043 11 120 0.000000 38.206043 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5636 1287.895610 E 1290.746600 3.000000 38.107591 11 120 0.000000 38.107591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5627 989.132258 E 992.064464 3.000000 56.892128 21 120 0.000000 56.892128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5682 1750.007994 E 1752.998981 3.000000 35.980149 10 120 0.000000 35.980149 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6344 3198.674402 E 3201.541368 3.000000 11.659960 15 120 0.000000 11.659960 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5647 1753.844207 E 1756.837808 3.000000 23.001512 8 120 0.000000 23.001512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5650 1495.354451 E 1498.348112 3.000000 23.003437 7 120 0.000000 23.003437 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5651 1498.355809 E 1501.345904 3.000000 25.997880 8 120 0.000000 25.997880 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5653 1499.385527 E 1502.375556 3.000000 27.015431 8 120 0.000000 27.015431 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5721 1803.013378 E 1806.006859 3.000000 29.898894 9 120 0.000000 29.898894 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5722 1807.064009 E 1810.054337 3.000000 33.945514 12 120 0.000000 33.945514 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6336 5129.831449 E 5132.599606 3.000000 1.078567 6 120 0.000000 1.078567 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5623 259.725213 E 262.583276 3.000000 93.133282 1036 120 0.000000 93.133282 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 5624 255.010000 E 257.769863 3.000000 18.803296 141 120 0.000000 18.803296 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6349 127.340558 E 130.292789 3.000000 13.498190 22 120 0.000000 13.498190 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S libusb_event 7551 0.942863 E 1.951424 3.000000 0.105713 1 120 0.000000 0.105713 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/7:1 7636 124224.968731 E 124227.939001 3.000000 24.625998 181 120 0.000000 24.625998 0.000000 0.000000 0 0 /\\n I kworker/7:3 7899 124217.212175 E 124220.208838 3.000000 0.076763 2 120 0.000000 0.076763 0.000000 0.000000 0 0 /\\n I kworker/u16:0 8019 126746.457835 E 126749.451465 3.000000 3.242100 85 120 0.000000 3.242100 0.000000 0.000000 0 0 /\\n S python3 8295 5208.370720 E 5209.242078 3.000000 109.802917 11 120 0.000000 109.802917 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\n"}, "Docker Version": "Client: Docker Engine - Community\\n Version: 27.2.1\\n API version: 1.47\\n Go version: go1.22.7\\n Git commit: 9e34c9b\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Context: default\\n\\nServer: Docker Engine - Community\\n Engine:\\n Version: 27.2.1\\n API version: 1.47 (minimum version 1.24)\\n Go version: go1.22.7\\n Git commit: 8b539b8\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Experimental: false\\n containerd:\\n Version: 1.7.21\\n GitCommit: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc:\\n Version: 1.1.13\\n GitCommit: v1.1.13-0-g58aa920\\n docker-init:\\n Version: 0.19.0\\n GitCommit: de40ad0\\n", "Hardware Model": "Laptop", "Virtualization": "Unknown", "CPU Utilization": 0.0, "Hardware Vendor": "Framework", "Hyper Threading": "1", "Hardware Details": "framebook\\n description: Notebook\\n product: Laptop (FRANBMCP0A)\\n vendor: Framework\\n version: AA\\n serial: FRANBMCPAA1484005R\\n width: 64 bits\\n capabilities: smbios-3.3.0 dmi-3.3.0 smp vsyscall32\\n configuration: administrator_password=disabled boot=normal chassis=notebook family=FRANBMCP power-on_password=disabled sku=FRANBMCP0A uuid=1cd24d0f-5c53-ec11-810d-283616200463\\n *-core\\n description: Motherboard\\n product: FRANBMCP0A\\n vendor: Framework\\n physical id: 0\\n version: AA\\n serial: FRANBMCPAA1484005R\\n slot: *\\n *-firmware\\n description: BIOS\\n vendor: INSYDE Corp.\\n physical id: 0\\n version: 03.19\\n date: 05/29/2023\\n size: 128KiB\\n capacity: 12MiB\\n capabilities: pci upgrade shadowing cdboot bootselect int9keyboard int10video acpi usb biosbootspecification uefi\\n *-cpu\\n description: CPU\\n product: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\\n vendor: Intel Corp.\\n physical id: 4\\n bus info: cpu@0\\n version: 6.140.1\\n serial: To Be Filled By O.E.M.\\n slot: U3E1\\n size: 400MHz\\n capacity: 4200MHz\\n width: 64 bits\\n clock: 100MHz\\n capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect md_clear ibt flush_l1d arch_capabilities cpufreq\\n configuration: cores=4 enabledcores=4 microcode=184 threads=8\\n *-cache:0\\n description: L1 cache\\n physical id: 6\\n slot: L1 Cache\\n size: 128KiB\\n capacity: 128KiB\\n capabilities: synchronous internal write-back instruction\\n configuration: level=1\\n *-cache:1\\n description: L2 cache\\n physical id: 7\\n slot: L2 Cache\\n size: 5MiB\\n capacity: 5MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=2\\n *-cache:2\\n description: L3 cache\\n physical id: 8\\n slot: L3 Cache\\n size: 8MiB\\n capacity: 8MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=3\\n *-cache\\n description: L1 cache\\n physical id: 5\\n slot: L1 Cache\\n size: 192KiB\\n capacity: 192KiB\\n capabilities: synchronous internal write-back data\\n configuration: level=1\\n *-memory\\n description: System Memory\\n physical id: 14\\n slot: System board or motherboard\\n size: 32GiB\\n *-bank:0\\n description: [empty]\\n physical id: 0\\n slot: Controller0-ChannelA-DIMM0\\n *-bank:1\\n description: SODIMM DDR4 Synchronous 3200 MHz (0.3 ns)\\n product: CT32G4SFD832A.M16FF\\n vendor: Crucial Technology\\n physical id: 1\\n serial: E63FE743\\n slot: Controller1-ChannelA-DIMM0\\n size: 32GiB\\n width: 64 bits\\n clock: 3200MHz (0.3ns)\\n *-pci\\n description: Host bridge\\n product: 11th Gen Core Processor Host Bridge/DRAM Registers\\n vendor: Intel Corporation\\n physical id: 100\\n bus info: pci@0000:00:00.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n *-display\\n description: VGA compatible controller\\n product: TigerLake-LP GT2 [Iris Xe Graphics]\\n vendor: Intel Corporation\\n physical id: 2\\n bus info: pci@0000:00:02.0\\n logical name: /dev/fb0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb\\n configuration: depth=32 driver=i915 latency=0 mode=2256x1504 resolution=2256,1504 visual=truecolor xres=2256 yres=1504\\n resources: iomemory:600-5ff iomemory:400-3ff irq:204 memory:605c000000-605cffffff memory:4000000000-400fffffff ioport:3000(size=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff\\n *-generic:0\\n description: Signal processing controller\\n product: TigerLake-LP Dynamic Tuning Processor Participant\\n vendor: Intel Corporation\\n physical id: 4\\n bus info: pci@0000:00:04.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: driver=proc_thermal latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d180000-605d19ffff\\n *-pci:0\\n description: PCI bridge\\n product: 11th Gen Core Processor PCIe Controller\\n vendor: Intel Corporation\\n physical id: 6\\n bus info: pci@0000:00:06.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:126 memory:7a300000-7a3fffff\\n *-nvme\\n description: NVMe device\\n product: WDS100T1X0E-00AFY0\\n vendor: Sandisk Corp\\n physical id: 0\\n bus info: pci@0000:01:00.0\\n logical name: /dev/nvme0\\n version: 614900WD\\n serial: 22047A801405\\n width: 64 bits\\n clock: 33MHz\\n capabilities: nvme pm msi msix pciexpress nvm_express bus_master cap_list\\n configuration: driver=nvme latency=0 nqn=nqn.2018-01.com.wdc:nguid:E8238FA6BF53-0001-001B448B45A2BCF6 state=live\\n resources: irq:16 memory:7a300000-7a303fff\\n *-namespace:0\\n description: NVMe disk\\n physical id: 0\\n logical name: hwmon2\\n *-namespace:1\\n description: NVMe disk\\n physical id: 2\\n logical name: /dev/ng0n1\\n *-namespace:2\\n description: NVMe disk\\n physical id: 1\\n bus info: nvme@0:1\\n logical name: /dev/nvme0n1\\n size: 931GiB (1TB)\\n capabilities: gpt-1.00 partitioned partitioned:gpt\\n configuration: guid=45dd4e4e-5082-4f7b-926f-7bfbac3490ba logicalsectorsize=512 sectorsize=512 wwid=eui.e8238fa6bf530001001b448b45a2bcf6\\n *-volume:0 UNCLAIMED\\n description: Windows FAT volume\\n vendor: MSDOS5.0\\n physical id: 1\\n bus info: nvme@0:1,1\\n version: FAT32\\n serial: 74bd-e763\\n size: 95MiB\\n capacity: 99MiB\\n capabilities: boot fat initialized\\n configuration: FATs=2 filesystem=fat name=EFI system partition\\n *-volume:1\\n description: reserved partition\\n vendor: Windows\\n physical id: 2\\n bus info: nvme@0:1,2\\n logical name: /dev/nvme0n1p2\\n serial: 0ea6d81a-270e-4676-b42f-41e3e89d8733\\n capacity: 15MiB\\n capabilities: nofs\\n configuration: name=Microsoft reserved partition\\n *-volume:2\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 3\\n bus info: nvme@0:1,3\\n logical name: /dev/nvme0n1p3\\n version: 3.1\\n serial: c851c6e2-393b-f34f-a874-3f47e3b4d22a\\n size: 465GiB\\n capacity: 465GiB\\n capabilities: ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:22:01 filesystem=ntfs name=Basic data partition state=clean\\n *-volume:3\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 4\\n bus info: nvme@0:1,4\\n logical name: /dev/nvme0n1p4\\n version: 3.1\\n serial: 4c29-9ee3\\n size: 523MiB\\n capacity: 523MiB\\n capabilities: boot precious ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:25:01 filesystem=ntfs state=clean\\n *-volume:4\\n description: EXT4 volume\\n vendor: Linux\\n physical id: 5\\n bus info: nvme@0:1,5\\n logical name: /dev/nvme0n1p5\\n logical name: /\\n logical name: /var/snap/firefox/common/host-hunspell\\n version: 1.0\\n serial: c6c4e62b-4240-443a-8feb-6001a7f1b7b5\\n size: 465GiB\\n capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized\\n configuration: created=2024-03-22 19:59:07 filesystem=ext4 lastmountpoint=/ modified=2024-09-12 18:36:24 mount.fstype=ext4 mount.options=ro,noexec,noatime,errors=remount-ro mounted=2024-09-12 18:36:25 state=mounted\\n *-pci:1\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0\\n vendor: Intel Corporation\\n physical id: 7\\n bus info: pci@0000:00:07.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:127 ioport:4000(size=4096) memory:7c000000-881fffff ioport:6000000000(size=469762048)\\n *-pci:2\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1\\n vendor: Intel Corporation\\n physical id: 7.1\\n bus info: pci@0000:00:07.1\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:128 ioport:5000(size=4096) memory:6e000000-7a1fffff ioport:6020000000(size=469762048)\\n *-pci:3\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2\\n vendor: Intel Corporation\\n physical id: 7.2\\n bus info: pci@0000:00:07.2\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:129 ioport:6000(size=4096) memory:60000000-6c1fffff ioport:6040000000(size=469762048)\\n *-pci:4\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3\\n vendor: Intel Corporation\\n physical id: 7.3\\n bus info: pci@0000:00:07.3\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:130 ioport:7000(size=4096) memory:52000000-5e1fffff ioport:6060000000(size=469762048)\\n *-generic:1 UNCLAIMED\\n description: System peripheral\\n product: GNA Scoring Accelerator module\\n vendor: Intel Corporation\\n physical id: 8\\n bus info: pci@0000:00:08.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff memory:605d1d8000-605d1d8fff\\n *-generic:2\\n description: Signal processing controller\\n product: Tigerlake Telemetry Aggregator Driver\\n vendor: Intel Corporation\\n physical id: a\\n bus info: pci@0000:00:0a.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress pm cap_list\\n configuration: driver=intel_vsec latency=0\\n resources: iomemory:600-5ff irq:0 memory:605d1c0000-605d1c7fff\\n *-usb:0\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 USB Controller\\n vendor: Intel Corporation\\n physical id: d\\n bus info: pci@0000:00:0d.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: iomemory:600-5ff irq:148 memory:605d1b0000-605d1bffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@1\\n logical name: usb1\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=1 speed=480Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@2\\n logical name: usb2\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-usb:1\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #0\\n vendor: Intel Corporation\\n physical id: d.2\\n bus info: pci@0000:00:0d.2\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d140000-605d17ffff memory:605d1d7000-605d1d7fff\\n *-usb:2\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #1\\n vendor: Intel Corporation\\n physical id: d.3\\n bus info: pci@0000:00:0d.3\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d100000-605d13ffff memory:605d1d6000-605d1d6fff\\n *-communication:0\\n description: Serial controller\\n product: Tiger Lake-LP Integrated Sensor Hub\\n vendor: Intel Corporation\\n physical id: 12\\n bus info: pci@0000:00:12.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm 8250 bus_master cap_list\\n configuration: driver=intel_ish_ipc latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1a0000-605d1affff\\n *-usb:3\\n description: USB controller\\n product: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller\\n vendor: Intel Corporation\\n physical id: 14\\n bus info: pci@0000:00:14.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: irq:156 memory:7a400000-7a40ffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@3\\n logical name: usb3\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=12 speed=480Mbit/s\\n *-usb:0\\n description: Human interface device\\n product: HDMI Expansion Card\\n vendor: Framework\\n physical id: 1\\n bus info: usb@3:1\\n version: 0.00\\n serial: 11AD1D0001DB3E1540120B00\\n capabilities: usb-2.01\\n configuration: driver=usbhid maxpower=100mA speed=12Mbit/s\\n *-usb:1\\n description: Video\\n product: Laptop Camera\\n vendor: Generic\\n physical id: 7\\n bus info: usb@3:7\\n version: 0.21\\n serial: 200901010001\\n capabilities: usb-2.01\\n configuration: driver=uvcvideo maxpower=300mA speed=480Mbit/s\\n *-usb:2 UNCLAIMED\\n description: Generic USB device\\n product: Goodix USB2.0 MISC\\n vendor: Goodix Technology Co., Ltd.\\n physical id: 9\\n bus info: usb@3:9\\n version: 1.00\\n serial: UID7D62CCAE_XXXX_MOC_B0\\n capabilities: usb-2.00\\n configuration: maxpower=100mA speed=12Mbit/s\\n *-usb:3\\n description: Bluetooth wireless interface\\n product: AX210 Bluetooth\\n vendor: Intel Corp.\\n physical id: a\\n bus info: usb@3:a\\n version: 0.00\\n capabilities: bluetooth usb-2.01\\n configuration: driver=btusb maxpower=100mA speed=12Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@4\\n logical name: usb4\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-memory UNCLAIMED\\n description: RAM memory\\n product: Tiger Lake-LP Shared SRAM\\n vendor: Intel Corporation\\n physical id: 14.2\\n bus info: pci@0000:00:14.2\\n version: 20\\n width: 64 bits\\n clock: 33MHz (30.3ns)\\n capabilities: pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff memory:605d1cc000-605d1cffff memory:605d1d5000-605d1d5fff\\n *-serial:0\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #0\\n vendor: Intel Corporation\\n physical id: 15\\n bus info: pci@0000:00:15.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:27 memory:4017000000-4017000fff\\n *-serial:1\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #1\\n vendor: Intel Corporation\\n physical id: 15.1\\n bus info: pci@0000:00:15.1\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:40 memory:4017001000-4017001fff\\n *-serial:2\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #3\\n vendor: Intel Corporation\\n physical id: 15.3\\n bus info: pci@0000:00:15.3\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:30 memory:4017002000-4017002fff\\n *-communication:1\\n description: Communication controller\\n product: Tiger Lake-LP Management Engine Interface\\n vendor: Intel Corporation\\n physical id: 16\\n bus info: pci@0000:00:16.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=mei_me latency=0\\n resources: iomemory:600-5ff irq:191 memory:605d1d1000-605d1d1fff\\n *-pci:5\\n description: PCI bridge\\n product: Tiger Lake-LP PCI Express Root Port #10\\n vendor: Intel Corporation\\n physical id: 1d\\n bus info: pci@0000:00:1d.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:131 memory:7a200000-7a2fffff\\n *-network\\n description: Wireless interface\\n product: Wi-Fi 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak]\\n vendor: Intel Corporation\\n physical id: 0\\n bus info: pci@0000:aa:00.0\\n logical name: wlp170s0\\n version: 1a\\n serial: 00:93:37:96:a0:14\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\\n configuration: broadcast=yes driver=iwlwifi driverversion=6.8.0-44-generic firmware=86.fb5c9aeb.0 ty-a0-gf-a0-86.uc ip=192.168.179.3 latency=0 link=yes multicast=yes wireless=IEEE 802.11\\n resources: irq:17 memory:7a200000-7a203fff\\n *-isa\\n description: ISA bridge\\n product: Tiger Lake-LP LPC Controller\\n vendor: Intel Corporation\\n physical id: 1f\\n bus info: pci@0000:00:1f.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: isa bus_master\\n configuration: latency=0\\n *-pnp00:00\\n product: PnP device PNP0303\\n physical id: 0\\n capabilities: pnp\\n configuration: driver=i8042 kbd\\n *-pnp00:01\\n product: PnP device PNP0f03\\n physical id: 1\\n capabilities: pnp\\n configuration: driver=i8042 aux\\n *-pnp00:02\\n product: PnP device PNP0c02\\n physical id: 2\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:03\\n product: PnP device PNP0c02\\n physical id: 3\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:04\\n product: PnP device PNP0c02\\n physical id: 4\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:05\\n product: PnP device PNP0c02\\n physical id: 5\\n capabilities: pnp\\n configuration: driver=system\\n *-multimedia\\n description: Audio device\\n product: Tiger Lake-LP Smart Sound Technology Audio Controller\\n vendor: Intel Corporation\\n physical id: 1f.3\\n bus info: pci@0000:00:1f.3\\n logical name: card0\\n logical name: /dev/snd/controlC0\\n logical name: /dev/snd/hwC0D0\\n logical name: /dev/snd/hwC0D2\\n logical name: /dev/snd/pcmC0D0c\\n logical name: /dev/snd/pcmC0D0p\\n logical name: /dev/snd/pcmC0D3p\\n logical name: /dev/snd/pcmC0D7p\\n logical name: /dev/snd/pcmC0D8p\\n logical name: /dev/snd/pcmC0D9p\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=snd_hda_intel latency=32\\n resources: iomemory:600-5ff iomemory:600-5ff irq:205 memory:605d1c8000-605d1cbfff memory:605d000000-605d0fffff\\n *-input:0\\n product: HDA Intel PCH Mic\\n physical id: 0\\n logical name: input12\\n logical name: /dev/input/event9\\n *-input:1\\n product: HDA Intel PCH Headphone\\n physical id: 1\\n logical name: input13\\n logical name: /dev/input/event10\\n *-input:2\\n product: HDA Intel PCH HDMI/DP,pcm=3\\n physical id: 2\\n logical name: input14\\n logical name: /dev/input/event11\\n *-input:3\\n product: HDA Intel PCH HDMI/DP,pcm=7\\n physical id: 3\\n logical name: input15\\n logical name: /dev/input/event12\\n *-input:4\\n product: HDA Intel PCH HDMI/DP,pcm=8\\n physical id: 4\\n logical name: input16\\n logical name: /dev/input/event13\\n *-input:5\\n product: HDA Intel PCH HDMI/DP,pcm=9\\n physical id: 5\\n logical name: input17\\n logical name: /dev/input/event14\\n *-serial:3\\n description: SMBus\\n product: Tiger Lake-LP SMBus Controller\\n vendor: Intel Corporation\\n physical id: 1f.4\\n bus info: pci@0000:00:1f.4\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n configuration: driver=i801_smbus latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1d0000-605d1d00ff ioport:efa0(size=32)\\n *-serial:4\\n description: Serial bus controller\\n product: Tiger Lake-LP SPI Controller\\n vendor: Intel Corporation\\n physical id: 1f.5\\n bus info: pci@0000:00:1f.5\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: bus_master\\n configuration: driver=intel-spi latency=0\\n resources: irq:0 memory:50400000-50400fff\\n *-battery\\n description: Lithium Ion Battery\\n product: FRANBBAT\\n vendor: FRANBBATA112610BG3\\n physical id: 1\\n version: 2021/7/5\\n serial: 0194\\n slot: Front\\n configuration: voltage=0.0V\\n *-power UNCLAIMED\\n description: OEM Define 1\\n product: OEM Define 5\\n vendor: OEM Define 2\\n physical id: 2\\n version: OEM Define 6\\n serial: OEM Define 3\\n capacity: 75mWh\\n *-input:0\\n product: Lid Switch\\n physical id: 3\\n logical name: input0\\n logical name: /dev/input/event0\\n capabilities: platform\\n *-input:1\\n product: Power Button\\n physical id: 4\\n logical name: input1\\n logical name: /dev/input/event1\\n capabilities: platform\\n *-input:2\\n product: PIXA3854:00 093A:0274 Touchpad\\n physical id: 5\\n logical name: input10\\n logical name: /dev/input/event6\\n logical name: /dev/input/mouse1\\n capabilities: i2c\\n *-input:3\\n product: Video Bus\\n physical id: 6\\n logical name: input11\\n logical name: /dev/input/event8\\n capabilities: platform\\n *-input:4\\n product: AT Translated Set 2 keyboard\\n physical id: 7\\n logical name: input2\\n logical name: /dev/input/event2\\n logical name: input2::capslock\\n logical name: input2::numlock\\n logical name: input2::scrolllock\\n capabilities: i8042\\n *-input:5\\n product: ImExPS/2 Generic Explorer Mouse\\n physical id: 8\\n logical name: input4\\n logical name: /dev/input/event7\\n logical name: /dev/input/mouse2\\n capabilities: i8042\\n *-input:6\\n product: FRMW0001:00 32AC:0006 Wireless Radio Control\\n physical id: 9\\n logical name: input5\\n logical name: /dev/input/event3\\n capabilities: i2c\\n *-input:7\\n product: FRMW0001:00 32AC:0006 Consumer Control\\n physical id: a\\n logical name: input6\\n logical name: /dev/input/event4\\n capabilities: i2c\\n *-input:8\\n product: PIXA3854:00 093A:0274 Mouse\\n physical id: b\\n logical name: input9\\n logical name: /dev/input/event5\\n logical name: /dev/input/mouse0\\n capabilities: i2c\\n", "Operating System": "Ubuntu 24.04.1 LTS", "Scaling Governor": "powersave", "CPU Complete Dump": {"/sys/devices/system/cpu/online": "0-7\\n", "/sys/devices/system/cpu/uevent": "", "/sys/devices/system/cpu/offline": "\\n", "/sys/devices/system/cpu/present": "0-7\\n", "/sys/devices/system/cpu/isolated": "\\n", "/sys/devices/system/cpu/modalias": "cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n", "/sys/devices/system/cpu/possible": "0-7\\n", "/sys/devices/system/cpu/nohz_full": " (null)\\n", "/sys/devices/system/cpu/kernel_max": "8191\\n", "/sys/devices/system/cpu/smt/active": "1\\n", "/sys/devices/system/cpu/cpu0/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu1/online": "1\\n", "/sys/devices/system/cpu/cpu1/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu2/online": "1\\n", "/sys/devices/system/cpu/cpu2/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu3/online": "1\\n", "/sys/devices/system/cpu/cpu3/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu4/online": "1\\n", "/sys/devices/system/cpu/cpu4/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu5/online": "1\\n", "/sys/devices/system/cpu/cpu5/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu6/online": "1\\n", "/sys/devices/system/cpu/cpu6/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu7/online": "1\\n", "/sys/devices/system/cpu/cpu7/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/power/async": "disabled\\n", "/sys/devices/system/cpu/smt/control": "on\\n", "/sys/devices/system/cpu/power/control": "auto\\n", "/sys/devices/system/cpu/hotplug/states": " 0: offline\\n 1: threads:prepare\\n 2: perf:prepare\\n 3: perf/x86:prepare\\n 8: x86/mce:dead\\n 9: virtio/net:dead\\n 11: slub:dead\\n 13: mm/writeback:dead\\n 14: mm/vmstat:dead\\n 15: softirq:dead\\n 20: irq_poll:dead\\n 21: block/softirq:dead\\n 22: block/bio:dead\\n 23: acpi/cpu-drv:dead\\n 25: block/mq:dead\\n 26: fs/buffer:dead\\n 27: printk:dead\\n 28: mm/memctrl:dead\\n 29: lib/percpu_cnt:dead\\n 30: lib/radix:dead\\n 31: mm/page_alloc:pcp\\n 32: net/dev:dead\\n 34: iommu/iova:dead\\n 36: padata:dead\\n 38: random:prepare\\n 39: workqueue:prepare\\n 41: hrtimers:prepare\\n 43: x86/x2apic:prepare\\n 44: smpcfd:prepare\\n 45: relay:prepare\\n 47: RCU/tree:prepare\\n 55: base/topology:prepare\\n 58: trace/RB:prepare\\n 59: mm/zsmalloc:prepare\\n 63: timers:prepare\\n 65: fork:vm_stack_cache\\n 66: crash/cpuhp\\n 86: cpu:kick_ap\\n 87: cpu:bringup\\n 88: idle:dead\\n 89: ap:offline\\n 90: x86/cachectrl:starting\\n 91: sched:starting\\n 92: RCU/tree:dying\\n104: perf/x86:starting\\n106: perf/x86/cstate:starting\\n137: smpcfd:dying\\n138: hrtimers:dying\\n141: ap:online\\n142: cpu:teardown\\n145: kvm/cpu:online\\n146: sched:waitempty\\n147: smpboot/threads:online\\n148: irq/affinity:online\\n149: block/mq:online\\n151: x86/intel/epb:online\\n152: perf:online\\n153: perf/x86:online\\n154: perf/x86/intel/uncore:online\\n157: perf/x86/rapl:online\\n158: perf/x86/cstate:online\\n184: lockup_detector:online\\n185: workqueue:online\\n186: random:online\\n187: RCU/tree:online\\n188: base/cacheinfo:online\\n189: x86/splitlock\\n190: mm/writeback:online\\n191: mm/vmstat:online\\n192: padata:online\\n193: mm/compaction:online\\n194: io-wq/online\\n195: lib/percpu_cnt:online\\n196: idle/intel:online\\n197: acpi/cpu-drv:online\\n198: virtio/net:online\\n199: x86/therm:online\\n200: cpufreq:online\\n201: leds/trigger:starting\\n202: x86/mce:online\\n203: x86/microcode:online\\n204: x86/resctrl/cat:online:\\n205: printk:online\\n206: trace/hwlat:online\\n207: trace/osnoise:online\\n208: swap_slots_cache\\n209: x86/msr:online\\n210: powercap/rapl:online\\n211: perf/x86/intel/i915:online\\n212: powercap/rapl:online\\n213: hwmon/coretemp:online\\n214: thermal/x86_pkg:online\\n215: platform/x86/uncore-freq:online\\n232: sched:active\\n233: online\\n", "/sys/devices/system/cpu/cpu0/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu1/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu2/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu3/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu4/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu5/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu6/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu7/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu0/cache/uevent": "", "/sys/devices/system/cpu/cpu0/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu1/cache/uevent": "", "/sys/devices/system/cpu/cpu1/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu2/cache/uevent": "", "/sys/devices/system/cpu/cpu2/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu3/cache/uevent": "", "/sys/devices/system/cpu/cpu3/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu4/cache/uevent": "", "/sys/devices/system/cpu/cpu4/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu5/cache/uevent": "", "/sys/devices/system/cpu/cpu5/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu6/cache/uevent": "", "/sys/devices/system/cpu/cpu6/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu7/cache/uevent": "", "/sys/devices/system/cpu/cpu7/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu0/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu0/power/control": "auto\\n", "/sys/devices/system/cpu/cpu1/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu1/power/control": "auto\\n", "/sys/devices/system/cpu/cpu2/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu2/power/control": "auto\\n", "/sys/devices/system/cpu/cpu3/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu3/power/control": "auto\\n", "/sys/devices/system/cpu/cpu4/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu4/power/control": "auto\\n", "/sys/devices/system/cpu/cpu5/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu5/power/control": "auto\\n", "/sys/devices/system/cpu/cpu6/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu6/power/control": "auto\\n", "/sys/devices/system/cpu/cpu7/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu7/power/control": "auto\\n", "/sys/devices/system/cpu/cpu0/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu1/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu2/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu3/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu4/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu5/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu6/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu7/hotplug/target": "233\\n", "/sys/devices/system/cpu/intel_pstate/status": "active\\n", "/sys/devices/system/cpu/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/vulnerabilities/mds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu0/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu2/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu3/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu4/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu6/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu7/topology/die_id": "0\\n", "/sys/devices/system/cpu/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/vulnerabilities/l1tf": "Not affected\\n", "/sys/devices/system/cpu/cpu0/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu2/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu3/topology/core_id": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu6/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu7/topology/core_id": "3\\n", "/sys/devices/system/cpu/intel_pstate/no_turbo": "0\\n", "/sys/devices/system/cpu/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/vulnerabilities/srbds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu0/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu0/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu0/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu0/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu0/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu0/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu1/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu1/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu1/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu1/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu1/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu1/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu2/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu2/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu2/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu2/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu2/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu2/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu3/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu3/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu3/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu3/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu3/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu3/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu4/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu4/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu4/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu4/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu4/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu4/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu5/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu5/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu5/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu5/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu5/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu5/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu6/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu6/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu6/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu6/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu6/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu6/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu7/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu7/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu7/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu7/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu7/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu7/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpuidle/current_driver": "intel_idle\\n", "/sys/devices/system/cpu/intel_pstate/turbo_pct": "47\\n", "/sys/devices/system/cpu/cpu0/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu0/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu1/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu1/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu2/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu3/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu3/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu4/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu4/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu5/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu5/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu6/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu7/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu7/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu0/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu0/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/time": "168098\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/time": "28756532\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/time": "38208188\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/time": "1195953283\\n", "/sys/devices/system/cpu/cpu0/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu1/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/time": "165961\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/time": "18822515\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/time": "17782446\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/time": "1232891355\\n", "/sys/devices/system/cpu/cpu1/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu2/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/time": "157527\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/time": "20825282\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/time": "24641472\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/time": "1222461031\\n", "/sys/devices/system/cpu/cpu2/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu3/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu3/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/time": "164760\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/time": "15833808\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/time": "13959092\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/time": "1253731843\\n", "/sys/devices/system/cpu/cpu3/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpu4/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu4/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/time": "135377\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/time": "14765732\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/time": "11166128\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/time": "1259140139\\n", "/sys/devices/system/cpu/cpu4/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu5/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/time": "161979\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/time": "16802697\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/time": "14181614\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/time": "1249481198\\n", "/sys/devices/system/cpu/cpu5/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu6/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/time": "147828\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/time": "14261917\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/time": "12338154\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/time": "1253004148\\n", "/sys/devices/system/cpu/cpu6/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu7/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu7/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/time": "157793\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/time": "15088222\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/time": "12334386\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/time": "1247720772\\n", "/sys/devices/system/cpu/cpu7/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpuidle/current_governor": "menu\\n", "/sys/devices/system/cpu/intel_pstate/num_pstates": "39\\n", "/sys/devices/system/cpu/vulnerabilities/meltdown": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/retbleed": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/below": "2625\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/usage": "2770\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/above": "1603\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/below": "18902\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/usage": "88049\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/above": "2224\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/below": "29\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/usage": "41338\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/above": "58038\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/usage": "129836\\n", "/sys/devices/system/cpu/cpu0/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/below": "2956\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/usage": "3099\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/above": "1643\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/below": "9909\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/usage": "76472\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/above": "1603\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/below": "31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/usage": "19249\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/above": "20895\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/usage": "68769\\n", "/sys/devices/system/cpu/cpu1/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/below": "2595\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/usage": "2761\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/above": "2092\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/below": "9954\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/usage": "82689\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/above": "2575\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/below": "15\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/usage": "26476\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/above": "14517\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/usage": "79189\\n", "/sys/devices/system/cpu/cpu2/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/below": "2962\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/usage": "3267\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/above": "2263\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/below": "7994\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/usage": "69495\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/above": "1785\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/below": "46\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/usage": "14973\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/above": "11455\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/usage": "53964\\n", "/sys/devices/system/cpu/cpu3/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/below": "2909\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/usage": "3181\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/above": "1454\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/below": "7351\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/usage": "66294\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/above": "1136\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/below": "19\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/usage": "12024\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/above": "7100\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/usage": "40221\\n", "/sys/devices/system/cpu/cpu4/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/below": "2803\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/usage": "2920\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/above": "1685\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/below": "8017\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/usage": "71626\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/above": "1499\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/below": "37\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/usage": "15218\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/above": "8847\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/usage": "56990\\n", "/sys/devices/system/cpu/cpu5/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/below": "2566\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/usage": "2676\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/above": "2036\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/below": "7131\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/usage": "65770\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/above": "1268\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/below": "16\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/usage": "13274\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/above": "6397\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/usage": "50441\\n", "/sys/devices/system/cpu/cpu6/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/below": "2846\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/usage": "3195\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/above": "2346\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/below": "7842\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/usage": "66650\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/above": "1403\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/below": "23\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/usage": "13289\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/above": "7585\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/usage": "43773\\n", "/sys/devices/system/cpu/cpu7/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/intel_pstate/max_perf_pct": "100\\n", "/sys/devices/system/cpu/intel_pstate/min_perf_pct": "9\\n", "/sys/devices/system/cpu/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu0/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu1/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu2/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu3/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu4/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu5/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu6/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu7/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v1": "Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v2": "Mitigation: Enhanced / Automatic IBRS; IBPB: conditional; RSB filling; PBRSB-eIBRS: SW sequence; BHI: SW loop, KVM: SW loop\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu0/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu1/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu2/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu3/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu4/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu5/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu6/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu7/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpuidle/available_governors": "ladder menu teo \\n", "/sys/devices/system/cpu/cpuidle/current_governor_ro": "menu\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/feedback_ctrs": "ref:191334462192 del:96847106021\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/feedback_ctrs": "ref:132093933192 del:71695999906\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/feedback_ctrs": "ref:136485444624 del:70125841107\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/feedback_ctrs": "ref:97826060088 del:48940442686\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/feedback_ctrs": "ref:93436112928 del:54434610505\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/feedback_ctrs": "ref:107018547624 del:52504835826\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/feedback_ctrs": "ref:106892620152 del:51039740499\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/feedback_ctrs": "ref:117275706120 del:55202835827\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpufreq/policy0/related_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/related_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/related_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/related_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/related_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/related_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/related_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/related_cpus": "7\\n", "/sys/devices/system/cpu/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpufreq/policy0/affected_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/affected_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/affected_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/affected_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/affected_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/affected_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/affected_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/affected_cpus": "7\\n", "/sys/devices/system/cpu/vulnerabilities/itlb_multihit": "Not affected\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu0/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu1/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu2/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu3/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu4/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu5/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu6/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu7/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy1/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy2/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy3/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy4/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy5/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy6/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy7/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/vulnerabilities/mmio_stale_data": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/tsx_async_abort": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq": "593424\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_cur_freq": "587709\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_cur_freq": "526664\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_cur_freq": "752604\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_cur_freq": "3683697\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_cur_freq": "1371179\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_cur_freq": "1999913\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu0/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/vulnerabilities/spec_store_bypass": "Mitigation: Speculative Store Bypass disabled via prctl\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu1/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu2/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu3/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu4/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu5/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu6/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu7/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/vulnerabilities/gather_data_sampling": "Mitigation: Microcode\\n", "/sys/devices/system/cpu/vulnerabilities/spec_rstack_overflow": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/vulnerabilities/reg_file_data_sampling": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us": "277013879\\n", "/sys/devices/system/cpu/cpu0/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us": "15846041\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/min_freq_khz": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_min_freq_khz": "400000\\n"}, "Docker Containers": "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES", "Network Interfaces": "2: wlp170s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1456 qdisc noqueue state UP group default qlen 1000\\n link/ether 00:93:37:96:a0:14 brd ff:ff:ff:ff:ff:ff\\n--\\n4: br-5358121b016d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:31:4c:7c:39 brd ff:ff:ff:ff:ff:ff\\n--\\n5: br-6e0ae77042d6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:29:4c:03:1e brd ff:ff:ff:ff:ff:ff\\n--\\n6: br-7688b5ca7e2d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:e5:22:19:30 brd ff:ff:ff:ff:ff:ff\\n--\\n7: br-9ba2a39b0b1e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:f5:74:c1:66 brd ff:ff:ff:ff:ff:ff\\n--\\n8: br-ce560083466a: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:a4:f4:58:34 brd ff:ff:ff:ff:ff:ff\\n--\\n9: br-17d7b4ff19e9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:40:0a:a9:6e brd ff:ff:ff:ff:ff:ff\\n--\\n10: br-b8fe670a4cd7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:15:10:5f:b5 brd ff:ff:ff:ff:ff:ff\\n--\\n11: br-c26dcd3569f9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:53:0c:b7:f6 brd ff:ff:ff:ff:ff:ff\\n--\\n13: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:2f:19:92:44 brd ff:ff:ff:ff:ff:ff\\n--\\n15: veth4b2531f@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default \\n link/ether 16:4d:d1:07:e9:34 brd ff:ff:ff:ff:ff:ff link-netnsid 0\\n--\\n27: br-cd08359ec224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:cb:56:8d:7d brd ff:ff:ff:ff:ff:ff\\n--\\n29: veth4f67909@if28: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether c2:8b:74:ce:4b:f2 brd ff:ff:ff:ff:ff:ff link-netnsid 2\\n--\\n31: veth3d72cc1@if30: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 56:6f:f8:d3:95:47 brd ff:ff:ff:ff:ff:ff link-netnsid 1\\n--\\n33: veth888843b@if32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 72:81:21:75:96:2a brd ff:ff:ff:ff:ff:ff link-netnsid 3\\n--\\n35: veth0c4fb2f@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 1e:1a:b4:b7:47:13 brd ff:ff:ff:ff:ff:ff link-netnsid 4\\n", "Current Clocksource": "tsc", "RAPL Energy Filtering": "0\\n", "Installed Python Packages": "aiohappyeyeballs==2.4.0\\naiohttp==3.10.3\\naiosignal==1.3.1\\nalembic==1.13.2\\nannotated-types==0.7.0\\nanybadge==1.14.0\\nanyio==4.4.0\\nattrs==24.2.0\\ncertifi==2024.8.30\\ncharset-normalizer==3.3.2\\nclick==8.1.7\\ncolorlog==6.8.2\\ndeepdiff==7.0.1\\ndnspython==2.6.1\\ndocker==7.1.0\\nemail_validator==2.2.0\\nfastapi==0.112.0\\nfastapi-cli==0.0.5\\nfrozenlist==1.4.1\\ngreenlet==3.1.0\\ngunicorn==23.0.0\\nh11==0.14.0\\nhiredis==3.0.0\\nhttpcore==1.0.5\\nhttptools==0.6.1\\nhttpx==0.27.2\\nidna==3.8\\nJinja2==3.1.4\\njoblib==1.4.2\\nMako==1.3.5\\nmarkdown-it-py==3.0.0\\nMarkupSafe==2.1.5\\nmdurl==0.1.2\\nmultidict==6.1.0\\nnumpy==2.0.1\\nnvidia-nccl-cu12==2.22.3\\noptuna==3.6.1\\nordered-set==4.1.0\\norjson==3.10.7\\npackaging==24.1\\npandas==2.2.2\\nplotext==5.2.8\\npsutil==6.0.0\\npsycopg==3.2.1\\npsycopg-binary==3.2.1\\npsycopg-pool==3.2.2\\npyarrow==17.0.0\\npydantic==2.9.1\\npydantic_core==2.23.3\\nPygments==2.18.0\\npyserial==3.5\\npython-dateutil==2.9.0.post0\\npython-dotenv==1.0.1\\npython-multipart==0.0.9\\npytz==2024.2\\nPyYAML==6.0.2\\nredis==5.0.8\\nrequests==2.32.3\\nrich==13.8.1\\nschema==0.7.7\\nscikit-learn==1.5.1\\nscipy==1.14.0\\nshellingham==1.5.4\\nsix==1.16.0\\nsniffio==1.3.1\\nSQLAlchemy==2.0.34\\nstarlette==0.37.2\\nthreadpoolctl==3.5.0\\ntqdm==4.66.5\\ntyper==0.12.5\\ntyping_extensions==4.12.2\\ntzdata==2024.1\\nurllib3==2.2.2\\nuvicorn==0.30.6\\nuvicorn-worker==0.2.0\\nuvloop==0.20.0\\nwatchfiles==0.24.0\\nwebsockets==13.0.1\\nxgboost==2.1.0\\nyarl==1.11.1\\n", "Installed System Packages": "Desired=Unknown/Install/Remove/Purge/Hold\\n| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend\\n|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\\n||/ Name Version Architecture Description\\n+++-=============================================-==========================================-============-===================================================================================\\nii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information\\nii acl 2.3.2-1build1 amd64 access control list - utilities\\nii adduser 3.137ubuntu1 all add and remove users and groups\\nii adwaita-icon-theme 46.0-1 all default icon theme of GNOME\\nii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files\\nii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files\\nii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files\\nii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA\\nii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs\\nii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn\'t go by time\\nii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version\\nii apparmor 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 user-space parser utility for AppArmor\\nii apport 2.28.1-0ubuntu3.1 all automatically generate crash reports for debugging\\nii apport-core-dump-handler 2.28.1-0ubuntu3.1 all Kernel core dump handler for Apport\\nii apport-gtk 2.28.1-0ubuntu3.1 all GTK+ frontend for the apport crash report system\\nii apport-symptoms 0.25 all symptom scripts for apport\\nii appstream 1.0.2-1build6 amd64 Software component metadata management\\nii apt 2.7.14build2 amd64 commandline package manager\\nii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads\\nii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads\\nii apt-utils 2.7.14build2 amd64 package management related utility programs\\nii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service\\nii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients\\nii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker\\nii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell\\nii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)\\nii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)\\nii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon\\nii baobab 46.0-1build1 amd64 GNOME disk usage analyzer\\nii base-files 13ubuntu10.1 amd64 Debian base system miscellaneous files\\nii base-passwd 3.6.3build1 amd64 Debian base system master password and group files\\nii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell\\nii bash-completion 1:2.11-8 all programmable completion for the bash shell\\nii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language\\nii bind9-dnsutils 1:9.18.28-0ubuntu0.24.04.1 amd64 Clients provided with BIND 9\\nii bind9-host 1:9.18.28-0ubuntu0.24.04.1 amd64 DNS Lookup Utility\\nii bind9-libs:amd64 1:9.18.28-0ubuntu0.24.04.1 amd64 Shared Libraries used by BIND 9\\nii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities\\nii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities\\nii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target\\nii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons\\nii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS\\nii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon\\nii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices\\nii boot-repair 4ppa2081 all Graphical tool to repair boot problems\\nii boot-sav 4ppa2081 all Librairies for Boot-Info, OS-uninstaller and Boot-repair\\nii boot-sav-extra 4ppa2081 all Extra librairies for OS-uninstaller and Boot-repair\\nii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)\\nii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF\\nii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display\\nii bsdextrautils 2.39.3-9ubuntu6.1 amd64 extra utilities from 4.4BSD-Lite\\nii bsdutils 1:2.39.3-9ubuntu6.1 amd64 basic utilities from 4.4BSD-Lite\\nii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation\\nii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages\\nii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs\\nii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities\\nii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities\\nii ca-certificates 20240203 all Common CA certificates\\nii ca-certificates-java 20240118 all Common CA certificates (JKS keystore)\\nii cloud-guest-utils 0.33-1 all cloud guest utilities\\nii cloud-init 24.2-0ubuntu1~24.04.2 all initialization and customization tool for cloud instances\\nii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon\\nii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files\\nii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions\\nii console-setup 1.226ubuntu1 all console font and keymap setup program\\nii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup\\nii containerd.io 1.7.21-1 amd64 An open and reliable container runtime\\nii coreutils 9.4-3ubuntu6 amd64 GNU core utilities\\nii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files\\nii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)\\nii cpp-11 11.4.0-9ubuntu1 amd64 GNU C preprocessor\\nii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor\\nii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu\\nii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture\\nii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2\\nii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon\\nii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon\'s configuration files\\nii cups 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface\\nii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed\\nii cups-bsd 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - BSD commands\\nii cups-client 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - client programs (SysV)\\nii cups-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - common files\\nii cups-core-drivers 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - driverless printing\\nii cups-daemon 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - daemon\\nii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package\\nii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing\\nii cups-ipp-utils 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities\\nii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges\\nii cups-ppdc 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities\\nii cups-server-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - server common files\\nii curl 8.5.0-2ubuntu10.3 amd64 command line tool for transferring data with URL syntax\\nii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell\\nii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)\\nii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)\\nii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)\\nii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)\\nii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)\\nii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)\\nii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator\\nii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities\\nii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end\\nii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service\\nii debconf 1.5.86ubuntu1 all Debian configuration management system\\nii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf\\nii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian\\nii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files\\nii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)\\nii dictionaries-common 1.29.7 all spelling dictionaries - common utilities\\nii diffutils 1:3.10-1build1 amd64 File comparison utilities\\nii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service\\nii distro-info 1.7build1 amd64 provides information about the distributions\' releases\\nii distro-info-data 0.60ubuntu0.1 all information about the distributions\' releases (data files)\\nii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder\\nii dmsetup 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme\\nii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key\\nii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable\\nii docbook-xml 4.5-12 all standard XML documentation system for software and systems\\nii docker-buildx-plugin 0.16.2-1~ubuntu.22.04~jammy amd64 Docker Buildx cli plugin.\\nii docker-ce 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker: the open-source application container engine\\nii docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine\\nii docker-ce-rootless-extras 5:27.2.1-1~ubuntu.22.04~jammy amd64 Rootless support for Docker.\\nii docker-compose-plugin 2.29.2-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.\\nii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems\\nii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system\\nii dpkg-dev 1.22.6ubuntu6.1 all Debian package development tools\\nii dracut-install 060+5-1ubuntu3.2 amd64 dracut is an event driven initramfs infrastructure (dracut-install)\\nii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities\\nii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends\\nii ed 1.20.1-1 amd64 classic UNIX line editor\\nii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager\\nii eject 2.39.3-9ubuntu6.1 amd64 ejects CDs and operates CD-Changers under Linux\\nii emacsen-common 3.0.5 all Common facilities for all emacsen\\nii enchant-2 2.3.3-2build2 amd64 Wrapper for various spell checker engines (binary programs)\\nii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program\\nii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files\\nii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings\\nii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer\\nii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files\\nii evolution-data-server 3.52.3-0ubuntu1 amd64 evolution database backend server\\nii evolution-data-server-common 3.52.3-0ubuntu1 all architecture independent files for Evolution Data Server\\nii fakeroot 1.33-1 amd64 tool for simulating superuser privileges\\nii fdisk 2.39.3-9ubuntu6.1 amd64 collection of partitioning utilities\\nii file 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers\\nii file-roller 44.3-0ubuntu1 amd64 archive manager for GNOME\\nii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs\\nii firefox 1:1snap1-0ubuntu5 amd64 Transitional package - firefox -> firefox snap\\nii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed\\nii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries\\nii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration\\nii fonts-beng 2:1.3 all Metapackage to install Bengali and Assamese fonts\\nii fonts-beng-extra 3.3.1-2 all TrueType fonts for Bengali language\\nii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters\\nii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters\\nii fonts-deva 2:1.4 all Meta package to install all Devanagari fonts\\nii fonts-deva-extra 3.0-6 all Free fonts for Devanagari script\\nii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)\\nii fonts-freefont-ttf 20211204+svn4273-2 all Freefont Serif, Sans and Mono Truetype fonts\\nii fonts-gargi 2.0-6 all OpenType Devanagari font\\nii fonts-gubbi 1.3-7 all Gubbi free font for Kannada script\\nii fonts-gujr 2:1.5 all Meta package to install all Gujarati fonts\\nii fonts-gujr-extra 1.0.1-2 all Free fonts for Gujarati script\\nii fonts-guru 2:1.3 all Meta package to install all Punjabi fonts\\nii fonts-guru-extra 2.0-5 all Free fonts for Punjabi language\\nii fonts-indic 2:1.4 all Meta package to install all Indian language fonts\\nii fonts-kalapi 1.0-5 all Kalapi Gujarati Unicode font\\nii fonts-knda 2:1.3 all Meta package for Kannada fonts\\nii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier\\nii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow\\nii fonts-lohit-beng-assamese 2.91.5-2 all Lohit TrueType font for Assamese Language\\nii fonts-lohit-beng-bengali 2.91.5-3 all Lohit TrueType font for Bengali Language\\nii fonts-lohit-deva 2.95.4-5 all Lohit TrueType font for Devanagari script\\nii fonts-lohit-gujr 2.92.4-4 all Lohit TrueType font for Gujarati Language\\nii fonts-lohit-guru 2.91.2-3 all Lohit TrueType font for Punjabi Language\\nii fonts-lohit-knda 2.5.4-3 all Lohit TrueType font for Kannada Language\\nii fonts-lohit-mlym 2.92.2-2 all Lohit TrueType font for Malayalam Language\\nii fonts-lohit-orya 2.91.2-2 all Lohit TrueType font for Oriya Language\\nii fonts-lohit-taml 2.91.3-2 all Lohit TrueType font for Tamil Language\\nii fonts-lohit-taml-classical 2.5.4-2 all Lohit Tamil TrueType fonts for Tamil script\\nii fonts-lohit-telu 2.5.5-2build1 all Lohit TrueType font for Telugu Language\\nii fonts-mlym 2:1.3 all Meta package to install all Malayalam fonts\\nii fonts-nakula 1.0-4 all Free Unicode compliant Devanagari font\\nii fonts-navilu 1.2-4 all Handwriting font for Kannada\\nii fonts-noto-cjk 1:20230817+repack1-3 all \\"No Tofu\\" font families with large Unicode coverage (CJK regular and bold)\\nii fonts-noto-color-emoji 2.042-1 all color emoji font from Google\\nii fonts-noto-core 20201225-2 all \\"No Tofu\\" font families with large Unicode coverage (core)\\nii fonts-noto-mono 20201225-2 all \\"No Tofu\\" monospaced font family with large Unicode coverage\\nii fonts-opensymbol 4:102.12+LibO24.2.5-0ubuntu0.24.04.2 all OpenSymbol TrueType font\\nii fonts-orya 2:1.3 all Meta package to install all Odia fonts\\nii fonts-orya-extra 2.0-6 all Free fonts for Odia script\\nii fonts-pagul 1.0-9 all Free TrueType font for the Sourashtra language\\nii fonts-sahadeva 1.0-5 all Free Unicode compliant Devanagari font\\nii fonts-samyak-deva 1.2.2-6 all Samyak TrueType font for Devanagari script\\nii fonts-samyak-gujr 1.2.2-6 all Samyak TrueType font for Gujarati language\\nii fonts-samyak-mlym 1.2.2-6 all Samyak TrueType font for Malayalam language\\nii fonts-samyak-taml 1.2.2-6 all Samyak TrueType font for Tamil language\\nii fonts-sarai 1.0-3 all truetype font for devanagari script\\nii fonts-sil-annapurna 2.000-2 all smart font for languages using Devanagari script\\nii fonts-smc 1:7.5 all Metapackage for various TrueType fonts for Malayalam Language\\nii fonts-smc-anjalioldlipi 7.1.2-2 all AnjaliOldLipi malayalam font\\nii fonts-smc-chilanka 1.540-2 all Chilanka malayalam font\\nii fonts-smc-dyuthi 3.0.2-2 all Dyuthi malayalam font\\nii fonts-smc-gayathri 1.200-1 all Gayathri Malayalam font\\nii fonts-smc-karumbi 1.1.2-2 all Karumbi malayalam font\\nii fonts-smc-keraleeyam 3.0.2-2 all Keraleeyam malayalam font\\nii fonts-smc-manjari 2.200-1 all Manjari malayalam font\\nii fonts-smc-meera 7.0.3-1 all Meera malayalam font\\nii fonts-smc-rachana 7.0.2-1build1 all Rachana malayalam font\\nii fonts-smc-raghumalayalamsans 2.2.1-1 all RaghuMalayalamSans malayalam font\\nii fonts-smc-suruma 3.2.3-1 all Suruma malayalam font\\nii fonts-smc-uroob 2.0.2-1 all Uroob malayalam font\\nii fonts-taml 2:1.4 all Meta package to install all Tamil fonts\\nii fonts-telu 2:1.3 all Meta package to install all Telugu fonts\\nii fonts-telu-extra 2.0-6 all Free fonts for Telugu script\\nii fonts-teluguvijayam 2.1-1 all TrueType fonts for Telugu script (te)\\nii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu\\nii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts\\nii fonts-yrsa-rasa 2.005-1 all Open-source, libre fonts for Latin + Gujarati\\nii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database\\nii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access\\nii freeipmi-common 1.6.13-3 all GNU implementation of the IPMI protocol - common files\\nii freeipmi-tools 1.6.13-3 amd64 GNU implementation of the IPMI protocol - tools\\nii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly\\nii ftp 20230507-2build3 all dummy transitional package for tnftp\\nii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)\\nii fwupd 1.9.24-1~24.04.1 amd64 Firmware update daemon\\nii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary\\nii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler\\nii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler\\nii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture\\nii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture\\nii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand\\nii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)\\nii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler\\nii gcc-11 11.4.0-9ubuntu1 amd64 GNU C compiler\\nii gcc-11-base:amd64 11.4.0-9ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler\\nii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture\\nii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture\\nii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)\\nii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)\\nii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger\\nii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool\\nii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager\\nii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service\\nii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library\\nii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system\\nii ghostscript 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF\\nii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService\\nii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita\\nii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)\\nii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)\\nii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4\\nii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library\\nii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components\\nii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library\\nii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library\\nii gir1.2-gdesktopenums-3.0:amd64 46.1-0ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas\\nii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library - GObject-Introspection\\nii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager\\nii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)\\nii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library\\nii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule\\nii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library\\nii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar\\nii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)\\nii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth\\nii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)\\nii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)\\nii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)\\nii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library\\nii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data\\nii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library\\nii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy\\nii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)\\nii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data\\nii gir1.2-javascriptcoregtk-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-javascriptcoregtk-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-mutter-14:amd64 46.2-1ubuntu0.24.04.1 amd64 GObject introspection data for Mutter\\nii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library\\nii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4\\nii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)\\nii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library\\nii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings\\nii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)\\nii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit\\nii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files\\nii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)\\nii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1\\nii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library\\nii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data\\nii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library\\nii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower\\nii gir1.2-vte-2.91:amd64 0.76.0-1ubuntu0.1 amd64 GObject introspection data for the VTE library\\nii gir1.2-webkit-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-webkit2-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library\\nii git 1:2.43.0-1ubuntu7.1 amd64 fast, scalable, distributed revision control system\\nii git-man 1:2.43.0-1ubuntu7.1 all fast, scalable, distributed revision control system (manual pages)\\nii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)\\nii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd\\nii glade2script 3.2.4~ppa23 all Glade interface engine for scripts\\nii glade2script-python3 3.2.4~ppa23 all Glade interface engine for scripts (Python3 version)\\nii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib\\nii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files\\nii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services\\nii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons\\nii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files\\nii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app\\nii gnome-calculator 1:46.1-1ubuntu1~24.04.1 amd64 GNOME desktop calculator\\nii gnome-characters 46.0-1build1 amd64 character map application\\nii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support\\nii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop\\nii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files\\nii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images\\nii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps\\nii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media\\nii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME\\nii gnome-initial-setup 46.2-1ubuntu0.24.04.1 amd64 Initial GNOME system setup helper\\nii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)\\nii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library\\nii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal\\nii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii gnome-online-accounts 3.50.4-0ubuntu2 amd64 service to manage online accounts for the GNOME desktop\\nii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop\\nii gnome-remote-desktop 46.3-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire\\nii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime\\nii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events\\nii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files\\nii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings\\nii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files\\nii gnome-shell 46.0-0ubuntu6~24.04.4 amd64 graphical shell for the GNOME desktop\\nii gnome-shell-common 46.0-0ubuntu6~24.04.4 all common files for the GNOME graphical shell\\nii gnome-shell-extension-appindicator 58-1 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell\\nii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell\\nii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell\\nii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1.1 all extension which adds a Windows-like snap assist to GNOME Shell\\nii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam\\nii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME\\nii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME\\nii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application\\nii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator\\nii gnome-text-editor 46.3-0ubuntu2 amd64 simple text editor for GNOME\\nii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine\\nii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files\\nii gnome-user-docs 46.0-1ubuntu1 all GNOME Help\\nii gnome-user-docs-de 46.0-1ubuntu1 all GNOME Help (German)\\nii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement\\nii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files\\nii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs\\nii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations\\nii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent\\nii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client\\nii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities\\nii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version\\nii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool\\nii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep\\nii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)\\nii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)\\nii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)\\nii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)\\nii grub-gfxpayload-lists 0.7build2 amd64 GRUB gfxpayload blacklist\\nii grub-pc 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)\\nii grub-pc-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)\\nii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)\\nii gsettings-desktop-schemas 46.1-0ubuntu1 all GSettings desktop-wide schemas\\nii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu\\nii gstreamer1.0-alsa:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugin for ALSA\\nii gstreamer1.0-gl:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for GL\\nii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)\\nii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit\\nii gstreamer1.0-pipewire:amd64 1.0.5-1ubuntu1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server\\nii gstreamer1.0-plugins-base:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins from the \\"base\\" set\\nii gstreamer1.0-plugins-base-apps 1.24.2-1ubuntu0.1 amd64 GStreamer helper programs from the \\"base\\" set\\nii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the \\"good\\" set\\nii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer\\nii gstreamer1.0-x:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for X11 and Pango\\nii gtk-update-icon-cache 3.24.41-4ubuntu1.1 amd64 icon theme caching utility\\nii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine\\nii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1.1 amd64 pixbuf-based theme for GTK 2\\nii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module\\nii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends\\nii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files\\nii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers\\nii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server\\nii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries\\nii gzip 1.12-1ubuntu3 amd64 GNU compression utilities\\nii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance\\nii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader\\nii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer\\nii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes\\nii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name\\nii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)\\nii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files\\nii humanity-icon-theme 0.6.16 all Humanity Icon theme\\nii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell\\nii hwdata 0.379-1 all hardware identification / configuration data\\nii ibus 1.5.29-2 amd64 Intelligent Input Bus - core\\nii ibus-data 1.5.29-2 all Intelligent Input Bus - data files\\nii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support\\nii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support\\nii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support\\nii ibus-table 1.17.4-2 all table engine for IBus\\nii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs\\nii ieee-data 20220827.1 all OUI and IAB listings\\nii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy\\nii im-config 0.57-2 all Input method configuration framework\\nii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client\\nii info 7.1-3build2 amd64 Standalone GNU Info documentation browser\\nii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed\\nii init-system-helpers 1.66ubuntu1 all helper tools for all init systems\\nii initramfs-tools 0.142ubuntu25.2 all generic modular initramfs generator (automation)\\nii initramfs-tools-bin 0.142ubuntu25.2 amd64 binaries used by initramfs-tools\\nii initramfs-tools-core 0.142ubuntu25.2 all generic modular initramfs generator (core tools)\\nii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem\\nii install-info 7.1-3build2 amd64 Manage installed documentation in info format\\nii intel-microcode 3.20240813.0ubuntu0.24.04.2 amd64 Processor microcode firmware for Intel CPUs\\nii ipmitool 1.8.19-7build2 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)\\nii ipp-usb 0.9.24-0ubuntu3.1 amd64 Daemon for IPP over USB printer support\\nii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools\\nii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT\\nii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts\\nii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host\\nii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations\\nii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool\\nii java-common 0.75+exp1 all Base package for Java runtimes\\nii javascript-common 11+nmu1 all Base support for JavaScript library packages\\nii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor\\nii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities\\nii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker\\nii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences\\nii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service\\nii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot\\nii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules\\nii language-pack-de 1:24.04+20240817 all translation updates for language German\\nii language-pack-de-base 1:24.04+20240817 all translations for language German\\nii language-pack-en 1:24.04+20240817 all translation updates for language English\\nii language-pack-en-base 1:24.04+20240817 all translations for language English\\nii language-pack-gnome-de 1:24.04+20240817 all GNOME translation updates for language German\\nii language-pack-gnome-de-base 1:24.04+20240817 all GNOME translations for language German\\nii language-pack-gnome-en 1:24.04+20240817 all GNOME translation updates for language English\\nii language-pack-gnome-en-base 1:24.04+20240817 all GNOME translations for language English\\nii language-selector-common 0.225 all Language selector for Ubuntu\\nii language-selector-gnome 0.225 all Language selector frontend for Ubuntu\\nii laptop-detect 0.16 all system chassis type checker\\nii less 590-2ubuntu2.1 amd64 pager program similar to more\\nii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library\\nii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library\\nii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries\\nii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library\\nii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones\\nii libaio1t64:amd64 0.3.113-6build1 amd64 Linux kernel AIO access library - shared library\\nii libalgorithm-diff-perl 1.201-1 all module to find differences between files\\nii libalgorithm-diff-xs-perl:amd64 0.04-8build3 amd64 module to find differences between files (XS accelerated)\\nii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data\\nii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)\\nii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library\\nii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library\\nii libapparmor1:amd64 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 changehat AppArmor library\\nii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services\\nii libapr1-dev 1.7.2-3.1build2 amd64 Apache Portable Runtime Library - Development Headers\\nii libapr1t64:amd64 1.7.2-3.1build2 amd64 Apache Portable Runtime Library\\nii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library\\nii libarchive13t64:amd64 3.7.2-2ubuntu0.1 amd64 Multi-format archive and compression library (shared library)\\nii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library\\nii libasan6:amd64 11.4.0-9ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers\\nii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications\\nii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library\\nii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components\\nii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library\\nii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library\\nii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge\\nii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library\\nii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit\\nii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)\\nii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions\\nii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions\\nii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library\\nii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library\\nii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files\\nii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing\\nii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework\\nii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library\\nii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files\\nii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library\\nii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi\'s embeddable mDNS/DNS-SD library\\nii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library\\nii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices\\nii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)\\nii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators\\nii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)\\nii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries\\nii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)\\nii libblkid-dev:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library - headers\\nii libblkid1:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library\\nii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev\\nii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev\\nii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev\\nii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev\\nii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev\\nii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev\\nii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev\\nii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev\\nii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices\\nii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack\\nii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library\\nii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization\\nii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading\\nii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)\\nii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)\\nii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library\\nii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)\\nii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library\\nii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions\\nii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations\\nii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes\\nii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime\\nii libc-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Binaries\\nii libc-dev-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Development binaries\\nii libc-devtools 2.39-0ubuntu8.3 amd64 GNU C Library: Development tools\\nii libc6:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Shared libraries\\nii libc6-dbg:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: detached debugging symbols\\nii libc6-dev:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Development Libraries and Header Files\\nii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library\\nii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl\\nii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)\\nii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library\\nii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)\\nii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library\\nii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)\\nii libcamel-1.2-64t64:amd64 3.52.3-0ubuntu1 amd64 Evolution MIME message handling library\\nii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library\\nii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra\\nii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds\\nii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra\\nii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds\\nii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library\\nii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)\\nii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)\\nii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)\\nii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB\\nii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs\\nii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction\\nii libcdio19t64:amd64 2.1.0-4.1ubuntu1.2 amd64 library to read and control CD-ROM\\nii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)\\nii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library\\nii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library\\nii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes\\nii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)\\nii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)\\nii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord\\nii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime\\nii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime\\nii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library\\nii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library\\nii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files\\nii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library\\nii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.1 amd64 disk encryption support - shared library\\nii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)\\nii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)\\nii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library\\nii libcups2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Core library\\nii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files\\nii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library\\nii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Raster image library\\nii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)\\nii libcurl4t64:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)\\nii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library\\nii libdata-dump-perl 1.25-1 all Perl module to help dump data structures\\nii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library\\nii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]\\nii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)\\nii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC\\nii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus\\nii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version\\nii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library\\nii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation\\nii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)\\nii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server\\nii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)\\nii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library\\nii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK\\nii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib\\nii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression\\nii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre\\nii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format\\nii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files\\nii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules\\nii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime\\nii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files\\nii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime\\nii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime\\nii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime\\nii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime\\nii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library\\nii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)\\nii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information\\nii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library\\nii libebackend-1.2-11t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libebook-1.2-21t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution address books\\nii libebook-contacts-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution contacts books\\nii libecal-2.0-3:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution calendars\\nii libedata-book-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution address books\\nii libedata-cal-2.0-2t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution calendars\\nii libedataserver-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedataserverui-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries\\nii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library\\nii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libegl-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library\\nii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support\\nii libei1:amd64 1.2.1-1 amd64 Emulated Input client library\\nii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library\\nii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files\\nii libenchant-2-2:amd64 2.3.3-2build2 amd64 Wrapper library for various spell checker engines (runtime libs)\\nii libencode-locale-perl 1.05-3 all utility to determine the locale encoding\\nii libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files\\nii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library\\nii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way\\nii libespeak-ng1:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: shared library\\nii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)\\nii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices\\nii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library\\nii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets\\nii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)\\nii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files\\nii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library\\nii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library\\nii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit\\nii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries\\nii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library\\nii libexttextcat-data 3.4.7-1build1 all Language detection library - data files\\nii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions\\nii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries\\nii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C\\nii libfdisk1:amd64 2.39.3-9ubuntu6.1 amd64 fdisk partitioning library\\nii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)\\nii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime\\nii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision\\nii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects\\nii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification\\nii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files\\nii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)\\nii libfile-listing-perl 6.16-1 all module to parse directory listings\\nii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types\\nii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library\\nii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library\\nii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files\\nii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime\\nii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library\\nii libfprint-2-2 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, shared libraries\\nii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, drivers shared libraries\\nii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX\\nii libfreeipmi17 1.6.13-3 amd64 GNU IPMI - libraries\\nii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)\\nii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)\\nii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files\\nii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm\\nii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers\\nii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)\\nii libfwupd2:amd64 1.9.24-1~24.04.1 amd64 Firmware update daemon library\\nii libgail-common:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- common modules\\nii libgail18t64:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- shared libraries\\nii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)\\nii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)\\nii libgbm1:amd64 24.0.9-0ubuntu0.1 amd64 generic buffer management API -- runtime\\nii libgcc-11-dev:amd64 11.4.0-9ubuntu1 amd64 GCC support library (development files)\\nii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)\\nii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library\\nii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks\\nii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks\\nii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks\\nii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library\\nii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library\\nii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files\\nii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries\\nii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version) \\nii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version) \\nii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library\\nii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library (thumbnailer)\\nii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 all GDK Pixbuf library - data files\\nii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)\\nii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library\\nii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service\\nii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim\\nii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library\\nii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)\\nii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)\\nii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data\\nii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform\\nii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support\\nii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules\\nii libgl1-mesa-dri:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules\\nii libglapi-mesa:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the GL API -- shared library\\nii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support\\nii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries\\nii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries\\nrc libglib2.0-0:amd64 2.72.4-0ubuntu2.3 amd64 GLib library of C routines\\nii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines\\nii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library\\nii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library\\nii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library\\nii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library\\nii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)\\nii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)\\nii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library\\nii libglx-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library\\nii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support\\nii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library\\nii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME\\nii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files\\nii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library\\nii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library\\nii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version\\nii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files\\nii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files\\nii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files\\nii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library\\nii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.2 amd64 GNU TLS library - main runtime library\\nii libgoa-1.0-0b:amd64 3.50.4-0ubuntu2 amd64 library for GNOME Online Accounts\\nii libgoa-1.0-common 3.50.4-0ubuntu2 all library for GNOME Online Accounts - common files\\nii libgoa-backend-1.0-2:amd64 3.50.4-0ubuntu2 amd64 backend library for GNOME Online Accounts\\nii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library\\nii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library\\nii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)\\nii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME\\nii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library\\nii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages\\nii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library\\nii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library\\nii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)\\nii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types\\nii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library\\nii libgs-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - ICC profiles\\nii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF - Library\\nii libgs10-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - common files\\nii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version\\nii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files\\nii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds\\nii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications\\nii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files\\nii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism\\nii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP\\nii libgstreamer-gl1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer GL libraries\\nii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer libraries from the \\"base\\" set\\nii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the \\"good\\" set\\nii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements\\nrc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library\\nii libgtk-3-0t64:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library\\nii libgtk-3-bin 3.24.41-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk-3-common 3.24.41-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library\\nii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library\\nii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library\\nii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library\\nrc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-bin 2.24.33-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk2.0-common 2.24.33-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library\\nii libgtkmm-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)\\nii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget\\nii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget\\nii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)\\nii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)\\nii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev\\nii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP\\nii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP\\nii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP\\nii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1\\nii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library\\nii libgweather-4-common 4.4.2-1build1 all GWeather common files\\nii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)\\nii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones\\nii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)\\nii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend\\nii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)\\nii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin\\nii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin\\nii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin\\nii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library\\nii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)\\nii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries\\nii libhtml-form-perl 6.11-1 all module that represents an HTML form element\\nii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats\\nii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents\\nii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML\\nii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees\\nii libhttp-cookies-perl 6.11-1 all HTTP cookie jars\\nii libhttp-daemon-perl 6.16-1 all simple http server class\\nii libhttp-date-perl 6.06-1 all module of date conversion routines\\nii libhttp-message-perl 6.45-1ubuntu1 all perl interface to HTTP style messages\\nii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation\\nii libhunspell-1.7-0:amd64 1.7.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)\\nii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library\\nii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library\\nii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)\\nii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)\\nii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library\\nii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode\\nii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications\\nii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library\\nii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)\\nii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access\\nii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library\\nii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library\\nii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices\\nii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser\\nii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks\\nii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library\\nii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection\\nii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets\\nii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)\\nii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library\\nii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library\\nii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics\\nii libipmiconsole2 1.6.13-3 amd64 GNU IPMI - Serial-over-Lan library\\nii libipmidetect0 1.6.13-3 amd64 GNU IPMI - IPMI node detection library\\nii libipsec-mb1 1.5-1build1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library\\nii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library\\nii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints\\nii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems\\nii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images\\nii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library\\nii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library\\nii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data\\nii libjavascriptcoregtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjavascriptcoregtk-6.0-1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries\\nii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries\\nii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library\\nii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library\\nii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group\'s JPEG runtime library (dependency package)\\nii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library\\nii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications\\nii libjs-sphinxdoc 7.2.6-6 all JavaScript support for Sphinx documentation\\nii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript\'s functional programming helper library\\nii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library\\nii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library\\nii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)\\nii libjudydebian1 1.0.5-5.1build1 amd64 C library for creating and accessing dynamic arrays\\nii libk5crypto3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Crypto Library\\nii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)\\nii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs\\nii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library\\nii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)\\nii libkrb5-3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries\\nii libkrb5support0:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Support library\\nii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library\\nii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data\\nii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages\\nii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)\\nii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library\\nii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)\\nii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)\\nii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)\\nii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries\\nii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries\\nii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library\\nii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library\\nii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library\\nii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl\\nii liblouis-data 3.29.0-1build1 all Braille translation library - data\\nii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs\\nii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities\\nii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data\\nii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs\\nii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)\\nii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool\\nii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)\\nii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)\\nii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)\\nii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4\\nii libluajit-5.1-2:amd64 2.1.0+git20231223.c525bcb+dfsg-1 amd64 Just in time compiler for Lua - library version\\nii libluajit-5.1-common 2.1.0+git20231223.c525bcb+dfsg-1 all Just in time compiler for Lua - common files\\nii liblwp-mediatypes-perl 6.04-2 all module to guess media type for a file or a URL\\nii liblwp-protocol-https-perl 6.13-1 all HTTPS driver for LWP::UserAgent\\nii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime\\nii liblzma5:amd64 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression library\\nii liblzo2-2:amd64 2.10-2build4 amd64 data compression library\\nii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using \\"magic\\" numbers (compiled magic file)\\nrc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs\\nii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library\\nii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library\\nii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol\\nii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports\\nii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line\\nii libmd0:amd64 1.1.0-2build1 amd64 message digest functions from BSD systems - shared library\\nii libmediaart-2.0-0:amd64 1.9.6-1build2 amd64 media art extraction and cache management library\\nii libmhash2:amd64 0.9.9.9-9build3 amd64 Library for cryptographic hashing and message authentication\\nii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries\\nii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library\\nii libmount-dev:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library - headers\\nii libmount1:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library\\nii libmozjs-115-0t64:amd64 115.10.0-1 amd64 SpiderMonkey JavaScript library\\nii libmp3lame0:amd64 3.100-6build1 amd64 MP3 encoding library\\nii libmpc3:amd64 1.3.1-1build1 amd64 multiple precision complex floating-point library\\nii libmpfr6:amd64 4.2.1-1build1 amd64 multiple precision floating-point computation\\nii libmpg123-0t64:amd64 1.32.5-1ubuntu1 amd64 MPEG layer 1/2/3 audio decoder (shared library)\\nii libmsgraph-0-1:amd64 0.2.1-0ubuntu3 amd64 library for accessing the Microsoft Graph API\\nii libmtdev1t64:amd64 1.1.6-1.1build1 amd64 Multitouch Protocol Translation Library - shared library\\nii libmtp-common 1.1.21-3.1build1 all Media Transfer Protocol (MTP) common files\\nii libmtp-runtime 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) runtime tools\\nii libmtp9t64:amd64 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) library\\nii libmutter-14-0:amd64 46.2-1ubuntu0.24.04.1 amd64 window manager library from the Mutter window manager\\nii libmysqlclient21:amd64 8.0.39-0ubuntu0.24.04.2 amd64 MySQL database client library\\nii libmythes-1.2-0:amd64 2:1.2.5-1build1 amd64 simple thesaurus library\\nii libnautilus-extension4:amd64 1:46.2-0ubuntu0.2 amd64 libraries for nautilus components - runtime version\\nii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling\\nii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)\\nii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol\\nii libnet-dbus-perl 1.2.0-2build3 amd64 Perl extension for the DBus bindings\\nii libnet-http-perl 6.23-1 all module providing low-level HTTP connection client\\nii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP\\nii libnet-ssleay-perl:amd64 1.94-1build4 amd64 Perl module for Secure Sockets Layer (SSL)\\nii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library\\nii libnetplan1:amd64 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration runtime library\\nii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)\\nii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik\'s Windowing Toolkit - text mode windowing with slang\\nii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library\\nii libnfs14:amd64 5.0.2-1build1 amd64 NFS client library (shared library)\\nii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library\\nii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library\\nii libnghttp2-14:amd64 1.59.0-1ubuntu0.1 amd64 library implementing HTTP/2 protocol (shared library)\\nii libnl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets\\nii libnl-genl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - generic netlink\\nii libnl-route-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - route interface\\nii libnm0:amd64 1.46.0-1ubuntu2 amd64 GObject-based client library for NetworkManager\\nii libnma-common 1.10.6-3build2 all NetworkManager GUI library - translations\\nii libnma-gtk4-0:amd64 1.10.6-3build2 amd64 NetworkManager GUI GTK4 library\\nii libnma0:amd64 1.10.6-3build2 amd64 NetworkManager GUI library\\nii libnotify-bin 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Utilities)\\nii libnotify4:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon\\nii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads\\nii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library\\nii libnss-mdns:amd64 0.15.1-4build1 amd64 NSS module for Multicast DNS name resolution\\nii libnss-systemd:amd64 255.4-1ubuntu8.4 amd64 nss module providing dynamic user and group name resolution\\nii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries\\nii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)\\nii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy\\nii libnvme1t64 1.8-3build1 amd64 NVMe management library (library)\\nii libogg0:amd64 1.3.5-3build1 amd64 Ogg bitstream library\\nii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library\\nii libopengl0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- OpenGL support\\nii libopenipmi0t64 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface - runtime\\nii libopenjp2-7:amd64 2.5.0-2build3 amd64 JPEG 2000 image compression/decompression library\\nii libopus0:amd64 1.4-1build1 amd64 Opus codec runtime library\\nii liborc-0.4-0t64:amd64 1:0.4.38-1ubuntu0.1 amd64 Library of Optimized Inner Loops Runtime Compiler\\nii liborcus-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents\\nii liborcus-parser-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents - parser library\\nii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime\\nii libpackagekit-glib2-18:amd64 1.2.8-2build3 amd64 Library for accessing PackageKit using GLib\\nii libpam-cap:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (PAM module)\\nii libpam-fprintd:amd64 1.94.3-1 amd64 PAM module for fingerprint authentication through fprintd\\nii libpam-gnome-keyring:amd64 46.1-2build1 amd64 PAM module to unlock the GNOME keyring upon login\\nii libpam-modules:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM\\nii libpam-modules-bin 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM - helper binaries\\nii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength\\nii libpam-runtime 1.5.3-5ubuntu5.1 all Runtime support for the PAM library\\nii libpam-sss:amd64 2.9.4-1.1ubuntu6.1 amd64 Pam module for the System Security Services Daemon\\nii libpam-systemd:amd64 255.4-1ubuntu8.4 amd64 system and service manager - PAM module\\nii libpam0g:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules library\\nii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangomm-2.48-1t64:amd64 2.52.0-1build1 amd64 C++ Wrapper for pango (shared libraries)\\nii libpangoxft-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)\\nii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics\\nii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library\\nii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture\\nii libpcaudio0:amd64 1.2-2build3 amd64 C API to different audio devices - shared library\\nii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)\\nii libpciaccess0:amd64 0.17-3build1 amd64 Generic PCI access library for X\\nii libpcre2-16-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files\\nii libpcre2-32-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 32 bit runtime files\\nii libpcre2-8-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files\\nii libpcre2-dev:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - development files\\nii libpcre2-posix3:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files\\nii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)\\nii libpeas-1.0-0:amd64 1.36.0-3build4 amd64 Application plugin library\\nii libpeas-common 1.36.0-3build4 all Application plugin library (common files)\\nii libperl5.38t64:amd64 5.38.2-3.2build2 amd64 shared Perl library\\nii libphonenumber8:amd64 8.12.57+ds-4.2build3 amd64 parsing/formatting/validating phone numbers\\nii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library\\nii libpipewire-0.3-0t64:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server\\nii libpipewire-0.3-common 1.0.5-1ubuntu1 all libraries for the PipeWire multimedia server - common files\\nii libpipewire-0.3-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - modules\\nii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo\\nii libpkcs11-helper1t64:amd64 1.29.0-2.1build2 amd64 library that simplifies the interaction with PKCS#11\\nii libpkgconf3:amd64 1.8.1-2build1 amd64 shared library for pkgconf\\nii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists\\nii libplymouth5:amd64 24.004.60-1ubuntu7 amd64 graphical boot animation and logger - shared libraries\\nii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)\\nii libpolkit-agent-1-0:amd64 124-2ubuntu1 amd64 polkit Authentication Agent API\\nii libpolkit-gobject-1-0:amd64 124-2ubuntu1 amd64 polkit Authorization API\\nii libpoppler-cpp0t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (CPP shared library)\\nii libpoppler-glib8t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (GLib-based shared library)\\nii libpoppler134:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library\\nii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters\\nii libportal-gtk4-1:amd64 0.7.1-5build5 amd64 Flatpak portal library for GTK 4 GUIs\\nii libportal1:amd64 0.7.1-5build5 amd64 Flatpak portal library - non-GUI part\\nii libppd2:amd64 2:2.0.0-0ubuntu4 amd64 OpenPrinting libppd - Shared library\\nii libppd2-common 2:2.0.0-0ubuntu4 all OpenPrinting libppd - Auxiliary files\\nii libpq5:amd64 16.4-0ubuntu0.24.04.2 amd64 PostgreSQL C client library\\nii libproc2-0:amd64 2:4.0.4-4ubuntu3 amd64 library for accessing process information from /proc\\nii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)\\nii libprotobuf32t64:amd64 3.21.12-8.2build1 amd64 protocol buffers C++ library\\nii libproxy1-plugin-gsettings:amd64 0.5.4-4build1 amd64 transitional package for libproxy GSettings plugin\\nii libproxy1-plugin-networkmanager:amd64 0.5.4-4build1 amd64 transitional package for libproxy NetworkManager plugin\\nii libproxy1v5:amd64 0.5.4-4build1 amd64 automatic proxy configuration management library (shared)\\nii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)\\nii libpulse-mainloop-glib0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries (glib support)\\nii libpulse0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries\\nii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)\\nii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation\\nii libpython3-dev:amd64 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii libpython3.12-dev:amd64 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (standard library, version 3.12)\\nii libpython3.12t64:amd64 3.12.3-1ubuntu0.1 amd64 Shared Python runtime library (version 3.12)\\nii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol\\nii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports\\nii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line\\nii libqpdf29t64:amd64 11.9.0-1.1build1 amd64 runtime library for PDF transformation/inspection software\\nii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol\\nii libquadmath0:amd64 14-20240412-0ubuntu1 amd64 GCC Quad-Precision Math Library\\nii libraptor2-0:amd64 2.0.16-3build3 amd64 Raptor 2 RDF syntax library\\nii libraqm0:amd64 0.10.1-1build1 amd64 Library for complex text layout\\nii librasqal3t64:amd64 0.9.33-2.1build1 amd64 Rasqal RDF query library\\nii libraw1394-11:amd64 2.1.2-2build3 amd64 library for direct access to IEEE 1394 bus (aka FireWire)\\nii librdf0t64:amd64 1.0.17-3.1ubuntu3 amd64 Redland Resource Description Framework (RDF) library\\nii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries\\nii libreoffice-common 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- arch-independent files\\nii libreoffice-core 4:24.2.5-0ubuntu0.24.04.2 amd64 office productivity suite -- arch-dependent files\\nii libreoffice-style-colibre 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- colibre symbol style\\nii libreoffice-style-yaru 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- Yaru symbol style\\nii libreoffice-uiconfig-common 4:24.2.5-0ubuntu0.24.04.2 all UI data (\\"config\\") for LibreOffice (\\"common\\" set)\\nii librest-1.0-0:amd64 0.9.1-6build3 amd64 REST service access library\\nii librevenge-0.0-0:amd64 0.0.5-3build1 amd64 Base Library for writing document interface filters\\nii libroc0.3:amd64 0.3.0+dfsg-7ubuntu2 amd64 real-time audio streaming over the network (shared library)\\nii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)\\nii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)\\nii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)\\nii librygel-core-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - core library\\nii librygel-db-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - db library\\nii librygel-renderer-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - renderer library\\nii librygel-server-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - server library\\nii libsamplerate0:amd64 0.2.2-4build1 amd64 Audio sample rate conversion library\\nii libsane-common 1.2.1-7build4 all API library for scanners -- documentation and support files\\nii libsane-hpaio:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP SANE backend for multi-function peripherals\\nii libsane1:amd64 1.2.1-7build4 amd64 API library for scanners\\nii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library\\nii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules\\nii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)\\nii libsbc1:amd64 2.0-1build1 amd64 Sub Band CODEC library - runtime\\nii libsctp-dev:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - development files\\nii libsctp1:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - shared library\\nii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter\\nii libsecret-1-0:amd64 0.21.4-1build3 amd64 Secret store\\nii libsecret-common 0.21.4-1build3 all Secret store (common files)\\nii libselinux1:amd64 3.5-2ubuntu2 amd64 SELinux runtime shared libraries\\nii libselinux1-dev:amd64 3.5-2ubuntu2 amd64 SELinux development headers\\nii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries\\nii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library\\nii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files\\nii libsensors-dev:amd64 1:3.6.0-9build1 amd64 lm-sensors development kit\\nii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors\\nii libsepol-dev:amd64 3.5-2build1 amd64 SELinux binary policy manipulation library and development files\\nii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies\\nii libsframe1:amd64 2.42-4ubuntu2 amd64 Library to handle the SFrame format (runtime library)\\nii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion\\nii libshout3:amd64 2.4.6-1build2 amd64 MP3/Ogg Vorbis broadcast streaming library\\nii libsigc++-3.0-0:amd64 3.6.0-2 amd64 type-safe Signal Framework for C++ - runtime\\nii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version\\nii libslirp0:amd64 4.7.0-1ubuntu3 amd64 General purpose TCP-IP emulator library\\nii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library\\nii libsmartcols1:amd64 2.39.3-9ubuntu6.1 amd64 smart column output alignment library\\nii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 shared library for communication with SMB/CIFS servers\\nii libsnapd-glib-2-1:amd64 1.64-0ubuntu5 amd64 GLib snapd library\\nii libsndfile1:amd64 1.2.2-1ubuntu5 amd64 Library for reading/writing audio files\\nii libsnmp-base 5.9.4+dfsg-1.1ubuntu3 all SNMP configuration script, MIBs and documentation\\nii libsnmp40t64:amd64 5.9.4+dfsg-1.1ubuntu3 amd64 SNMP (Simple Network Management Protocol) library\\nii libsonic0:amd64 0.2.0-13build1 amd64 Simple library to speed up or slow down speech\\nii libsoup-2.4-1:amd64 2.74.3-6ubuntu1 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-0:amd64 3.4.4-5build2 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-common 3.4.4-5build2 all HTTP library implementation in C -- Common files\\nii libsoup2.4-common 2.74.3-6ubuntu1 all HTTP library implementation in C -- Common files\\nii libsource-highlight-common 3.1.9-4.3build1 all architecture-independent files for source highlighting library\\nii libsource-highlight4t64:amd64 3.1.9-4.3build1 amd64 source highlighting library\\nii libspa-0.2-bluetooth:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - bluetooth plugins\\nii libspa-0.2-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server Simple Plugin API - modules\\nii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents\\nii libspeechd2:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Shared libraries\\nii libspeex1:amd64 1.2.1-2ubuntu2 amd64 The Speex codec runtime library\\nii libspeexdsp1:amd64 1.2.1-1ubuntu3 amd64 DSP library derived from speex\\nii libsqlite3-0:amd64 3.45.1-1ubuntu2 amd64 SQLite 3 shared library\\nii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library\\nii libssh-4:amd64 0.10.6-2build2 amd64 tiny C SSH library (OpenSSL flavor)\\nrc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libssl3t64:amd64 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libstartup-notification0:amd64 0.12-6build3 amd64 library for program launch feedback (shared library)\\nii libstdc++-13-dev:amd64 13.2.0-23ubuntu4 amd64 GNU Standard C++ Library v3 (development files)\\nii libstdc++6:amd64 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3\\nii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval\\nii libsynctex2:amd64 2023.20230311.66589-9build3 amd64 TeX Live: SyncTeX parser library\\nii libsysmetrics1:amd64 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics - shared lib\\nii libsystemd-shared:amd64 255.4-1ubuntu8.4 amd64 systemd shared private library\\nii libsystemd0:amd64 255.4-1ubuntu8.4 amd64 systemd utility library\\nii libtag1v5:amd64 1.13.1-1build1 amd64 audio meta-data library\\nii libtag1v5-vanilla:amd64 1.13.1-1build1 amd64 audio meta-data library - vanilla flavour\\nii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator\\nii libtasn1-6:amd64 4.19.0-3build1 amd64 Manage ASN.1 structures (runtime)\\nii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files\\nii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library\\nii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process\\nii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library\\nii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal\\nii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl\\nii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap\\nii libthai-data 0.1.29-2build1 all Data files for Thai language support library\\nii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library\\nii libtheora0:amd64 1.1.1+dfsg.1-16.1build3 amd64 Theora Video Compression Codec\\nii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays\\nii libtiff6:amd64 4.5.1+git230720-4ubuntu2.2 amd64 Tag Image File Format (TIFF) library\\nii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information\\nii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling\\nii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files\\nii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library\\nii libtotem-plparser-common 3.26.6-1build5 all Totem Playlist Parser library - common files\\nii libtotem-plparser18:amd64 3.26.6-1build5 amd64 Totem Playlist Parser library - runtime files\\nii libtraceevent1:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (shared library)\\nii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (plugins)\\nii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)\\nii libtracker-sparql-3.0-0:amd64 3.7.1-1build1 amd64 metadata database, indexer and search tool - library\\nii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch\\nii libtsan0:amd64 11.4.0-9ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtsan2:amd64 14-20240412-0ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-rc0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-libtpms0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-spi-helper0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tctildr0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtwolame0:amd64 0.4.0-2build3 amd64 MPEG Audio Layer 2 encoding library\\nii libu2f-udev 1.1.10-3build3 all Universal 2nd Factor (U2F) — transitional package\\nii libubsan1:amd64 14-20240412-0ubuntu1 amd64 UBSan -- undefined behaviour sanitizer (runtime)\\nii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library\\nii libudev1:amd64 255.4-1ubuntu8.4 amd64 libudev shared library\\nii libudisks2-0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2\\nii libunistring5:amd64 1.1-2build1 amd64 Unicode string library for C\\nii libunity-protocol-private0:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - private library\\nii libunity-scopes-json-def-desktop 7.1.4+19.04.20190319-6build4 all binding to get places into the launcher - desktop def file\\nii libunity9:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - shared library\\nii libuno-cppu3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU public library\\nii libuno-cppuhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU helper library\\nii libuno-purpenvhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- \\"purpose environment\\" helper\\nii libuno-sal3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL public library\\nii libuno-salhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library\\nii libunwind8:amd64 1.6.2-3build1 amd64 library to determine the call-chain of a program - runtime\\nii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library\\nii liburi-perl 5.27-1 all module to manipulate and access URI strings\\nii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library\\nii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library\\nii libuuid1:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library\\nii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library\\nii libv4l-0t64:amd64 1.26.1-4build3 amd64 Collection of video4linux support libraries\\nii libv4lconvert0t64:amd64 1.26.1-4build3 amd64 Video4linux frame format conversion library\\nii libvisual-0.4-0:amd64 0.4.2-2build1 amd64 audio visualization framework\\nii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases\\nii libvorbis0a:amd64 1.3.7-1build3 amd64 decoder library for Vorbis General Audio Compression Codec\\nii libvorbisenc2:amd64 1.3.7-1build3 amd64 encoder library for Vorbis General Audio Compression Codec\\nii libvorbisfile3:amd64 1.3.7-1build3 amd64 high-level API for Vorbis General Audio Compression Codec\\nii libvpx9:amd64 1.14.0-1ubuntu2.1 amd64 VP8 and VP9 video codec (shared library)\\nii libvte-2.91-0:amd64 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime files\\nii libvte-2.91-common 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - common files\\nii libvulkan1:amd64 1.3.275.0-1build1 amd64 Vulkan loader library\\nii libwacom-common 2.10.0-2 all Wacom model feature query library (common files)\\nii libwacom9:amd64 2.10.0-2 amd64 Wacom model feature query library\\nii libwavpack1:amd64 5.6.0-1build1 amd64 audio codec (lossy and lossless) - library\\nii libwayland-client0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - client library\\nii libwayland-cursor0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - cursor library\\nii libwayland-egl1:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - EGL library\\nii libwayland-server0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - server library\\nii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba winbind client library\\nii libwebkit2gtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebkitgtk-6.0-4:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.\\nii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebrtc-audio-processing1:amd64 0.3.1-0ubuntu6 amd64 AudioProcessing module from the WebRTC project.\\nii libwhoopsie-preferences0 23build3 amd64 Ubuntu error tracker submission settings - shared library\\nii libwhoopsie0:amd64 0.2.77build3 amd64 Ubuntu error tracker submission - shared library\\nii libwinpr3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Windows Portable Runtime library\\nii libwireplumber-0.4-0:amd64 0.4.17-1ubuntu4 amd64 Shared libraries for WirePlumber\\nii libwmf-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion library\\nii libwmf-0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin\\nii libwmf0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin - transitional package\\nii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library\\nii libwnck-3-0:amd64 43.0-3build4 amd64 Window Navigator Construction Kit - runtime files\\nii libwnck-3-common 43.0-3build4 all Window Navigator Construction Kit - common files\\nii libwoff1:amd64 1.0.2-2build1 amd64 library for converting fonts to WOFF 2.0\\nii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema\'s TCP wrappers library\\nii libwww-perl 6.76-1 all simple and consistent interface to the world-wide web\\nii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions\\nii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library\\nii libx11-data 2:1.8.7-1build1 all X11 client-side library\\nii libx11-protocol-perl 0.56-9 all Perl module for the X Window System Protocol, version 11\\nii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library\\nii libxatracker2:amd64 24.0.9-0ubuntu0.1 amd64 X acceleration library -- runtime\\nii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library\\nii libxaw7:amd64 2:1.0.14-1build2 amd64 X11 Athena Widget library\\nii libxcb-damage0:amd64 1.15-1ubuntu2 amd64 X C Binding, damage extension\\nii libxcb-dri2-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri2 extension\\nii libxcb-dri3-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri3 extension\\nii libxcb-glx0:amd64 1.15-1ubuntu2 amd64 X C Binding, glx extension\\nii libxcb-icccm4:amd64 0.4.1-1.1build3 amd64 utility libraries for X C Binding -- icccm\\nii libxcb-image0:amd64 0.4.0-2build1 amd64 utility libraries for X C Binding -- image\\nii libxcb-keysyms1:amd64 0.4.0-1build4 amd64 utility libraries for X C Binding -- keysyms\\nii libxcb-present0:amd64 1.15-1ubuntu2 amd64 X C Binding, present extension\\nii libxcb-randr0:amd64 1.15-1ubuntu2 amd64 X C Binding, randr extension\\nii libxcb-render-util0:amd64 0.3.9-1build4 amd64 utility libraries for X C Binding -- render-util\\nii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension\\nii libxcb-res0:amd64 1.15-1ubuntu2 amd64 X C Binding, res extension\\nii libxcb-shape0:amd64 1.15-1ubuntu2 amd64 X C Binding, shape extension\\nii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension\\nii libxcb-sync1:amd64 1.15-1ubuntu2 amd64 X C Binding, sync extension\\nii libxcb-util1:amd64 0.4.0-1build3 amd64 utility libraries for X C Binding -- atom, aux and event\\nii libxcb-xfixes0:amd64 1.15-1ubuntu2 amd64 X C Binding, xfixes extension\\nii libxcb-xkb1:amd64 1.15-1ubuntu2 amd64 X C Binding, XKEYBOARD extension\\nii libxcb-xv0:amd64 1.15-1ubuntu2 amd64 X C Binding, xv extension\\nii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding\\nii libxcomposite1:amd64 1:0.4.5-1build3 amd64 X11 Composite extension library\\nii libxcursor1:amd64 1:1.2.1-1build1 amd64 X cursor management library\\nii libxcvt0:amd64 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator -- shared library\\nii libxdamage1:amd64 1:1.1.6-1build1 amd64 X11 damaged region extension library\\nii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library\\nii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library\\nii libxfixes3:amd64 1:6.0.0-2build1 amd64 X11 miscellaneous \'fixes\' extension library\\nii libxfont2:amd64 1:2.0.6-1build1 amd64 X11 font rasterisation library\\nii libxft2:amd64 2.3.6-1build1 amd64 FreeType-based font drawing library for X\\nii libxi6:amd64 2:1.8.1-1build1 amd64 X11 Input extension library\\nii libxinerama1:amd64 2:1.1.4-3build1 amd64 X11 Xinerama extension library\\nii libxkbcommon-x11-0:amd64 1.6.0-1build1 amd64 library to create keymaps with the XKB X11 protocol\\nii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library\\nii libxkbfile1:amd64 1:1.1.0-1build4 amd64 X11 keyboard file manipulation library\\nii libxkbregistry0:amd64 1.6.0-1build1 amd64 library to query available RMLVO\\nii libxklavier16:amd64 5.4-5build2 amd64 X Keyboard Extension high-level API\\nii libxml-parser-perl 2.47-1build3 amd64 Perl module for parsing XML files\\nii libxml-twig-perl 1:3.52-2 all Perl module for processing huge XML documents in tree mode\\nii libxml-xpathengine-perl 0.14-2 all re-usable XPath engine for DOM-like trees\\nii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3 amd64 GNOME XML library\\nii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library\\nii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library\\nii libxmlsec1t64-nss:amd64 1.2.39-5build2 amd64 Nss engine for the XML security library\\nii libxmu6:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous utility library\\nii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library\\nii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library\\nii libxrandr2:amd64 2:1.5.2-2build1 amd64 X11 RandR extension library\\nii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library\\nii libxres1:amd64 2:1.2.1-1build1 amd64 X11 Resource extension library\\nii libxshmfence1:amd64 1.3-1build5 amd64 X shared memory fences - shared library\\nii libxslt1.1:amd64 1.1.39-0exp1build1 amd64 XSLT 1.0 processing library - runtime library\\nii libxss1:amd64 1:1.2.3-1build3 amd64 X11 Screen Saver extension library\\nii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library\\nii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library\\nii libxtst6:amd64 2:1.2.3-1.1build1 amd64 X11 Testing -- Record extension library\\nii libxv1:amd64 2:1.0.11-1.1build1 amd64 X11 Video extension library\\nii libxvmc1:amd64 2:1.0.12-2build3 amd64 X11 Video extension library\\nii libxxf86dga1:amd64 2:1.1.5-1build1 amd64 X11 Direct Graphics Access extension library\\nii libxxf86vm1:amd64 1:1.1.4-1build4 amd64 X11 XFree86 video mode extension library\\nii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash\\nii libyajl2:amd64 2.1.0-5build1 amd64 Yet Another JSON Library\\nii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library\\nii libyelp0:amd64 42.2-1build2 amd64 Library for the GNOME help browser\\nii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm\\nii linux-base 4.5ubuntu9 all Linux image base package\\nii linux-firmware 20240318.git3b128b60-0ubuntu2.3 amd64 Firmware for Linux kernel drivers\\nii linux-generic 6.8.0-44.44 amd64 Complete Generic Linux kernel and headers\\nii linux-headers-6.8.0-40 6.8.0-40.40 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-6.8.0-44 6.8.0-44.44 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-generic 6.8.0-44.44 amd64 Generic Linux kernel headers\\nrc linux-image-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Signed kernel image generic\\nii linux-image-6.8.0-40-generic 6.8.0-40.40 amd64 Signed kernel image generic\\nii linux-image-6.8.0-44-generic 6.8.0-44.44 amd64 Signed kernel image generic\\nii linux-image-generic 6.8.0-44.44 amd64 Generic Linux kernel image\\nii linux-libc-dev:amd64 6.8.0-44.44 amd64 Linux Kernel Headers for development\\nrc linux-modules-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-sound-base 1.0.25+dfsg-0ubuntu7 all base package for ALSA and OSS sound systems\\nii linux-tools-6.8.0-40 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-44 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-common 6.8.0-44.44 all Linux kernel version specific tools for version 6.8.0\\nii lm-sensors 1:3.6.0-9build1 amd64 utilities to read temperature/voltage/fan sensors\\nii locales 2.39-0ubuntu8.3 all GNU C Library: National Language (locale) data [support]\\nii login 1:4.13+dfsg1-4ubuntu3 amd64 system login tools\\nii logrotate 3.21.0-2build1 amd64 Log rotation utility\\nii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file\\nii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality\\nii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)\\nii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration\\nii lsof 4.95.0-1build3 amd64 utility to list open files\\nii lto-disabled-list 47 all list of packages not to build with LTO\\nii mailcap 3.70+nmu1ubuntu1 all Debian\'s mailcap system, and support programs\\nii make 4.3-4.1build2 amd64 utility for directing compilation\\nii man-db 2.12.0-4build2 amd64 tools for reading manual pages\\nii manpages 6.7-2 all Manual pages about using a GNU/Linux system\\nii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development\\nii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language\\nii media-types 10.1.0 all List of standard media types and their usual file extension\\nii memtest86+ 7.00-1build1 amd64 stand-alone memory tester for x86 and x86-64\\nii mesa-vulkan-drivers:amd64 24.0.9-0ubuntu0.1 amd64 Mesa Vulkan graphics drivers\\nii mobile-broadband-provider-info 20230416-1 all database of mobile broadband service providers\\nii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems\\nii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys\\nii mongodb-database-tools 100.9.4 amd64 mongodb-database-tools package provides tools for working with the MongoDB server: \\nii mongodb-org-database-tools-extra 7.0.9 amd64 Extra MongoDB database tools\\nii mongodb-org-server 7.0.9 amd64 MongoDB database server\\nii mongodb-org-shell 7.0.9 amd64 MongoDB shell client\\nii mongodb-org-tools 7.0.9 amd64 MongoDB tools\\nii mount 2.39.3-9ubuntu6.1 amd64 tools for mounting and manipulating filesystems\\nii mousetweaks 3.32.0-4build2 amd64 mouse accessibility enhancements for the GNOME desktop\\nii mscompress 0.4-10build1 amd64 Microsoft \\"compress.exe/expand.exe\\" compatible (de)compressor\\nii msr-tools 1.3-5build1 amd64 Utilities for modifying MSRs from userspace\\nii mtr-tiny 0.95-1.1build2 amd64 Full screen ncurses traceroute tool\\nii mutter-common 46.2-1ubuntu0.24.04.1 all shared files for the Mutter window manager\\nii mutter-common-bin 46.2-1ubuntu0.24.04.1 amd64 shared programs for the Mutter window manager\\nii mysql-common 5.8+1.1.0build1 all MySQL database common files, e.g. /etc/mysql/my.cnf\\nii nano 7.2-2build1 amd64 small, friendly text editor inspired by Pico\\nii nautilus 1:46.2-0ubuntu0.2 amd64 file manager and graphical shell for GNOME\\nii nautilus-data 1:46.2-0ubuntu0.2 all data files for nautilus\\nii nautilus-extension-gnome-terminal:amd64 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application - Nautilus extension\\nii nautilus-sendto 3.8.6-7build2 amd64 easily send files via email from within Nautilus\\nii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions\\nii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages\\nii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions\\nii net-tools 2.10-0.1ubuntu4 amd64 NET-3 networking toolkit\\nii netbase 6.4 all Basic TCP/IP networking system\\nii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife\\nii netplan-generator 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration systemd-generator\\nii netplan.io 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration for various backends\\nii network-manager 1.46.0-1ubuntu2 amd64 network management framework (daemon and userspace tools)\\nii network-manager-config-connectivity-ubuntu 1.46.0-1ubuntu2 all NetworkManager configuration to enable connectivity checking\\nii network-manager-gnome 1.34.0-1ubuntu3 amd64 network management framework (GNOME frontend)\\nii network-manager-openvpn 1.10.2-4build2 amd64 network management framework (OpenVPN plugin core)\\nii network-manager-openvpn-gnome 1.10.2-4build2 amd64 network management framework (OpenVPN plugin GNOME GUI)\\nii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)\\nii network-manager-pptp-gnome 1.2.12-3build2 amd64 network management framework (PPTP plugin GNOME GUI)\\nii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes\\nii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project\\nii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE\\nii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool\\nii openipmi 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface (for servers)\\nii openjdk-17-jre-headless:amd64 17.0.12+7-1ubuntu2~24.04 amd64 OpenJDK Java runtime, using Hotspot JIT (headless)\\nii openprinting-ppds 20230202-1 all OpenPrinting printer support - PostScript PPD files\\nii openssh-client 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) client, for secure access to remote machines\\nii openssh-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) server, for secure access from remote machines\\nii openssh-sftp-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines\\nii openssl 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - cryptographic utility\\nii openvpn 2.6.9-1ubuntu4.1 amd64 virtual private network daemon\\nii orca 46.1-1ubuntu1 all Scriptable screen reader\\nii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives\\nii p11-kit 0.25.3-4ubuntu2.1 amd64 p11-glue utilities\\nii p11-kit-modules:amd64 0.25.3-4ubuntu2.1 amd64 p11-glue proxy and trust modules\\nii packagekit 1.2.8-2build3 amd64 Provides a package management service\\nii packagekit-tools 1.2.8-2build3 amd64 Provides PackageKit command-line tools\\nii parted 3.6-4build1 amd64 disk partition manipulator\\nii passwd 1:4.13+dfsg1-4ubuntu3 amd64 change and administer password and group data\\nii pastebinit 1.6.2-1 all command-line pastebin client\\nii patch 2.7.6-7build3 amd64 Apply a diff file to an original\\nii pci.ids 0.0~2024.03.31-1 all PCI ID Repository\\nii pciutils 1:3.10.0-2build1 amd64 PCI utilities\\nii pcmciautils 018-14build1 amd64 PCMCIA utilities for Linux 2.6\\nii perl 5.38.2-3.2build2 amd64 Larry Wall\'s Practical Extraction and Report Language\\nii perl-base 5.38.2-3.2build2 amd64 minimal Perl system\\nii perl-modules-5.38 5.38.2-3.2build2 all Core Perl modules\\nii perl-openssl-defaults:amd64 7build3 amd64 version compatibility baseline for Perl OpenSSL packages\\nii pigz 2.8-1 amd64 Parallel Implementation of GZip\\nii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG\\nii pinentry-gnome3 1.2.1-3ubuntu5 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG\\nii pipewire:amd64 1.0.5-1ubuntu1 amd64 audio and video processing engine multimedia server\\nii pipewire-alsa:amd64 1.0.5-1ubuntu1 amd64 PipeWire ALSA plugin, for ALSA applications to output via PipeWire\\nii pipewire-audio 1.0.5-1ubuntu1 all recommended set of PipeWire packages for a standard audio desktop use\\nii pipewire-bin 1.0.5-1ubuntu1 amd64 PipeWire multimedia server - programs\\nrc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire\\nii pipewire-pulse 1.0.5-1ubuntu1 amd64 PipeWire PulseAudio daemon\\nii pkexec 124-2ubuntu1 amd64 run commands as another user with polkit authorization\\nii pkgconf:amd64 1.8.1-2build1 amd64 manage compile and link flags for libraries\\nii pkgconf-bin 1.8.1-2build1 amd64 manage compile and link flags for libraries (binaries)\\nii plymouth 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer\\nii plymouth-label 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - label control\\nii plymouth-theme-spinner 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - spinner theme\\nii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme\\nii policykit-1 124-2ubuntu1 amd64 transitional package for polkitd and pkexec\\nii policykit-desktop-privileges 0.22 all run common desktop actions without password\\nii polkitd 124-2ubuntu1 amd64 framework for managing administrative policies and privileges\\nii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library\\nii poppler-utils 24.02.0-1ubuntu9.1 amd64 PDF utilities (based on Poppler)\\nii power-profiles-daemon 0.21-1 amd64 Makes power profiles handling available over D-Bus.\\nii powermgmt-base 1.37 all common utils for power management\\nii powertop 2.15-3build1 amd64 diagnose issues with power consumption and management\\nii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon\\nii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client\\nii printer-driver-brlaser 6-3build2 amd64 printer driver for (some) Brother laser printers\\nii printer-driver-c2esp 27-11ubuntu7 amd64 printer driver for Kodak ESP AiO color inkjet Series\\nii printer-driver-foo2zjs 20200505dfsg0-2ubuntu6 amd64 printer driver for ZjStream-based printers\\nii printer-driver-foo2zjs-common 20200505dfsg0-2ubuntu6 all printer driver for ZjStream-based printers - common files\\nii printer-driver-hpcups 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)\\nii printer-driver-m2300w 0.51-15build2 amd64 printer driver for Minolta magicolor 2300W/2400W color laser printers\\nii printer-driver-min12xxw 0.0.9-11build3 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW\\nii printer-driver-pnm2ppa 1.13+nondbs-0ubuntu10 amd64 printer driver for HP-GDI printers\\nii printer-driver-postscript-hp 3.23.12+dfsg0-0ubuntu5 amd64 HP Printers PostScript Descriptions\\nii printer-driver-ptouch 1.7-1build2 amd64 printer driver Brother P-touch label printers\\nii printer-driver-pxljr 1.4+repack0-6build2 amd64 printer driver for HP Color LaserJet 35xx/36xx\\nii printer-driver-sag-gdi 0.1-8 all printer driver for Ricoh Aficio SP 1000s/SP 1100s\\nii printer-driver-splix 2.0.0+svn315-7fakesync1ubuntu1 amd64 Driver for Samsung and Xerox SPL2 and SPLc laser printers\\nii procps 2:4.0.4-4ubuntu3 amd64 /proc file system utilities\\nii psmisc 23.7-1build1 amd64 utilities that use the proc file system\\nii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes\\nrc pulseaudio 1:15.99.1+dfsg1-1ubuntu2.2 amd64 PulseAudio sound server\\nii python-apt-common 2.7.7ubuntu3 all Python interface to libapt-pkg (locales)\\nii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files\\nii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii python3-apport 2.28.1-0ubuntu3.1 all Python 3 library for Apport crash report handling\\nii python3-apt 2.7.7ubuntu3 amd64 Python 3 interface to libapt-pkg\\nii python3-aptdaemon 1.1.1+bzr982-0ubuntu44 all Python 3 module for the server and client of aptdaemon\\nii python3-aptdaemon.gtk3widgets 1.1.1+bzr982-0ubuntu44 all Python 3 GTK+ 3 widgets to run an aptdaemon client\\nii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)\\nii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x\\nii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)\\nii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)\\nii python3-brlapi:amd64 6.6-4ubuntu5 amd64 Braille display access via BRLTTY - Python3 bindings\\nii python3-cairo 1.25.1-2build2 amd64 Python3 bindings for the Cairo vector graphics library\\nii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)\\nii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime\\nii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)\\nii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x\\nii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x\\nii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.\\nii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3\\nii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)\\nii python3-cups:amd64 2.0.1-5build6 amd64 Python3 bindings for CUPS\\nii python3-cupshelpers 1.5.18-1ubuntu9 all Python utility modules around the CUPS printing system\\nii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module\\nii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)\\nii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3\\nii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats\\nii python3-defer 1.0.6-2.1ubuntu1 all Small framework for asynchronous programming (Python 3)\\nii python3-dev 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii python3-distro 1.9.0-1 all Linux OS platform information API\\nii python3-distro-info 1.7build1 all information about distributions\' releases (Python 3 module)\\nii python3-distupgrade 1:24.04.23 all manage release upgrades\\nii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x\\nii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries\\nii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3\\nii python3-ibus-1.0 1.5.29-2 all Intelligent Input Bus - introspection overrides for Python (Python 3)\\nii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)\\nii python3-importlib-metadata 4.12.0-1 all library to access the metadata for a Python package - Python 3.x\\nii python3-jinja2 3.1.2-1ubuntu1.1 all small but fast and easy to use stand-alone template engine\\nii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x\\nii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x\\nii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)\\nii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token\\nii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)\\nii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)\\nii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs\\nii python3-louis 3.29.0-1build1 all Python bindings for liblouis\\nii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins\\nii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library\\nii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package\\nii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)\\nii python3-more-itertools 10.2.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)\\nii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)\\nii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x\\nii python3-netplan 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration Python bindings\\nii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3\\nii python3-olefile 0.46-3 all Python module to read/write MS OLE2 files\\nii python3-packaging 24.0-1 all core utilities for python3 packages\\nii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications\\nii python3-pil:amd64 10.2.0-1ubuntu1 amd64 Python Imaging Library (Python3)\\nii python3-pip 24.0+dfsg-1ubuntu1 all Python package installer\\nii python3-pip-whl 24.0+dfsg-1ubuntu1 all Python package installer (pip wheel)\\nii python3-pkg-resources 68.1.2-2ubuntu1 all Package Discovery and Resource Access using pkg_resources\\nii python3-problem-report 2.28.1-0ubuntu3.1 all Python 3 library to handle problem reports\\nii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3\\nii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3\\nii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x\\nii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python\\nii python3-requests 2.31.0+dfsg-1ubuntu1 all elegant and simple HTTP library for Python3, built for human beings\\nii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more\\nii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port\\nii python3-setuptools 68.1.2-2ubuntu1 all Python3 Distutils Enhancements\\nii python3-setuptools-whl 68.1.2-2ubuntu1 all Python Distutils Enhancements (wheel package)\\nii python3-six 1.16.0-4 all Python 2 and 3 compatibility library\\nii python3-software-properties 0.99.48 all manage the repositories that you install software from\\nii python3-speechd 0.12.0~rc2-2build3 all Python interface to Speech Dispatcher\\nii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd\\nii python3-tz 2024.1-2 all Python3 version of the Olson timezone database\\nii python3-uno 4:24.2.5-0ubuntu0.24.04.2 amd64 Python-UNO bridge\\nii python3-update-manager 1:24.04.6 all Python 3.x module for update-manager\\nii python3-urllib3 2.0.7-1 all HTTP library with thread-safe connection pooling for Python3\\nii python3-venv 3.12.3-0ubuntu2 amd64 venv module for python3 (default python3 version)\\nii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files\\nii python3-wheel 0.42.0-2 all built-package format for Python\\nii python3-xdg 0.28-2 all Python 3 library to access freedesktop.org standards\\nii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)\\nii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3\\nii python3-zipp 1.0.0-6ubuntu0.1 all pathlib-compatible Zipfile object wrapper - Python 3.x\\nrc python3.10-venv 3.10.12-1~22.04.5 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.10)\\nii python3.12 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (version 3.12)\\nii python3.12-dev 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii python3.12-minimal 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii python3.12-venv 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.12)\\nii readline-common 8.2-4build1 all GNU readline and history libraries, common files\\nii rfkill 2.39.3-9ubuntu6.1 amd64 tool for enabling and disabling wireless devices\\nii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions\\nii rsync 3.2.7-1ubuntu1 amd64 fast, versatile, remote (and local) file-copying tool\\nii rsyslog 8.2312.0-3ubuntu9 amd64 reliable system and kernel logging daemon\\nii rtkit 0.13-5build1 amd64 Realtime Policy and Watchdog Daemon\\nii rygel 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services\\nii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba core libraries\\nii sane-airscan 0.99.29-0ubuntu4 amd64 SANE backend for AirScan (eSCL) and WSD document scanner\\nii sane-utils 1.2.1-7build4 amd64 API library for scanners -- utilities\\nii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers\\nii seahorse 43.0-3build2 amd64 GNOME front end for GnuPG\\nii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX\\nii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text\\nii sensible-utils 0.0.22 all Utilities for sensible alternative selection\\nii session-migration 0.3.9build1 amd64 Tool to migrate in user session settings\\nii sgml-base 1.31 all SGML infrastructure and SGML catalog file support\\nii sgml-data 2.0.11+nmu1 all common SGML and XML data\\nii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec\\nii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)\\nii slirp4netns 1.2.1-1build2 amd64 User-mode networking for unprivileged network namespaces\\nii snapd 2.63.1+24.04 amd64 Daemon and tooling that enable snap packages\\nii software-properties-common 0.99.48 all manage the repositories that you install software from (common)\\nii software-properties-gtk 0.99.48 all manage the repositories that you install software from (gtk)\\nii sound-icons 0.1-8 all Sounds for speech enabled applications\\nii sound-theme-freedesktop 0.8-2ubuntu1 all freedesktop.org sound theme\\nii speech-dispatcher 0.12.0~rc2-2build3 amd64 Common interface to speech synthesizers\\nii speech-dispatcher-audio-plugins:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Audio output plugins\\nii speech-dispatcher-espeak-ng 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Espeak-ng output module\\nii spice-vdagent 0.22.1-4build3 amd64 Spice agent for Linux\\nii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems\\nii ssh-import-id 5.11-0ubuntu2 all securely retrieve an SSH public key and install it locally\\nii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL\\nii strace 6.8-0ubuntu2 amd64 System call tracer\\nii stress-ng 0.17.06-1build1 amd64 tool to load and stress a computer\\nii sudo 1.9.15p5-3ubuntu5 amd64 Provide limited super user privileges to specific users\\nii switcheroo-control 2.6-2build2 amd64 D-Bus service to check the availability of dual-GPU\\nii sysbench 1.0.20+ds-6build2 amd64 multi-threaded benchmark tool for database systems\\nii sysbox-ce 0.6.4.linux amd64 Sysbox Community Edition (CE) is a next-generation container runtime,\\nii syslinux-common 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 all collection of bootloaders (common)\\nii sysstat 12.6.1-2 amd64 system performance tools for Linux\\nii system-config-printer-common 1.5.18-1ubuntu9 all backend and the translation files for system-config-printer\\nii system-config-printer-udev 1.5.18-1ubuntu9 amd64 Utilities to detect and configure printers automatically\\nii systemd 255.4-1ubuntu8.4 amd64 system and service manager\\nii systemd-dev 255.4-1ubuntu8.4 all systemd development files\\nii systemd-hwe-hwdb 255.1.3 all udev rules for hardware enablement (HWE)\\nii systemd-oomd 255.4-1ubuntu8.4 amd64 userspace out-of-memory (OOM) killer\\nii systemd-resolved 255.4-1ubuntu8.4 amd64 systemd DNS resolver\\nii systemd-sysv 255.4-1ubuntu8.4 amd64 system and service manager - SysV compatibility symlinks\\nii systemd-timesyncd 255.4-1ubuntu8.4 amd64 minimalistic service to synchronize local time with NTP servers\\nii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities\\nii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility\\nii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell\\nii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell\\nii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer\\nii tecla 46.0-1build1 amd64 keyboard layout viewer for the GNOME desktop\\nii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch\\nii thermald 2.5.6-2build2 amd64 Thermal monitoring and controlling daemon\\nii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage\\nii tinyproxy 1.11.1-3 all Lightweight, non-caching, optionally anonymizing HTTP proxy\\nii tinyproxy-bin 1.11.1-3 amd64 Lightweight, non-caching, optionally anonymizing HTTP proxy (executable only)\\nii tnftp 20230507-2build3 amd64 enhanced ftp client\\nii tpm-udev 0.6ubuntu1 all udev rules for TPM modules\\nii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel\\nii tracker 3.7.1-1build1 amd64 metadata database, indexer and search tool\\nii tracker-extract 3.7.1-1build1 amd64 metadata database, indexer and search tool - metadata extractors\\nii tracker-miner-fs 3.7.1-1build1 amd64 metadata database, indexer and search tool - filesystem indexer\\nii tzdata 2024a-3ubuntu1.1 all time zone and daylight-saving time data\\nii ubuntu-advantage-desktop-daemon 1.11 amd64 Daemon to allow access to ubuntu-advantage via D-Bus\\nii ubuntu-desktop 1.539.1 amd64 Ubuntu desktop system\\nii ubuntu-desktop-minimal 1.539.1 amd64 Ubuntu desktop minimal system\\nii ubuntu-docs 24.04.2 all Ubuntu Desktop Guide\\nii ubuntu-drivers-common 1:0.9.7.6ubuntu3.1 amd64 Detect and install additional Ubuntu driver packages\\nii ubuntu-kernel-accessories 1.539.1 amd64 packages useful to install by default on systems with kernels\\nii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive\\nii ubuntu-minimal 1.539.1 amd64 Minimal core of Ubuntu\\nii ubuntu-mono 24.04-0ubuntu1 all Ubuntu Mono Icon theme\\nii ubuntu-pro-client 33.2~24.04.1 amd64 Management tools for Ubuntu Pro\\nii ubuntu-pro-client-l10n 33.2~24.04.1 amd64 Translations for Ubuntu Pro Client\\nii ubuntu-release-upgrader-core 1:24.04.23 all manage release upgrades\\nii ubuntu-release-upgrader-gtk 1:24.04.23 all manage release upgrades\\nii ubuntu-report 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics\\nii ubuntu-session 46.0-1ubuntu4 all Ubuntu session with GNOME Shell\\nii ubuntu-settings 24.04.4 all default settings for the Ubuntu desktop\\nii ubuntu-standard 1.539.1 amd64 Ubuntu standard system\\nii ubuntu-wallpapers 24.04.2 all Ubuntu Wallpapers\\nii ubuntu-wallpapers-noble 24.04.2 all Ubuntu 24.04 Wallpapers\\nii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files\\nii udev 255.4-1ubuntu8.4 amd64 /dev/ and hotplug management daemon\\nii udisks2 2.10.1-6build1 amd64 D-Bus service to access and manipulate storage devices\\nii ufw 0.36.2-6 all program for managing a Netfilter firewall\\nii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades\\nii unifi 8.1.127-25320-1 all Ubiquiti UniFi server\\nii uno-libs-private 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- private libraries used by public ones\\nii unzip 6.0-28ubuntu4 amd64 De-archiver for .zip files\\nii update-inetd 4.53 all inetd configuration file updater\\nii update-manager 1:24.04.6 all GNOME application that manages apt updates\\nii update-manager-core 1:24.04.6 all manage release upgrades\\nii update-notifier 3.192.68build3 amd64 Daemon which notifies about package updates\\nii update-notifier-common 3.192.68build3 all Files shared between update-notifier and other packages\\nii upower 1.90.3-1 amd64 abstraction for power management\\nii ure 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment\\nii usb-creator-common 0.3.17 all create a startup disk using a CD or disc image (common files)\\nii usb-creator-gtk 0.3.17 all create a startup disk using a CD or disc image (for GNOME)\\nii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling \\"flip flop\\" USB devices\\nii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch\\nii usb.ids 2024.03.18-1 all USB ID Repository\\nii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices\\nii usbutils 1:017-3build1 amd64 Linux USB utilities\\nii util-linux 2.39.3-9ubuntu6.1 amd64 miscellaneous system utilities\\nii uuid-dev:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library - headers and static libraries\\nii uuid-runtime 2.39.3-9ubuntu6.1 amd64 runtime components for the Universally Unique ID library\\nii vim-common 2:9.1.0016-1ubuntu7.2 all Vi IMproved - Common files\\nii vim-tiny 2:9.1.0016-1ubuntu7.2 amd64 Vi IMproved - enhanced vi editor - compact version\\nii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict\\nii wbritish 2020.12.07-2 all British English dictionary words for /usr/share/dict\\nii webp-pixbuf-loader:amd64 0.2.4-2build2 amd64 WebP Image format GdkPixbuf loader\\nii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web\\nii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts\\nii whoopsie 0.2.77build3 amd64 Ubuntu error tracker submission\\nii whoopsie-preferences 23build3 amd64 System preferences for error reporting\\nii wireless-regdb 2022.06.06-0ubuntu2 all wireless regulatory database\\nii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions\\nii wireplumber 0.4.17-1ubuntu4 amd64 modular session / policy manager for PipeWire\\nii wngerman 20161207-12 all New German orthography wordlist\\nii wogerman 1:2-39 all Traditional German wordlist\\nii wpasupplicant 2:2.10-21ubuntu0.1 amd64 client support for WPA and WPA2 (IEEE 802.11i)\\nii wswiss 20161207-12 all Swiss (German) orthography wordlist\\nii x11-apps 7.7+11build3 amd64 X applications\\nii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure\\nii x11-session-utils 7.7+6build2 amd64 X session utilities\\nii x11-utils 7.7+6build2 amd64 X11 utilities\\nii x11-xkb-utils 7.7+8build2 amd64 X11 XKB utilities\\nii x11-xserver-utils 7.7+10build2 amd64 X server utilities\\nii xauth 1:1.1.2-1build1 amd64 X authentication utility\\nii xbitmaps 1.1.1-2.2 all Base X bitmaps\\nii xbrlapi 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display - xbrlapi\\nii xcursor-themes 1.0.6-0ubuntu1 all Base X cursor themes\\nii xcvt 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator\\nii xdg-dbus-proxy 0.1.5-1build2 amd64 filtering D-Bus proxy\\nii xdg-desktop-portal 1.18.4-1ubuntu2 amd64 desktop integration portal for Flatpak and Snap\\nii xdg-desktop-portal-gnome 46.2-0ubuntu1 amd64 GNOME portal backend for xdg-desktop-portal\\nii xdg-desktop-portal-gtk 1.15.1-1build2 amd64 GTK+/GNOME portal backend for xdg-desktop-portal\\nii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories\\nii xdg-user-dirs-gtk 0.11-1build2 amd64 tool to manage well known user directories (Gtk extension)\\nii xdg-utils 1.1.3-4.1ubuntu3 all desktop integration utilities from freedesktop.org\\nii xfonts-base 1:1.0.5+nmu1 all standard fonts for X\\nii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts\\nii xfonts-scalable 1:1.0.3-1.3 all scalable fonts for X\\nii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs\\nii xinit 1.4.1-0ubuntu5 amd64 X server initialisation tool\\nii xinput 1.6.4-1build1 amd64 Runtime configuration and test of XInput devices\\nii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data\\nii xml-core 0.19 all XML infrastructure and XML catalog file support\\nii xorg 1:7.7+23ubuntu3 amd64 X.Org X Window System\\nii xorg-docs-core 1:1.7.1-1.2 all Core documentation for the X.org X Window System\\nii xorriso 1:1.5.6-1.1ubuntu3 amd64 command line ISO-9660 and Rock Ridge manipulation tool\\nii xserver-common 2:21.1.12-1ubuntu1 all common files used by various X servers\\nii xserver-xephyr 2:21.1.12-1ubuntu1 amd64 nested X server\\nii xserver-xorg 1:7.7+23ubuntu3 amd64 X.Org X server\\nii xserver-xorg-core 2:21.1.12-1ubuntu1 amd64 Xorg X server - core server\\nii xserver-xorg-input-all 1:7.7+23ubuntu3 amd64 X.Org X server -- input driver metapackage\\nii xserver-xorg-input-libinput 1.4.0-1build1 amd64 X.Org X server -- libinput input driver\\nii xserver-xorg-input-wacom 1:1.2.0-1ubuntu2 amd64 X.Org X server -- Wacom input driver\\nii xserver-xorg-legacy 2:21.1.12-1ubuntu1 amd64 setuid root Xorg server wrapper\\nii xserver-xorg-video-all 1:7.7+23ubuntu3 amd64 X.Org X server -- output driver metapackage\\nii xserver-xorg-video-amdgpu 23.0.0-1build1 amd64 X.Org X server -- AMDGPU display driver\\nii xserver-xorg-video-ati 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI display driver wrapper\\nii xserver-xorg-video-fbdev 1:0.5.0-2build2 amd64 X.Org X server -- fbdev display driver\\nii xserver-xorg-video-intel 2:2.99.917+git20210115-1build1 amd64 X.Org X server -- Intel i8xx, i9xx display driver\\nii xserver-xorg-video-nouveau 1:1.0.17-2build1 amd64 X.Org X server -- Nouveau display driver\\nii xserver-xorg-video-qxl 0.1.6-1build1 amd64 X.Org X server -- QXL display driver\\nii xserver-xorg-video-radeon 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI Radeon display driver\\nii xserver-xorg-video-vesa 1:2.6.0-1 amd64 X.Org X server -- VESA display driver\\nii xserver-xorg-video-vmware 1:13.4.0-1build1 amd64 X.Org X server -- VMware display driver\\nii xwayland 2:23.2.6-1 amd64 X server for running X clients under Wayland\\nii xxd 2:9.1.0016-1ubuntu7.2 amd64 tool to make (or reverse) a hex dump\\nii xz-utils 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression utilities\\nii yaru-theme-gnome-shell 24.04.2-0ubuntu1 all Yaru GNOME Shell desktop theme from the Ubuntu Community\\nii yaru-theme-gtk 24.04.2-0ubuntu1 all Yaru GTK theme from the Ubuntu Community\\nii yaru-theme-icon 24.04.2-0ubuntu1 all Yaru icon theme from the Ubuntu Community\\nii yaru-theme-sound 24.04.2-0ubuntu1 all Yaru sound theme from the Ubuntu Community\\nii yelp 42.2-1build2 amd64 Help browser for GNOME\\nii yelp-xsl 42.1-2 all XSL stylesheets for the yelp help browser\\nii zenity 4.0.1-1build3 amd64 Display graphical dialog boxes from shell scripts\\nii zenity-common 4.0.1-1build3 all Display graphical dialog boxes from shell scripts (common files)\\nii zip 3.0-13build1 amd64 Archiver for .zip files\\nii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime\\nii zlib1g-dev:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - development\\nii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool\\n", "Turbo Boost (Legacy non intel_pstate)": "File not found"}',E'{"uri": "/home/arne/Sites/green-coding/example-applications/", "uri_type": "folder", "name": "Stress Test #4-Real", "filename": "stress/usage_scenario.yml", "branch": null, "debug_mode": false, "allow_unsafe": false, "skip_system_checks": false, "skip_unsafe": true, "verbose_provider_boot": false, "full_docker_prune": false, "dev_no_sleeps": false, "dev_no_build": true, "dev_no_metrics": false, "dev_flow_timetravel": false, "dev_no_optimizations": false, "docker_prune": false, "job_id": null}',1,E'64134395e83e6e57cf6247a2b0ec11b562d1fa95',E'{"sci": {"I": 436, "EL": 4, "RS": 1, "TE": 181000}, "measurement": {"boot": {"wait_time_dependencies": 60}, "idle-duration": 5, "pre-test-sleep": 5, "total-duration": 3600, "post-test-sleep": 5, "metric-providers": {"linux": {"network.io.cgroup.container.provider.NetworkIoCgroupContainerProvider": {"resolution": 99}, "cpu.energy.rapl.msr.component.provider.CpuEnergyRaplMsrComponentProvider": {"resolution": 99}, "cpu.utilization.procfs.system.provider.CpuUtilizationProcfsSystemProvider": {"resolution": 99}, "memory.total.cgroup.container.provider.MemoryTotalCgroupContainerProvider": {"resolution": 99}, "psu.energy.dc.rapl.msr.machine.provider.PsuEnergyDcRaplMsrMachineProvider": {"resolution": 99}, "cpu.utilization.cgroup.container.provider.CpuUtilizationCgroupContainerProvider": {"resolution": 99}}, "macos": {"powermetrics.provider.PowermetricsProvider": {"resolution": 99}, "cpu.utilization.mach.system.provider.CpuUtilizationMachSystemProvider": {"resolution": 99}}, "common": {"network.connections.proxy.container.provider.NetworkConnectionsProxyContainerProvider": null}}, "baseline-duration": 5, "flow-process-duration": 1800, "phase-transition-time": 1, "system_check_threshold": 3}}',1726160328742271,1726160353581253,E'[{"start": 1726160329743697, "name": "[BASELINE]", "end": 1726160334744785}, {"start": 1726160335745833, "name": "[INSTALLATION]", "end": 1726160335931783}, {"start": 1726160336932437, "name": "[BOOT]", "end": 1726160337503043}, {"start": 1726160340514884, "name": "[IDLE]", "end": 1726160345515280}, {"start": 1726160346515621, "name": "[RUNTIME]", "end": 1726160351580464}, {"start": 1726160346515787, "name": "Stress", "end": 1726160351580424}, {"start": 1726160352580653, "name": "[REMOVE]", "end": 1726160353581175}]',NULL,NULL,FALSE,E'2024-09-12 16:58:25.214591+00',E'2024-09-12 17:01:17.228965+00',1), +(E'af76f822-c042-4bf1-a5aa-5566761ef351',NULL,E'Stress Test #5',E'/home/arne/Sites/green-coding/example-applications/',E'main',E'58c7a5002c684f41f8d7a355f3ede641d8e45ddc',E'2024-07-10 13:48:46+00',E'manual',NULL,E'{"name": "Stress Container One Core 5 Seconds", "author": "Arne Tarara <arne@green-coding.berlin>", "description": "A simple 5 seconds stress on the system with one core. Expected display result is a rectangle shaped load.", "flow": [{"name": "Stress", "container": "gcb-alpine-stress", "commands": [{"type": "console", "command": "stress-ng -c 1 -t 5 -q", "note": "Starting Stress"}]}], "version": "2", "services": {"gcb-alpine-stress": {"container_name": "gcb-alpine-stress", "image": "gcb_alpine_stress", "build": "."}}}',E'stress/usage_scenario.yml',E'{"SGX": "This CPU does not support Intel SGX", "Uptime": " 19:01:00 up 24 min, 3 users, load average: 0.17, 0.36, 0.39", "Cpu Info": "11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz", "Platform": "Linux", "Processes": "USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\\nroot 1 0.3 0.0 23440 14188 ? Ss 18:36 0:04 /sbin/init splash\\nroot 2 0.0 0.0 0 0 ? S 18:36 0:00 [kthreadd]\\nroot 3 0.0 0.0 0 0 ? S 18:36 0:00 [pool_workqueue_release]\\nroot 4 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_g]\\nroot 5 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-rcu_p]\\nroot 6 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-slub_]\\nroot 7 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-netns]\\nroot 8 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:0-kacpi_notify]\\nroot 9 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:0H-events_highpri]\\nroot 10 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:1-pm]\\nroot 12 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mm_pe]\\nroot 13 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_kthread]\\nroot 14 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_rude_kthread]\\nroot 15 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_tasks_trace_kthread]\\nroot 16 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/0]\\nroot 17 0.0 0.0 0 0 ? I 18:36 0:00 [rcu_preempt]\\nroot 18 0.0 0.0 0 0 ? S 18:36 0:00 [migration/0]\\nroot 19 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/0]\\nroot 20 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/0]\\nroot 21 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/1]\\nroot 22 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/1]\\nroot 23 0.0 0.0 0 0 ? S 18:36 0:00 [migration/1]\\nroot 24 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/1]\\nroot 26 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:0H-events_highpri]\\nroot 27 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/2]\\nroot 28 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/2]\\nroot 29 0.0 0.0 0 0 ? S 18:36 0:00 [migration/2]\\nroot 30 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/2]\\nroot 32 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:0H-events_highpri]\\nroot 33 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/3]\\nroot 34 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/3]\\nroot 35 0.0 0.0 0 0 ? S 18:36 0:00 [migration/3]\\nroot 36 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/3]\\nroot 38 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:0H-events_highpri]\\nroot 39 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/4]\\nroot 40 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/4]\\nroot 41 0.0 0.0 0 0 ? S 18:36 0:00 [migration/4]\\nroot 42 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/4]\\nroot 43 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/4:0-events]\\nroot 44 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:0H-events_highpri]\\nroot 45 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/5]\\nroot 46 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/5]\\nroot 47 0.0 0.0 0 0 ? S 18:36 0:00 [migration/5]\\nroot 48 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/5]\\nroot 50 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:0H-events_highpri]\\nroot 51 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/6]\\nroot 52 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/6]\\nroot 53 0.0 0.0 0 0 ? S 18:36 0:00 [migration/6]\\nroot 54 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/6]\\nroot 56 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:0H-kblockd]\\nroot 57 0.0 0.0 0 0 ? S 18:36 0:00 [cpuhp/7]\\nroot 58 0.0 0.0 0 0 ? S 18:36 0:00 [idle_inject/7]\\nroot 59 0.0 0.0 0 0 ? S 18:36 0:00 [migration/7]\\nroot 60 0.0 0.0 0 0 ? S 18:36 0:00 [ksoftirqd/7]\\nroot 62 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:0H-kblockd]\\nroot 63 0.0 0.0 0 0 ? S 18:36 0:00 [kdevtmpfs]\\nroot 64 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-inet_]\\nroot 65 0.0 0.0 0 0 ? S 18:36 0:00 [kauditd]\\nroot 67 0.0 0.0 0 0 ? S 18:36 0:00 [khungtaskd]\\nroot 68 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:2-events_power_efficient]\\nroot 69 0.0 0.0 0 0 ? S 18:36 0:00 [oom_reaper]\\nroot 70 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-write]\\nroot 71 0.0 0.0 0 0 ? S 18:36 0:00 [kcompactd0]\\nroot 72 0.0 0.0 0 0 ? SN 18:36 0:00 [ksmd]\\nroot 74 0.0 0.0 0 0 ? SN 18:36 0:00 [khugepaged]\\nroot 75 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kinte]\\nroot 76 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kbloc]\\nroot 77 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-blkcg]\\nroot 79 0.0 0.0 0 0 ? S 18:36 0:00 [irq/9-acpi]\\nroot 82 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tpm_d]\\nroot 83 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ata_s]\\nroot 84 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md]\\nroot 85 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-md_bi]\\nroot 86 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-edac-]\\nroot 87 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-devfr]\\nroot 88 0.0 0.0 0 0 ? S 18:36 0:00 [watchdogd]\\nroot 90 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/5:1H-kblockd]\\nroot 91 0.0 0.0 0 0 ? S 18:36 0:00 [kswapd0]\\nroot 92 0.0 0.0 0 0 ? S 18:36 0:00 [ecryptfs-kthread]\\nroot 93 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kthro]\\nroot 94 0.0 0.0 0 0 ? S 18:36 0:00 [irq/127-pciehp]\\nroot 95 0.0 0.0 0 0 ? S 18:36 0:00 [irq/128-pciehp]\\nroot 96 0.0 0.0 0 0 ? S 18:36 0:00 [irq/129-pciehp]\\nroot 97 0.0 0.0 0 0 ? S 18:36 0:00 [irq/130-pciehp]\\nroot 100 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-acpi_]\\nroot 101 0.0 0.0 0 0 ? S 18:36 0:00 [hwrng]\\nroot 103 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-mld]\\nroot 104 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/6:1H]\\nroot 105 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipv6_]\\nroot 112 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-kstrp]\\nroot 114 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/u17:0-rb_allocator]\\nroot 128 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-charg]\\nroot 129 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/5:3-rcu_gp]\\nroot 153 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/3:1H-kblockd]\\nroot 157 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/0:1H-kblockd]\\nroot 185 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/1:1H-kblockd]\\nroot 186 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/7:1H]\\nroot 194 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/4:1H-kblockd]\\nroot 195 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/2:1H-kblockd]\\nroot 196 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/7:2-events]\\nroot 218 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 219 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 220 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 221 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-nvme-]\\nroot 223 0.1 0.0 0 0 ? I 18:36 0:01 [kworker/2:3-events]\\nroot 225 0.0 0.0 0 0 ? S 18:36 0:00 [irq/173-FRMW0001:00]\\nroot 226 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/3:2-events]\\nroot 227 0.0 0.0 0 0 ? S 18:36 0:00 [irq/174-PIXA3854:00]\\nroot 264 0.0 0.0 0 0 ? S 18:36 0:00 [jbd2/nvme0n1p5-8]\\nroot 265 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ext4-]\\nroot 315 0.0 0.0 67096 17692 ? S<s 18:36 0:00 /usr/lib/systemd/systemd-journald\\nroot 351 0.0 0.0 30832 8576 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-udevd\\nroot 395 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 423 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:5-ext4-rsv-conversion]\\nroot 451 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/u16:8-ext4-rsv-conversion]\\nroot 514 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cfg80]\\nroot 520 0.0 0.0 0 0 ? S 18:36 0:00 [irq/191-mei_me]\\nroot 531 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-crypt]\\nroot 534 0.1 0.0 0 0 ? S 18:36 0:02 [irq/192-iwlwifi:default_queue]\\nroot 535 0.0 0.0 0 0 ? S 18:36 0:00 [irq/193-iwlwifi:queue_1]\\nroot 536 0.0 0.0 0 0 ? S 18:36 0:00 [irq/194-iwlwifi:queue_2]\\nroot 538 0.2 0.0 0 0 ? S 18:36 0:03 [irq/195-iwlwifi:queue_3]\\nroot 539 0.0 0.0 0 0 ? S 18:36 0:00 [irq/196-iwlwifi:queue_4]\\nroot 540 0.0 0.0 0 0 ? S 18:36 0:00 [irq/197-iwlwifi:queue_5]\\nroot 541 0.0 0.0 0 0 ? S 18:36 0:00 [irq/198-iwlwifi:queue_6]\\nroot 542 0.0 0.0 0 0 ? S 18:36 0:00 [irq/199-iwlwifi:queue_7]\\nroot 543 0.0 0.0 0 0 ? S 18:36 0:00 [irq/200-iwlwifi:queue_8]\\nroot 544 0.0 0.0 0 0 ? S 18:36 0:00 [irq/201-iwlwifi:exception]\\nroot 576 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ttm]\\nroot 583 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-cros_]\\nroot 586 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc0]\\nroot 587 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc1]\\nroot 588 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc2]\\nroot 589 0.0 0.0 0 0 ? S 18:36 0:00 [card1-crtc3]\\nsystemd+ 660 0.1 0.0 17728 7680 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-oomd\\nsystemd+ 665 0.0 0.0 21584 12800 ? Ss 18:36 0:00 /usr/lib/systemd/systemd-resolved\\nsystemd+ 671 0.0 0.0 91044 7680 ? Ssl 18:36 0:00 /usr/lib/systemd/systemd-timesyncd\\nroot 754 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:3-pm]\\nroot 790 0.0 0.0 314260 8124 ? Ssl 18:36 0:00 /usr/libexec/accounts-daemon\\navahi 793 0.0 0.0 8780 3840 ? Ss 18:36 0:00 avahi-daemon: running [framebook.local]\\nroot 794 0.0 0.0 13684 6528 ? Ss 18:36 0:00 /usr/libexec/bluetooth/bluetoothd\\nroot 795 0.0 0.0 9804 2816 ? Ss 18:36 0:00 /usr/sbin/cron -f -P\\nmessage+ 796 0.2 0.0 11992 6528 ? Ss 18:36 0:04 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngnome-r+ 800 0.0 0.0 439064 16176 ? Ssl 18:36 0:00 /usr/libexec/gnome-remote-desktop-daemon --system\\nroot 804 0.0 0.0 314320 7808 ? Ssl 18:36 0:00 /usr/libexec/iio-sensor-proxy\\npolkitd 812 0.0 0.0 384348 10120 ? Ssl 18:36 0:00 /usr/lib/polkit-1/polkitd --no-debug\\nroot 815 0.0 0.0 314180 7856 ? Ssl 18:36 0:00 /usr/libexec/power-profiles-daemon\\nroot 831 0.1 0.1 2287584 33476 ? Ssl 18:36 0:01 /usr/lib/snapd/snapd\\nroot 836 0.0 0.0 310432 6912 ? Ssl 18:36 0:00 /usr/libexec/switcheroo-control\\nroot 838 0.7 0.0 725084 12996 ? Ssl 18:36 0:11 /usr/bin/sysbox-mgr\\nroot 842 0.0 0.0 18136 9220 ? Ss 18:36 0:01 /usr/lib/systemd/systemd-logind\\nroot 844 0.1 0.0 425420 10368 ? Ssl 18:36 0:01 /usr/sbin/thermald --systemd --dbus-enable --adaptive\\nroot 845 0.0 0.0 469148 13116 ? Ssl 18:36 0:00 /usr/libexec/udisks2/udisksd\\navahi 893 0.0 0.0 8420 1284 ? S 18:36 0:00 avahi-daemon: chroot helper\\nroot 898 0.1 0.0 338968 21172 ? Ssl 18:36 0:02 /usr/sbin/NetworkManager --no-daemon\\nroot 901 0.0 0.0 18400 11264 ? Ss 18:36 0:00 /usr/sbin/wpa_supplicant -u -s -O DIR=/run/wpa_supplicant GROUP=netdev\\nroot 913 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-ipmi-]\\nsyslog 919 0.0 0.0 222508 6016 ? Ssl 18:36 0:00 /usr/sbin/rsyslogd -n -iNONE\\nroot 971 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/1:3-events]\\nroot 1073 0.0 0.0 392104 12664 ? Ssl 18:36 0:00 /usr/sbin/ModemManager\\nroot 1085 0.0 0.0 314184 8224 ? Ssl 18:36 0:00 /usr/libexec/boltd\\nroot 1086 0.0 0.0 317632 9472 ? Ssl 18:36 0:00 /usr/libexec/upowerd\\nroot 1113 0.0 0.0 1166524 11008 ? Ssl 18:36 0:00 /usr/bin/sysbox-fs\\nroot 1121 0.0 0.0 2800 1664 ? Ss 18:36 0:00 /bin/sh -c /usr/bin/sysbox-runc --version && /usr/bin/sysbox-mgr --version && /usr/bin/sysbox-fs --version && /bin/sleep infinity\\nroot 1149 0.0 0.0 9076 2176 ? S 18:36 0:00 /bin/sleep infinity\\nroot 1430 0.0 0.0 0 0 ? S 18:36 0:00 [psimon]\\nroot 1439 0.0 0.0 38488 11392 ? Ss 18:36 0:00 /usr/sbin/cupsd -l\\nroot 1447 0.2 0.1 2249812 62528 ? Ssl 18:36 0:03 /usr/bin/containerd\\nroot 1469 0.0 0.0 315384 9472 ? Ssl 18:36 0:00 /usr/sbin/gdm3\\nroot 1492 0.0 0.0 242664 9856 ? Sl 18:36 0:00 gdm-session-worker [pam/gdm-launch-environment]\\ngdm 1499 0.1 0.0 20988 11904 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\ngdm 1500 0.0 0.0 21400 3600 ? S 18:36 0:00 (sd-pam)\\ngdm 1512 0.0 0.0 114056 12032 ? S<sl 18:36 0:00 /usr/bin/pipewire\\ngdm 1513 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\ngdm 1515 0.0 0.0 407672 18944 ? S<sl 18:36 0:00 /usr/bin/wireplumber\\ngdm 1516 0.0 0.0 110484 11008 ? S<sl 18:36 0:00 /usr/bin/pipewire-pulse\\ngdm 1517 0.0 0.0 236396 6272 tty1 Ssl+ 18:36 0:00 /usr/libexec/gdm-wayland-session dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\ngdm 1525 0.0 0.0 9420 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\ngdm 1533 0.0 0.0 6500 2432 tty1 S+ 18:36 0:00 dbus-run-session -- gnome-session --autostart /usr/share/gdm/greeter/autostart\\nrtkit 1535 0.0 0.0 22940 3456 ? SNsl 18:36 0:00 /usr/libexec/rtkit-daemon\\ngdm 1537 0.0 0.0 9856 5120 tty1 S+ 18:36 0:00 dbus-daemon --nofork --print-address 4 --session\\ngdm 1546 0.0 0.0 521532 18048 tty1 Sl+ 18:36 0:00 /usr/libexec/gnome-session-binary --autostart /usr/share/gdm/greeter/autostart\\ngdm 1548 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\ngdm 1557 0.0 0.0 310008 6400 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 1564 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/128/doc\\ngdm 1590 1.1 0.6 4424672 205408 tty1 Sl+ 18:36 0:17 /usr/bin/gnome-shell\\nroot 1621 0.0 0.0 0 0 ? S< 18:36 0:00 [krfcommd]\\ncups-br+ 1656 0.0 0.0 268504 19840 ? Ssl 18:36 0:00 /usr/sbin/cups-browsed\\nroot 1657 0.3 0.2 3317612 91932 ? Ssl 18:36 0:04 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock\\nkernoops 1659 0.0 0.0 12744 2184 ? Ss 18:36 0:00 /usr/sbin/kerneloops --test\\nkernoops 1662 0.0 0.0 12744 2188 ? Ss 18:36 0:00 /usr/sbin/kerneloops\\nroot 1702 0.0 0.0 12020 8064 ? Ss 18:36 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups\\nroot 2398 0.0 0.0 1238168 13512 ? Sl 18:36 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928 -address /run/containerd/containerd.sock\\nroot 2511 0.0 0.0 1136 512 ? Ss 18:36 0:00 /sbin/docker-init -- buildkitd --allow-insecure-entitlement=network.host\\nroot 2717 0.0 0.1 1271012 34128 ? Sl 18:36 0:00 buildkitd --allow-insecure-entitlement=network.host\\nroot 2863 0.0 0.0 0 0 ? I< 18:36 0:00 [kworker/R-tls-s]\\nroot 2998 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:4-kacpi_notify]\\nroot 2999 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:5-kacpi_notify]\\nroot 3000 0.0 0.0 0 0 ? I 18:36 0:00 [kworker/0:6-pm]\\ngdm 3022 0.0 0.0 383120 7680 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi-bus-launcher\\ngdm 3028 0.0 0.0 9420 4992 tty1 S+ 18:36 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/128/at-spi/bus\\ngdm 3030 0.0 0.2 529220 73856 tty1 Sl+ 18:36 0:00 /usr/bin/Xwayland :1024 -rootless -noreset -accessx -core -auth /run/user/128/.mutter-Xwaylandauth.4R00T2 -listenfd 4 -listenfd 5 -displayfd 6 -initfd 7 -byteswappedclients\\ngdm 3034 0.0 0.0 236068 7296 tty1 Sl+ 18:36 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session\\ncolord 3035 0.0 0.0 320904 14776 ? Ssl 18:36 0:00 /usr/libexec/colord\\ngdm 3069 0.0 0.0 310008 6400 tty1 Sl+ 18:36 0:00 /usr/libexec/xdg-permission-store\\ngdm 3078 0.0 0.0 2663384 26852 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.Shell.Notifications\\ngdm 3080 0.0 0.0 544408 13440 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sharing\\ngdm 3091 0.0 0.0 487204 19200 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-wacom\\ngdm 3095 0.0 0.0 414336 19904 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-color\\ngdm 3100 0.0 0.0 412624 19204 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-keyboard\\ngdm 3109 0.0 0.0 324188 11520 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-print-notifications\\ngdm 3114 0.0 0.0 458120 7040 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-rfkill\\ngdm 3119 0.0 0.0 386768 8192 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-smartcard\\ngdm 3129 0.0 0.0 432620 12416 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-datetime\\ngdm 3146 0.0 0.0 595396 24488 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-media-keys\\ngdm 3149 0.0 0.0 310116 6528 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-screensaver-proxy\\ngdm 3155 0.0 0.0 394584 9984 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-sound\\ngdm 3163 0.0 0.0 384468 6912 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-a11y-settings\\ngdm 3169 0.0 0.0 459824 8320 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-housekeeping\\ngdm 3172 0.0 0.0 524880 23336 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-power\\ngdm 3290 0.0 0.0 416764 15232 tty1 Sl+ 18:36 0:00 /usr/libexec/gsd-printer\\ngdm 3333 0.0 0.0 2794456 27380 tty1 Sl+ 18:36 0:00 /usr/bin/gjs -m /usr/share/gnome-shell/org.gnome.ScreenSaver\\ngdm 3345 0.0 0.2 992124 77664 tty1 Sl+ 18:36 0:00 /usr/libexec/mutter-x11-frames\\ngdm 3346 0.0 0.0 389372 12224 tty1 Sl 18:36 0:00 ibus-daemon --panel disable -r --xim\\ngdm 3360 0.0 0.0 311020 7296 tty1 Sl 18:36 0:00 /usr/libexec/ibus-dconf\\ngdm 3362 0.0 0.2 610420 66612 tty1 Sl 18:36 0:00 /usr/libexec/ibus-x11 --kill-daemon\\ngdm 3364 0.0 0.0 310984 7424 tty1 Sl+ 18:36 0:00 /usr/libexec/ibus-portal\\ngdm 3378 0.0 0.0 237196 7424 tty1 Sl 18:36 0:00 /usr/libexec/ibus-engine-simple\\nroot 3437 0.0 0.0 15116 8048 ? Ss 18:36 0:00 sshd: arne [priv]\\narne 3449 0.0 0.0 21024 12288 ? Ss 18:36 0:01 /usr/lib/systemd/systemd --user\\narne 3453 0.0 0.0 21396 3596 ? S 18:36 0:00 (sd-pam)\\narne 3464 0.0 0.0 109524 8576 ? Ssl 18:36 0:00 /usr/bin/pipewire\\narne 3465 0.0 0.0 98116 5888 ? Ssl 18:36 0:00 /usr/bin/pipewire -c filter-chain.conf\\narne 3468 0.0 0.0 39000 11776 ? Ss 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3472 0.0 0.0 405708 16000 ? Ssl 18:36 0:00 /usr/bin/wireplumber\\narne 3475 0.0 0.0 109904 10496 ? Ssl 18:36 0:00 /usr/bin/pipewire-pulse\\narne 3501 0.0 0.0 9444 4992 ? Ss 18:36 0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only\\narne 3542 0.0 0.0 15276 7108 ? S 18:36 0:00 sshd: arne@pts/0\\narne 3544 0.0 0.0 537260 7680 ? Ssl 18:36 0:00 /usr/libexec/xdg-document-portal\\narne 3549 0.0 0.0 309864 6272 ? Ssl 18:36 0:00 /usr/libexec/xdg-permission-store\\nroot 3556 0.0 0.0 2704 1920 ? Ss 18:36 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc\\narne 3594 0.0 0.0 353012 21644 ? Sl 18:36 0:00 /snap/snapd-desktop-integration/178/usr/bin/snapd-desktop-integration\\narne 3599 0.0 0.0 11980 5632 pts/0 Ss 18:36 0:00 -bash\\nroot 3669 0.0 0.0 15116 8176 ? Ss 18:37 0:00 sshd: arne [priv]\\narne 3711 0.2 0.0 15276 7108 ? S 18:37 0:04 sshd: arne@pts/1\\narne 3712 0.0 0.0 11980 5632 pts/1 Ss 18:37 0:00 -bash\\nroot 3760 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:9-pm]\\nroot 3801 0.0 0.0 0 0 ? I 18:37 0:00 [kworker/0:10-events]\\nroot 3878 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:13-kacpi_notify]\\nroot 3879 0.0 0.0 0 0 ? I 18:39 0:00 [kworker/0:14-inet_frag_wq]\\ngdm 4742 0.0 0.0 317072 9856 ? Ssl 18:40 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/128/keyring\\nroot 4875 0.0 0.0 0 0 ? I 18:41 0:00 [kworker/0:16-pm]\\nroot 4983 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/6:0-i915-unordered]\\nroot 5028 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/7:0-events]\\narne 5100 0.0 0.0 2068800 26240 pts/0 Sl+ 18:42 0:00 docker compose up\\narne 5122 0.0 0.1 2169824 44872 pts/0 Sl+ 18:42 0:00 /usr/libexec/docker/cli-plugins/docker-compose compose up\\nroot 5207 0.0 0.0 1745288 4352 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5214 0.0 0.0 1745032 4224 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9573 -container-ip 172.25.0.2 -container-port 9573\\nroot 5235 0.0 0.0 1238168 13636 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45 -address /run/containerd/containerd.sock\\nroot 5262 0.0 0.0 1237912 13424 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2 -address /run/containerd/containerd.sock\\n999 5282 2.7 0.0 37240 8576 ? Ssl 18:42 0:30 redis-server *:6379\\n999 5289 0.0 0.0 219720 29824 ? Ss 18:42 0:00 postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key -c work_mem=16MB -p 9573\\nroot 5393 0.0 0.0 2040984 4864 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5405 0.0 0.0 1597568 4096 ? Sl 18:42 0:00 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 9142 -container-ip 172.25.0.5 -container-port 80\\nroot 5419 0.0 0.0 1237912 13296 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7 -address /run/containerd/containerd.sock\\nroot 5450 0.0 0.0 1238168 13548 ? Sl 18:42 0:00 /usr/bin/containerd-shim-runc-v2 -namespace moby -id 2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf -address /run/containerd/containerd.sock\\nroot 5471 0.0 0.0 1136 512 ? Ss 18:42 0:00 /sbin/docker-init -- /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5479 0.0 0.0 12120 7984 ? Ss 18:42 0:00 nginx: master process nginx -g daemon off;\\nroot 5535 0.0 0.0 4344 3200 ? S 18:42 0:00 /bin/bash /var/www/startup/startup_gunicorn.sh\\nroot 5536 0.0 0.0 37560 31352 ? S 18:42 0:00 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5560 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5561 0.0 0.0 12328 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5562 0.0 0.0 12336 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5563 0.0 0.0 12344 4656 ? S 18:42 0:00 nginx: worker process\\nwww-data 5564 0.0 0.0 12124 4528 ? S 18:42 0:00 nginx: worker process\\nwww-data 5565 0.0 0.0 12328 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5566 0.0 0.0 12344 4784 ? S 18:42 0:00 nginx: worker process\\nwww-data 5567 0.0 0.0 12124 4528 ? S 18:42 0:00 nginx: worker process\\nwww-data 5570 0.7 0.4 1173056 145288 ? Sl 18:42 0:08 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5571 0.7 0.4 1173060 145536 ? Sl 18:42 0:08 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5572 0.7 0.4 877032 139256 ? Sl 18:42 0:08 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5573 0.7 0.4 1172940 145604 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5574 0.7 0.4 1173312 146496 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5575 0.7 0.4 1173064 145496 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5576 0.7 0.4 1173300 146304 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\nwww-data 5577 0.6 0.4 1180304 151296 ? Sl 18:42 0:07 /var/www/startup/venv/bin/python /var/www/startup/venv/bin/gunicorn --workers=8 --access-logfile=- --error-logfile=- --worker-tmp-dir=/dev/shm --worker-class=uvicorn_worker.UvicornWorker --bind unix:/tmp/green-coding-api.sock -m 007 --user www-data --chdir /var/www/green-metrics-tool/api -k uvicorn_worker.UvicornWorker main:app\\n999 5620 0.0 0.0 219864 13208 ? Ss 18:42 0:00 postgres: checkpointer \\n999 5621 0.0 0.0 219864 7192 ? Ss 18:42 0:00 postgres: background writer \\n999 5623 0.0 0.0 219720 10008 ? Ss 18:42 0:00 postgres: walwriter \\n999 5624 0.0 0.0 221312 8984 ? Ss 18:42 0:00 postgres: autovacuum launcher \\n999 5625 0.0 0.0 221288 8088 ? Ss 18:42 0:00 postgres: logical replication launcher \\nroot 5970 0.0 0.0 0 0 ? I 18:42 0:00 [kworker/1:5-events]\\n999 6349 0.0 0.0 222620 20504 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54084) idle\\n999 6357 0.0 0.0 222516 18328 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54116) idle\\n999 6358 0.0 0.0 222816 19712 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54120) idle\\n999 6359 0.0 0.0 222520 18072 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54118) idle\\n999 6361 0.0 0.0 222852 19224 ? Ss 18:43 0:00 postgres: postgres green-coding 172.25.0.4(54156) idle\\n999 6954 0.0 0.0 222820 18712 ? Ss 18:44 0:00 postgres: postgres green-coding 172.25.0.4(37058) idle\\nroot 7549 0.1 0.1 574948 42980 ? Ssl 18:46 0:01 /usr/libexec/fwupd/fwupd\\nroot 7565 0.0 0.0 0 0 ? I< 18:46 0:00 [kworker/u17:1-hci0]\\nroot 7599 0.0 0.0 0 0 ? I 18:47 0:00 [kworker/0:7-pm]\\nroot 7614 0.0 0.0 0 0 ? I 18:50 0:00 [kworker/2:0-events]\\nroot 7615 0.0 0.0 0 0 ? I 18:50 0:00 [kworker/2:2-events]\\nroot 7621 0.0 0.0 0 0 ? I 18:51 0:00 [kworker/5:1-events]\\nroot 7622 0.0 0.0 0 0 ? I 18:51 0:00 [kworker/3:0-events]\\nroot 7632 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/0:2-events]\\nroot 7633 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/6:1-i915-unordered]\\nroot 7634 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/4:2-mm_percpu_wq]\\nroot 7636 0.0 0.0 0 0 ? I 18:53 0:00 [kworker/7:1-pm]\\nroot 7648 0.0 0.0 0 0 ? I 18:56 0:00 [kworker/1:0-events]\\nroot 7649 0.0 0.0 0 0 ? I 18:56 0:00 [kworker/1:1-events]\\nroot 7894 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:1-events]\\nroot 7895 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:4-events]\\nroot 7896 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:5-i915-unordered]\\nroot 7897 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:6-events]\\nroot 7898 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/2:7]\\nroot 7899 0.0 0.0 0 0 ? I 18:57 0:00 [kworker/7:3]\\nroot 8019 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/u16:0-flush-259:0]\\nroot 8151 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/u16:1-events_unbound]\\nroot 8172 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/5:0-events]\\nroot 8452 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/5:2-events]\\nroot 8456 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/0:8-kacpi_notify]\\nroot 8457 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/0:11-pm]\\nroot 8473 0.0 0.0 0 0 ? I 18:58 0:00 [kworker/4:1-mm_percpu_wq]\\nroot 8684 0.0 0.0 0 0 ? I 18:59 0:00 [kworker/4:3]\\nroot 8736 0.0 0.0 0 0 ? I 18:59 0:00 [kworker/u16:3-events_unbound]\\n999 8796 0.0 0.0 222820 19352 ? Ss 18:59 0:00 postgres: postgres green-coding 172.25.0.4(49974) idle\\n999 8797 0.0 0.0 221804 14232 ? Ss 18:59 0:00 postgres: postgres green-coding 172.25.0.4(49984) idle\\nroot 8808 0.0 0.0 0 0 ? I 19:00 0:00 [kworker/3:1-events]\\n999 8809 1.0 0.0 223524 24096 ? Ss 19:00 0:00 postgres: postgres green-coding 192.168.179.2(51787) idle\\nroot 8811 0.0 0.0 0 0 ? I 19:00 0:00 [kworker/6:2-events]\\narne 8813 72.4 0.3 928156 130360 pts/1 Sl+ 19:00 0:01 python3 runner.py --uri /home/arne/Sites/green-coding/example-applications/ --filename stress/usage_scenario.yml --name Stress Test #5 --dev-no-build --skip-unsafe\\n999 8819 0.0 0.0 222052 19864 ? Ss 19:00 0:00 postgres: postgres green-coding 172.25.0.1(41820) idle\\n999 8820 0.0 0.0 222120 20248 ? Ss 19:00 0:00 postgres: postgres green-coding 172.25.0.1(41822) idle\\nroot 8949 40.9 0.0 17276 7808 ? Ss 19:00 0:00 /usr/lib/systemd/systemd-hostnamed\\narne 9036 0.0 0.0 2800 1664 pts/1 S+ 19:01 0:00 /bin/sh -c /usr/bin/ps -aux\\narne 9037 0.0 0.0 15500 5376 pts/1 R+ 19:01 0:00 /usr/bin/ps -aux\\n", "Disk Usage": 322987098112, "Docker Info": "Client: Docker Engine - Community\\n Version: 27.2.1\\n Context: default\\n Debug Mode: false\\n Plugins:\\n buildx: Docker Buildx (Docker Inc.)\\n Version: v0.16.2\\n Path: /usr/libexec/docker/cli-plugins/docker-buildx\\n compose: Docker Compose (Docker Inc.)\\n Version: v2.29.2\\n Path: /usr/libexec/docker/cli-plugins/docker-compose\\n\\nServer:\\n Containers: 5\\n Running: 5\\n Paused: 0\\n Stopped: 0\\n Images: 13\\n Server Version: 27.2.1\\n Storage Driver: overlayfs\\n driver-type: io.containerd.snapshotter.v1\\n Logging Driver: json-file\\n Cgroup Driver: systemd\\n Cgroup Version: 2\\n Plugins:\\n Volume: local\\n Network: bridge host ipvlan macvlan null overlay\\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\\n Swarm: inactive\\n Runtimes: io.containerd.runc.v2 runc sysbox-runc\\n Default Runtime: runc\\n Init Binary: docker-init\\n containerd version: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc version: v1.1.13-0-g58aa920\\n init version: de40ad0\\n Security Options:\\n apparmor\\n seccomp\\n Profile: builtin\\n cgroupns\\n Kernel Version: 6.8.0-44-generic\\n Operating System: Ubuntu 24.04.1 LTS\\n OSType: linux\\n Architecture: x86_64\\n CPUs: 8\\n Total Memory: 31.13GiB\\n Name: framebook\\n ID: 492c90f2-99f1-437f-a14b-9f1e5d514ca9\\n Docker Root Dir: /var/lib/docker\\n Debug Mode: false\\n Username: greencoding\\n Experimental: false\\n Insecure Registries:\\n 127.0.0.0/8\\n Live Restore Enabled: false\\n Default Address Pools:\\n Base: 172.25.0.0/16, Size: 24\\n\\n", "Free Memory": 31158542336, "Turbo Boost": "0", "Architecture": "x86-64", "Memory Total": "32646584 kB", "Power Limits": {"/sys/devices/virtual/powercap/intel-rapl/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/name": "package-0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/name": "psys\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/enabled": "1\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj": "3278277069\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/energy_uj": "6335095293\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_name": "peak_power\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_name": "short_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/name": "core\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/name": "uncore\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/uevent": "", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/enabled": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/energy_uj": "872390039\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/energy_uj": "19374889\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_max_power_uw": "28000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_max_power_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/async": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_power_limit_uw": "200000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_0_time_window_us": "31981568\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_power_limit_uw": "64000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_1_time_window_us": "2440\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/constraint_2_power_limit_uw": "121000000\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_0_time_window_us": "27983872\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/constraint_1_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/control": "auto\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:1/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_name": "long_term\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/max_energy_range_uj": "262143328850\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_usage": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_status": "unsupported\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_enabled": "disabled\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_kids": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_active_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_power_limit_uw": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/constraint_0_time_window_us": "976\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:0/power/runtime_suspended_time": "0\\n", "/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:1/power/runtime_suspended_time": "0\\n"}, "IO Scheduling": "File not found", "Linux Version": "Linux 6.8.0-44-generic", "CPU Scheduling": {"/sys/kernel/debug/sched/debug": "Sched Debug Version: v0.11, 6.8.0-44-generic #44-Ubuntu\\nktime : 1478455.678639\\nsched_clk : 1478524.989134\\ncpu_clk : 1478480.548032\\njiffies : 4296145592\\nsched_clock_stable() : 1\\n\\nsysctl_sched\\n .sysctl_sched_base_slice : 3.000000\\n .sysctl_sched_features : 6237751\\n .sysctl_sched_tunable_scaling : 1 (logarithmic)\\n\\ncpu#0, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 264703\\n .nr_uninterruptible : -46\\n .next_balance : 4296.145596\\n .curr->pid : 0\\n .clock : 1478480.905412\\n .clock_task : 1478480.905412\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[0]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 10843.155957\\n .avg_vruntime : 10843.155957\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 605\\n .runnable_avg : 302\\n .util_avg : 302\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 605\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.963248\\n .se->vruntime : 23634.998783\\n .se->sum_exec_runtime : 11584.183597\\n .se->load.weight : 317957\\n .se->avg.load_avg : 183\\n .se->avg.util_avg : 302\\n .se->avg.runnable_avg : 302\\n\\ncfs_rq[0]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 23634.998783\\n .avg_vruntime : 23634.998783\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 183\\n .runnable_avg : 302\\n .util_avg : 302\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 183\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.963248\\n .se->vruntime : 31428.678320\\n .se->sum_exec_runtime : 11922.666710\\n .se->load.weight : 302702\\n .se->avg.load_avg : 174\\n .se->avg.util_avg : 302\\n .se->avg.runnable_avg : 302\\n\\ncfs_rq[0]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 31428.678320\\n .avg_vruntime : 31428.678320\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 174\\n .runnable_avg : 302\\n .util_avg : 302\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 174\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.963248\\n .se->vruntime : 135170.077766\\n .se->sum_exec_runtime : 15678.969195\\n .se->load.weight : 325999\\n .se->avg.load_avg : 187\\n .se->avg.util_avg : 302\\n .se->avg.runnable_avg : 302\\n\\ncfs_rq[0]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 807.277675\\n .avg_vruntime : 807.277675\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.808280\\n .se->vruntime : 80860.438321\\n .se->sum_exec_runtime : 827.664148\\n .se->load.weight : 45500\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7501.670277\\n .avg_vruntime : 7501.670277\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478413.139456\\n .se->vruntime : 80861.133852\\n .se->sum_exec_runtime : 8121.076737\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1141.611449\\n .avg_vruntime : 1141.611449\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478415.574254\\n .se->vruntime : 80861.160418\\n .se->sum_exec_runtime : 1143.753102\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 100.280921\\n .avg_vruntime : 100.280921\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478103.803062\\n .se->vruntime : 80852.009719\\n .se->sum_exec_runtime : 101.484410\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 922.230580\\n .avg_vruntime : 922.230580\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478195.831365\\n .se->vruntime : 80860.678055\\n .se->sum_exec_runtime : 943.710972\\n .se->load.weight : 159078\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[0]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 41.854936\\n .avg_vruntime : 41.854936\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.311003\\n .se->vruntime : 80861.211971\\n .se->sum_exec_runtime : 44.040849\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 80861.211971\\n .avg_vruntime : 80861.211971\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.311003\\n .se->vruntime : 135169.479024\\n .se->sum_exec_runtime : 28094.594783\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1068.813038\\n .avg_vruntime : 1068.813038\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478425.717468\\n .se->vruntime : 135136.119092\\n .se->sum_exec_runtime : 1079.019232\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[0]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 135170.117443\\n .avg_vruntime : 135170.117443\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 194\\n .runnable_avg : 309\\n .util_avg : 304\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[0]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[0]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S systemd 1 1068.813038 E 1071.800032 3.000000 4608.388158 4836 120 0.000000 4608.388158 0.000000 0.000000 0 0 /init.scope\\n Spool_workqueue_ 3 50.484081 E 53.473963 3.000000 0.010118 3 120 0.000000 0.010118 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_g 4 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-rcu_p 5 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-slub_ 6 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-netns 7 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n I kworker/0:0 8 129857.338713 E 129860.292531 3.000000 292.935295 718 120 0.000000 292.935295 0.000000 0.000000 0 0 /\\n I kworker/0:0H 9 61.484472 E 61.518998 3.000000 0.013159 4 100 0.000000 0.013159 0.000000 0.000000 0 0 /\\n I kworker/0:1 10 129950.722198 E 129952.886313 3.000000 743.754769 2820 120 0.000000 743.754769 0.000000 0.000000 0 0 /\\n Ikworker/R-mm_pe 12 -1.048576 E -1.039924 0.750000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_kthre 13 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_rude_ 14 -1.048576 E 0.298576 0.750000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ircu_tasks_trace 15 429.940627 E 432.911629 3.000000 0.267245 7 120 0.000000 0.267245 0.000000 0.000000 0 0 /\\n S ksoftirqd/0 16 135170.117443 E 135173.085826 3.000000 102.007308 5148 120 0.000000 102.007308 0.000000 0.000000 0 0 /\\n S migration/0 18 0.626525 E 0.123004 0.750000 16.075937 436 0 0.000000 16.075937 0.000000 0.000000 0 0 /\\n S idle_inject/0 19 0.467865 E 0.280188 0.750000 0.005407 3 49 0.000000 0.005407 0.000000 0.000000 0 0 /\\n S cpuhp/0 20 8335.382094 E 8338.316225 3.000000 1.150907 26 120 0.000000 1.150907 0.000000 0.000000 0 0 /\\n Ikworker/R-charg 128 50.473963 E 50.508549 3.000000 0.093293 2 100 0.000000 0.093293 0.000000 0.000000 0 0 /\\n I kworker/0:1H 157 133771.486337 E 133771.520901 3.000000 12.472380 648 100 0.000000 12.472380 0.000000 0.000000 0 0 /\\n Sjbd2/nvme0n1p5- 264 133771.494014 E 133774.486337 3.000000 127.819668 2027 120 0.000000 127.819668 0.000000 0.000000 0 0 /\\n Sirq/193-iwlwifi 535 3646.117837 E 3649.116436 3.000000 5.041558 33 49 0.000000 5.041558 0.000000 0.000000 0 0 /\\n Ikworker/R-cros_ 583 4098.545142 E 4098.579743 3.000000 0.004733 2 100 0.000000 0.004733 0.000000 0.000000 0 0 /\\n S card1-crtc0 586 4105.692415 E 4108.689897 3.000000 0.071775 4 49 0.000000 0.071775 0.000000 0.000000 0 0 /\\n S card1-crtc1 587 4105.694050 E 4108.692415 3.000000 0.002284 2 49 0.000000 0.002284 0.000000 0.000000 0 0 /\\n S card1-crtc2 588 4105.695887 E 4108.694050 3.000000 0.002459 2 49 0.000000 0.002459 0.000000 0.000000 0 0 /\\n S card1-crtc3 589 4105.697510 E 4108.695887 3.000000 0.002237 2 49 0.000000 0.002237 0.000000 0.000000 0 0 /\\n S sd-resolve 762 2.805469 E 4.473698 3.000000 3.300131 16 120 0.000000 3.300131 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n I kworker/0:3 754 130012.147879 E 130015.147879 3.000000 602.617338 1765 120 0.000000 602.617338 0.000000 0.000000 0 0 /\\n Saccounts-daemon 790 14.253092 E 16.355003 3.000000 133.580546 272 120 0.000000 133.580546 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gdbus 936 13.969662 E 16.117388 3.000000 134.487699 479 120 0.000000 134.487699 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S gmain 1041 0.924491 E 2.068097 3.000000 0.059449 2 120 0.000000 0.059449 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S sysbox-mgr 950 1139.727621 E 1142.705260 3.000000 1809.171807 23918 120 0.000000 1809.171807 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 1119 97.714855 E 99.982658 3.000000 1483.498353 767 120 0.000000 1483.498353 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S cleanup 1103 7.256534 E 10.181598 3.000000 0.315513 4 120 0.000000 0.315513 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S avahi-daemon 893 0.811987 E 2.186352 3.000000 0.137179 4 120 0.000000 0.137179 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S in:imuxsock 954 41.854936 E 44.834346 3.000000 116.598299 2960 120 0.000000 116.598299 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S boltd 1085 21.787411 E 24.279745 3.000000 228.474706 1317 120 0.000000 228.474706 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1098 5.410405 E 7.152417 3.000000 21.180934 75 120 0.000000 21.180934 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1475 0.003081 E 2.997094 3.000000 0.496009 16 120 0.000000 0.496009 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gmain 1483 3.022894 E 5.996257 3.000000 0.026637 1 120 0.000000 0.026637 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pw-data-loop 1534 8.779134 E 11.773129 3.000000 0.034056 3 79 0.000000 0.034056 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1569 1880.003146 E 1881.958162 3.000000 41.683534 431 120 0.000000 41.683534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1554 9.640752 E 12.603939 3.000000 0.065887 2 120 0.000000 0.065887 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1556 10.631341 E 13.583311 3.000000 0.917172 22 120 0.000000 0.917172 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fusermount3 1564 9.813596 E 12.812048 3.000000 0.930269 5 120 0.000000 0.930269 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dockerd 1699 920.587039 E 922.512408 3.000000 330.944565 9271 120 0.000000 330.944565 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2416 374.234438 E 377.219668 3.000000 35.780266 1608 120 0.000000 35.780266 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2524 857.791316 E 859.502482 3.000000 427.764535 8371 120 0.000000 427.764535 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2677 922.230580 E 925.180392 3.000000 101.586143 3739 120 0.000000 101.586143 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2691 921.940590 E 924.932011 3.000000 574.059172 10260 120 0.000000 574.059172 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2764 60.390080 E 63.084927 3.000000 43.886699 204 120 0.000000 43.886699 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2814 61.853789 E 63.730514 3.000000 24.017792 31 120 0.000000 24.017792 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n I kworker/0:4 2998 129857.668791 E 129860.649113 3.000000 273.234576 1182 120 0.000000 273.234576 0.000000 0.000000 0 0 /\\n I kworker/0:5 2999 129857.518473 E 129860.482229 3.000000 139.482754 491 120 0.000000 139.482754 0.000000 0.000000 0 0 /\\n I kworker/0:6 3000 129934.902829 E 129937.776321 3.000000 515.792329 2039 120 0.000000 515.792329 0.000000 0.000000 0 0 /\\n S Xwayland 3030 823.312878 E 826.243091 3.000000 73.675981 404 120 0.000000 73.675981 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:sh0 3265 798.437067 E 801.432850 3.000000 0.043697 5 120 0.000000 0.043697 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3082 846.693163 E 849.149172 3.000000 0.987458 8 120 0.000000 0.987458 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3105 850.647701 E 853.480247 3.000000 0.288156 7 120 0.000000 0.288156 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3117 753.415062 E 755.693222 3.000000 0.802525 2 120 0.000000 0.802525 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3122 46.671710 E 49.646140 3.000000 0.025570 1 120 0.000000 0.025570 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3133 795.342480 E 798.312721 3.000000 2.282013 41 120 0.000000 2.282013 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3128 789.541948 E 792.521534 3.000000 0.623284 13 120 0.000000 0.623284 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-print-notif 3109 794.936793 E 797.917349 3.000000 26.108835 70 120 0.000000 26.108835 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3157 53.427679 E 56.401651 3.000000 0.026028 1 120 0.000000 0.026028 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-a11y-settin 3163 794.888778 E 797.870455 3.000000 6.166578 47 120 0.000000 6.166578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3176 794.880654 E 797.815559 3.000000 5.039055 51 120 0.000000 5.039055 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3340 1927.697033 E 1927.760897 3.000000 47.743714 9 120 0.000000 47.743714 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3349 808.794366 E 811.794366 3.000000 10.264307 5 120 0.000000 10.264307 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x11:sh0 3377 816.300810 E 819.286174 3.000000 0.014636 1 120 0.000000 0.014636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter:traceq0 3381 817.363254 E 1021.171202 3.000000 0.084925 1 139 0.000000 0.084925 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3386 818.412051 E 821.351989 3.000000 0.093107 2 120 0.000000 0.093107 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3387 817.414689 E 820.396299 3.000000 0.018390 1 120 0.000000 0.018390 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3389 818.351989 E 821.340314 3.000000 0.199289 7 120 0.000000 0.199289 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3366 811.073812 E 814.040000 3.000000 0.033812 1 120 0.000000 0.033812 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3393 819.206920 E 822.175436 3.000000 0.075475 3 120 0.000000 0.075475 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3465 4.873835 E 7.857378 3.000000 12.993458 14 120 0.000000 12.993458 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3507 5.151991 E 8.096082 3.000000 0.172631 6 120 0.000000 0.172631 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S module-rt 3506 5.696636 E 8.662738 3.000000 0.223461 7 120 0.000000 0.223461 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-permission- 3549 8.115189 E 11.087827 3.000000 4.193195 7 120 0.000000 4.193195 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n I kworker/0:9 3760 129857.901162 E 129860.887138 3.000000 3.405792 86 120 0.000000 3.405792 0.000000 0.000000 0 0 /\\n I kworker/0:10 3801 135170.099058 E 135173.077766 3.000000 52.650196 793 120 0.000000 52.650196 0.000000 0.000000 0 0 /\\n I kworker/0:13 3878 129857.299109 E 129860.254823 3.000000 230.789901 1507 120 0.000000 230.789901 0.000000 0.000000 0 0 /\\n I kworker/0:14 3879 132004.841141 E 132007.830545 3.000000 440.424636 2126 120 0.000000 440.424636 0.000000 0.000000 0 0 /\\n I kworker/0:16 4875 130002.528713 E 130002.543615 3.000000 280.987123 1107 120 0.000000 280.987123 0.000000 0.000000 0 0 /\\n S docker 5103 183.160196 E 185.943219 3.000000 3.601503 29 120 0.000000 3.601503 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5108 142.053576 E 144.677977 3.000000 0.445408 2 120 0.000000 0.445408 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5125 145.841713 E 148.838155 3.000000 2.587746 33 120 0.000000 2.587746 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5129 183.349033 E 186.279893 3.000000 45.719750 414 120 0.000000 45.719750 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5138 147.883780 E 150.508821 3.000000 3.072613 60 120 0.000000 3.072613 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5140 183.617148 E 186.500852 3.000000 51.472640 233 120 0.000000 51.472640 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5207 380.169185 E 383.159727 3.000000 1.776241 5 120 0.000000 1.776241 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5209 380.159727 E 383.144516 3.000000 0.125477 4 120 0.000000 0.125477 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6176 791.619505 E 793.692926 3.000000 29.358597 85 120 0.000000 29.358597 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5265 317.900081 E 320.886003 3.000000 0.088538 5 120 0.000000 0.088538 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5269 795.683822 E 797.862816 3.000000 77.544076 185 120 0.000000 77.544076 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_close_file 5371 0.996541 E 1.988580 3.000000 0.014879 1 120 0.000000 0.014879 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S bio_lazy_free 5373 0.971337 E 2.003459 3.000000 0.025204 2 120 0.000000 0.025204 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5402 391.629910 E 394.593552 3.000000 0.036358 1 120 0.000000 0.036358 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5403 889.003097 E 891.966053 3.000000 3.714626 31 120 0.000000 3.714626 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5404 440.410950 E 443.311576 3.000000 0.200935 4 120 0.000000 0.200935 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5406 907.932831 E 910.867909 3.000000 2.663852 53 120 0.000000 2.663852 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5426 321.885108 E 324.879367 3.000000 0.005741 1 120 0.000000 0.005741 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5459 331.501159 E 334.467439 3.000000 1.138122 31 120 0.000000 1.138122 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bash 5535 0.374091 E 2.004330 3.000000 1.369761 2 120 0.000000 1.369761 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5560 1.881197 E 4.297811 3.000000 87.562664 10 120 0.000000 87.562664 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5562 3.457795 E 6.450638 3.000000 2.881877 10 120 0.000000 2.881877 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5567 3.450638 E 6.377025 3.000000 1.003093 12 120 0.000000 1.003093 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5570 7501.670277 E 7504.557656 3.000000 7640.680448 12375 120 0.000000 7640.680448 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5598 1096.827304 E 1099.827304 3.000000 67.403138 16 120 0.000000 67.403138 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5664 1810.667125 E 1813.659738 3.000000 48.028793 19 120 0.000000 48.028793 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6353 2962.498940 E 2965.273620 3.000000 9.925404 79 120 0.000000 9.925404 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6354 2962.532768 E 2965.492613 3.000000 10.767032 25 120 0.000000 10.767032 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6356 5639.747296 E 5641.131905 3.000000 1.752954 5 120 0.000000 1.752954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5613 1154.546552 E 1157.489793 3.000000 50.490838 17 120 0.000000 50.490838 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5688 1886.290395 E 1889.290395 3.000000 33.583605 11 120 0.000000 33.583605 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5689 1886.727601 E 1889.716108 3.000000 34.006642 14 120 0.000000 34.006642 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5691 1887.153050 E 1890.141066 3.000000 34.415056 12 120 0.000000 34.415056 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5605 1128.699724 E 1130.733412 3.000000 59.322321 20 120 0.000000 59.322321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5674 1837.950616 E 1840.941193 3.000000 34.976674 14 120 0.000000 34.976674 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5676 1842.845926 E 1842.887818 3.000000 39.859633 14 120 0.000000 39.859633 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5645 1691.475316 E 1694.467524 3.000000 28.433086 12 120 0.000000 28.433086 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5646 1692.040496 E 1695.034677 3.000000 28.990755 9 120 0.000000 28.990755 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5639 1491.853459 E 1492.774908 3.000000 56.154692 21 120 0.000000 56.154692 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5706 1914.066082 E 1916.114488 3.000000 31.948839 9 120 0.000000 31.948839 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5708 1917.130715 E 1920.121651 3.000000 35.002311 12 120 0.000000 35.002311 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5626 1181.663383 E 1181.681283 3.000000 50.832084 14 120 0.000000 50.832084 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 8793 7108.798990 E 7111.651118 3.000000 8.245227 38 120 0.000000 8.245227 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5655 1726.481090 E 1729.473436 3.000000 36.998391 11 120 0.000000 36.998391 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5717 1958.888518 E 1961.882843 3.000000 34.652408 11 120 0.000000 34.652408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6347 2960.545968 E 2963.333661 3.000000 9.357649 17 120 0.000000 9.357649 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6348 5638.050283 E 5638.597957 3.000000 2.607295 5 120 0.000000 2.607295 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5724 1963.859694 E 1966.846384 3.000000 63.747694 20 120 0.000000 63.747694 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S pool-spawner 7553 0.748291 E 2.091709 3.000000 0.160000 1 120 0.000000 0.160000 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n S gdbus 7555 32.101060 E 34.926556 3.000000 42.383895 2391 120 0.000000 42.383895 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/0:7 7599 129859.627730 E 129861.544276 3.000000 93.124950 215 120 0.000000 93.124950 0.000000 0.000000 0 0 /\\n I kworker/0:2 7632 129937.232262 E 129940.113488 3.000000 82.356096 197 120 0.000000 82.356096 0.000000 0.000000 0 0 /\\n I kworker/0:8 8456 129858.971521 E 129861.949760 3.000000 0.498637 6 120 0.000000 0.498637 0.000000 0.000000 0 0 /\\n I kworker/0:11 8457 129932.612037 E 129935.586714 3.000000 0.399509 8 120 0.000000 0.399509 0.000000 0.000000 0 0 /\\n S python3 8816 10583.743410 E 10586.610451 3.000000 7.962643 287 120 0.000000 7.962643 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8906 10703.941655 E 10706.941655 3.000000 110.866741 8 120 0.000000 110.866741 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 9046 10843.155957 E 10846.147739 3.000000 0.268769 2 120 0.000000 0.268769 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#1, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 246875\\n .nr_uninterruptible : 42\\n .next_balance : 4296.145597\\n .curr->pid : 0\\n .clock : 1478480.892662\\n .clock_task : 1478480.892662\\n .avg_idle : 986001\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[1]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5397.289304\\n .avg_vruntime : 5397.289304\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478407.055542\\n .se->vruntime : 9600.319345\\n .se->sum_exec_runtime : 5420.709871\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 7280.402997\\n .avg_vruntime : 7280.402997\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.636552\\n .se->vruntime : 19223.894062\\n .se->sum_exec_runtime : 7290.666657\\n .se->load.weight : 309686\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 337.533826\\n .avg_vruntime : 337.533826\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478415.610949\\n .se->vruntime : 86856.403221\\n .se->sum_exec_runtime : 344.151137\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5537.956694\\n .avg_vruntime : 5537.956694\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478401.412968\\n .se->vruntime : 86856.368352\\n .se->sum_exec_runtime : 5539.005270\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 521.680150\\n .avg_vruntime : 521.680150\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.405620\\n .se->vruntime : 86844.067575\\n .se->sum_exec_runtime : 522.846395\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/cups-browsed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 44.069903\\n .avg_vruntime : 44.069903\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.197380\\n .se->vruntime : 86844.030274\\n .se->sum_exec_runtime : 46.766099\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 990.559120\\n .avg_vruntime : 990.559120\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.164648\\n .se->vruntime : 86855.630505\\n .se->sum_exec_runtime : 1002.873446\\n .se->load.weight : 191883\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 738.506261\\n .avg_vruntime : 738.506261\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.831611\\n .se->vruntime : 86855.426510\\n .se->sum_exec_runtime : 756.775319\\n .se->load.weight : 217160\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 86856.403221\\n .avg_vruntime : 86856.403221\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478415.610949\\n .se->vruntime : 134425.254668\\n .se->sum_exec_runtime : 34683.203704\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 1\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[1]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 19223.894062\\n .avg_vruntime : 19223.894062\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.636552\\n .se->vruntime : 33501.981929\\n .se->sum_exec_runtime : 7529.275325\\n .se->load.weight : 394393\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9600.319345\\n .avg_vruntime : 9600.319345\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478407.055542\\n .se->vruntime : 33498.549206\\n .se->sum_exec_runtime : 5862.170760\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 33501.981929\\n .avg_vruntime : 33501.981929\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.636552\\n .se->vruntime : 134430.026694\\n .se->sum_exec_runtime : 14017.423496\\n .se->load.weight : 492054\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[1]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 134430.085041\\n .avg_vruntime : 134430.085041\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 6\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[1]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.935581\\n .rt_runtime : 950.000000\\n\\ndl_rq[1]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n I rcu_preempt 17 134430.085041 E 134433.082085 3.000000 832.603919 23566 120 0.000000 832.603919 0.000000 0.000000 0 0 /\\n S cpuhp/1 21 7932.094818 E 7935.015583 3.000000 0.356355 26 120 0.000000 0.356355 0.000000 0.000000 0 0 /\\n S idle_inject/1 22 -1.046696 E 0.298424 0.750000 0.006020 3 49 0.000000 0.006020 0.000000 0.000000 0 0 /\\n S migration/1 23 0.056269 E 0.693236 0.750000 181.338356 426 0 0.000000 181.338356 0.000000 0.000000 0 0 /\\n S ksoftirqd/1 24 134430.079431 E 134433.072193 3.000000 34.965694 856 120 0.000000 34.965694 0.000000 0.000000 0 0 /\\n I kworker/1:0H 26 21.947051 E 21.981566 3.000000 0.017963 4 100 0.000000 0.017963 0.000000 0.000000 0 0 /\\n S khungtaskd 67 132982.846528 E 132985.702000 3.000000 2.972761 14 120 0.000000 2.972761 0.000000 0.000000 0 0 /\\n Ikworker/R-write 70 -1.034874 E -1.000265 3.000000 0.000849 2 100 0.000000 0.000849 0.000000 0.000000 0 0 /\\n S ksmd 72 -1.034874 E 8.135275 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/9-acpi 79 0.888458 E 2.110113 3.000000 71.294806 219 49 0.000000 71.294806 0.000000 0.000000 0 0 /\\n I kworker/u17:0 114 134424.714949 E 134424.749192 3.000000 503.138900 9714 100 0.000000 503.138900 0.000000 0.000000 0 0 /\\n I kworker/1:1H 185 132745.322435 E 132745.355587 3.000000 10.268778 518 100 0.000000 10.268778 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 221 392.789305 E 392.823904 3.000000 0.005027 2 100 0.000000 0.005027 0.000000 0.000000 0 0 /\\n Ikworker/R-crypt 531 2507.555715 E 2507.590316 3.000000 0.005940 2 100 0.000000 0.005940 0.000000 0.000000 0 0 /\\n Sirq/194-iwlwifi 536 3740.895044 E 3743.891071 3.000000 27.654560 160 49 0.000000 27.654560 0.000000 0.000000 0 0 /\\n S bluetoothd 794 13.959438 E 16.125037 3.000000 96.748260 406 120 0.000000 96.748260 0.000000 0.000000 0 0 /system.slice/bluetooth.service\\n S gmain 910 0.472046 E 3.459363 3.000000 0.047699 2 120 0.000000 0.047699 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S gmain 923 3.433860 E 6.421449 3.000000 0.067212 2 120 0.000000 0.067212 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S gdbus 924 7.269924 E 9.126327 3.000000 20.415944 94 120 0.000000 20.415944 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 925 273.616357 E 276.323911 3.000000 238.298300 611 120 0.000000 238.298300 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2922 269.668191 E 271.964904 3.000000 135.401526 178 120 0.000000 135.401526 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 3003 253.936887 E 256.669075 3.000000 106.640751 139 120 0.000000 106.640751 0.000000 0.000000 0 0 /system.slice/snapd.service\\n Sswitcheroo-cont 836 7.518062 E 10.434047 3.000000 44.143872 152 120 0.000000 44.143872 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 856 2.227776 E 5.225721 3.000000 94.523149 368 120 0.000000 94.523149 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S thermald 844 521.680150 E 524.642958 3.000000 44.706228 506 120 0.000000 44.706228 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S NetworkManager 898 467.678363 E 469.727236 3.000000 1640.760296 2393 120 0.000000 1640.760296 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S rsyslogd 919 38.221763 E 41.093768 3.000000 30.598632 92 120 0.000000 30.598632 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n I kworker/1:3 971 132144.455928 E 132147.440087 3.000000 130.118433 1614 120 0.000000 130.118433 0.000000 0.000000 0 0 /\\n S pool-spawner 1106 14.206991 E 17.144135 3.000000 0.125154 3 120 0.000000 0.125154 0.000000 0.000000 0 0 /system.slice/upower.service\\n S gmain 1107 14.144135 E 17.122581 3.000000 0.021554 1 120 0.000000 0.021554 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1114 1.456486 E 4.415054 3.000000 4.148860 108 120 0.000000 4.148860 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1118 0.488564 E 2.489338 3.000000 0.204262 22 120 0.000000 0.204262 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S cupsd 1439 6.107646 E 8.696552 3.000000 24.305730 98 120 0.000000 24.305730 0.000000 0.000000 0 0 /system.slice/cups.service\\n S containerd 1473 738.084644 E 741.080814 3.000000 324.529671 7588 120 0.000000 324.529671 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1476 738.506261 E 741.502384 3.000000 347.250284 8266 120 0.000000 347.250284 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdm3 1469 28.866371 E 31.777617 3.000000 29.629979 80 120 0.000000 29.629979 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S pipewire 1512 16.254098 E 16.510392 3.000000 32.093335 224 109 0.000000 32.093335 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1527 11.267137 E 14.210616 3.000000 0.188517 6 120 0.000000 0.188517 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1541 11.066776 E 14.063472 3.000000 0.112549 13 79 0.000000 0.112549 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1551 11.210616 E 14.180555 3.000000 0.056827 2 120 0.000000 0.056827 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1553 14.775624 E 17.722860 3.000000 0.661282 10 120 0.000000 0.661282 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1526 0.567104 E 2.363017 3.000000 0.680927 15 120 0.000000 0.680927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgnome-session-b 1546 4026.427161 E 4028.816499 3.000000 72.220451 386 120 0.000000 72.220451 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1555 11.411258 E 14.381068 3.000000 0.030190 1 120 0.000000 0.030190 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1559 11.464077 E 14.455527 3.000000 0.052819 2 120 0.000000 0.052819 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gnome-shell 1590 5397.289304 E 5400.203924 3.000000 15419.406602 16428 120 0.000000 15419.406602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1602 241.182424 E 244.164119 3.000000 1.813576 72 120 0.000000 1.813576 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1608 5329.461356 E 5332.450731 3.000000 20.622265 213 120 0.000000 20.622265 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S KMS thread 1618 4040.643096 E 4043.470042 3.000000 312.191032 825 79 0.000000 312.191032 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-s:disk$0 3004 8.656514 E 213.116341 3.000000 0.090177 1 139 0.000000 0.090177 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3014 167.316606 E 170.276345 3.000000 71.365629 133 120 0.000000 71.365629 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S cups-browsed 1656 44.069903 E 46.976698 3.000000 283.244671 1152 120 0.000000 283.244671 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1670 304.900140 E 305.802357 3.000000 107.084760 2032 120 0.000000 107.084760 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1672 144.769731 E 147.755909 3.000000 0.723957 32 120 0.000000 0.723957 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2526 305.308381 E 307.900140 3.000000 3.053644 65 120 0.000000 3.053644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2527 290.625017 E 293.618099 3.000000 99.602375 2905 120 0.000000 99.602375 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2528 990.559120 E 993.426964 3.000000 184.664157 6220 120 0.000000 184.664157 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2422 727.414431 E 729.233997 3.000000 100.537508 248 120 0.000000 100.537508 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2818 31.335791 E 34.210294 3.000000 25.098438 64 120 0.000000 25.098438 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3024 60.304780 E 63.271147 3.000000 0.033633 1 120 0.000000 0.033633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayland:gdrv0 3269 566.947492 E 569.942158 3.000000 0.048510 3 120 0.000000 0.048510 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3038 563.666293 E 566.641667 3.000000 4.306399 54 120 0.000000 4.306399 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3081 645.782212 E 648.340009 3.000000 0.896962 8 120 0.000000 0.896962 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3085 646.371136 E 648.782212 3.000000 1.123443 8 120 0.000000 1.123443 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3107 5393.304034 E 5395.064444 3.000000 485.388287 1299 120 0.000000 485.388287 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-wacom 3091 644.537177 E 647.284944 3.000000 366.045403 439 120 0.000000 366.045403 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3118 160.094256 E 163.069340 3.000000 0.024916 1 120 0.000000 0.024916 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-color 3095 5392.064444 E 5394.097784 3.000000 138.356254 75 120 0.000000 138.356254 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-keyboard 3100 648.247208 E 651.166836 3.000000 121.441087 43 120 0.000000 121.441087 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3123 160.645856 E 163.586872 3.000000 0.058984 1 120 0.000000 0.058984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-smartcard 3119 563.386800 E 566.368384 3.000000 7.380501 47 120 0.000000 7.380501 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3141 163.322124 E 166.295023 3.000000 0.027101 1 120 0.000000 0.027101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3152 563.387981 E 566.317884 3.000000 5.186420 57 120 0.000000 5.186420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-datetime 3129 563.405186 E 566.383009 3.000000 11.094354 49 120 0.000000 11.094354 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3201 553.536426 E 556.465699 3.000000 0.162455 3 120 0.000000 0.162455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3219 184.113084 E 187.101602 3.000000 0.087152 2 120 0.000000 0.087152 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3292 378.083610 E 380.401752 3.000000 0.681858 1 120 0.000000 0.681858 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3342 4042.206196 E 4044.992366 3.000000 1.492101 12 120 0.000000 1.492101 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Smutter-x11-fram 3345 634.080030 E 637.037078 3.000000 79.580450 171 120 0.000000 79.580450 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-:disk$0 3376 606.974571 E 811.460271 3.000000 0.041875 2 139 0.000000 0.041875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S mutter-x:gdrv0 3383 611.246200 E 614.198837 3.000000 0.047363 1 120 0.000000 0.047363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-portal 3364 5132.065958 E 5135.051107 3.000000 3.631144 27 120 0.000000 3.631144 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3382 611.727160 E 614.717547 3.000000 0.569298 17 120 0.000000 0.569298 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S sshd 3437 7.898835 E 10.142566 3.000000 77.928271 33 120 0.000000 77.928271 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S pipewire-pulse 3475 5.257457 E 8.249472 3.000000 16.156993 25 120 0.000000 16.156993 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sgnome-keyring-d 4742 60.402025 E 63.218079 3.000000 7.402169 26 120 0.000000 7.402169 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5111 76.881186 E 79.675463 3.000000 2.727325 5 120 0.000000 2.727325 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5128 94.298837 E 97.251569 3.000000 23.445852 267 120 0.000000 23.445852 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5131 95.888255 E 98.799375 3.000000 21.172376 49 120 0.000000 21.172376 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5241 721.061113 E 724.041507 3.000000 72.248214 171 120 0.000000 72.248214 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S redis-server 5282 5537.956694 E 5540.622631 3.000000 30207.005251 10882 120 0.000000 30207.005251 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Scontainerd-shim 5427 624.965436 E 627.173595 3.000000 63.284495 166 120 0.000000 63.284495 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5528 290.121910 E 293.092020 3.000000 0.588842 12 120 0.000000 0.588842 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5458 727.588190 E 730.414431 3.000000 61.038229 138 120 0.000000 61.038229 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5536 6076.807826 E 6079.099034 3.000000 773.518017 1166 120 0.000000 773.518017 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5600 849.366916 E 852.353840 3.000000 39.919317 22 120 0.000000 39.919317 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5665 1661.043325 E 1661.083812 3.000000 55.912313 17 120 0.000000 55.912313 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5616 882.220441 E 885.175429 3.000000 29.865267 12 120 0.000000 29.865267 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5618 881.421942 E 884.354331 3.000000 29.053625 11 120 0.000000 29.053625 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5687 1785.074279 E 1788.064636 3.000000 41.826708 13 120 0.000000 41.826708 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5697 1797.414029 E 1798.448640 3.000000 30.959422 9 120 0.000000 30.959422 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5700 1798.495212 E 1801.486113 3.000000 32.018896 11 120 0.000000 32.018896 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5633 1752.220599 E 1755.211488 3.000000 57.584088 17 120 0.000000 57.584088 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6334 3165.588717 E 3168.411649 3.000000 10.885334 28 120 0.000000 10.885334 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 8795 5659.941040 E 5662.929329 3.000000 0.050028 3 120 0.000000 0.050028 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5715 1835.502622 E 1838.493962 3.000000 42.959724 13 120 0.000000 42.959724 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5623 337.533826 E 340.498957 3.000000 130.045663 1481 120 0.000000 130.045663 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/1:5 5970 134427.795012 E 134430.789818 3.000000 164.602571 2907 120 0.000000 164.602571 0.000000 0.000000 0 0 /\\n S postgres 6358 315.080419 E 318.012544 3.000000 23.970231 27 120 0.000000 23.970231 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S fwupd 7549 111.721430 E 112.376821 3.000000 1230.682800 1595 120 0.000000 1230.682800 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/1:0 7648 120357.505373 E 120360.493702 3.000000 0.096133 4 120 0.000000 0.096133 0.000000 0.000000 0 0 /\\n I kworker/1:1 7649 120357.513029 E 120360.510348 3.000000 0.048300 4 120 0.000000 0.048300 0.000000 0.000000 0 0 /\\n S python3 8815 7039.203349 E 7042.186163 3.000000 0.111516 3 120 0.000000 0.111516 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8818 7044.089760 E 7047.042939 3.000000 7.114135 207 120 0.000000 7.114135 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8900 7188.982323 E 7191.573834 3.000000 110.791476 14 120 0.000000 110.791476 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#2, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 294602\\n .nr_uninterruptible : -236\\n .next_balance : 4296.145594\\n .curr->pid : 0\\n .clock : 1478480.954918\\n .clock_task : 1478480.954918\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[2]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3188.702129\\n .avg_vruntime : 3188.702129\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 643\\n .runnable_avg : 267\\n .util_avg : 267\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 643\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.638747\\n .se->vruntime : 14044.121702\\n .se->sum_exec_runtime : 3202.541317\\n .se->load.weight : 315992\\n .se->avg.load_avg : 193\\n .se->avg.util_avg : 267\\n .se->avg.runnable_avg : 267\\n\\ncfs_rq[2]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 14044.121702\\n .avg_vruntime : 14044.121702\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 193\\n .runnable_avg : 267\\n .util_avg : 267\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 193\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.638747\\n .se->vruntime : 20653.665482\\n .se->sum_exec_runtime : 3595.801202\\n .se->load.weight : 285975\\n .se->avg.load_avg : 175\\n .se->avg.util_avg : 267\\n .se->avg.runnable_avg : 267\\n\\ncfs_rq[2]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 6780.211952\\n .avg_vruntime : 6780.211952\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478476.220720\\n .se->vruntime : 89990.655619\\n .se->sum_exec_runtime : 7262.746482\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 832.938582\\n .avg_vruntime : 832.938582\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.607938\\n .se->vruntime : 89989.873375\\n .se->sum_exec_runtime : 860.124825\\n .se->load.weight : 136206\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 129.386853\\n .avg_vruntime : 129.386853\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.398104\\n .se->vruntime : 89975.802323\\n .se->sum_exec_runtime : 131.593633\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 874.903600\\n .avg_vruntime : 874.903600\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.218266\\n .se->vruntime : 89990.084160\\n .se->sum_exec_runtime : 890.257570\\n .se->load.weight : 143640\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 89990.655619\\n .avg_vruntime : 89990.655619\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478476.220720\\n .se->vruntime : 132324.079249\\n .se->sum_exec_runtime : 33330.999348\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[2]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 20653.665482\\n .avg_vruntime : 20653.665482\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 175\\n .runnable_avg : 267\\n .util_avg : 267\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 175\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.638747\\n .se->vruntime : 132324.001066\\n .se->sum_exec_runtime : 5956.693166\\n .se->load.weight : 338526\\n .se->avg.load_avg : 207\\n .se->avg.util_avg : 267\\n .se->avg.runnable_avg : 267\\n\\ncfs_rq[2]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 132324.079249\\n .avg_vruntime : 132324.079249\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 207\\n .runnable_avg : 268\\n .util_avg : 268\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[2]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 9.287879\\n .rt_runtime : 950.000000\\n\\ndl_rq[2]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/2 27 10232.512266 E 10235.476962 3.000000 0.310145 26 120 0.000000 0.310145 0.000000 0.000000 0 0 /\\n S idle_inject/2 28 -1.048574 E 0.451426 1.500000 0.000962 3 49 0.000000 0.000962 0.000000 0.000000 0 0 /\\n S migration/2 29 0.100700 E 0.850203 0.750000 182.052448 440 0 0.000000 182.052448 0.000000 0.000000 0 0 /\\n S ksoftirqd/2 30 132299.090371 E 132302.080782 3.000000 43.065189 2011 120 0.000000 43.065189 0.000000 0.000000 0 0 /\\n I kworker/2:0H 32 103.304456 E 103.338997 3.000000 0.014834 5 100 0.000000 0.014834 0.000000 0.000000 0 0 /\\n S oom_reaper 69 -1.013776 E 1.986224 3.000000 0.000042 2 120 0.000000 0.000042 0.000000 0.000000 0 0 /\\n S kcompactd0 71 132312.161723 E 132315.142997 3.000000 144.933761 2935 120 0.000000 144.933761 0.000000 0.000000 0 0 /\\n I kworker/2:1H 195 130740.608450 E 130740.641286 3.000000 9.472264 429 100 0.000000 9.472264 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 218 470.398502 E 470.433104 3.000000 0.005099 2 100 0.000000 0.005099 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 219 470.401038 E 470.435644 3.000000 0.002850 2 100 0.000000 0.002850 0.000000 0.000000 0 0 /\\n I kworker/2:3 223 132308.574159 E 132311.557497 3.000000 1581.539011 16690 120 0.000000 1581.539011 0.000000 0.000000 0 0 /\\n S systemd-udevd 351 1159.845797 E 1162.696747 3.000000 1287.401798 2609 120 0.000000 1287.401798 0.000000 0.000000 0 0 /system.slice/systemd-udevd.service\\n I kworker/u16:8 451 130035.424306 E 130035.774846 3.000000 347.621445 3119 120 0.000000 347.621445 0.000000 0.000000 0 0 /\\n S irq/191-mei_me 520 2425.538335 E 2428.535129 3.000000 2.494755 62 49 0.000000 2.494755 0.000000 0.000000 0 0 /\\n Sirq/195-iwlwifi 538 3925.397830 E 3928.395543 3.000000 3747.974546 19330 49 0.000000 3747.974546 0.000000 0.000000 0 0 /\\n S gdbus 1047 129.386853 E 132.175525 3.000000 238.312659 1012 120 0.000000 238.312659 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S snapd 854 181.532524 E 181.847161 3.000000 74.669991 322 120 0.000000 74.669991 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1046 247.008044 E 249.942943 3.000000 222.731664 906 120 0.000000 222.731664 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S udisksd 845 39.362468 E 40.266485 3.000000 193.466736 575 120 0.000000 193.466736 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 876 20.742468 E 23.348156 3.000000 0.617271 5 120 0.000000 0.617271 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n Ikworker/R-ipmi- 913 6961.772658 E 6961.807253 3.000000 0.015936 2 100 0.000000 0.015936 0.000000 0.000000 0 0 /\\n S pool-spawner 1100 6.890317 E 9.858408 3.000000 0.106301 5 120 0.000000 0.106301 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1116 2.347087 E 5.294553 3.000000 0.174658 34 120 0.000000 0.174658 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sh 1121 12.505172 E 15.381318 3.000000 5.274342 15 120 0.000000 5.274342 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1459 789.164834 E 789.557100 3.000000 222.989018 7410 120 0.000000 222.989018 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1460 356.789566 E 359.222037 3.000000 226.995066 5509 120 0.000000 226.995066 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1461 0.881565 E 2.097726 3.000000 0.020709 1 120 0.000000 0.020709 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sgdm-session-wor 1492 0.021664 E 2.378098 3.000000 7.685172 93 120 0.000000 7.685172 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 1500 0.906613 E 1.951424 3.000000 0.141963 1 120 0.000000 0.141963 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S pw-data-loop 1536 3.469723 E 6.464575 3.000000 0.024781 3 79 0.000000 0.024781 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sgdm-wayland-ses 1517 0.890985 E 3.860521 3.000000 4.316422 18 120 0.000000 4.316422 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1565 410.548304 E 413.512933 3.000000 0.246882 6 120 0.000000 0.246882 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1605 1606.489969 E 1609.464140 3.000000 21.987288 194 120 0.000000 21.987288 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shel:sh0 3005 31.707816 E 34.581346 3.000000 0.126470 1 120 0.000000 0.126470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3012 33.382173 E 238.030347 3.000000 0.007470 1 139 0.000000 0.007470 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3013 33.387365 E 36.382173 3.000000 0.005192 1 120 0.000000 0.005192 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3276 121.709419 E 124.678683 3.000000 0.030736 1 120 0.000000 0.030736 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1666 874.903600 E 877.900003 3.000000 147.428501 3241 120 0.000000 147.428501 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2718 869.933997 E 871.753416 3.000000 423.327398 7701 120 0.000000 423.327398 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 7623 811.414952 E 814.059032 3.000000 36.283681 75 120 0.000000 36.283681 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2722 1.991100 E 4.985710 3.000000 0.640714 24 120 0.000000 0.640714 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Ikworker/R-tls-s 2863 22769.817423 E 22769.852008 3.000000 0.015449 2 100 0.000000 0.015449 0.000000 0.000000 0 0 /\\n S dconf worker 3025 46.149564 E 49.142692 3.000000 0.447278 11 120 0.000000 0.447278 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S colord 3035 21.580781 E 24.092855 3.000000 92.765102 187 120 0.000000 92.765102 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gmain 3041 0.737224 E 2.242460 3.000000 0.155686 2 120 0.000000 0.155686 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gjs 3078 487.170160 E 488.823207 3.000000 59.101805 83 120 0.000000 59.101805 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3130 407.533407 E 410.525336 3.000000 0.766318 14 120 0.000000 0.766318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3187 98.848084 E 101.823175 3.000000 0.095370 2 120 0.000000 0.095370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-media-keys 3146 953.008761 E 955.920109 3.000000 135.098877 137 120 0.000000 135.098877 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3202 99.517382 E 102.480455 3.000000 0.036927 1 120 0.000000 0.036927 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3344 968.712808 E 971.613739 3.000000 1.076193 11 120 0.000000 1.076193 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3354 424.550236 E 427.529183 3.000000 0.083867 3 120 0.000000 0.083867 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3369 435.646524 E 438.628102 3.000000 0.253340 7 120 0.000000 0.253340 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3372 1521.603955 E 1524.526218 3.000000 1.475187 20 120 0.000000 1.475187 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3379 436.877871 E 439.851438 3.000000 0.116796 2 120 0.000000 0.116796 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S systemd 3449 96.100982 E 97.930315 3.000000 1124.256849 631 120 0.000000 1124.256849 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n Ssnapd-desktop-i 3468 39.501067 E 42.224366 3.000000 18.969394 43 120 0.000000 18.969394 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S docker 5101 229.682468 E 232.530385 3.000000 13.549417 232 120 0.000000 13.549417 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5107 171.690383 E 174.331107 3.000000 0.500947 6 120 0.000000 0.500947 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5109 229.433233 E 232.225759 3.000000 11.568629 15 120 0.000000 11.568629 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5124 193.061150 E 195.671496 3.000000 8.594148 49 120 0.000000 8.594148 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5211 870.132793 E 873.116925 3.000000 29.568281 761 120 0.000000 29.568281 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5236 817.853376 E 820.781351 3.000000 6.724896 270 120 0.000000 6.724896 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5244 817.585400 E 819.899215 3.000000 85.544975 170 120 0.000000 85.544975 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5263 817.998548 E 820.853376 3.000000 9.669150 636 120 0.000000 9.669150 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5268 818.140013 E 820.998548 3.000000 19.679646 90 120 0.000000 19.679646 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6331 854.041513 E 857.039265 3.000000 1.661889 20 120 0.000000 1.661889 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5408 390.450618 E 393.442277 3.000000 0.052751 3 120 0.000000 0.052751 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 6178 823.101527 E 825.190345 3.000000 36.912750 82 120 0.000000 36.912750 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6179 698.463026 E 701.068142 3.000000 60.576483 108 120 0.000000 60.576483 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-init 5471 6773.564258 E 6776.435552 3.000000 104.663128 1122 120 0.000000 104.663128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S nginx 5565 27.505903 E 30.461672 3.000000 0.909916 7 120 0.000000 0.909916 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5599 1243.917125 E 1246.899112 3.000000 28.626410 23 120 0.000000 28.626410 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5602 1243.759704 E 1246.752160 3.000000 26.340665 20 120 0.000000 26.340665 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5603 1244.273695 E 1246.859634 3.000000 28.925019 24 120 0.000000 28.925019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5667 2030.812810 E 2033.802093 3.000000 56.273299 24 120 0.000000 56.273299 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5615 1308.530001 E 1309.304684 3.000000 24.830628 15 120 0.000000 24.830628 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5573 6780.211952 E 6783.133769 3.000000 7432.465960 11457 120 0.000000 7432.465960 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5643 1834.821469 E 1835.836851 3.000000 61.193099 20 120 0.000000 61.193099 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6952 5678.893157 E 5679.334814 3.000000 2.606224 4 120 0.000000 2.606224 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5634 1604.905533 E 1607.825141 3.000000 53.244457 20 120 0.000000 53.244457 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5704 2161.079209 E 2164.073284 3.000000 28.505268 11 120 0.000000 28.505268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5705 2161.257548 E 2162.782519 3.000000 28.668075 12 120 0.000000 28.668075 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5710 2162.173294 E 2164.602104 3.000000 29.547294 16 120 0.000000 29.547294 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6333 3512.110147 E 3514.864100 3.000000 10.868019 29 120 0.000000 10.868019 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5575 6780.133769 E 6783.076509 3.000000 7302.318655 11699 120 0.000000 7302.318655 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5630 1334.192609 E 1335.792534 3.000000 36.310197 11 120 0.000000 36.310197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5680 2127.508196 E 2130.499659 3.000000 35.630276 19 120 0.000000 35.630276 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5685 2131.985144 E 2134.985144 3.000000 40.053783 21 120 0.000000 40.053783 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 8792 6439.161559 E 6442.132374 3.000000 0.142718 3 120 0.000000 0.142718 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5656 1932.156392 E 1935.156392 3.000000 101.676739 50 120 0.000000 101.676739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5625 677.529868 E 680.436012 3.000000 1.474437 7 120 0.000000 1.474437 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/2:0 7614 130776.888613 E 130779.871393 3.000000 74.656789 506 120 0.000000 74.656789 0.000000 0.000000 0 0 /\\n I kworker/2:2 7615 132312.142997 E 132315.133845 3.000000 314.031318 3275 120 0.000000 314.031318 0.000000 0.000000 0 0 /\\n I kworker/2:1 7894 125955.038632 E 125957.931027 3.000000 2.375222 15 120 0.000000 2.375222 0.000000 0.000000 0 0 /\\n I kworker/2:4 7895 125955.637846 E 125958.489624 3.000000 6.693093 25 120 0.000000 6.693093 0.000000 0.000000 0 0 /\\n I kworker/2:5 7896 126717.631718 E 126720.624702 3.000000 6.396287 23 120 0.000000 6.396287 0.000000 0.000000 0 0 /\\n I kworker/2:6 7897 125909.302306 E 125912.295314 3.000000 0.070675 4 120 0.000000 0.070675 0.000000 0.000000 0 0 /\\n I kworker/2:7 7898 125909.300451 E 125912.299094 3.000000 0.027822 2 120 0.000000 0.027822 0.000000 0.000000 0 0 /\\n I kworker/u16:1 8151 132312.133845 E 132315.118591 3.000000 38.971846 402 120 0.000000 38.971846 0.000000 0.000000 0 0 /\\n S python3 8817 3006.762924 E 3009.755620 3.000000 0.124033 5 120 0.000000 0.124033 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S python3 8901 3134.265179 E 3136.839711 3.000000 110.710113 14 120 0.000000 110.710113 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S sudo 9045 3188.702129 E 3191.695938 3.000000 3.636779 2 120 0.000000 3.636779 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#3, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 256502\\n .nr_uninterruptible : 20\\n .next_balance : 4296.145596\\n .curr->pid : 0\\n .clock : 1478480.901680\\n .clock_task : 1478480.901680\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[3]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3662.254803\\n .avg_vruntime : 3662.254803\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.916079\\n .se->vruntime : 15273.007388\\n .se->sum_exec_runtime : 3671.707545\\n .se->load.weight : 83229\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15273.007388\\n .avg_vruntime : 15273.007388\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.916079\\n .se->vruntime : 21789.903422\\n .se->sum_exec_runtime : 4512.886896\\n .se->load.weight : 84388\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1001.777666\\n .avg_vruntime : 1001.777666\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.735315\\n .se->vruntime : 82688.948159\\n .se->sum_exec_runtime : 1029.083879\\n .se->load.weight : 146842\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 41.193252\\n .avg_vruntime : 41.193252\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.424964\\n .se->vruntime : 82680.732906\\n .se->sum_exec_runtime : 43.230464\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 927.837471\\n .avg_vruntime : 927.837471\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478195.875935\\n .se->vruntime : 82689.007591\\n .se->sum_exec_runtime : 947.084372\\n .se->load.weight : 73938\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5227.815829\\n .avg_vruntime : 5227.815829\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478385.155884\\n .se->vruntime : 82689.184385\\n .se->sum_exec_runtime : 5593.066950\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/systemd-logind.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 127.805196\\n .avg_vruntime : 127.805196\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.010897\\n .se->vruntime : 82689.274136\\n .se->sum_exec_runtime : 128.992065\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice/systemd-oomd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 81.754192\\n .avg_vruntime : 81.754192\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 3\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 3\\n .tg_load_avg : 3\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478478.972826\\n .se->vruntime : 82689.473128\\n .se->sum_exec_runtime : 82.832209\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 82689.473128\\n .avg_vruntime : 82689.473128\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478478.972826\\n .se->vruntime : 113719.890915\\n .se->sum_exec_runtime : 25455.073783\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 21789.903422\\n .avg_vruntime : 21789.903422\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.916079\\n .se->vruntime : 113719.383503\\n .se->sum_exec_runtime : 6396.766655\\n .se->load.weight : 71115\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[3]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 113719.890915\\n .avg_vruntime : 113719.890915\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 3\\n .util_avg : 3\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[3]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 2.604232\\n .rt_runtime : 950.000000\\n\\ndl_rq[3]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/3 33 7886.138537 E 7889.102720 3.000000 0.348500 26 120 0.000000 0.348500 0.000000 0.000000 0 0 /\\n S idle_inject/3 34 -1.048518 E 0.451482 1.500000 0.001036 3 49 0.000000 0.001036 0.000000 0.000000 0 0 /\\n S migration/3 35 0.198781 E 0.948241 0.750000 182.581607 442 0 0.000000 182.581607 0.000000 0.000000 0 0 /\\n S ksoftirqd/3 36 113709.940756 E 113712.935989 3.000000 52.554754 1108 120 0.000000 52.554754 0.000000 0.000000 0 0 /\\n I kworker/3:0H 38 6.472894 E 6.507461 3.000000 0.011946 4 100 0.000000 0.011946 0.000000 0.000000 0 0 /\\n Ikworker/R-inet_ 64 -1.038883 E -1.004274 3.000000 0.009635 2 100 0.000000 0.009635 0.000000 0.000000 0 0 /\\n S kauditd 65 46475.465473 E 46478.440242 3.000000 2.812791 141 120 0.000000 2.812791 0.000000 0.000000 0 0 /\\n S khugepaged 74 112218.834350 E 112421.956696 3.000000 19.096034 374 139 0.000000 19.096034 0.000000 0.000000 0 0 /\\n Ikworker/R-kinte 75 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-kbloc 76 0.992154 E 0.957545 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-blkcg 77 0.992084 E 0.957475 3.000000 0.000070 2 100 0.000000 0.000070 0.000000 0.000000 0 0 /\\n Ikworker/R-tpm_d 82 0.481367 E 0.446758 3.000000 0.000111 2 100 0.000000 0.000111 0.000000 0.000000 0 0 /\\n I kworker/R-md 84 0.480619 E 0.446010 3.000000 0.000748 2 100 0.000000 0.000748 0.000000 0.000000 0 0 /\\n Ikworker/R-edac- 86 0.479971 E 0.445362 3.000000 0.000648 2 100 0.000000 0.000648 0.000000 0.000000 0 0 /\\n S watchdogd 88 0.469682 E 2.529619 3.000000 0.000699 2 49 0.000000 0.000699 0.000000 0.000000 0 0 /\\n Ikworker/R-kthro 93 0.358457 E 0.323888 3.000000 0.021180 2 100 0.000000 0.021180 0.000000 0.000000 0 0 /\\n S irq/127-pciehp 94 0.342701 E 2.655906 3.000000 0.020513 2 49 0.000000 0.020513 0.000000 0.000000 0 0 /\\n S hwrng 101 112059.818881 E 112062.466066 3.000000 60.099206 248 120 0.000000 60.099206 0.000000 0.000000 0 0 /\\n I kworker/3:1H 153 113223.082695 E 113223.117215 3.000000 29.800400 1876 100 0.000000 29.800400 0.000000 0.000000 0 0 /\\n I kworker/3:2 226 112194.537750 E 112197.534082 3.000000 158.762506 1876 120 0.000000 158.762506 0.000000 0.000000 0 0 /\\n Sirq/192-iwlwifi 534 4059.665296 E 4062.645526 3.000000 2014.704745 16403 49 0.000000 2014.704745 0.000000 0.000000 0 0 /\\n Sirq/196-iwlwifi 539 3926.018591 E 3929.015940 3.000000 86.604175 217 49 0.000000 86.604175 0.000000 0.000000 0 0 /\\n I kworker/R-ttm 576 4266.892470 E 4266.927070 3.000000 0.005129 2 100 0.000000 0.005129 0.000000 0.000000 0 0 /\\n S systemd-oomd 660 81.754192 E 84.555200 3.000000 1531.216645 1474 120 0.000000 1531.216645 0.000000 0.000000 0 0 /system.slice/systemd-oomd.service\\n S gdbus 938 6.914745 E 9.332271 3.000000 25.658172 104 120 0.000000 25.658172 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S cron 795 11.670507 E 14.583148 3.000000 11.549889 35 120 0.000000 11.549889 0.000000 0.000000 0 0 /system.slice/cron.service\\n Sgnome-remote-de 800 6.461804 E 9.080981 3.000000 30.145068 265 120 0.000000 30.145068 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S polkitd 812 41.193252 E 44.142504 3.000000 687.278784 1329 120 0.000000 687.278784 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S pool-spawner 922 3.894639 E 6.842135 3.000000 0.090432 2 120 0.000000 0.090432 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 831 206.525041 E 209.519124 3.000000 30.118582 233 120 0.000000 30.118582 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 852 310.199492 E 310.516321 3.000000 174.131223 492 120 0.000000 174.131223 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 853 2.078318 E 5.068150 3.000000 0.396308 18 120 0.000000 0.396308 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 859 -1.009569 E 1.951424 3.000000 0.039007 1 120 0.000000 0.039007 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S systemd-logind 842 127.805196 E 130.715445 3.000000 1465.290990 6145 120 0.000000 1465.290990 0.000000 0.000000 0 0 /system.slice/systemd-logind.service\\n S gmain 935 241.232179 E 244.133070 3.000000 63.938124 371 120 0.000000 63.938124 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S ModemManager 1073 9.455997 E 11.392804 3.000000 90.291248 409 120 0.000000 90.291248 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1117 -1.009201 E 1.951424 3.000000 0.039375 1 120 0.000000 0.039375 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1458 999.986736 E 1002.294081 3.000000 413.133689 6003 120 0.000000 413.133689 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1482 0.012894 E 2.894979 3.000000 0.583316 4 120 0.000000 0.583316 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gdbus 1496 0.233532 E 2.720526 3.000000 1.188965 22 120 0.000000 1.188965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S wireplumber 1515 9.144716 E 9.344452 3.000000 112.045348 651 109 0.000000 112.045348 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S module-rt 1528 7.387174 E 10.325290 3.000000 0.194691 7 120 0.000000 0.194691 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1538 7.325290 E 10.316534 3.000000 0.041734 2 120 0.000000 0.041734 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1518 2.669021 E 5.657668 3.000000 0.061989 3 120 0.000000 0.061989 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S fuse mainloop 1568 8.156596 E 11.144147 3.000000 0.100728 3 120 0.000000 0.100728 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gdbus 1561 8.265857 E 11.247889 3.000000 0.366731 9 120 0.000000 0.366731 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1598 1073.656645 E 1076.563714 3.000000 1.266993 17 120 0.000000 1.266993 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1607 1075.891715 E 1078.887620 3.000000 115.310420 179 120 0.000000 115.310420 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1610 1075.887620 E 1078.838870 3.000000 26.286938 188 120 0.000000 26.286938 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-:traceq0 3008 5.879336 E 210.308511 3.000000 0.040484 1 139 0.000000 0.040484 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-sh:gdrv0 3009 5.885425 E 8.879336 3.000000 0.006089 1 120 0.000000 0.006089 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 1681 0.987359 E 2.007769 3.000000 0.061217 2 120 0.000000 0.061217 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1664 927.837471 E 930.832670 3.000000 827.854202 46478 120 0.000000 827.854202 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2442 200.802238 E 203.083797 3.000000 2.686930 84 120 0.000000 2.686930 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-init 2511 9.958767 E 12.803820 3.000000 134.244882 1521 120 0.000000 134.244882 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2721 9.803820 E 12.658127 3.000000 13.769118 335 120 0.000000 13.769118 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2723 9.286568 E 12.104291 3.000000 10.516102 89 120 0.000000 10.516102 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2727 0.657300 E 2.325290 3.000000 0.078513 3 120 0.000000 0.078513 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S Xwaylan:disk$0 3264 278.898908 E 483.348085 3.000000 0.083880 3 139 0.000000 0.083880 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sat-spi2-registr 3034 320.892867 E 323.863419 3.000000 9.827853 77 120 0.000000 9.827853 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3084 396.608166 E 398.928697 3.000000 1.378050 9 120 0.000000 1.378050 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3104 50.860674 E 53.826398 3.000000 0.155648 6 120 0.000000 0.155648 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-rfkill 3114 1073.563714 E 1076.494702 3.000000 29.428370 317 120 0.000000 29.428370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3148 1073.532194 E 1076.286003 3.000000 66.525748 330 120 0.000000 66.525748 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3161 51.477948 E 54.430767 3.000000 0.086363 2 120 0.000000 0.086363 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3165 265.319650 E 268.242694 3.000000 4.804589 50 120 0.000000 4.804589 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sound 3155 264.524415 E 267.507911 3.000000 10.096889 65 120 0.000000 10.096889 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3200 264.748433 E 267.666962 3.000000 4.545875 44 120 0.000000 4.545875 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3173 52.876485 E 55.844305 3.000000 0.094693 4 120 0.000000 0.094693 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3195 53.525055 E 56.511106 3.000000 0.140273 3 120 0.000000 0.140273 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3212 262.457088 E 265.449831 3.000000 0.389984 12 120 0.000000 0.389984 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-printer 3290 687.615620 E 690.465261 3.000000 187.874291 30 120 0.000000 187.874291 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3339 700.168791 E 703.029139 3.000000 0.936467 13 120 0.000000 0.936467 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3351 699.316593 E 701.734734 3.000000 3.194350 33 120 0.000000 3.194350 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3355 311.731393 E 314.671777 3.000000 0.146965 3 120 0.000000 0.146965 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3356 408.298560 E 411.135610 3.000000 9.785534 67 120 0.000000 9.785534 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-dconf 3360 312.231880 E 315.209559 3.000000 3.710779 6 120 0.000000 3.710779 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3365 311.671777 E 314.666437 3.000000 0.056426 2 120 0.000000 0.056426 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3368 312.703029 E 315.657097 3.000000 0.439195 10 120 0.000000 0.439195 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3509 -1.026522 E 1.969433 3.000000 0.022054 3 120 0.000000 0.022054 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3511 3.665450 E 6.655609 3.000000 0.052600 3 120 0.000000 0.052600 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 3551 9.844973 E 12.792466 3.000000 0.052507 1 120 0.000000 0.052507 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S bash 3599 197.020590 E 197.487604 3.000000 67.673866 80 120 0.000000 67.673866 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S sshd 3669 24.119215 E 26.352417 3.000000 60.985253 32 120 0.000000 60.985253 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S pool-spawner 4748 11.609030 E 14.551046 3.000000 0.057984 1 120 0.000000 0.057984 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker 5100 224.686053 E 227.677039 3.000000 61.547451 14 120 0.000000 61.547451 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5110 365.721586 E 368.663382 3.000000 48.913089 47 120 0.000000 48.913089 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5127 268.080230 E 270.854937 3.000000 0.225293 1 120 0.000000 0.225293 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n Scontainerd-shim 5238 985.419247 E 988.376818 3.000000 79.206244 207 120 0.000000 79.206244 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5262 307.365255 E 310.358223 3.000000 2.509248 7 120 0.000000 2.509248 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S postgres 5289 1186.124794 E 1188.482746 3.000000 155.669199 247 120 0.000000 155.669199 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S docker-proxy 5393 441.075088 E 444.057442 3.000000 1.906891 4 120 0.000000 1.906891 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5397 441.007142 E 443.951633 3.000000 0.134457 6 120 0.000000 0.134457 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5420 990.286901 E 993.144477 3.000000 12.673759 720 120 0.000000 12.673759 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 8195 990.144477 E 991.948468 3.000000 10.134071 21 120 0.000000 10.134071 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5455 329.155687 E 332.140177 3.000000 0.106899 6 120 0.000000 0.106899 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7654 994.712073 E 996.798402 3.000000 17.787682 36 120 0.000000 17.787682 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5561 1.157627 E 4.068673 3.000000 14.650316 44 120 0.000000 14.650316 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5566 0.867397 E 3.800664 3.000000 6.451868 10 120 0.000000 6.451868 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5666 1455.901773 E 1455.931322 3.000000 52.537643 16 120 0.000000 52.537643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5692 1542.872428 E 1545.867503 3.000000 39.486389 14 120 0.000000 39.486389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6337 3770.130574 E 3772.832043 3.000000 1.045980 6 120 0.000000 1.045980 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6339 2749.264215 E 2752.131956 3.000000 10.760643 17 120 0.000000 10.760643 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6342 2748.954739 E 2751.740522 3.000000 9.140090 22 120 0.000000 9.140090 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5607 675.005069 E 677.994134 3.000000 108.505409 56 120 0.000000 108.505409 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5675 1497.517568 E 1500.507764 3.000000 53.995739 18 120 0.000000 53.995739 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5642 1261.164512 E 1264.157881 3.000000 21.195408 8 120 0.000000 21.195408 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5701 1573.282016 E 1576.275123 3.000000 54.439900 15 120 0.000000 54.439900 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6335 3769.832043 E 3772.073778 3.000000 3.802600 4 120 0.000000 3.802600 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5631 796.046325 E 798.991768 3.000000 40.045155 23 120 0.000000 40.045155 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5681 1527.879182 E 1529.909057 3.000000 33.967325 14 120 0.000000 33.967325 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5684 1530.679057 E 1533.672041 3.000000 36.744957 12 120 0.000000 36.744957 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5576 5227.815829 E 5230.735304 3.000000 7073.051397 11390 120 0.000000 7073.051397 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5711 1596.022219 E 1599.010783 3.000000 26.922198 10 120 0.000000 26.922198 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5712 1598.317683 E 1601.311774 3.000000 27.952471 10 120 0.000000 27.952471 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5713 1598.100775 E 1601.093750 3.000000 28.977268 10 120 0.000000 28.977268 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5716 1603.713181 E 1606.705277 3.000000 27.988249 8 120 0.000000 27.988249 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6340 3770.272623 E 3773.130574 3.000000 0.935232 6 120 0.000000 0.935232 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5648 1264.334911 E 1267.326576 3.000000 21.039304 8 120 0.000000 21.039304 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5649 1267.119289 E 1270.110336 3.000000 23.813972 11 120 0.000000 23.813972 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5652 1267.460598 E 1270.456344 3.000000 24.138886 11 120 0.000000 24.138886 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5718 1603.710384 E 1606.705277 3.000000 34.052954 13 120 0.000000 34.052954 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5621 1185.482746 E 1188.434789 3.000000 84.286378 839 120 0.000000 84.286378 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S gmain 7550 536.204417 E 539.164101 3.000000 38.510120 257 120 0.000000 38.510120 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/3:0 7622 111966.921262 E 111969.865145 3.000000 105.281622 1086 120 0.000000 105.281622 0.000000 0.000000 0 0 /\\n S postgres 8797 1184.987949 E 1187.682861 3.000000 3.303405 9 120 0.000000 3.303405 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/3:1 8808 113719.422358 E 113722.408938 3.000000 3.280941 117 120 0.000000 3.280941 0.000000 0.000000 0 0 /\\n S python3 8903 3652.886173 E 3655.886173 3.000000 110.716204 10 120 0.000000 110.716204 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 8819 1189.684445 E 1192.604503 3.000000 3.888162 16 120 0.000000 3.888162 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n\\ncpu#4, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 223688\\n .nr_uninterruptible : 185\\n .next_balance : 4296.145595\\n .curr->pid : 0\\n .clock : 1478480.902076\\n .clock_task : 1478480.902076\\n .avg_idle : 896718\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[4]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2809.454011\\n .avg_vruntime : 2809.454011\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.914495\\n .se->vruntime : 13807.250601\\n .se->sum_exec_runtime : 2817.296549\\n .se->load.weight : 82533\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 13807.250601\\n .avg_vruntime : 13807.250601\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.914495\\n .se->vruntime : 21574.153437\\n .se->sum_exec_runtime : 3141.800781\\n .se->load.weight : 8977\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5652.033695\\n .avg_vruntime : 5652.033695\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478432.376064\\n .se->vruntime : 84925.913420\\n .se->sum_exec_runtime : 6023.260421\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/avahi-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 98.018010\\n .avg_vruntime : 98.018010\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.198829\\n .se->vruntime : 84914.426245\\n .se->sum_exec_runtime : 99.218994\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 815.267003\\n .avg_vruntime : 815.267003\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.794481\\n .se->vruntime : 84925.382899\\n .se->sum_exec_runtime : 822.103205\\n .se->load.weight : 146507\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 884.709865\\n .avg_vruntime : 884.709865\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.071930\\n .se->vruntime : 84925.426979\\n .se->sum_exec_runtime : 921.782167\\n .se->load.weight : 146312\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 84925.913420\\n .avg_vruntime : 84925.913420\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478432.376064\\n .se->vruntime : 120680.739778\\n .se->sum_exec_runtime : 27259.077475\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[4]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 21574.153437\\n .avg_vruntime : 21574.153437\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.914495\\n .se->vruntime : 120679.849221\\n .se->sum_exec_runtime : 7094.053968\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 1\\n\\ncfs_rq[4]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 120680.739778\\n .avg_vruntime : 120680.739778\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 1\\n .util_avg : 1\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[4]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[4]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/4 39 8611.189859 E 8614.138975 3.000000 0.358588 26 120 0.000000 0.358588 0.000000 0.000000 0 0 /\\n S idle_inject/4 40 -1.048576 E 1.201424 2.250000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S migration/4 41 1.176891 E 3.426891 2.250000 179.673878 437 0 0.000000 179.673878 0.000000 0.000000 0 0 /\\n S ksoftirqd/4 42 120670.514890 E 120673.509937 3.000000 22.984901 943 120 0.000000 22.984901 0.000000 0.000000 0 0 /\\n I kworker/4:0 43 120679.883150 E 120682.867687 3.000000 355.547564 2637 120 0.000000 355.547564 0.000000 0.000000 0 0 /\\n I kworker/4:0H 44 132.163682 E 132.198197 3.000000 0.019668 4 100 0.000000 0.019668 0.000000 0.000000 0 0 /\\n Ikworker/R-ata_s 83 5.270300 E 5.304909 3.000000 0.000746 2 100 0.000000 0.000746 0.000000 0.000000 0 0 /\\n Ikworker/R-md_bi 85 5.270300 E 5.304909 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n Ikworker/R-devfr 87 5.273628 E 5.308237 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 0 0 /\\n S irq/128-pciehp 95 0.339759 E 2.659354 3.000000 0.006738 3 49 0.000000 0.006738 0.000000 0.000000 0 0 /\\n I kworker/4:1H 194 119329.789721 E 119329.822748 3.000000 13.170568 1014 100 0.000000 13.170568 0.000000 0.000000 0 0 /\\n Ikworker/R-cfg80 514 3339.240577 E 3339.275140 3.000000 0.012808 2 100 0.000000 0.012808 0.000000 0.000000 0 0 /\\n Sirq/197-iwlwifi 540 3926.376252 E 3929.374115 3.000000 19.222100 76 49 0.000000 19.222100 0.000000 0.000000 0 0 /\\n Sirq/201-iwlwifi 544 3926.622118 E 3929.620867 3.000000 0.136252 5 49 0.000000 0.136252 0.000000 0.000000 0 0 /\\n Ssystemd-timesyn 671 11.801273 E 13.596967 3.000000 75.626708 100 120 0.000000 75.626708 0.000000 0.000000 0 0 /system.slice/systemd-timesyncd.service\\n S pool-spawner 929 0.427240 E 3.421670 3.000000 0.182155 7 120 0.000000 0.182155 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S avahi-daemon 793 98.018010 E 100.946563 3.000000 750.361615 2659 120 0.000000 750.361615 0.000000 0.000000 0 0 /system.slice/avahi-daemon.service\\n S gdbus 918 4.224344 E 6.070337 3.000000 17.705503 95 120 0.000000 17.705503 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S pool-spawner 1042 1.501824 E 4.479627 3.000000 0.055072 2 120 0.000000 0.055072 0.000000 0.000000 0 0 /system.slice/polkit.service\\n S sysbox-mgr 855 1368.256212 E 1371.247922 3.000000 262.688287 3401 120 0.000000 262.688287 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gdbus 939 985.787706 E 987.437247 3.000000 635.498454 3964 120 0.000000 635.498454 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S wpa_supplicant 901 227.478217 E 230.442320 3.000000 393.948523 695 120 0.000000 393.948523 0.000000 0.000000 0 0 /system.slice/wpa_supplicant.service\\n S gmain 1094 3.946236 E 6.930995 3.000000 0.050521 2 120 0.000000 0.050521 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S gmain 1093 3.276503 E 6.269558 3.000000 0.066470 2 120 0.000000 0.066470 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S containerd 1477 883.940470 E 886.925655 3.000000 375.562752 6652 120 0.000000 375.562752 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1490 884.709865 E 887.706702 3.000000 312.543770 6564 120 0.000000 312.543770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S module-rt 1532 0.548481 E 3.506291 3.000000 0.195304 7 120 0.000000 0.195304 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pw-data-loop 1547 0.212741 E 3.208152 3.000000 0.019168 3 79 0.000000 0.019168 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1519 -1.009572 E 1.951424 3.000000 0.039004 1 120 0.000000 0.039004 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1535 10.910098 E 14.575757 3.000000 65.949337 133 121 0.000000 65.949337 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S fuse mainloop 1563 0.636104 E 3.602310 3.000000 0.327847 4 120 0.000000 0.327847 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S gmain 1599 2293.743972 E 2296.428061 3.000000 65.420210 390 120 0.000000 65.420210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1609 2293.129292 E 2296.108779 3.000000 20.607242 181 120 0.000000 20.607242 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 1682 -1.007916 E 1.951424 3.000000 0.040660 1 120 0.000000 0.040660 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S gdbus 1683 15.181555 E 17.935819 3.000000 72.211517 376 120 0.000000 72.211517 0.000000 0.000000 0 0 /system.slice/cups-browsed.service\\n S dockerd 1674 809.265438 E 811.222640 3.000000 226.669395 3509 120 0.000000 226.669395 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2443 284.936640 E 287.916427 3.000000 35.663598 1701 120 0.000000 35.663598 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 2401 864.156389 E 867.017379 3.000000 43.587620 162 120 0.000000 43.587620 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2402 44.216112 E 47.201754 3.000000 0.083347 6 120 0.000000 0.083347 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2420 44.291955 E 47.265037 3.000000 1.429798 32 120 0.000000 1.429798 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 3027 494.594461 E 497.580076 3.000000 1.096695 37 120 0.000000 1.096695 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dbus-daemon 3028 871.982914 E 874.971379 3.000000 8.820633 75 120 0.000000 8.820633 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3040 23.893471 E 26.854493 3.000000 0.075685 2 120 0.000000 0.075685 0.000000 0.000000 0 0 /system.slice/colord.service\\n S pool-spawner 3070 84.801335 E 87.763845 3.000000 0.076250 2 120 0.000000 0.076250 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3071 84.763845 E 87.725839 3.000000 0.038006 1 120 0.000000 0.038006 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3086 585.187130 E 587.886236 3.000000 0.803427 9 120 0.000000 0.803427 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3113 121.997580 E 124.912918 3.000000 1.251295 53 120 0.000000 1.251295 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3120 104.510615 E 107.420360 3.000000 0.090255 1 120 0.000000 0.090255 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3132 104.942110 E 107.902899 3.000000 0.039211 1 120 0.000000 0.039211 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3147 432.291787 E 435.215403 3.000000 15.128436 45 120 0.000000 15.128436 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3199 432.208898 E 435.123843 3.000000 4.825108 55 120 0.000000 4.825108 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-power 3172 934.048735 E 936.983961 3.000000 531.922828 648 120 0.000000 531.922828 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gjs 3333 961.492427 E 962.754198 3.000000 64.931215 51 120 0.000000 64.931215 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3388 494.502646 E 497.479395 3.000000 0.383639 13 120 0.000000 0.383639 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x1:disk$0 3384 493.429311 E 698.009560 3.000000 0.064318 1 139 0.000000 0.064318 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3391 494.823326 E 497.820442 3.000000 0.047210 2 120 0.000000 0.047210 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S (sd-pam) 3453 0.638992 E 1.951424 3.000000 0.409584 1 120 0.000000 0.409584 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/init.scope\\n S module-rt 3508 16.982589 E 19.952500 3.000000 0.177132 8 120 0.000000 0.177132 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3512 16.731938 E 19.727789 3.000000 0.017591 3 120 0.000000 0.017591 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3519 17.278259 E 20.249377 3.000000 0.054962 2 120 0.000000 0.054962 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S dbus-daemon 3501 17.501364 E 20.425841 3.000000 9.308695 60 120 0.000000 9.308695 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S sshd 3542 243.653225 E 246.637664 3.000000 200.602863 791 120 0.000000 200.602863 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S gmain 3547 17.425841 E 20.278259 3.000000 0.147582 1 120 0.000000 0.147582 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3596 0.171413 E 2.703804 3.000000 0.124783 1 120 0.000000 0.124783 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gdbus 4750 0.089371 E 2.823358 3.000000 0.503147 15 120 0.000000 0.503147 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S timer 4751 0.479745 E 2.495817 3.000000 0.024438 1 120 0.000000 0.024438 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n S docker-compose 5122 196.344791 E 199.329849 3.000000 63.034858 39 120 0.000000 63.034858 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5123 250.166535 E 252.988732 3.000000 61.086725 1510 120 0.000000 61.086725 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5208 810.182613 E 813.178727 3.000000 34.767879 2917 120 0.000000 34.767879 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5215 805.308683 E 808.254718 3.000000 2.583048 56 120 0.000000 2.583048 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5242 260.021354 E 262.990538 3.000000 1.439470 33 120 0.000000 1.439470 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5267 249.428702 E 252.410406 3.000000 0.050853 2 120 0.000000 0.050853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7611 637.230743 E 640.230743 3.000000 25.728522 29 120 0.000000 25.728522 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Sjemalloc_bg_thd 5374 138.716842 E 141.619686 3.000000 0.588916 10 120 0.000000 0.588916 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n Sjemalloc_bg_thd 5375 0.560167 E 2.423287 3.000000 0.016546 1 120 0.000000 0.016546 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 6328 804.791363 E 807.788758 3.000000 2.258945 49 120 0.000000 2.258945 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 6329 804.212273 E 807.184068 3.000000 7.340909 47 120 0.000000 7.340909 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5407 291.517519 E 294.508545 3.000000 0.110756 6 120 0.000000 0.110756 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5428 264.775703 E 267.763855 3.000000 0.397285 12 120 0.000000 0.397285 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5429 871.953719 E 874.841677 3.000000 69.647349 193 120 0.000000 69.647349 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5460 875.173380 E 878.066694 3.000000 75.379853 208 120 0.000000 75.379853 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5479 5.910874 E 8.239062 3.000000 24.294118 29 120 0.000000 24.294118 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S nginx 5564 5.960558 E 8.911409 3.000000 0.756076 9 120 0.000000 0.756076 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 6352 3779.306625 E 3782.026102 3.000000 0.963905 5 120 0.000000 0.963905 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5693 2182.334914 E 2185.327152 3.000000 38.955454 14 120 0.000000 38.955454 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5572 5652.033695 E 5654.984787 3.000000 7446.566197 11317 120 0.000000 7446.566197 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5670 2131.268004 E 2134.260351 3.000000 36.996673 11 120 0.000000 36.996673 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5671 2135.196688 E 2138.196688 3.000000 40.909890 14 120 0.000000 40.909890 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5640 1921.565079 E 1924.559625 3.000000 28.984572 12 120 0.000000 28.984572 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5644 1921.963150 E 1922.987767 3.000000 52.350338 20 120 0.000000 52.350338 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5696 2197.393849 E 2200.390282 3.000000 31.127998 15 120 0.000000 31.127998 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5699 2197.192376 E 2200.184357 3.000000 30.902525 11 120 0.000000 30.902525 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6949 3855.962894 E 3858.538841 3.000000 1.387175 6 120 0.000000 1.387175 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5574 5651.984787 E 5654.887518 3.000000 7299.976389 11972 120 0.000000 7299.976389 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5632 1326.785621 E 1326.892101 3.000000 100.083757 4 120 0.000000 100.083757 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5658 1985.657062 E 1988.647654 3.000000 37.909073 12 120 0.000000 37.909073 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5660 1989.692299 E 1989.732082 3.000000 55.543120 15 120 0.000000 55.543120 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5719 2242.781412 E 2242.811558 3.000000 49.489219 18 120 0.000000 49.489219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6341 3778.491564 E 3778.505314 3.000000 3.051447 4 120 0.000000 3.051447 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n I kworker/4:2 7634 117310.797682 E 117313.756868 3.000000 0.551763 21 120 0.000000 0.551763 0.000000 0.000000 0 0 /\\n I kworker/4:1 8473 119347.123982 E 119350.098711 3.000000 33.037866 124 120 0.000000 33.037866 0.000000 0.000000 0 0 /\\n I kworker/4:3 8684 117293.555876 E 117296.535855 3.000000 0.164195 2 120 0.000000 0.164195 0.000000 0.000000 0 0 /\\n I kworker/u16:3 8736 120552.436038 E 120555.431040 3.000000 24.263332 229 120 0.000000 24.263332 0.000000 0.000000 0 0 /\\n S postgres 8809 771.351816 E 774.116295 3.000000 491.539249 38 120 0.000000 491.539249 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 8902 2787.226343 E 2789.757871 3.000000 110.730022 8 120 0.000000 110.730022 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#5, 2400.000 MHz\\n .nr_running : 1\\n .nr_switches : 263898\\n .nr_uninterruptible : -10\\n .next_balance : 4296.145627\\n .curr->pid : 9047\\n .clock : 1478481.870386\\n .clock_task : 1478481.870386\\n .avg_idle : 37051\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[5]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 4801.488441\\n .avg_vruntime : 4801.488441\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 1048576\\n .load_avg : 982\\n .runnable_avg : 678\\n .util_avg : 678\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 986\\n .tg_load_avg : 2419\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478481.870386\\n .se->vruntime : 16453.522559\\n .se->sum_exec_runtime : 4809.102348\\n .se->load.weight : 437013\\n .se->avg.load_avg : 408\\n .se->avg.util_avg : 678\\n .se->avg.runnable_avg : 678\\n\\ncfs_rq[5]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 16453.522559\\n .avg_vruntime : 16453.522559\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 437013\\n .load_avg : 409\\n .runnable_avg : 678\\n .util_avg : 678\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 396\\n .tg_load_avg : 790\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478481.870386\\n .se->vruntime : 24080.352885\\n .se->sum_exec_runtime : 5198.071322\\n .se->load.weight : 544748\\n .se->avg.load_avg : 509\\n .se->avg.util_avg : 678\\n .se->avg.runnable_avg : 678\\n\\ncfs_rq[5]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 11358.656161\\n .avg_vruntime : 11358.656161\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478388.031195\\n .se->vruntime : 82685.805197\\n .se->sum_exec_runtime : 11936.645337\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1862.930457\\n .avg_vruntime : 1862.930457\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478454.652585\\n .se->vruntime : 82685.883291\\n .se->sum_exec_runtime : 1867.249696\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 835.081627\\n .avg_vruntime : 835.081627\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.076598\\n .se->vruntime : 82685.178921\\n .se->sum_exec_runtime : 872.837025\\n .se->load.weight : 115637\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/dbus.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 589.654485\\n .avg_vruntime : 589.654485\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.176331\\n .se->vruntime : 82682.380175\\n .se->sum_exec_runtime : 591.022607\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 896.091864\\n .avg_vruntime : 896.091864\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478193.755564\\n .se->vruntime : 82685.098770\\n .se->sum_exec_runtime : 920.442075\\n .se->load.weight : 39687\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice/systemd-journald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 97.974746\\n .avg_vruntime : 97.974746\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 2\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 2\\n .tg_load_avg : 2\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.303639\\n .se->vruntime : 82686.176714\\n .se->sum_exec_runtime : 123.909121\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[5]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 82686.176714\\n .avg_vruntime : 82686.176714\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 2\\n .util_avg : 2\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.303639\\n .se->vruntime : 121292.259207\\n .se->sum_exec_runtime : 32131.976477\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 2\\n .se->avg.runnable_avg : 2\\n\\ncfs_rq[5]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 24080.352885\\n .avg_vruntime : 24080.352885\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 544748\\n .load_avg : 510\\n .runnable_avg : 678\\n .util_avg : 678\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 492\\n .tg_load_avg : 851\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478481.870386\\n .se->vruntime : 121347.603145\\n .se->sum_exec_runtime : 7811.507545\\n .se->load.weight : 625611\\n .se->avg.load_avg : 585\\n .se->avg.util_avg : 678\\n .se->avg.runnable_avg : 678\\n\\ncfs_rq[5]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 121347.603145\\n .avg_vruntime : 121347.603145\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 1\\n .h_nr_running : 1\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 625611\\n .load_avg : 586\\n .runnable_avg : 681\\n .util_avg : 681\\n .util_est : 684\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[5]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[5]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/5 45 6999.749005 E 7002.677723 3.000000 0.271587 26 120 0.000000 0.271587 0.000000 0.000000 0 0 /\\n S idle_inject/5 46 -1.043636 E 1.204967 2.250000 0.004272 3 49 0.000000 0.004272 0.000000 0.000000 0 0 /\\n S migration/5 47 3.168235 E 5.417506 2.250000 181.592847 444 0 0.000000 181.592847 0.000000 0.000000 0 0 /\\n S ksoftirqd/5 48 121291.040566 E 121294.031155 3.000000 35.804974 1491 120 0.000000 35.804974 0.000000 0.000000 0 0 /\\n I kworker/5:0H 50 785.846494 E 785.880922 3.000000 0.029057 4 100 0.000000 0.029057 0.000000 0.000000 0 0 /\\n I kworker/5:1H 90 120112.253119 E 120112.287677 3.000000 10.646119 498 100 0.000000 10.646119 0.000000 0.000000 0 0 /\\n S irq/129-pciehp 96 0.336759 E 2.662268 3.000000 0.006014 3 49 0.000000 0.006014 0.000000 0.000000 0 0 /\\n Ikworker/R-acpi_ 100 803.615043 E 803.649645 3.000000 0.003136 2 100 0.000000 0.003136 0.000000 0.000000 0 0 /\\n I kworker/R-mld 103 822.822143 E 822.856734 3.000000 0.020268 2 100 0.000000 0.020268 0.000000 0.000000 0 0 /\\n Ikworker/R-ipv6_ 105 822.824530 E 822.859136 3.000000 0.002654 2 100 0.000000 0.002654 0.000000 0.000000 0 0 /\\n Ikworker/R-kstrp 112 825.212532 E 825.247134 3.000000 0.002925 2 100 0.000000 0.002925 0.000000 0.000000 0 0 /\\n I kworker/5:3 129 117769.318594 E 117772.202855 3.000000 235.775249 2391 120 0.000000 235.775249 0.000000 0.000000 0 0 /\\n Sirq/173-FRMW000 225 1210.147450 E 1213.127987 3.000000 0.350809 4 49 0.000000 0.350809 0.000000 0.000000 0 0 /\\n Sirq/174-PIXA385 227 1218.791465 E 1221.760797 3.000000 0.479717 4 49 0.000000 0.479717 0.000000 0.000000 0 0 /\\n Ssystemd-journal 315 97.974746 E 100.314873 3.000000 857.902450 2209 119 0.000000 857.902450 0.000000 0.000000 0 0 /system.slice/systemd-journald.service\\n S psimon 395 1769.940955 E 1772.934339 3.000000 0.031393 2 98 0.000000 0.031393 0.000000 0.000000 0 0 /\\n Sirq/198-iwlwifi 541 3741.717084 E 3744.716044 3.000000 11.549479 57 49 0.000000 11.549479 0.000000 0.000000 0 0 /\\n Ssystemd-resolve 665 141.503785 E 142.553853 3.000000 959.627251 1286 120 0.000000 959.627251 0.000000 0.000000 0 0 /system.slice/systemd-resolved.service\\n S dbus-daemon 796 589.654485 E 592.373915 3.000000 4178.779460 7853 120 0.000000 4178.779460 0.000000 0.000000 0 0 /system.slice/dbus.service\\n S pool-spawner 917 0.598568 E 2.374275 3.000000 0.139307 3 120 0.000000 0.139307 0.000000 0.000000 0 0 /system.slice/gnome-remote-desktop.service\\n S snapd 2921 150.000733 E 153.000733 3.000000 139.295594 243 120 0.000000 139.295594 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2924 179.219846 E 182.205093 3.000000 189.662824 222 120 0.000000 189.662824 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gmain 953 0.274092 E 3.243919 3.000000 0.030173 1 120 0.000000 0.030173 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 858 3.421352 E 6.394871 3.000000 1.493133 34 120 0.000000 1.493133 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S pool-spawner 877 0.968110 E 1.951424 3.000000 0.080466 1 120 0.000000 0.080466 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gdbus 888 35.909079 E 38.365218 3.000000 26.761403 424 120 0.000000 26.761403 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 1096 5.835716 E 8.797854 3.000000 0.070490 2 120 0.000000 0.070490 0.000000 0.000000 0 0 /system.slice/bolt.service\\n S gdbus 1108 28.360887 E 31.300470 3.000000 32.246881 160 120 0.000000 32.246881 0.000000 0.000000 0 0 /system.slice/upower.service\\n S sysbox-fs 1113 1.961790 E 4.958126 3.000000 10.058361 153 120 0.000000 10.058361 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sysbox-fs 1115 1.948170 E 4.912969 3.000000 0.190242 20 120 0.000000 0.190242 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S containerd 1447 2.681121 E 5.678513 3.000000 22.987360 343 120 0.000000 22.987360 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 1505 835.081627 E 838.077146 3.000000 289.580231 7114 120 0.000000 289.580231 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gdbus 1485 3.989182 E 6.948338 3.000000 16.521431 131 120 0.000000 16.521431 0.000000 0.000000 0 0 /system.slice/gdm.service\\n S gmain 1494 2.779321 E 5.771975 3.000000 0.065744 3 120 0.000000 0.065744 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire-pulse 1516 26.233418 E 26.485480 3.000000 19.482467 71 109 0.000000 19.482467 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1537 1837.374618 E 1839.196926 3.000000 141.754506 780 120 0.000000 141.754506 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 1557 26.114410 E 28.921546 3.000000 4.480217 9 120 0.000000 4.480217 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1606 1838.498828 E 1841.491391 3.000000 20.057730 182 120 0.000000 20.057730 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1657 171.907138 E 174.896341 3.000000 206.971759 2083 120 0.000000 206.971759 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1669 344.620239 E 347.584650 3.000000 69.767271 2073 120 0.000000 69.767271 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2394 356.668054 E 359.629743 3.000000 47.946204 1790 120 0.000000 47.946204 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2525 895.636665 E 897.792822 3.000000 212.883401 4620 120 0.000000 212.883401 0.000000 0.000000 0 0 /system.slice/docker.service\\n S buildkitd 2817 0.969895 E 2.006035 3.000000 0.078681 2 120 0.000000 0.078681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S pool-spawner 3023 33.403610 E 36.375096 3.000000 0.062687 2 120 0.000000 0.062687 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3036 49.145973 E 52.105602 3.000000 0.040371 1 120 0.000000 0.040371 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sxdg-permission- 3069 409.720330 E 411.795486 3.000000 3.645960 9 120 0.000000 3.645960 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3087 923.987178 E 926.920563 3.000000 0.691954 9 120 0.000000 0.691954 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3102 260.315442 E 263.308450 3.000000 0.043178 2 120 0.000000 0.043178 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3125 271.161595 E 274.095199 3.000000 0.721540 8 120 0.000000 0.721540 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3134 695.253497 E 698.160802 3.000000 18.015111 51 120 0.000000 18.015111 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3142 271.415232 E 274.408854 3.000000 0.052239 2 120 0.000000 0.052239 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3144 283.234823 E 286.195976 3.000000 0.156948 5 120 0.000000 0.156948 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3160 274.593574 E 277.561112 3.000000 0.032462 1 120 0.000000 0.032462 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3205 694.073828 E 697.059396 3.000000 0.539966 11 120 0.000000 0.539966 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3190 291.047172 E 294.041558 3.000000 0.069455 3 120 0.000000 0.069455 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3191 291.082083 E 294.047172 3.000000 0.064373 2 120 0.000000 0.064373 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3171 277.903854 E 280.871361 3.000000 0.032493 1 120 0.000000 0.032493 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3208 289.768671 E 292.723596 3.000000 0.045075 1 120 0.000000 0.045075 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3341 1268.500237 E 1271.417686 3.000000 1.040132 11 120 0.000000 1.040132 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3347 710.823685 E 713.793865 3.000000 0.043738 2 120 0.000000 0.043738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3348 710.793865 E 713.767416 3.000000 0.026449 1 120 0.000000 0.026449 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-daemon 3346 949.332769 E 952.288245 3.000000 42.959636 73 120 0.000000 42.959636 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11 3362 923.587585 E 926.310829 3.000000 45.522706 130 120 0.000000 45.522706 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3371 726.850047 E 729.799574 3.000000 0.076524 2 120 0.000000 0.076524 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sibus-engine-sim 3378 728.885393 E 731.863437 3.000000 4.625539 14 120 0.000000 4.625539 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pw-data-loop 3513 1.729229 E 4.725188 3.000000 0.034825 5 120 0.000000 0.034825 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S wireplumber 3472 11.462644 E 13.755284 3.000000 40.504423 63 120 0.000000 40.504423 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3555 8.358478 E 11.299358 3.000000 0.319715 3 120 0.000000 0.319715 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3550 7.088145 E 10.059456 3.000000 0.088092 2 120 0.000000 0.088092 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3553 7.326957 E 10.315957 3.000000 0.238812 7 120 0.000000 0.238812 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fusermount3 3556 8.289925 E 10.425022 3.000000 0.864903 1 120 0.000000 0.864903 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Ssnapd-desktop-i 3594 12.810910 E 15.645251 3.000000 16.524009 26 120 0.000000 16.524009 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S gmain 3597 12.645251 E 15.600431 3.000000 0.044820 1 120 0.000000 0.044820 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S sshd 3711 4765.617366 E 4767.955237 3.000000 4222.197256 12339 120 0.000000 4222.197256 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S docker 5102 107.870447 E 110.830169 3.000000 5.213757 31 120 0.000000 5.213757 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5104 76.789473 E 79.661122 3.000000 0.935648 8 120 0.000000 0.935648 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker 5105 76.471056 E 79.122576 3.000000 0.348480 1 120 0.000000 0.348480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5139 130.459046 E 133.050501 3.000000 85.862257 410 120 0.000000 85.862257 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5212 345.929760 E 348.904077 3.000000 0.025683 1 120 0.000000 0.025683 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5221 346.057686 E 349.014905 3.000000 0.042781 1 120 0.000000 0.042781 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5237 817.591944 E 820.436804 3.000000 7.450117 58 120 0.000000 7.450117 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5239 318.088842 E 321.070226 3.000000 0.081546 6 120 0.000000 0.081546 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5270 817.436804 E 820.329571 3.000000 74.217333 174 120 0.000000 74.217333 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 5396 393.299699 E 396.076725 3.000000 0.339736 7 120 0.000000 0.339736 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5401 887.629550 E 890.618610 3.000000 1.097358 27 120 0.000000 1.097358 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5405 356.859342 E 359.855343 3.000000 1.795184 14 120 0.000000 1.795184 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5409 356.858058 E 359.853277 3.000000 0.086967 4 120 0.000000 0.086967 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5410 356.739028 E 359.714574 3.000000 0.024454 1 120 0.000000 0.024454 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5419 323.414770 E 326.408620 3.000000 2.963462 8 120 0.000000 2.963462 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5421 323.427369 E 326.411167 3.000000 0.463860 15 120 0.000000 0.463860 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5423 821.583660 E 824.425824 3.000000 80.094428 177 120 0.000000 80.094428 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5454 327.251540 E 330.239598 3.000000 0.078194 9 120 0.000000 0.078194 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5539 821.425824 E 823.243774 3.000000 64.618765 165 120 0.000000 64.618765 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S nginx 5563 4.567941 E 7.480591 3.000000 6.436335 18 120 0.000000 6.436335 0.000000 0.000000 0 0 /system.slice/docker-2c89949a5d91b70e4554c66dc75d598859a44d6462c59ead4c58f1228cf737cf.scope\\n S gunicorn 5614 1204.439296 E 1207.439296 3.000000 25.601066 7 120 0.000000 25.601066 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5617 1206.891768 E 1209.822325 3.000000 28.034014 9 120 0.000000 28.034014 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5619 1208.780352 E 1210.861964 3.000000 29.914255 9 120 0.000000 29.914255 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5608 1185.932477 E 1188.922565 3.000000 37.946501 14 120 0.000000 37.946501 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5672 1995.255322 E 1995.274003 3.000000 73.850813 20 120 0.000000 73.850813 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5641 1768.202285 E 1771.193258 3.000000 54.929183 14 120 0.000000 54.929183 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5695 2071.651562 E 2071.688139 3.000000 32.936801 11 120 0.000000 32.936801 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6951 3276.159243 E 3279.007946 3.000000 6.751696 107 120 0.000000 6.751696 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5637 1539.174198 E 1540.010364 3.000000 38.326835 12 120 0.000000 38.326835 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5638 1538.793722 E 1540.152260 3.000000 37.736919 12 120 0.000000 37.736919 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5709 2084.464804 E 2087.450225 3.000000 29.991031 9 120 0.000000 29.991031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 8794 11043.388259 E 11046.241027 3.000000 8.375659 143 120 0.000000 8.375659 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5654 2046.336174 E 2049.326048 3.000000 38.012486 12 120 0.000000 38.012486 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5657 1803.954929 E 1805.989704 3.000000 38.959841 12 120 0.000000 38.959841 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5659 1807.015254 E 1809.026693 3.000000 42.007189 11 120 0.000000 42.007189 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5714 2109.823685 E 2109.851682 3.000000 36.490008 12 120 0.000000 36.490008 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5577 11358.656161 E 11361.593699 3.000000 7063.469321 11902 120 0.000000 7063.469321 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6345 3187.769027 E 3190.605767 3.000000 11.445595 34 120 0.000000 11.445595 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 6359 117.162354 E 120.115087 3.000000 6.642134 19 120 0.000000 6.642134 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6361 28.804050 E 31.622006 3.000000 6.682534 15 120 0.000000 6.682534 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n I kworker/u17:1 7565 108539.619300 E 108539.653039 3.000000 566.174467 8892 100 0.000000 566.174467 0.000000 0.000000 0 0 /\\n I kworker/5:1 7621 114289.159029 E 114292.089967 3.000000 0.298700 8 120 0.000000 0.298700 0.000000 0.000000 0 0 /\\n I kworker/u16:0 8019 118945.026714 E 118947.984598 3.000000 18.875506 174 120 0.000000 18.875506 0.000000 0.000000 0 0 /\\n I kworker/5:0 8172 121291.306832 E 121294.299597 3.000000 52.871558 296 120 0.000000 52.871558 0.000000 0.000000 0 0 /\\n I kworker/5:2 8452 114289.191206 E 114292.174286 3.000000 0.199700 4 120 0.000000 0.199700 0.000000 0.000000 0 0 /\\n S python3 8904 4750.129192 E 4752.656580 3.000000 110.689873 11 120 0.000000 110.689873 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n S postgres 8820 158.945734 E 161.911772 3.000000 3.852390 14 120 0.000000 3.852390 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n>R python3 9047 4802.488605 E 4802.976716 3.000000 26.928340 24 120 0.000000 26.928340 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#6, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 238400\\n .nr_uninterruptible : 118\\n .next_balance : 4296.145595\\n .curr->pid : 0\\n .clock : 1478482.896397\\n .clock_task : 1478482.896397\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[6]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3794.155518\\n .avg_vruntime : 3794.155518\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 2332\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478428.472978\\n .se->vruntime : 15076.536406\\n .se->sum_exec_runtime : 3800.522221\\n .se->load.weight : 1043564\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-128.slice/session-c1.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2309.454607\\n .avg_vruntime : 2309.454607\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478206.552511\\n .se->vruntime : 3842.684658\\n .se->sum_exec_runtime : 2343.647473\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-128.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 3842.684658\\n .avg_vruntime : 3842.684658\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478206.552511\\n .se->vruntime : 22630.521343\\n .se->sum_exec_runtime : 2459.070248\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 1380.217883\\n .avg_vruntime : 1380.217883\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478465.714635\\n .se->vruntime : 88073.692903\\n .se->sum_exec_runtime : 1382.950926\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/polkit.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 149.204574\\n .avg_vruntime : 149.204574\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478103.944283\\n .se->vruntime : 88062.748502\\n .se->sum_exec_runtime : 151.607626\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/thermald.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 62.722879\\n .avg_vruntime : 62.722879\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478115.398083\\n .se->vruntime : 88063.411663\\n .se->sum_exec_runtime : 64.627699\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 9775.679860\\n .avg_vruntime : 9775.679860\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478456.464826\\n .se->vruntime : 88073.673466\\n .se->sum_exec_runtime : 10331.768927\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5847.475004\\n .avg_vruntime : 5847.475004\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478200.424989\\n .se->vruntime : 88073.464958\\n .se->sum_exec_runtime : 5848.543123\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 746.451903\\n .avg_vruntime : 746.451903\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478192.139333\\n .se->vruntime : 88072.195202\\n .se->sum_exec_runtime : 758.280811\\n .se->load.weight : 161319\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 768.241420\\n .avg_vruntime : 768.241420\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.023932\\n .se->vruntime : 88073.137740\\n .se->sum_exec_runtime : 792.973788\\n .se->load.weight : 166634\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice/rsyslog.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 69.621641\\n .avg_vruntime : 69.621641\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.329385\\n .se->vruntime : 88073.563436\\n .se->sum_exec_runtime : 71.188951\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 88073.692903\\n .avg_vruntime : 88073.692903\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478465.714635\\n .se->vruntime : 123822.853950\\n .se->sum_exec_runtime : 33162.227815\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 15076.536406\\n .avg_vruntime : 15076.536406\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 778\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478428.472978\\n .se->vruntime : 22873.449179\\n .se->sum_exec_runtime : 4079.474612\\n .se->load.weight : 630819\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 22873.449179\\n .avg_vruntime : 22873.449179\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 846\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478428.472978\\n .se->vruntime : 123822.654523\\n .se->sum_exec_runtime : 6915.132659\\n .se->load.weight : 490510\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[6]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 123822.853950\\n .avg_vruntime : 123822.853950\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 2\\n .runnable_avg : 2\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[6]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[6]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S kthreadd 2 121461.503189 E 121464.273977 3.000000 10.456211 243 120 0.000000 10.456211 0.000000 0.000000 0 0 /\\n S cpuhp/6 51 8615.222785 E 8618.158454 3.000000 0.252486 26 120 0.000000 0.252486 0.000000 0.000000 0 0 /\\n S idle_inject/6 52 -1.048596 E 1.201404 2.250000 0.001435 3 49 0.000000 0.001435 0.000000 0.000000 0 0 /\\n S migration/6 53 3.285100 E 5.534388 2.250000 182.220148 442 0 0.000000 182.220148 0.000000 0.000000 0 0 /\\n S ksoftirqd/6 54 123694.499959 E 123697.359757 3.000000 29.433753 817 120 0.000000 29.433753 0.000000 0.000000 0 0 /\\n I kworker/6:0H 56 122009.125190 E 122009.159403 3.000000 8.643178 498 100 0.000000 8.643178 0.000000 0.000000 0 0 /\\n S irq/130-pciehp 97 0.333820 E 2.665268 3.000000 0.005759 3 49 0.000000 0.005759 0.000000 0.000000 0 0 /\\n I kworker/6:1H 104 0.901750 E 0.936338 3.000000 0.024295 2 100 0.000000 0.024295 0.000000 0.000000 0 0 /\\n Ikworker/R-ext4- 265 715.149068 E 715.183650 3.000000 0.016782 2 100 0.000000 0.016782 0.000000 0.000000 0 0 /\\n I kworker/u16:5 423 119530.453004 E 119533.175963 3.000000 450.396024 7169 120 0.000000 450.396024 0.000000 0.000000 0 0 /\\n Sirq/199-iwlwifi 542 3741.720024 E 3744.718960 3.000000 5.509304 53 49 0.000000 5.509304 0.000000 0.000000 0 0 /\\n Siio-sensor-prox 804 51.794222 E 54.650306 3.000000 342.582748 667 120 0.000000 342.582748 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S pool-spawner 931 3.995045 E 6.943176 3.000000 0.051869 1 120 0.000000 0.051869 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n S snapd 849 447.244801 E 450.239176 3.000000 363.295466 17539 120 0.000000 363.295466 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 1045 246.848037 E 249.653279 3.000000 94.409312 356 120 0.000000 94.409312 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S snapd 2920 446.948127 E 449.920769 3.000000 87.973430 250 120 0.000000 87.973430 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S gdbus 958 9.238449 E 12.208952 3.000000 0.475075 10 120 0.000000 0.475075 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 851 1380.217883 E 1383.198446 3.000000 4287.827284 58854 120 0.000000 4287.827284 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 949 3.796978 E 6.673936 3.000000 0.123042 1 120 0.000000 0.123042 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 951 1380.198446 E 1383.186284 3.000000 2752.953346 33921 120 0.000000 2752.953346 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S sysbox-mgr 1112 5.262021 E 8.244316 3.000000 0.017705 1 120 0.000000 0.017705 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gdbus 906 62.722879 E 65.511598 3.000000 105.707492 406 120 0.000000 105.707492 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S probing-thread 1075 6.567609 E 9.544668 3.000000 0.022941 1 120 0.000000 0.022941 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S pool-spawner 937 1.153308 E 4.086953 3.000000 0.098542 2 120 0.000000 0.098542 0.000000 0.000000 0 0 /system.slice/NetworkManager.service\\n S in:imklog 955 69.050507 E 71.746852 3.000000 17.742635 181 120 0.000000 17.742635 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S rs:main Q:Reg 956 69.621641 E 72.604687 3.000000 151.466109 2941 120 0.000000 151.466109 0.000000 0.000000 0 0 /system.slice/rsyslog.service\\n S upowerd 1086 115.613512 E 117.643746 3.000000 303.608779 228 120 0.000000 303.608779 0.000000 0.000000 0 0 /system.slice/upower.service\\n S psimon 1430 9260.147662 E 9263.146878 3.000000 0.006730 2 98 0.000000 0.006730 0.000000 0.000000 0 0 /\\n S containerd 1474 768.241420 E 771.154742 3.000000 260.168589 6972 120 0.000000 260.168589 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S systemd 1499 92.091755 E 93.990391 3.000000 1855.125383 759 120 0.000000 1855.125383 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/init.scope\\n S module-rt 1530 2.618657 E 5.543553 3.000000 0.223127 6 120 0.000000 0.223127 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sdbus-run-sessio 1533 0.258773 E 2.587285 3.000000 1.487986 5 120 0.000000 1.487986 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S rtkit-daemon 1549 15.843335 E 18.772392 3.000000 17.820417 224 120 0.000000 17.820417 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S rtkit-daemon 1550 -1.032441 E 2.697765 3.000000 12.372671 199 0 0.000000 12.372671 0.000000 0.000000 0 0 /system.slice/rtkit-daemon.service\\n S gmain 1566 17.297077 E 20.277928 3.000000 0.097746 7 120 0.000000 0.097746 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 1570 17.355420 E 20.297077 3.000000 0.588370 21 120 0.000000 0.588370 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 1601 2306.381196 E 2308.202272 3.000000 924.311198 2626 120 0.000000 924.311198 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 1603 2304.943180 E 2307.917706 3.000000 20.319276 195 120 0.000000 20.319276 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gnome-shell 3029 275.589042 E 276.659165 3.000000 15.079471 7 120 0.000000 15.079471 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S krfcommd 1621 10074.755342 E 10075.075292 3.000000 0.065550 2 110 0.000000 0.065550 0.000000 0.000000 0 0 /\\n S dockerd 1667 360.733205 E 363.572264 3.000000 44.912651 1440 120 0.000000 44.912651 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1668 10.959996 E 13.909631 3.000000 0.136753 4 120 0.000000 0.136753 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1671 376.622448 E 379.612498 3.000000 35.314543 1107 120 0.000000 35.314543 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 2406 742.220015 E 744.196650 3.000000 366.619528 7269 120 0.000000 366.619528 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1659 1.170927 E 4.116025 3.000000 3.910708 30 120 0.000000 3.910708 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n S sshd 1702 74.518561 E 77.246586 3.000000 11.486317 11 120 0.000000 11.486317 0.000000 0.000000 0 0 /system.slice/ssh.service\\n Scontainerd-shim 2398 30.228595 E 33.220919 3.000000 3.863503 51 120 0.000000 3.863503 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2400 742.618206 E 745.436102 3.000000 11.884249 417 120 0.000000 11.884249 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2404 742.436102 E 745.241822 3.000000 63.645045 144 120 0.000000 63.645045 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2417 28.278836 E 31.246599 3.000000 0.032237 1 120 0.000000 0.032237 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 2418 30.220839 E 33.148343 3.000000 0.624572 15 120 0.000000 0.624572 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2717 7.476168 E 10.461486 3.000000 28.234681 817 120 0.000000 28.234681 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2724 8.330328 E 11.312981 3.000000 0.730104 41 120 0.000000 0.730104 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S buildkitd 2729 0.009183 E 2.987065 3.000000 0.474507 16 120 0.000000 0.474507 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n S gmain 3037 69.004645 E 71.977650 3.000000 0.026995 1 120 0.000000 0.026995 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3083 288.025683 E 289.715393 3.000000 1.607031 8 120 0.000000 1.607031 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3088 286.715393 E 289.284690 3.000000 1.401843 9 120 0.000000 1.401843 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3124 87.455847 E 90.416578 3.000000 0.039269 1 120 0.000000 0.039269 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3131 302.640897 E 305.308430 3.000000 2.994609 50 120 0.000000 2.994609 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3158 93.881548 E 96.817284 3.000000 0.064264 1 120 0.000000 0.064264 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-housekeepin 3169 2303.719789 E 2306.290284 3.000000 459.513711 175 120 0.000000 459.513711 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3182 109.126031 E 111.562635 3.000000 0.591888 2 120 0.000000 0.591888 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3184 108.724420 E 111.678855 3.000000 0.093578 2 120 0.000000 0.093578 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3216 109.368449 E 112.350997 3.000000 0.217820 14 120 0.000000 0.217820 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3213 602.863968 E 605.510516 3.000000 272.558231 744 120 0.000000 272.558231 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3293 586.573053 E 589.290637 3.000000 24.862703 32 120 0.000000 24.862703 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3337 606.691952 E 609.593211 3.000000 1.370128 13 120 0.000000 1.370128 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3338 606.814834 E 609.691952 3.000000 1.139504 13 120 0.000000 1.139504 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S module-rt 3510 4.969118 E 7.891565 3.000000 0.240480 6 120 0.000000 0.240480 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3523 5.394138 E 8.306091 3.000000 0.426467 6 120 0.000000 0.426467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pool-spawner 3546 5.427172 E 8.394138 3.000000 0.089890 2 120 0.000000 0.089890 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3548 5.547188 E 8.427172 3.000000 0.773129 24 120 0.000000 0.773129 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gmain 4749 16.047752 E 18.987863 3.000000 0.059889 1 120 0.000000 0.059889 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/app.slice\\n I kworker/6:0 4983 123457.589336 E 123460.548880 3.000000 251.140123 2718 120 0.000000 251.140123 0.000000 0.000000 0 0 /\\n S docker 5106 161.908508 E 163.889126 3.000000 62.445277 43 120 0.000000 62.445277 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-compose 5126 176.890355 E 179.723271 3.000000 40.133942 172 120 0.000000 40.133942 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5213 736.111965 E 739.096508 3.000000 10.405261 576 120 0.000000 10.405261 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5240 265.802650 E 268.788465 3.000000 0.020995 2 120 0.000000 0.020995 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5243 266.286329 E 269.275178 3.000000 0.261505 4 120 0.000000 0.261505 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5264 273.123925 E 276.097681 3.000000 1.821770 25 120 0.000000 1.821770 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5266 267.028584 E 270.019464 3.000000 0.210716 13 120 0.000000 0.210716 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5339 747.181780 E 750.089905 3.000000 80.891939 305 120 0.000000 80.891939 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S docker-proxy 6330 712.058983 E 715.010510 3.000000 2.116752 10 120 0.000000 2.116752 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5422 750.557305 E 753.486573 3.000000 69.674627 154 120 0.000000 69.674627 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5450 279.103396 E 282.098400 3.000000 2.396339 8 120 0.000000 2.396339 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5453 754.621956 E 757.487651 3.000000 40.732460 138 120 0.000000 40.732460 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5604 954.763097 E 957.751202 3.000000 28.240943 116 120 0.000000 28.240943 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5663 1792.640288 E 1795.640288 3.000000 38.952545 12 120 0.000000 38.952545 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5668 1789.732642 E 1791.724291 3.000000 35.988177 10 120 0.000000 35.988177 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5571 9775.679860 E 9778.590039 3.000000 7587.469911 11970 120 0.000000 7587.469911 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5606 969.507874 E 972.497742 3.000000 25.491566 11 120 0.000000 25.491566 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5609 971.056429 E 974.046014 3.000000 27.020193 26 120 0.000000 27.020193 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5610 971.458654 E 974.453476 3.000000 27.417031 12 120 0.000000 27.417031 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5707 1930.771185 E 1933.761817 3.000000 30.988047 9 120 0.000000 30.988047 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6332 7107.306165 E 7109.972962 3.000000 1.236847 6 120 0.000000 1.236847 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5628 1001.868572 E 1004.809337 3.000000 27.930046 12 120 0.000000 27.930046 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5629 1002.170072 E 1005.109190 3.000000 33.107018 10 120 0.000000 33.107018 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5679 1895.668218 E 1898.660660 3.000000 32.971433 10 120 0.000000 32.971433 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5683 1896.759957 E 1898.798855 3.000000 34.012241 10 120 0.000000 34.012241 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5720 1943.308345 E 1946.308345 3.000000 26.777888 7 120 0.000000 26.777888 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5723 1942.666364 E 1944.688960 3.000000 26.120826 8 120 0.000000 26.120826 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6338 3080.378005 E 3083.193564 3.000000 9.671179 24 120 0.000000 9.671179 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5620 234.680396 E 237.623322 3.000000 109.511939 523 120 0.000000 109.511939 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6357 287.175570 E 290.141373 3.000000 6.697301 20 120 0.000000 6.697301 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6954 97.530568 E 100.452191 3.000000 6.320513 15 120 0.000000 6.320513 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n SGUsbEventThread 7552 122.697656 E 125.559037 3.000000 49.671176 486 120 0.000000 49.671176 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/6:1 7633 121461.571646 E 121464.503189 3.000000 57.173778 409 120 0.000000 57.173778 0.000000 0.000000 0 0 /\\n I kworker/6:2 8811 123822.661243 E 123825.654523 3.000000 6.941914 92 120 0.000000 6.941914 0.000000 0.000000 0 0 /\\n S python3 8905 3559.997926 E 3560.512667 3.000000 110.457959 13 120 0.000000 110.457959 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n\\ncpu#7, 2400.000 MHz\\n .nr_running : 0\\n .nr_switches : 224770\\n .nr_uninterruptible : -73\\n .next_balance : 4296.145596\\n .curr->pid : 0\\n .clock : 1478482.976860\\n .clock_task : 1478482.976860\\n .avg_idle : 1000000\\n .max_idle_balance_cost : 500000\\n\\ncfs_rq[7]:/user.slice/user-1000.slice/session-6.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 5999.587807\\n .avg_vruntime : 5999.587807\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 185\\n .runnable_avg : 187\\n .util_avg : 187\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 185\\n .tg_load_avg : 2332\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.916043\\n .se->vruntime : 17423.523044\\n .se->sum_exec_runtime : 6007.272505\\n .se->load.weight : 102929\\n .se->avg.load_avg : 18\\n .se->avg.util_avg : 186\\n .se->avg.runnable_avg : 186\\n\\ncfs_rq[7]:/user.slice/user-1000.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 17423.523044\\n .avg_vruntime : 17423.523044\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 18\\n .runnable_avg : 186\\n .util_avg : 186\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 18\\n .tg_load_avg : 778\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.916043\\n .se->vruntime : 27107.758690\\n .se->sum_exec_runtime : 6208.805681\\n .se->load.weight : 55461\\n .se->avg.load_avg : 9\\n .se->avg.util_avg : 186\\n .se->avg.runnable_avg : 186\\n\\ncfs_rq[7]:/system.slice/sysbox-mgr.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 909.632865\\n .avg_vruntime : 909.632865\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.739331\\n .se->vruntime : 82250.536605\\n .se->sum_exec_runtime : 911.099672\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/systemd-hostnamed.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 2.602241\\n .avg_vruntime : 2.602241\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478113.426969\\n .se->vruntime : 82234.369672\\n .se->sum_exec_runtime : 3.650817\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/docker.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 875.071481\\n .avg_vruntime : 875.071481\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.042582\\n .se->vruntime : 82250.400995\\n .se->sum_exec_runtime : 894.119667\\n .se->load.weight : 149242\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/containerd.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 834.727094\\n .avg_vruntime : 834.727094\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478194.087274\\n .se->vruntime : 82250.403945\\n .se->sum_exec_runtime : 847.102059\\n .se->load.weight : 123959\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice/accounts-daemon.service\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 42.380818\\n .avg_vruntime : 42.380818\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.329021\\n .se->vruntime : 82250.512983\\n .se->sum_exec_runtime : 44.402844\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/system.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 82250.536605\\n .avg_vruntime : 82250.536605\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478455.739331\\n .se->vruntime : 131249.579862\\n .se->sum_exec_runtime : 31637.392410\\n .se->load.weight : 2\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/init.scope\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 458.416533\\n .avg_vruntime : 458.416533\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 0\\n .runnable_avg : 0\\n .util_avg : 0\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478114.165787\\n .se->vruntime : 131152.920300\\n .se->sum_exec_runtime : 463.043717\\n .se->load.weight : 1048576\\n .se->avg.load_avg : 0\\n .se->avg.util_avg : 0\\n .se->avg.runnable_avg : 0\\n\\ncfs_rq[7]:/user.slice\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 27107.758690\\n .avg_vruntime : 27107.758690\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 10\\n .runnable_avg : 186\\n .util_avg : 186\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 10\\n .tg_load_avg : 846\\n .throttled : 0\\n .throttle_count : 0\\n .se->exec_start : 1478451.916043\\n .se->vruntime : 131249.529253\\n .se->sum_exec_runtime : 11032.923991\\n .se->load.weight : 39403\\n .se->avg.load_avg : 7\\n .se->avg.util_avg : 186\\n .se->avg.runnable_avg : 186\\n\\ncfs_rq[7]:/\\n .exec_clock : 0.000000\\n .left_deadline : 0.000001\\n .left_vruntime : 0.000001\\n .min_vruntime : 131249.613391\\n .avg_vruntime : 131249.613391\\n .right_vruntime : 0.000001\\n .spread : 0.000000\\n .nr_spread_over : 0\\n .nr_running : 0\\n .h_nr_running : 0\\n .idle_nr_running : 0\\n .idle_h_nr_running : 0\\n .load : 0\\n .load_avg : 24\\n .runnable_avg : 204\\n .util_avg : 187\\n .util_est : 0\\n .removed.load_avg : 0\\n .removed.util_avg : 0\\n .removed.runnable_avg : 0\\n .tg_load_avg_contrib : 0\\n .tg_load_avg : 0\\n .throttled : 0\\n .throttle_count : 0\\n\\nrt_rq[7]:\\n .rt_nr_running : 0\\n .rt_throttled : 0\\n .rt_time : 0.000000\\n .rt_runtime : 950.000000\\n\\ndl_rq[7]:\\n .dl_nr_running : 0\\n .dl_bw->bw : 996147\\n .dl_bw->total_bw : 0\\n\\nrunnable tasks:\\n S task PID tree-key switches prio wait-time sum-exec sum-sleep\\n-------------------------------------------------------------------------------------------------------------\\n S cpuhp/7 57 8699.309454 E 8702.275668 3.000000 0.282413 26 120 0.000000 0.282413 0.000000 0.000000 0 0 /\\n S idle_inject/7 58 -1.048578 E 1.201422 2.250000 0.001352 3 49 0.000000 0.001352 0.000000 0.000000 0 0 /\\n S migration/7 59 3.384442 E 5.633801 2.250000 182.324631 435 0 0.000000 182.324631 0.000000 0.000000 0 0 /\\n S ksoftirqd/7 60 131247.031585 E 131250.028185 3.000000 20.515790 559 120 0.000000 20.515790 0.000000 0.000000 0 0 /\\n I kworker/7:0H 62 127976.360276 E 127976.394497 3.000000 10.979531 383 100 0.000000 10.979531 0.000000 0.000000 0 0 /\\n S kdevtmpfs 63 9325.916585 E 9328.878568 3.000000 8.686237 285 120 0.000000 8.686237 0.000000 0.000000 0 0 /\\n I kworker/u16:2 68 129289.259959 E 129292.198800 3.000000 304.043497 4370 120 0.000000 304.043497 0.000000 0.000000 0 0 /\\n S kswapd0 91 0.799409 E 2.181565 3.000000 0.034879 3 120 0.000000 0.034879 0.000000 0.000000 0 0 /\\n Secryptfs-kthrea 92 -1.016388 E 1.982554 3.000000 0.003235 2 120 0.000000 0.003235 0.000000 0.000000 0 0 /\\n I kworker/7:1H 186 54.192213 E 54.226778 3.000000 0.130453 2 100 0.000000 0.130453 0.000000 0.000000 0 0 /\\n I kworker/7:2 196 131249.613391 E 131252.579862 3.000000 250.775242 1307 120 0.000000 250.775242 0.000000 0.000000 0 0 /\\n Ikworker/R-nvme- 220 260.331222 E 260.365822 3.000000 0.004276 2 100 0.000000 0.004276 0.000000 0.000000 0 0 /\\n Sirq/200-iwlwifi 543 3741.722959 E 3744.721790 3.000000 199.067755 1039 49 0.000000 199.067755 0.000000 0.000000 0 0 /\\n S gmain 930 42.380818 E 45.379611 3.000000 145.844655 1420 120 0.000000 145.844655 0.000000 0.000000 0 0 /system.slice/accounts-daemon.service\\n S gmain 932 5.984093 E 8.944402 3.000000 0.039691 1 120 0.000000 0.039691 0.000000 0.000000 0 0 /system.slice/iio-sensor-proxy.service\\n Spower-profiles- 815 6.306037 E 8.958709 3.000000 42.592465 217 120 0.000000 42.592465 0.000000 0.000000 0 0 /system.slice/power-profiles-daemon.service\\n S snapd 926 307.252609 E 310.213510 3.000000 119.548181 476 120 0.000000 119.548181 0.000000 0.000000 0 0 /system.slice/snapd.service\\n S pool-spawner 952 0.552605 E 2.408198 3.000000 0.084044 2 120 0.000000 0.084044 0.000000 0.000000 0 0 /system.slice/switcheroo-control.service\\n S sysbox-mgr 838 909.632865 E 912.609243 3.000000 2133.921554 26958 120 0.000000 2133.921554 0.000000 0.000000 0 0 /system.slice/sysbox-mgr.service\\n S gmain 874 8.807278 E 11.798542 3.000000 0.044986 2 120 0.000000 0.044986 0.000000 0.000000 0 0 /system.slice/thermald.service\\n S gmain 875 33.727890 E 36.645494 3.000000 53.497474 377 120 0.000000 53.497474 0.000000 0.000000 0 0 /system.slice/udisks2.service\\n S gdbus 1104 39.518224 E 42.502553 3.000000 25.922954 100 120 0.000000 25.922954 0.000000 0.000000 0 0 /system.slice/ModemManager.service\\n S sysbox-fs 1120 -1.040991 E 1.951424 3.000000 0.113711 2 120 0.000000 0.113711 0.000000 0.000000 0 0 /system.slice/sysbox-fs.service\\n S sleep 1149 39.073787 E 39.604681 3.000000 7.280071 3 120 0.000000 7.280071 0.000000 0.000000 0 0 /system.slice/sysbox.service\\n S containerd 1457 834.727094 E 837.725054 3.000000 379.813676 23086 120 0.000000 379.813676 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S containerd 5141 831.382357 E 833.657029 3.000000 87.349390 3578 120 0.000000 87.349390 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S pool-spawner 1493 0.604404 E 2.386227 3.000000 0.063206 3 120 0.000000 0.063206 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 1513 11.763534 E 14.743230 3.000000 12.527238 32 120 0.000000 12.527238 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S dbus-daemon 1525 22.920219 E 25.873281 3.000000 11.380453 155 120 0.000000 11.380453 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n Sxdg-document-po 1548 22.929418 E 25.920219 3.000000 6.358220 29 120 0.000000 6.358220 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S fuse mainloop 1567 19.595470 E 22.587394 3.000000 0.137316 5 120 0.000000 0.137316 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S pool-spawner 1558 18.304433 E 21.267038 3.000000 0.111080 2 120 0.000000 0.111080 0.000000 0.000000 0 0 /user.slice/user-128.slice/user@128.service/session.slice\\n S JS Helper 1604 3937.965769 E 3940.937861 3.000000 25.682158 186 120 0.000000 25.682158 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dockerd 1665 387.715999 E 390.699088 3.000000 82.085644 1953 120 0.000000 82.085644 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1673 0.023012 E 2.973127 3.000000 0.586838 20 120 0.000000 0.586838 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1700 875.071481 E 878.068687 3.000000 35.881283 1631 120 0.000000 35.881283 0.000000 0.000000 0 0 /system.slice/docker.service\\n S dockerd 1703 404.236973 E 407.207709 3.000000 45.206785 1218 120 0.000000 45.206785 0.000000 0.000000 0 0 /system.slice/docker.service\\n S kerneloops 1662 21.144108 E 24.086104 3.000000 2.833795 30 120 0.000000 2.833795 0.000000 0.000000 0 0 /system.slice/kerneloops.service\\n Scontainerd-shim 2419 814.635101 E 816.812436 3.000000 88.387081 215 120 0.000000 88.387081 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 3726 814.805912 E 817.635101 3.000000 70.702776 145 120 0.000000 70.702776 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S buildkitd 2763 39.709262 E 42.548054 3.000000 46.296903 138 120 0.000000 46.296903 0.000000 0.000000 0 0 /system.slice/docker-64d052e71f6ff99b867f33de07012631250b407c46d2906c4ef03aacab65c928.scope/init\\n Sat-spi-bus-laun 3022 424.559544 E 427.521167 3.000000 3.389602 32 120 0.000000 3.389602 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S Xwayla:traceq0 3268 365.997005 E 570.481954 3.000000 0.077355 4 139 0.000000 0.077355 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3043 57.661466 E 60.641092 3.000000 4.306383 153 120 0.000000 4.306383 0.000000 0.000000 0 0 /system.slice/colord.service\\n S gdbus 3073 207.807359 E 210.334322 3.000000 2.467237 14 120 0.000000 2.467237 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3110 30.677526 E 33.625817 3.000000 0.075552 2 120 0.000000 0.075552 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3111 30.630162 E 33.591988 3.000000 0.038174 1 120 0.000000 0.038174 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gsd-sharing 3080 3938.637742 E 3941.098663 3.000000 270.234670 1646 120 0.000000 270.234670 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3135 50.522322 E 53.477690 3.000000 0.080793 3 120 0.000000 0.080793 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3143 51.324937 E 54.279106 3.000000 0.083157 2 120 0.000000 0.083157 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S dconf worker 3189 52.566712 E 55.538836 3.000000 0.112926 2 120 0.000000 0.112926 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3211 1467.846211 E 1470.663093 3.000000 19.246036 145 120 0.000000 19.246036 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n Sgsd-screensaver 3149 357.671192 E 360.642427 3.000000 5.256014 42 120 0.000000 5.256014 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gdbus 3164 357.647615 E 360.580773 3.000000 4.749683 47 120 0.000000 4.749683 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3207 353.954110 E 356.900350 3.000000 0.139738 3 120 0.000000 0.139738 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3291 223.408768 E 226.036502 3.000000 1.806394 7 120 0.000000 1.806394 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S JS Helper 3343 3092.494350 E 3095.348483 3.000000 1.291563 13 120 0.000000 1.291563 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S ibus-x11:sh0 3385 419.506573 E 422.481074 3.000000 0.025499 1 120 0.000000 0.025499 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3392 424.607454 E 427.559544 3.000000 0.047910 1 120 0.000000 0.047910 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S gmain 3370 394.943027 E 397.936848 3.000000 0.039410 2 120 0.000000 0.039410 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pool-spawner 3380 419.140487 E 422.107152 3.000000 0.033335 1 120 0.000000 0.033335 0.000000 0.000000 0 0 /user.slice/user-128.slice/session-c1.scope\\n S pipewire 3464 22.074172 E 25.016557 3.000000 16.001058 53 120 0.000000 16.001058 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S pw-data-loop 3517 12.573708 E 15.568099 3.000000 0.023024 3 120 0.000000 0.023024 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n Sxdg-document-po 3544 22.100524 E 25.096416 3.000000 5.893123 20 120 0.000000 5.893123 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3557 22.144924 E 25.141339 3.000000 0.142775 5 120 0.000000 0.142775 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S fuse mainloop 3558 22.141339 E 25.132316 3.000000 0.068673 3 120 0.000000 0.068673 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/session.slice\\n S gdbus 3598 3.360579 E 6.033303 3.000000 11.821224 56 120 0.000000 11.821224 0.000000 0.000000 0 0 /user.slice/user-1000.slice/user@1000.service/app.slice\\n S bash 3712 5663.334123 E 5666.334123 3.000000 300.514467 657 120 0.000000 300.514467 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n I kworker/7:0 5028 127693.365863 E 127696.353044 3.000000 282.688376 1699 120 0.000000 282.688376 0.000000 0.000000 0 0 /\\n S docker-compose 5130 32.710798 E 35.321772 3.000000 4.743828 75 120 0.000000 4.743828 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-4.scope\\n S docker-proxy 5210 861.248781 E 864.231830 3.000000 56.542744 1101 120 0.000000 56.542744 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5731 724.907868 E 727.900010 3.000000 0.466392 18 120 0.000000 0.466392 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5214 396.628965 E 399.619883 3.000000 1.632861 6 120 0.000000 1.632861 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5216 396.205006 E 399.151410 3.000000 0.149899 4 120 0.000000 0.149899 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5217 396.329416 E 399.319519 3.000000 0.046450 2 120 0.000000 0.046450 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5218 396.450772 E 399.445603 3.000000 0.020033 2 120 0.000000 0.020033 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5219 396.731794 E 399.686069 3.000000 0.045725 1 120 0.000000 0.045725 0.000000 0.000000 0 0 /system.slice/docker.service\\n S docker-proxy 5222 396.826857 E 399.811763 3.000000 0.015094 1 120 0.000000 0.015094 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5235 270.215607 E 273.195321 3.000000 2.769908 8 120 0.000000 2.769908 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 7610 819.136198 E 822.071243 3.000000 44.792622 80 120 0.000000 44.792622 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 6177 822.880464 E 824.980765 3.000000 47.431312 81 120 0.000000 47.431312 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S bio_aof 5372 6.171250 E 9.150339 3.000000 0.020911 1 120 0.000000 0.020911 0.000000 0.000000 0 0 /system.slice/docker-d69c68b9c86bead6dcc11fc52931a672da8af3b4766ee467e4b75750814dbb45.scope\\n S docker-proxy 5395 843.892232 E 846.834651 3.000000 4.892991 221 120 0.000000 4.892991 0.000000 0.000000 0 0 /system.slice/docker.service\\n Scontainerd-shim 5452 823.155666 E 826.044605 3.000000 9.061290 535 120 0.000000 9.061290 0.000000 0.000000 0 0 /system.slice/containerd.service\\n Scontainerd-shim 5457 284.338260 E 287.332839 3.000000 0.005421 1 120 0.000000 0.005421 0.000000 0.000000 0 0 /system.slice/containerd.service\\n S gunicorn 5601 910.364125 E 913.358635 3.000000 41.347394 21 120 0.000000 41.347394 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5662 1681.165612 E 1681.188384 3.000000 52.890599 17 120 0.000000 52.890599 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5690 1759.655576 E 1761.689682 3.000000 32.986562 10 120 0.000000 32.986562 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6346 5129.599606 E 5130.300726 3.000000 2.373161 4 120 0.000000 2.373161 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5611 927.013891 E 930.004534 3.000000 30.958221 12 120 0.000000 30.958221 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5673 1716.676043 E 1719.667802 3.000000 47.953219 14 120 0.000000 47.953219 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5698 1774.551283 E 1776.580995 3.000000 33.736341 12 120 0.000000 33.736341 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6950 3585.432725 E 3588.280345 3.000000 9.846769 66 120 0.000000 9.846769 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5635 1287.816586 E 1288.577374 3.000000 38.206043 11 120 0.000000 38.206043 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5636 1287.895610 E 1290.746600 3.000000 38.107591 11 120 0.000000 38.107591 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5627 989.132258 E 992.064464 3.000000 56.892128 21 120 0.000000 56.892128 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5682 1750.007994 E 1752.998981 3.000000 35.980149 10 120 0.000000 35.980149 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6344 3198.674402 E 3201.541368 3.000000 11.659960 15 120 0.000000 11.659960 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5647 1753.844207 E 1756.837808 3.000000 23.001512 8 120 0.000000 23.001512 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5650 1495.354451 E 1498.348112 3.000000 23.003437 7 120 0.000000 23.003437 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5651 1498.355809 E 1501.345904 3.000000 25.997880 8 120 0.000000 25.997880 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5653 1499.385527 E 1502.375556 3.000000 27.015431 8 120 0.000000 27.015431 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5721 1803.013378 E 1806.006859 3.000000 29.898894 9 120 0.000000 29.898894 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 5722 1807.064009 E 1810.054337 3.000000 33.945514 12 120 0.000000 33.945514 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S gunicorn 6336 5129.831449 E 5132.599606 3.000000 1.078567 6 120 0.000000 1.078567 0.000000 0.000000 0 0 /system.slice/docker-2b5ee3ac2bcc42764d818a815c54f6f9ab8a95a118a2644a522887fe29df99b7.scope\\n S postgres 5624 279.028513 E 281.980614 3.000000 23.069037 166 120 0.000000 23.069037 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S postgres 6349 266.713725 E 269.645614 3.000000 15.566291 25 120 0.000000 15.566291 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S libusb_event 7551 0.942863 E 1.951424 3.000000 0.105713 1 120 0.000000 0.105713 0.000000 0.000000 0 0 /system.slice/fwupd.service\\n I kworker/7:1 7636 124224.968731 E 124227.939001 3.000000 24.625998 181 120 0.000000 24.625998 0.000000 0.000000 0 0 /\\n I kworker/7:3 7899 124217.212175 E 124220.208838 3.000000 0.076763 2 120 0.000000 0.076763 0.000000 0.000000 0 0 /\\n S postgres 8796 271.985108 E 274.842989 3.000000 5.061939 13 120 0.000000 5.061939 0.000000 0.000000 0 0 /system.slice/docker-83e815a99e9d1294abf633a6aed9383aeefd58f6e05ebbae70f0e6c244edc3d2.scope\\n S python3 8813 5999.587807 E 6002.563562 3.000000 869.634385 572 120 0.000000 869.634385 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Sjemalloc_bg_thd 8907 5758.293964 E 5761.238899 3.000000 0.055065 1 120 0.000000 0.055065 0.000000 0.000000 0 0 /user.slice/user-1000.slice/session-6.scope\\n Ssystemd-hostnam 8949 2.602241 E 3.859757 3.000000 440.967836 53 120 0.000000 440.967836 0.000000 0.000000 0 0 /system.slice/systemd-hostnamed.service\\n\\n"}, "Docker Version": "Client: Docker Engine - Community\\n Version: 27.2.1\\n API version: 1.47\\n Go version: go1.22.7\\n Git commit: 9e34c9b\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Context: default\\n\\nServer: Docker Engine - Community\\n Engine:\\n Version: 27.2.1\\n API version: 1.47 (minimum version 1.24)\\n Go version: go1.22.7\\n Git commit: 8b539b8\\n Built: Fri Sep 6 12:08:10 2024\\n OS/Arch: linux/amd64\\n Experimental: false\\n containerd:\\n Version: 1.7.21\\n GitCommit: 472731909fa34bd7bc9c087e4c27943f9835f111\\n runc:\\n Version: 1.1.13\\n GitCommit: v1.1.13-0-g58aa920\\n docker-init:\\n Version: 0.19.0\\n GitCommit: de40ad0\\n", "Hardware Model": "Laptop", "Virtualization": "Unknown", "CPU Utilization": 3.8, "Hardware Vendor": "Framework", "Hyper Threading": "1", "Hardware Details": "framebook\\n description: Notebook\\n product: Laptop (FRANBMCP0A)\\n vendor: Framework\\n version: AA\\n serial: FRANBMCPAA1484005R\\n width: 64 bits\\n capabilities: smbios-3.3.0 dmi-3.3.0 smp vsyscall32\\n configuration: administrator_password=disabled boot=normal chassis=notebook family=FRANBMCP power-on_password=disabled sku=FRANBMCP0A uuid=1cd24d0f-5c53-ec11-810d-283616200463\\n *-core\\n description: Motherboard\\n product: FRANBMCP0A\\n vendor: Framework\\n physical id: 0\\n version: AA\\n serial: FRANBMCPAA1484005R\\n slot: *\\n *-firmware\\n description: BIOS\\n vendor: INSYDE Corp.\\n physical id: 0\\n version: 03.19\\n date: 05/29/2023\\n size: 128KiB\\n capacity: 12MiB\\n capabilities: pci upgrade shadowing cdboot bootselect int9keyboard int10video acpi usb biosbootspecification uefi\\n *-cpu\\n description: CPU\\n product: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\\n vendor: Intel Corp.\\n physical id: 4\\n bus info: cpu@0\\n version: 6.140.1\\n serial: To Be Filled By O.E.M.\\n slot: U3E1\\n size: 975MHz\\n capacity: 4200MHz\\n width: 64 bits\\n clock: 100MHz\\n capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid movdiri movdir64b fsrm avx512_vp2intersect md_clear ibt flush_l1d arch_capabilities cpufreq\\n configuration: cores=4 enabledcores=4 microcode=184 threads=8\\n *-cache:0\\n description: L1 cache\\n physical id: 6\\n slot: L1 Cache\\n size: 128KiB\\n capacity: 128KiB\\n capabilities: synchronous internal write-back instruction\\n configuration: level=1\\n *-cache:1\\n description: L2 cache\\n physical id: 7\\n slot: L2 Cache\\n size: 5MiB\\n capacity: 5MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=2\\n *-cache:2\\n description: L3 cache\\n physical id: 8\\n slot: L3 Cache\\n size: 8MiB\\n capacity: 8MiB\\n capabilities: synchronous internal write-back unified\\n configuration: level=3\\n *-cache\\n description: L1 cache\\n physical id: 5\\n slot: L1 Cache\\n size: 192KiB\\n capacity: 192KiB\\n capabilities: synchronous internal write-back data\\n configuration: level=1\\n *-memory\\n description: System Memory\\n physical id: 14\\n slot: System board or motherboard\\n size: 32GiB\\n *-bank:0\\n description: [empty]\\n physical id: 0\\n slot: Controller0-ChannelA-DIMM0\\n *-bank:1\\n description: SODIMM DDR4 Synchronous 3200 MHz (0.3 ns)\\n product: CT32G4SFD832A.M16FF\\n vendor: Crucial Technology\\n physical id: 1\\n serial: E63FE743\\n slot: Controller1-ChannelA-DIMM0\\n size: 32GiB\\n width: 64 bits\\n clock: 3200MHz (0.3ns)\\n *-pci\\n description: Host bridge\\n product: 11th Gen Core Processor Host Bridge/DRAM Registers\\n vendor: Intel Corporation\\n physical id: 100\\n bus info: pci@0000:00:00.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n *-display\\n description: VGA compatible controller\\n product: TigerLake-LP GT2 [Iris Xe Graphics]\\n vendor: Intel Corporation\\n physical id: 2\\n bus info: pci@0000:00:02.0\\n logical name: /dev/fb0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb\\n configuration: depth=32 driver=i915 latency=0 mode=2256x1504 resolution=2256,1504 visual=truecolor xres=2256 yres=1504\\n resources: iomemory:600-5ff iomemory:400-3ff irq:204 memory:605c000000-605cffffff memory:4000000000-400fffffff ioport:3000(size=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff\\n *-generic:0\\n description: Signal processing controller\\n product: TigerLake-LP Dynamic Tuning Processor Participant\\n vendor: Intel Corporation\\n physical id: 4\\n bus info: pci@0000:00:04.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: driver=proc_thermal latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d180000-605d19ffff\\n *-pci:0\\n description: PCI bridge\\n product: 11th Gen Core Processor PCIe Controller\\n vendor: Intel Corporation\\n physical id: 6\\n bus info: pci@0000:00:06.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:126 memory:7a300000-7a3fffff\\n *-nvme\\n description: NVMe device\\n product: WDS100T1X0E-00AFY0\\n vendor: Sandisk Corp\\n physical id: 0\\n bus info: pci@0000:01:00.0\\n logical name: /dev/nvme0\\n version: 614900WD\\n serial: 22047A801405\\n width: 64 bits\\n clock: 33MHz\\n capabilities: nvme pm msi msix pciexpress nvm_express bus_master cap_list\\n configuration: driver=nvme latency=0 nqn=nqn.2018-01.com.wdc:nguid:E8238FA6BF53-0001-001B448B45A2BCF6 state=live\\n resources: irq:16 memory:7a300000-7a303fff\\n *-namespace:0\\n description: NVMe disk\\n physical id: 0\\n logical name: hwmon2\\n *-namespace:1\\n description: NVMe disk\\n physical id: 2\\n logical name: /dev/ng0n1\\n *-namespace:2\\n description: NVMe disk\\n physical id: 1\\n bus info: nvme@0:1\\n logical name: /dev/nvme0n1\\n size: 931GiB (1TB)\\n capabilities: gpt-1.00 partitioned partitioned:gpt\\n configuration: guid=45dd4e4e-5082-4f7b-926f-7bfbac3490ba logicalsectorsize=512 sectorsize=512 wwid=eui.e8238fa6bf530001001b448b45a2bcf6\\n *-volume:0 UNCLAIMED\\n description: Windows FAT volume\\n vendor: MSDOS5.0\\n physical id: 1\\n bus info: nvme@0:1,1\\n version: FAT32\\n serial: 74bd-e763\\n size: 95MiB\\n capacity: 99MiB\\n capabilities: boot fat initialized\\n configuration: FATs=2 filesystem=fat name=EFI system partition\\n *-volume:1\\n description: reserved partition\\n vendor: Windows\\n physical id: 2\\n bus info: nvme@0:1,2\\n logical name: /dev/nvme0n1p2\\n serial: 0ea6d81a-270e-4676-b42f-41e3e89d8733\\n capacity: 15MiB\\n capabilities: nofs\\n configuration: name=Microsoft reserved partition\\n *-volume:2\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 3\\n bus info: nvme@0:1,3\\n logical name: /dev/nvme0n1p3\\n version: 3.1\\n serial: c851c6e2-393b-f34f-a874-3f47e3b4d22a\\n size: 465GiB\\n capacity: 465GiB\\n capabilities: ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:22:01 filesystem=ntfs name=Basic data partition state=clean\\n *-volume:3\\n description: Windows NTFS volume\\n vendor: Windows\\n physical id: 4\\n bus info: nvme@0:1,4\\n logical name: /dev/nvme0n1p4\\n version: 3.1\\n serial: 4c29-9ee3\\n size: 523MiB\\n capacity: 523MiB\\n capabilities: boot precious ntfs initialized\\n configuration: clustersize=4096 created=2021-01-01 00:25:01 filesystem=ntfs state=clean\\n *-volume:4\\n description: EXT4 volume\\n vendor: Linux\\n physical id: 5\\n bus info: nvme@0:1,5\\n logical name: /dev/nvme0n1p5\\n logical name: /\\n logical name: /var/snap/firefox/common/host-hunspell\\n version: 1.0\\n serial: c6c4e62b-4240-443a-8feb-6001a7f1b7b5\\n size: 465GiB\\n capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized\\n configuration: created=2024-03-22 19:59:07 filesystem=ext4 lastmountpoint=/ modified=2024-09-12 18:36:24 mount.fstype=ext4 mount.options=ro,noexec,noatime,errors=remount-ro mounted=2024-09-12 18:36:25 state=mounted\\n *-pci:1\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0\\n vendor: Intel Corporation\\n physical id: 7\\n bus info: pci@0000:00:07.0\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:127 ioport:4000(size=4096) memory:7c000000-881fffff ioport:6000000000(size=469762048)\\n *-pci:2\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1\\n vendor: Intel Corporation\\n physical id: 7.1\\n bus info: pci@0000:00:07.1\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:128 ioport:5000(size=4096) memory:6e000000-7a1fffff ioport:6020000000(size=469762048)\\n *-pci:3\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2\\n vendor: Intel Corporation\\n physical id: 7.2\\n bus info: pci@0000:00:07.2\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:129 ioport:6000(size=4096) memory:60000000-6c1fffff ioport:6040000000(size=469762048)\\n *-pci:4\\n description: PCI bridge\\n product: Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3\\n vendor: Intel Corporation\\n physical id: 7.3\\n bus info: pci@0000:00:07.3\\n version: 01\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:130 ioport:7000(size=4096) memory:52000000-5e1fffff ioport:6060000000(size=469762048)\\n *-generic:1 UNCLAIMED\\n description: System peripheral\\n product: GNA Scoring Accelerator module\\n vendor: Intel Corporation\\n physical id: 8\\n bus info: pci@0000:00:08.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: msi pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff memory:605d1d8000-605d1d8fff\\n *-generic:2\\n description: Signal processing controller\\n product: Tigerlake Telemetry Aggregator Driver\\n vendor: Intel Corporation\\n physical id: a\\n bus info: pci@0000:00:0a.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pciexpress pm cap_list\\n configuration: driver=intel_vsec latency=0\\n resources: iomemory:600-5ff irq:0 memory:605d1c0000-605d1c7fff\\n *-usb:0\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 USB Controller\\n vendor: Intel Corporation\\n physical id: d\\n bus info: pci@0000:00:0d.0\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: iomemory:600-5ff irq:148 memory:605d1b0000-605d1bffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@1\\n logical name: usb1\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=1 speed=480Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@2\\n logical name: usb2\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-usb:1\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #0\\n vendor: Intel Corporation\\n physical id: d.2\\n bus info: pci@0000:00:0d.2\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d140000-605d17ffff memory:605d1d7000-605d1d7fff\\n *-usb:2\\n description: USB controller\\n product: Tiger Lake-LP Thunderbolt 4 NHI #1\\n vendor: Intel Corporation\\n physical id: d.3\\n bus info: pci@0000:00:0d.3\\n version: 01\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi msix usb4_host_interface bus_master cap_list\\n configuration: driver=thunderbolt latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff irq:16 memory:605d100000-605d13ffff memory:605d1d6000-605d1d6fff\\n *-communication:0\\n description: Serial controller\\n product: Tiger Lake-LP Integrated Sensor Hub\\n vendor: Intel Corporation\\n physical id: 12\\n bus info: pci@0000:00:12.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm 8250 bus_master cap_list\\n configuration: driver=intel_ish_ipc latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1a0000-605d1affff\\n *-usb:3\\n description: USB controller\\n product: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller\\n vendor: Intel Corporation\\n physical id: 14\\n bus info: pci@0000:00:14.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi xhci bus_master cap_list\\n configuration: driver=xhci_hcd latency=0\\n resources: irq:156 memory:7a400000-7a40ffff\\n *-usbhost:0\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 0\\n bus info: usb@3\\n logical name: usb3\\n version: 6.08\\n capabilities: usb-2.00\\n configuration: driver=hub slots=12 speed=480Mbit/s\\n *-usb:0\\n description: Human interface device\\n product: HDMI Expansion Card\\n vendor: Framework\\n physical id: 1\\n bus info: usb@3:1\\n version: 0.00\\n serial: 11AD1D0001DB3E1540120B00\\n capabilities: usb-2.01\\n configuration: driver=usbhid maxpower=100mA speed=12Mbit/s\\n *-usb:1\\n description: Video\\n product: Laptop Camera\\n vendor: Generic\\n physical id: 7\\n bus info: usb@3:7\\n version: 0.21\\n serial: 200901010001\\n capabilities: usb-2.01\\n configuration: driver=uvcvideo maxpower=300mA speed=480Mbit/s\\n *-usb:2 UNCLAIMED\\n description: Generic USB device\\n product: Goodix USB2.0 MISC\\n vendor: Goodix Technology Co., Ltd.\\n physical id: 9\\n bus info: usb@3:9\\n version: 1.00\\n serial: UID7D62CCAE_XXXX_MOC_B0\\n capabilities: usb-2.00\\n configuration: maxpower=100mA speed=12Mbit/s\\n *-usb:3\\n description: Bluetooth wireless interface\\n product: AX210 Bluetooth\\n vendor: Intel Corp.\\n physical id: a\\n bus info: usb@3:a\\n version: 0.00\\n capabilities: bluetooth usb-2.01\\n configuration: driver=btusb maxpower=100mA speed=12Mbit/s\\n *-usbhost:1\\n product: xHCI Host Controller\\n vendor: Linux 6.8.0-44-generic xhci-hcd\\n physical id: 1\\n bus info: usb@4\\n logical name: usb4\\n version: 6.08\\n capabilities: usb-3.10\\n configuration: driver=hub slots=4 speed=10000Mbit/s\\n *-memory UNCLAIMED\\n description: RAM memory\\n product: Tiger Lake-LP Shared SRAM\\n vendor: Intel Corporation\\n physical id: 14.2\\n bus info: pci@0000:00:14.2\\n version: 20\\n width: 64 bits\\n clock: 33MHz (30.3ns)\\n capabilities: pm bus_master cap_list\\n configuration: latency=0\\n resources: iomemory:600-5ff iomemory:600-5ff memory:605d1cc000-605d1cffff memory:605d1d5000-605d1d5fff\\n *-serial:0\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #0\\n vendor: Intel Corporation\\n physical id: 15\\n bus info: pci@0000:00:15.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:27 memory:4017000000-4017000fff\\n *-serial:1\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #1\\n vendor: Intel Corporation\\n physical id: 15.1\\n bus info: pci@0000:00:15.1\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:40 memory:4017001000-4017001fff\\n *-serial:2\\n description: Serial bus controller\\n product: Tiger Lake-LP Serial IO I2C Controller #3\\n vendor: Intel Corporation\\n physical id: 15.3\\n bus info: pci@0000:00:15.3\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm bus_master cap_list\\n configuration: driver=intel-lpss latency=0\\n resources: irq:30 memory:4017002000-4017002fff\\n *-communication:1\\n description: Communication controller\\n product: Tiger Lake-LP Management Engine Interface\\n vendor: Intel Corporation\\n physical id: 16\\n bus info: pci@0000:00:16.0\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=mei_me latency=0\\n resources: iomemory:600-5ff irq:191 memory:605d1d1000-605d1d1fff\\n *-pci:5\\n description: PCI bridge\\n product: Tiger Lake-LP PCI Express Root Port #10\\n vendor: Intel Corporation\\n physical id: 1d\\n bus info: pci@0000:00:1d.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\\n configuration: driver=pcieport\\n resources: irq:131 memory:7a200000-7a2fffff\\n *-network\\n description: Wireless interface\\n product: Wi-Fi 6E(802.11ax) AX210/AX1675* 2x2 [Typhoon Peak]\\n vendor: Intel Corporation\\n physical id: 0\\n bus info: pci@0000:aa:00.0\\n logical name: wlp170s0\\n version: 1a\\n serial: 00:93:37:96:a0:14\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\\n configuration: broadcast=yes driver=iwlwifi driverversion=6.8.0-44-generic firmware=86.fb5c9aeb.0 ty-a0-gf-a0-86.uc ip=192.168.179.3 latency=0 link=yes multicast=yes wireless=IEEE 802.11\\n resources: irq:17 memory:7a200000-7a203fff\\n *-isa\\n description: ISA bridge\\n product: Tiger Lake-LP LPC Controller\\n vendor: Intel Corporation\\n physical id: 1f\\n bus info: pci@0000:00:1f.0\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: isa bus_master\\n configuration: latency=0\\n *-pnp00:00\\n product: PnP device PNP0303\\n physical id: 0\\n capabilities: pnp\\n configuration: driver=i8042 kbd\\n *-pnp00:01\\n product: PnP device PNP0f03\\n physical id: 1\\n capabilities: pnp\\n configuration: driver=i8042 aux\\n *-pnp00:02\\n product: PnP device PNP0c02\\n physical id: 2\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:03\\n product: PnP device PNP0c02\\n physical id: 3\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:04\\n product: PnP device PNP0c02\\n physical id: 4\\n capabilities: pnp\\n configuration: driver=system\\n *-pnp00:05\\n product: PnP device PNP0c02\\n physical id: 5\\n capabilities: pnp\\n configuration: driver=system\\n *-multimedia\\n description: Audio device\\n product: Tiger Lake-LP Smart Sound Technology Audio Controller\\n vendor: Intel Corporation\\n physical id: 1f.3\\n bus info: pci@0000:00:1f.3\\n logical name: card0\\n logical name: /dev/snd/controlC0\\n logical name: /dev/snd/hwC0D0\\n logical name: /dev/snd/hwC0D2\\n logical name: /dev/snd/pcmC0D0c\\n logical name: /dev/snd/pcmC0D0p\\n logical name: /dev/snd/pcmC0D3p\\n logical name: /dev/snd/pcmC0D7p\\n logical name: /dev/snd/pcmC0D8p\\n logical name: /dev/snd/pcmC0D9p\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n capabilities: pm msi bus_master cap_list\\n configuration: driver=snd_hda_intel latency=32\\n resources: iomemory:600-5ff iomemory:600-5ff irq:205 memory:605d1c8000-605d1cbfff memory:605d000000-605d0fffff\\n *-input:0\\n product: HDA Intel PCH Mic\\n physical id: 0\\n logical name: input12\\n logical name: /dev/input/event9\\n *-input:1\\n product: HDA Intel PCH Headphone\\n physical id: 1\\n logical name: input13\\n logical name: /dev/input/event10\\n *-input:2\\n product: HDA Intel PCH HDMI/DP,pcm=3\\n physical id: 2\\n logical name: input14\\n logical name: /dev/input/event11\\n *-input:3\\n product: HDA Intel PCH HDMI/DP,pcm=7\\n physical id: 3\\n logical name: input15\\n logical name: /dev/input/event12\\n *-input:4\\n product: HDA Intel PCH HDMI/DP,pcm=8\\n physical id: 4\\n logical name: input16\\n logical name: /dev/input/event13\\n *-input:5\\n product: HDA Intel PCH HDMI/DP,pcm=9\\n physical id: 5\\n logical name: input17\\n logical name: /dev/input/event14\\n *-serial:3\\n description: SMBus\\n product: Tiger Lake-LP SMBus Controller\\n vendor: Intel Corporation\\n physical id: 1f.4\\n bus info: pci@0000:00:1f.4\\n version: 20\\n width: 64 bits\\n clock: 33MHz\\n configuration: driver=i801_smbus latency=0\\n resources: iomemory:600-5ff irq:16 memory:605d1d0000-605d1d00ff ioport:efa0(size=32)\\n *-serial:4\\n description: Serial bus controller\\n product: Tiger Lake-LP SPI Controller\\n vendor: Intel Corporation\\n physical id: 1f.5\\n bus info: pci@0000:00:1f.5\\n version: 20\\n width: 32 bits\\n clock: 33MHz\\n capabilities: bus_master\\n configuration: driver=intel-spi latency=0\\n resources: irq:0 memory:50400000-50400fff\\n *-battery\\n description: Lithium Ion Battery\\n product: FRANBBAT\\n vendor: FRANBBATA112610BG3\\n physical id: 1\\n version: 2021/7/5\\n serial: 0194\\n slot: Front\\n configuration: voltage=0.0V\\n *-power UNCLAIMED\\n description: OEM Define 1\\n product: OEM Define 5\\n vendor: OEM Define 2\\n physical id: 2\\n version: OEM Define 6\\n serial: OEM Define 3\\n capacity: 75mWh\\n *-input:0\\n product: Lid Switch\\n physical id: 3\\n logical name: input0\\n logical name: /dev/input/event0\\n capabilities: platform\\n *-input:1\\n product: Power Button\\n physical id: 4\\n logical name: input1\\n logical name: /dev/input/event1\\n capabilities: platform\\n *-input:2\\n product: PIXA3854:00 093A:0274 Touchpad\\n physical id: 5\\n logical name: input10\\n logical name: /dev/input/event6\\n logical name: /dev/input/mouse1\\n capabilities: i2c\\n *-input:3\\n product: Video Bus\\n physical id: 6\\n logical name: input11\\n logical name: /dev/input/event8\\n capabilities: platform\\n *-input:4\\n product: AT Translated Set 2 keyboard\\n physical id: 7\\n logical name: input2\\n logical name: /dev/input/event2\\n logical name: input2::capslock\\n logical name: input2::numlock\\n logical name: input2::scrolllock\\n capabilities: i8042\\n *-input:5\\n product: ImExPS/2 Generic Explorer Mouse\\n physical id: 8\\n logical name: input4\\n logical name: /dev/input/event7\\n logical name: /dev/input/mouse2\\n capabilities: i8042\\n *-input:6\\n product: FRMW0001:00 32AC:0006 Wireless Radio Control\\n physical id: 9\\n logical name: input5\\n logical name: /dev/input/event3\\n capabilities: i2c\\n *-input:7\\n product: FRMW0001:00 32AC:0006 Consumer Control\\n physical id: a\\n logical name: input6\\n logical name: /dev/input/event4\\n capabilities: i2c\\n *-input:8\\n product: PIXA3854:00 093A:0274 Mouse\\n physical id: b\\n logical name: input9\\n logical name: /dev/input/event5\\n logical name: /dev/input/mouse0\\n capabilities: i2c\\n", "Operating System": "Ubuntu 24.04.1 LTS", "Scaling Governor": "powersave", "CPU Complete Dump": {"/sys/devices/system/cpu/online": "0-7\\n", "/sys/devices/system/cpu/uevent": "", "/sys/devices/system/cpu/offline": "\\n", "/sys/devices/system/cpu/present": "0-7\\n", "/sys/devices/system/cpu/isolated": "\\n", "/sys/devices/system/cpu/modalias": "cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n", "/sys/devices/system/cpu/possible": "0-7\\n", "/sys/devices/system/cpu/nohz_full": " (null)\\n", "/sys/devices/system/cpu/kernel_max": "8191\\n", "/sys/devices/system/cpu/smt/active": "1\\n", "/sys/devices/system/cpu/cpu0/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu1/online": "1\\n", "/sys/devices/system/cpu/cpu1/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu2/online": "1\\n", "/sys/devices/system/cpu/cpu2/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu3/online": "1\\n", "/sys/devices/system/cpu/cpu3/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu4/online": "1\\n", "/sys/devices/system/cpu/cpu4/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu5/online": "1\\n", "/sys/devices/system/cpu/cpu5/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu6/online": "1\\n", "/sys/devices/system/cpu/cpu6/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/cpu7/online": "1\\n", "/sys/devices/system/cpu/cpu7/uevent": "DRIVER=processor\\nMODALIAS=cpu:type:x86,ven0000fam0006mod008C:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001B,001C,001D,001F,002B,0034,003A,003B,003D,0068,006A,006B,006C,006D,006F,0070,0074,0075,0076,0078,0079,007C,007F,0080,0081,0082,0083,0084,0085,0087,0088,0089,008B,008C,008D,008E,008F,0091,0093,0094,0095,0096,0097,0098,0099,009A,009B,009C,009D,009E,00C0,00C5,00C8,00E1,00E3,00E5,00EA,00EF,00F0,00F1,00F3,00F5,00F9,00FA,00FB,00FE,00FF,0100,0101,0102,0103,0111,0120,0121,0123,0125,0126,0127,0128,0129,012A,012D,012F,0130,0131,0132,0133,0134,0135,0137,0138,0139,013C,013D,013E,013F,0140,0141,0142,0143,0164,0165,0166,0171,0177,017B,01C0,01C1,01C2,01C4,01C5,01C6,01C7,01C8,01C9,01CA,01CB,01CD,01CE,01CF,01D0,01D1,01D2,01D4,01F9,0201,0202,0203,0204,0206,0207,0208,0209,020A,020B,020C,020E,0216,0217,021B,021C,0244,0248,0249,024A,0254,025A,025B,025C,025D,025E,025F,0282,02A1,02A4\\n\\n", "/sys/devices/system/cpu/power/async": "disabled\\n", "/sys/devices/system/cpu/smt/control": "on\\n", "/sys/devices/system/cpu/power/control": "auto\\n", "/sys/devices/system/cpu/hotplug/states": " 0: offline\\n 1: threads:prepare\\n 2: perf:prepare\\n 3: perf/x86:prepare\\n 8: x86/mce:dead\\n 9: virtio/net:dead\\n 11: slub:dead\\n 13: mm/writeback:dead\\n 14: mm/vmstat:dead\\n 15: softirq:dead\\n 20: irq_poll:dead\\n 21: block/softirq:dead\\n 22: block/bio:dead\\n 23: acpi/cpu-drv:dead\\n 25: block/mq:dead\\n 26: fs/buffer:dead\\n 27: printk:dead\\n 28: mm/memctrl:dead\\n 29: lib/percpu_cnt:dead\\n 30: lib/radix:dead\\n 31: mm/page_alloc:pcp\\n 32: net/dev:dead\\n 34: iommu/iova:dead\\n 36: padata:dead\\n 38: random:prepare\\n 39: workqueue:prepare\\n 41: hrtimers:prepare\\n 43: x86/x2apic:prepare\\n 44: smpcfd:prepare\\n 45: relay:prepare\\n 47: RCU/tree:prepare\\n 55: base/topology:prepare\\n 58: trace/RB:prepare\\n 59: mm/zsmalloc:prepare\\n 63: timers:prepare\\n 65: fork:vm_stack_cache\\n 66: crash/cpuhp\\n 86: cpu:kick_ap\\n 87: cpu:bringup\\n 88: idle:dead\\n 89: ap:offline\\n 90: x86/cachectrl:starting\\n 91: sched:starting\\n 92: RCU/tree:dying\\n104: perf/x86:starting\\n106: perf/x86/cstate:starting\\n137: smpcfd:dying\\n138: hrtimers:dying\\n141: ap:online\\n142: cpu:teardown\\n145: kvm/cpu:online\\n146: sched:waitempty\\n147: smpboot/threads:online\\n148: irq/affinity:online\\n149: block/mq:online\\n151: x86/intel/epb:online\\n152: perf:online\\n153: perf/x86:online\\n154: perf/x86/intel/uncore:online\\n157: perf/x86/rapl:online\\n158: perf/x86/cstate:online\\n184: lockup_detector:online\\n185: workqueue:online\\n186: random:online\\n187: RCU/tree:online\\n188: base/cacheinfo:online\\n189: x86/splitlock\\n190: mm/writeback:online\\n191: mm/vmstat:online\\n192: padata:online\\n193: mm/compaction:online\\n194: io-wq/online\\n195: lib/percpu_cnt:online\\n196: idle/intel:online\\n197: acpi/cpu-drv:online\\n198: virtio/net:online\\n199: x86/therm:online\\n200: cpufreq:online\\n201: leds/trigger:starting\\n202: x86/mce:online\\n203: x86/microcode:online\\n204: x86/resctrl/cat:online:\\n205: printk:online\\n206: trace/hwlat:online\\n207: trace/osnoise:online\\n208: swap_slots_cache\\n209: x86/msr:online\\n210: powercap/rapl:online\\n211: perf/x86/intel/i915:online\\n212: powercap/rapl:online\\n213: hwmon/coretemp:online\\n214: thermal/x86_pkg:online\\n215: platform/x86/uncore-freq:online\\n232: sched:active\\n233: online\\n", "/sys/devices/system/cpu/cpu0/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu1/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu2/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu3/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu4/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu5/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu6/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu7/power/async": "disabled\\n", "/sys/devices/system/cpu/cpu0/cache/uevent": "", "/sys/devices/system/cpu/cpu0/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu1/cache/uevent": "", "/sys/devices/system/cpu/cpu1/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu2/cache/uevent": "", "/sys/devices/system/cpu/cpu2/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu3/cache/uevent": "", "/sys/devices/system/cpu/cpu3/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu4/cache/uevent": "", "/sys/devices/system/cpu/cpu4/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu5/cache/uevent": "", "/sys/devices/system/cpu/cpu5/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu6/cache/uevent": "", "/sys/devices/system/cpu/cpu6/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu7/cache/uevent": "", "/sys/devices/system/cpu/cpu7/hotplug/fail": "-1\\n", "/sys/devices/system/cpu/cpu0/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu0/power/control": "auto\\n", "/sys/devices/system/cpu/cpu1/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu1/power/control": "auto\\n", "/sys/devices/system/cpu/cpu2/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu2/power/control": "auto\\n", "/sys/devices/system/cpu/cpu3/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu3/power/control": "auto\\n", "/sys/devices/system/cpu/cpu4/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu4/power/control": "auto\\n", "/sys/devices/system/cpu/cpu5/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu5/power/control": "auto\\n", "/sys/devices/system/cpu/cpu6/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu6/power/control": "auto\\n", "/sys/devices/system/cpu/cpu7/hotplug/state": "233\\n", "/sys/devices/system/cpu/cpu7/power/control": "auto\\n", "/sys/devices/system/cpu/cpu0/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu1/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu2/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu3/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu4/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu5/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu6/hotplug/target": "233\\n", "/sys/devices/system/cpu/cpu7/hotplug/target": "233\\n", "/sys/devices/system/cpu/intel_pstate/status": "active\\n", "/sys/devices/system/cpu/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/vulnerabilities/mds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu0/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu0/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu2/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu3/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu3/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index1/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index2/id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu4/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/id": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index1/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index2/id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu6/topology/die_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index1/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index2/id": "3\\n", "/sys/devices/system/cpu/cpu7/cache/index3/id": "0\\n", "/sys/devices/system/cpu/cpu7/topology/die_id": "0\\n", "/sys/devices/system/cpu/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/vulnerabilities/l1tf": "Not affected\\n", "/sys/devices/system/cpu/cpu0/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu2/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu3/topology/core_id": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_id": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_id": "1\\n", "/sys/devices/system/cpu/cpu6/topology/core_id": "2\\n", "/sys/devices/system/cpu/cpu7/topology/core_id": "3\\n", "/sys/devices/system/cpu/intel_pstate/no_turbo": "0\\n", "/sys/devices/system/cpu/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/vulnerabilities/srbds": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu0/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu0/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu0/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu0/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu0/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu0/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu0/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu1/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu1/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu1/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu1/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu1/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu1/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu1/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu2/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu2/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu2/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu2/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu2/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu2/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu2/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu3/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu3/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu3/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu3/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu3/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu3/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu3/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu4/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu4/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu4/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu4/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu4/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu4/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu4/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu5/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu5/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu5/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu5/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu5/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu5/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu5/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu6/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu6/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu6/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu6/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu6/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu6/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu6/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/cache/index0/size": "48K\\n", "/sys/devices/system/cpu/cpu7/cache/index0/type": "Data\\n", "/sys/devices/system/cpu/cpu7/cache/index1/size": "32K\\n", "/sys/devices/system/cpu/cpu7/cache/index1/type": "Instruction\\n", "/sys/devices/system/cpu/cpu7/cache/index2/size": "1280K\\n", "/sys/devices/system/cpu/cpu7/cache/index2/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/cache/index3/size": "8192K\\n", "/sys/devices/system/cpu/cpu7/cache/index3/type": "Unified\\n", "/sys/devices/system/cpu/cpu7/microcode/version": "0xb8\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus": "ff\\n", "/sys/devices/system/cpu/cpuidle/current_driver": "intel_idle\\n", "/sys/devices/system/cpu/intel_pstate/turbo_pct": "47\\n", "/sys/devices/system/cpu/cpu0/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu0/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu1/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu1/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu2/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu3/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu3/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu4/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu4/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus": "11\\n", "/sys/devices/system/cpu/cpu5/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu5/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus": "22\\n", "/sys/devices/system/cpu/cpu6/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus": "44\\n", "/sys/devices/system/cpu/cpu7/cache/index0/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/level": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/level": "2\\n", "/sys/devices/system/cpu/cpu7/cache/index3/level": "3\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus": "88\\n", "/sys/devices/system/cpu/cpu0/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu0/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu0/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/time": "185624\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/time": "32432258\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/time": "43663241\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/time": "1334495367\\n", "/sys/devices/system/cpu/cpu0/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu1/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu1/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/time": "185829\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/time": "20653668\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/time": "19564904\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/time": "1376776470\\n", "/sys/devices/system/cpu/cpu1/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu2/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu2/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu2/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/time": "174094\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/time": "22496514\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/time": "26966640\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/time": "1368342807\\n", "/sys/devices/system/cpu/cpu2/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu3/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu3/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu3/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/time": "184629\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/time": "17481669\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/time": "15330817\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/time": "1401544639\\n", "/sys/devices/system/cpu/cpu3/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpu4/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu4/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu4/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/time": "156081\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/time": "15989801\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/time": "12238620\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/time": "1407276630\\n", "/sys/devices/system/cpu/cpu4/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu5/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu5/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/time": "182343\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/time": "18450635\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/time": "15207508\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/time": "1394633611\\n", "/sys/devices/system/cpu/cpu5/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_id": "2\\n", "/sys/devices/system/cpu/cpu6/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu6/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu6/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/time": "166656\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/time": "15405820\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/time": "13361807\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/time": "1400318402\\n", "/sys/devices/system/cpu/cpu6/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_id": "4\\n", "/sys/devices/system/cpu/cpu7/cache/index0/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index1/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index2/uevent": "", "/sys/devices/system/cpu/cpu7/cache/index3/uevent": "", "/sys/devices/system/cpu/cpu7/cpuidle/state0/desc": "CPUIDLE CORE POLL IDLE\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/name": "POLL\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/time": "177385\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/desc": "ACPI FFH MWAIT 0x0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/name": "C1_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/time": "16574715\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/desc": "ACPI FFH MWAIT 0x31\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/name": "C2_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/time": "13502838\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/desc": "ACPI FFH MWAIT 0x60\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/name": "C3_ACPI\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/time": "1395803546\\n", "/sys/devices/system/cpu/cpu7/power/runtime_usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_id": "6\\n", "/sys/devices/system/cpu/cpuidle/current_governor": "menu\\n", "/sys/devices/system/cpu/intel_pstate/num_pstates": "39\\n", "/sys/devices/system/cpu/vulnerabilities/meltdown": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/retbleed": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/below": "2890\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/usage": "3084\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/above": "1984\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/below": "20903\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/usage": "98502\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/above": "2498\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/below": "42\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/usage": "47116\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/above": "64383\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/usage": "145321\\n", "/sys/devices/system/cpu/cpu0/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/below": "3254\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/usage": "3399\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/above": "1736\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/below": "10773\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/usage": "83255\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/above": "1737\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/below": "34\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/usage": "21161\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/above": "22898\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/usage": "76685\\n", "/sys/devices/system/cpu/cpu1/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/below": "2913\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/usage": "3080\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/above": "2199\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/below": "10815\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/usage": "88874\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/above": "2774\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/below": "16\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/usage": "28941\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/above": "16072\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/usage": "89021\\n", "/sys/devices/system/cpu/cpu2/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/below": "3249\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/usage": "3557\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/above": "2352\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/below": "8804\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/usage": "75591\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/above": "1958\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/below": "48\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/usage": "16463\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/above": "12312\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/usage": "59036\\n", "/sys/devices/system/cpu/cpu3/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/below": "3227\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/usage": "3517\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/above": "1530\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/below": "7952\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/usage": "72308\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/above": "1238\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/below": "20\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/usage": "13191\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/above": "7646\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/usage": "45967\\n", "/sys/devices/system/cpu/cpu4/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/below": "3090\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/usage": "3239\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/above": "1853\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/below": "8718\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/usage": "78532\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/above": "1659\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/below": "39\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/usage": "16347\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/above": "9416\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/usage": "62169\\n", "/sys/devices/system/cpu/cpu5/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/below": "2903\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/usage": "3122\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/above": "2240\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/below": "7783\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/usage": "71131\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/above": "1385\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/below": "17\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/usage": "14373\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/above": "6920\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/usage": "54821\\n", "/sys/devices/system/cpu/cpu6/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/above": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/below": "3138\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/power": "4294967295\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/usage": "3491\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/above": "2448\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/below": "8787\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/usage": "72496\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/above": "1513\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/below": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/usage": "14534\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/above": "8278\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/below": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/power": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/usage": "48507\\n", "/sys/devices/system/cpu/cpu7/power/runtime_status": "unsupported\\n", "/sys/devices/system/cpu/intel_pstate/max_perf_pct": "100\\n", "/sys/devices/system/cpu/intel_pstate/min_perf_pct": "9\\n", "/sys/devices/system/cpu/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu0/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu1/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu2/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu3/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu4/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus": "11\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu5/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus": "22\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu6/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus": "44\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_perf": "1\\n", "/sys/devices/system/cpu/cpu7/power/runtime_enabled": "disabled\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus": "88\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus": "ff\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v1": "Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n", "/sys/devices/system/cpu/vulnerabilities/spectre_v2": "Mitigation: Enhanced / Automatic IBRS; IBPB: conditional; RSB filling; PBRSB-eIBRS: SW sequence; BHI: SW loop, KVM: SW loop\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu0/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu0/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu1/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu1/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu2/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu2/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu3/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu3/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu4/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu4/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu5/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu5/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu6/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu6/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/highest_perf": "42\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_freq": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/nominal_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/latency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/latency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/latency": "253\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/disable": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/latency": "1048\\n", "/sys/devices/system/cpu/cpu7/power/energy_perf_bias": "6\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings": "ff\\n", "/sys/devices/system/cpu/cpu7/topology/die_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpuidle/available_governors": "ladder menu teo \\n", "/sys/devices/system/cpu/cpuidle/current_governor_ro": "menu\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/feedback_ctrs": "ref:206713170144 del:103243833905\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/feedback_ctrs": "ref:147525718128 del:81213703586\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/feedback_ctrs": "ref:146283138000 del:72929912153\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/feedback_ctrs": "ref:105116445696 del:51020196926\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/feedback_ctrs": "ref:101729938848 del:56758563656\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/feedback_ctrs": "ref:121482137712 del:61394518872\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/feedback_ctrs": "ref:117422405976 del:54962721983\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/feedback_ctrs": "ref:124934383200 del:57961819683\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/rejected": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpufreq/policy0/related_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/related_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/related_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/related_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/related_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/related_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/related_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/related_cpus": "7\\n", "/sys/devices/system/cpu/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings": "11\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings": "22\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings": "44\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/reference_perf": "24\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/residency": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/residency": "1\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/residency": "759\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/residency": "3144\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings": "88\\n", "/sys/devices/system/cpu/cpufreq/policy0/affected_cpus": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/affected_cpus": "1\\n", "/sys/devices/system/cpu/cpufreq/policy2/affected_cpus": "2\\n", "/sys/devices/system/cpu/cpufreq/policy3/affected_cpus": "3\\n", "/sys/devices/system/cpu/cpufreq/policy4/affected_cpus": "4\\n", "/sys/devices/system/cpu/cpufreq/policy5/affected_cpus": "5\\n", "/sys/devices/system/cpu/cpufreq/policy6/affected_cpus": "6\\n", "/sys/devices/system/cpu/cpufreq/policy7/affected_cpus": "7\\n", "/sys/devices/system/cpu/vulnerabilities/itlb_multihit": "Not affected\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu0/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu0/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu1/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu1/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu2/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu2/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu3/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu3/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu4/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu4/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu5/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu5/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu6/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu6/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/wraparound_time": "18446744073709551615\\n", "/sys/devices/system/cpu/cpu7/microcode/processor_flags": "0x80\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_kids": "0\\n", "/sys/devices/system/cpu/cpu7/power/runtime_active_time": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy1/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy2/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy3/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy4/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy5/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy6/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/cpufreq/policy7/base_frequency": "2400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_driver": "intel_pstate\\n", "/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/cluster_cpus_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/cluster_cpus_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/cluster_cpus_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/cluster_cpus_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/topology/package_cpus_list": "0-7\\n", "/sys/devices/system/cpu/vulnerabilities/mmio_stale_data": "Not affected\\n", "/sys/devices/system/cpu/vulnerabilities/tsx_async_abort": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu0/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu1/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu2/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu3/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map": "11\\n", "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu4/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map": "22\\n", "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu5/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map": "44\\n", "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu6/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets": "1024\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map": "88\\n", "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets": "16384\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map": "ff\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/s2idle/usage": "0\\n", "/sys/devices/system/cpu/cpu7/topology/core_siblings_list": "0-7\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq": "3799961\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_cur_freq": "400224\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_cur_freq": "795643\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_cur_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_cur_freq": "400151\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_cur_freq": "784780\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_cur_freq": "400288\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_governor": "powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_max_freq": "4200000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_min_freq": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_setspeed": "<unsupported>\\n", "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu0/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu0/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu1/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu1/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu2/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu2/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu3/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu3/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list": "0,4\\n", "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu4/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu4/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list": "1,5\\n", "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu5/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu5/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list": "2,6\\n", "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu6/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu6/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list": "3,7\\n", "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list": "0-7\\n", "/sys/devices/system/cpu/cpu7/power/runtime_suspended_time": "0\\n", "/sys/devices/system/cpu/cpu7/topology/physical_package_id": "0\\n", "/sys/devices/system/cpu/vulnerabilities/spec_store_bypass": "Mitigation: Speculative Store Bypass disabled via prctl\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list": "0,4\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list": "1,5\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list": "2,6\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state0/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state1/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state2/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/cpuidle/state3/default_status": "enabled\\n", "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list": "3,7\\n", "/sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu1/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu2/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu3/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu4/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu5/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu6/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu7/power/pm_qos_resume_latency_us": "0\\n", "/sys/devices/system/cpu/cpu0/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu1/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu2/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu3/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu4/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu5/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu6/acpi_cppc/lowest_nonlinear_perf": "14\\n", "/sys/devices/system/cpu/cpu7/acpi_cppc/lowest_nonlinear_perf": "13\\n", "/sys/devices/system/cpu/vulnerabilities/gather_data_sampling": "Mitigation: Microcode\\n", "/sys/devices/system/cpu/vulnerabilities/spec_rstack_overflow": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size": "64\\n", "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size": "64\\n", "/sys/devices/system/cpu/vulnerabilities/reg_file_data_sampling": "Not affected\\n", "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity": "12\\n", "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity": "20\\n", "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity": "8\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us": "315057209\\n", "/sys/devices/system/cpu/cpu0/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/cache/index0/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index1/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index2/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/cache/index3/physical_line_partition": "1\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy1/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy2/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy3/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy4/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy5/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy6/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpufreq/policy7/cpuinfo_transition_latency": "0\\n", "/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us": "15846041\\n", "/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy1/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy2/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy3/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy4/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy5/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpufreq/policy7/scaling_available_governors": "performance powersave\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_count": "0\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_preference": "balance_performance\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/core_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_max_time_ms": "0\\n", "/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu4/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu5/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu6/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/cpu7/thermal_throttle/package_throttle_total_time_ms": "0\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/min_freq_khz": "400000\\n", "/sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy1/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy2/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy3/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy4/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy5/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy6/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/cpufreq/policy7/energy_performance_available_preferences": "default performance balance_performance balance_power power \\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_max_freq_khz": "3600000\\n", "/sys/devices/system/cpu/intel_uncore_frequency/package_00_die_00/initial_min_freq_khz": "400000\\n"}, "Docker Containers": "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES", "Network Interfaces": "2: wlp170s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1456 qdisc noqueue state UP group default qlen 1000\\n link/ether 00:93:37:96:a0:14 brd ff:ff:ff:ff:ff:ff\\n--\\n4: br-5358121b016d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:31:4c:7c:39 brd ff:ff:ff:ff:ff:ff\\n--\\n5: br-6e0ae77042d6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:29:4c:03:1e brd ff:ff:ff:ff:ff:ff\\n--\\n6: br-7688b5ca7e2d: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:e5:22:19:30 brd ff:ff:ff:ff:ff:ff\\n--\\n7: br-9ba2a39b0b1e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:f5:74:c1:66 brd ff:ff:ff:ff:ff:ff\\n--\\n8: br-ce560083466a: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:a4:f4:58:34 brd ff:ff:ff:ff:ff:ff\\n--\\n9: br-17d7b4ff19e9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:40:0a:a9:6e brd ff:ff:ff:ff:ff:ff\\n--\\n10: br-b8fe670a4cd7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:15:10:5f:b5 brd ff:ff:ff:ff:ff:ff\\n--\\n11: br-c26dcd3569f9: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default \\n link/ether 02:42:53:0c:b7:f6 brd ff:ff:ff:ff:ff:ff\\n--\\n13: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:2f:19:92:44 brd ff:ff:ff:ff:ff:ff\\n--\\n15: veth4b2531f@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP group default \\n link/ether 16:4d:d1:07:e9:34 brd ff:ff:ff:ff:ff:ff link-netnsid 0\\n--\\n27: br-cd08359ec224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default \\n link/ether 02:42:cb:56:8d:7d brd ff:ff:ff:ff:ff:ff\\n--\\n29: veth4f67909@if28: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether c2:8b:74:ce:4b:f2 brd ff:ff:ff:ff:ff:ff link-netnsid 2\\n--\\n31: veth3d72cc1@if30: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 56:6f:f8:d3:95:47 brd ff:ff:ff:ff:ff:ff link-netnsid 1\\n--\\n33: veth888843b@if32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 72:81:21:75:96:2a brd ff:ff:ff:ff:ff:ff link-netnsid 3\\n--\\n35: veth0c4fb2f@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-cd08359ec224 state UP group default \\n link/ether 1e:1a:b4:b7:47:13 brd ff:ff:ff:ff:ff:ff link-netnsid 4\\n", "Current Clocksource": "tsc", "RAPL Energy Filtering": "0\\n", "Installed Python Packages": "aiohappyeyeballs==2.4.0\\naiohttp==3.10.3\\naiosignal==1.3.1\\nalembic==1.13.2\\nannotated-types==0.7.0\\nanybadge==1.14.0\\nanyio==4.4.0\\nattrs==24.2.0\\ncertifi==2024.8.30\\ncharset-normalizer==3.3.2\\nclick==8.1.7\\ncolorlog==6.8.2\\ndeepdiff==7.0.1\\ndnspython==2.6.1\\ndocker==7.1.0\\nemail_validator==2.2.0\\nfastapi==0.112.0\\nfastapi-cli==0.0.5\\nfrozenlist==1.4.1\\ngreenlet==3.1.0\\ngunicorn==23.0.0\\nh11==0.14.0\\nhiredis==3.0.0\\nhttpcore==1.0.5\\nhttptools==0.6.1\\nhttpx==0.27.2\\nidna==3.8\\nJinja2==3.1.4\\njoblib==1.4.2\\nMako==1.3.5\\nmarkdown-it-py==3.0.0\\nMarkupSafe==2.1.5\\nmdurl==0.1.2\\nmultidict==6.1.0\\nnumpy==2.0.1\\nnvidia-nccl-cu12==2.22.3\\noptuna==3.6.1\\nordered-set==4.1.0\\norjson==3.10.7\\npackaging==24.1\\npandas==2.2.2\\nplotext==5.2.8\\npsutil==6.0.0\\npsycopg==3.2.1\\npsycopg-binary==3.2.1\\npsycopg-pool==3.2.2\\npyarrow==17.0.0\\npydantic==2.9.1\\npydantic_core==2.23.3\\nPygments==2.18.0\\npyserial==3.5\\npython-dateutil==2.9.0.post0\\npython-dotenv==1.0.1\\npython-multipart==0.0.9\\npytz==2024.2\\nPyYAML==6.0.2\\nredis==5.0.8\\nrequests==2.32.3\\nrich==13.8.1\\nschema==0.7.7\\nscikit-learn==1.5.1\\nscipy==1.14.0\\nshellingham==1.5.4\\nsix==1.16.0\\nsniffio==1.3.1\\nSQLAlchemy==2.0.34\\nstarlette==0.37.2\\nthreadpoolctl==3.5.0\\ntqdm==4.66.5\\ntyper==0.12.5\\ntyping_extensions==4.12.2\\ntzdata==2024.1\\nurllib3==2.2.2\\nuvicorn==0.30.6\\nuvicorn-worker==0.2.0\\nuvloop==0.20.0\\nwatchfiles==0.24.0\\nwebsockets==13.0.1\\nxgboost==2.1.0\\nyarl==1.11.1\\n", "Installed System Packages": "Desired=Unknown/Install/Remove/Purge/Hold\\n| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend\\n|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)\\n||/ Name Version Architecture Description\\n+++-=============================================-==========================================-============-===================================================================================\\nii accountsservice 23.13.9-2ubuntu6 amd64 query and manipulate user account information\\nii acl 2.3.2-1build1 amd64 access control list - utilities\\nii adduser 3.137ubuntu1 all add and remove users and groups\\nii adwaita-icon-theme 46.0-1 all default icon theme of GNOME\\nii alsa-base 1.0.25+dfsg-0ubuntu7 all ALSA driver configuration files\\nii alsa-topology-conf 1.2.5.1-2 all ALSA topology configuration files\\nii alsa-ucm-conf 1.2.10-1ubuntu5 all ALSA Use Case Manager configuration files\\nii alsa-utils 1.2.9-1ubuntu5 amd64 Utilities for configuring and using ALSA\\nii amd64-microcode 3.20231019.1ubuntu2 amd64 Processor microcode firmware for AMD CPUs\\nii anacron 2.3-39ubuntu2 amd64 cron-like program that doesn\'t go by time\\nii apg 2.2.3.dfsg.1-5build3 amd64 Automated Password Generator - Standalone version\\nii apparmor 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 user-space parser utility for AppArmor\\nii apport 2.28.1-0ubuntu3.1 all automatically generate crash reports for debugging\\nii apport-core-dump-handler 2.28.1-0ubuntu3.1 all Kernel core dump handler for Apport\\nii apport-gtk 2.28.1-0ubuntu3.1 all GTK+ frontend for the apport crash report system\\nii apport-symptoms 0.25 all symptom scripts for apport\\nii appstream 1.0.2-1build6 amd64 Software component metadata management\\nii apt 2.7.14build2 amd64 commandline package manager\\nii apt-config-icons 1.0.2-1build6 all APT configuration snippet to enable icon downloads\\nii apt-config-icons-hidpi 1.0.2-1build6 all APT configuration snippet to enable HiDPI icon downloads\\nii apt-utils 2.7.14build2 amd64 package management related utility programs\\nii aptdaemon 1.1.1+bzr982-0ubuntu44 all transaction based package management service\\nii aptdaemon-data 1.1.1+bzr982-0ubuntu44 all data files for clients\\nii aspell 0.60.8.1-1build1 amd64 GNU Aspell spell-checker\\nii aspell-en 2020.12.07-0-1 all English dictionary for GNU Aspell\\nii at-spi2-common 2.52.0-1build1 all Assistive Technology Service Provider Interface (common files)\\nii at-spi2-core 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface (D-Bus core)\\nii avahi-daemon 0.8-13ubuntu6 amd64 Avahi mDNS/DNS-SD daemon\\nii baobab 46.0-1build1 amd64 GNOME disk usage analyzer\\nii base-files 13ubuntu10.1 amd64 Debian base system miscellaneous files\\nii base-passwd 3.6.3build1 amd64 Debian base system master password and group files\\nii bash 5.2.21-2ubuntu4 amd64 GNU Bourne Again SHell\\nii bash-completion 1:2.11-8 all programmable completion for the bash shell\\nii bc 1.07.1-3ubuntu4 amd64 GNU bc arbitrary precision calculator language\\nii bind9-dnsutils 1:9.18.28-0ubuntu0.24.04.1 amd64 Clients provided with BIND 9\\nii bind9-host 1:9.18.28-0ubuntu0.24.04.1 amd64 DNS Lookup Utility\\nii bind9-libs:amd64 1:9.18.28-0ubuntu0.24.04.1 amd64 Shared Libraries used by BIND 9\\nii binutils 2.42-4ubuntu2 amd64 GNU assembler, linker and binary utilities\\nii binutils-common:amd64 2.42-4ubuntu2 amd64 Common files for the GNU assembler, linker and binary utilities\\nii binutils-x86-64-linux-gnu 2.42-4ubuntu2 amd64 GNU binary utilities, for x86-64-linux-gnu target\\nii bluez 5.72-0ubuntu5 amd64 Bluetooth tools and daemons\\nii bluez-cups 5.72-0ubuntu5 amd64 Bluetooth printer driver for CUPS\\nii bluez-obexd 5.72-0ubuntu5 amd64 bluez obex daemon\\nii bolt 0.9.7-1 amd64 system daemon to manage thunderbolt 3 devices\\nii boot-repair 4ppa2081 all Graphical tool to repair boot problems\\nii boot-sav 4ppa2081 all Librairies for Boot-Info, OS-uninstaller and Boot-repair\\nii boot-sav-extra 4ppa2081 all Extra librairies for OS-uninstaller and Boot-repair\\nii bpfcc-tools 0.29.1+ds-1ubuntu7 all tools for BPF Compiler Collection (BCC)\\nii bpftrace 0.20.2-1ubuntu4 amd64 high-level tracing language for Linux eBPF\\nii brltty 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display\\nii bsdextrautils 2.39.3-9ubuntu6.1 amd64 extra utilities from 4.4BSD-Lite\\nii bsdutils 1:2.39.3-9ubuntu6.1 amd64 basic utilities from 4.4BSD-Lite\\nii bubblewrap 0.9.0-1build1 amd64 utility for unprivileged chroot and namespace manipulation\\nii build-essential 12.10ubuntu1 amd64 Informational list of build-essential packages\\nii busybox-initramfs 1:1.36.1-6ubuntu3.1 amd64 Standalone shell setup for initramfs\\nii busybox-static 1:1.36.1-6ubuntu3.1 amd64 Standalone rescue shell with tons of builtin utilities\\nii bzip2 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor - utilities\\nii ca-certificates 20240203 all Common CA certificates\\nii ca-certificates-java 20240118 all Common CA certificates (JKS keystore)\\nii cloud-guest-utils 0.33-1 all cloud guest utilities\\nii cloud-init 24.2-0ubuntu1~24.04.2 all initialization and customization tool for cloud instances\\nii colord 1.4.7-1build2 amd64 system service to manage device colour profiles -- system daemon\\nii colord-data 1.4.7-1build2 all system service to manage device colour profiles -- data files\\nii command-not-found 23.04.0 all Suggest installation of packages in interactive bash sessions\\nii console-setup 1.226ubuntu1 all console font and keymap setup program\\nii console-setup-linux 1.226ubuntu1 all Linux specific part of console-setup\\nii containerd.io 1.7.21-1 amd64 An open and reliable container runtime\\nii coreutils 9.4-3ubuntu6 amd64 GNU core utilities\\nii cpio 2.15+dfsg-1ubuntu2 amd64 GNU cpio -- a program to manage archives of files\\nii cpp 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp)\\nii cpp-11 11.4.0-9ubuntu1 amd64 GNU C preprocessor\\nii cpp-13 13.2.0-23ubuntu4 amd64 GNU C preprocessor\\nii cpp-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C preprocessor for x86_64-linux-gnu\\nii cpp-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C preprocessor (cpp) for the amd64 architecture\\nii cracklib-runtime 2.9.6-5.1build2 amd64 runtime support for password checker library cracklib2\\nii cron 3.0pl1-184ubuntu2 amd64 process scheduling daemon\\nii cron-daemon-common 3.0pl1-184ubuntu2 all process scheduling daemon\'s configuration files\\nii cups 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD/driver support, web interface\\nii cups-browsed 2.0.0-0ubuntu10 amd64 OpenPrinting cups-browsed\\nii cups-bsd 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - BSD commands\\nii cups-client 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - client programs (SysV)\\nii cups-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - common files\\nii cups-core-drivers 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - driverless printing\\nii cups-daemon 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - daemon\\nii cups-filters 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Main Package\\nii cups-filters-core-drivers 2.0.0-0ubuntu4 amd64 OpenPrinting CUPS Filters - Driverless printing\\nii cups-ipp-utils 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - IPP developer/admin utilities\\nii cups-pk-helper 0.2.6-1ubuntu8 amd64 PolicyKit helper to configure cups with fine-grained privileges\\nii cups-ppdc 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - PPD manipulation utilities\\nii cups-server-common 2.4.7-1.2ubuntu7.2 all Common UNIX Printing System(tm) - server common files\\nii curl 8.5.0-2ubuntu10.3 amd64 command line tool for transferring data with URL syntax\\nii dash 0.5.12-6ubuntu5 amd64 POSIX-compliant shell\\nii dbus 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (system message bus)\\nii dbus-bin 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (command line utilities)\\nii dbus-daemon 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (reference message bus)\\nii dbus-session-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (session bus configuration)\\nii dbus-system-bus-common 1.14.10-4ubuntu4.1 all simple interprocess messaging system (system bus configuration)\\nii dbus-user-session 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (systemd --user integration)\\nii dc 1.07.1-3ubuntu4 amd64 GNU dc arbitrary precision reverse-polish calculator\\nii dconf-cli 0.40.0-4build2 amd64 simple configuration storage system - utilities\\nii dconf-gsettings-backend:amd64 0.40.0-4build2 amd64 simple configuration storage system - GSettings back-end\\nii dconf-service 0.40.0-4build2 amd64 simple configuration storage system - D-Bus service\\nii debconf 1.5.86ubuntu1 all Debian configuration management system\\nii debconf-i18n 1.5.86ubuntu1 all full internationalization support for debconf\\nii debianutils 5.17build1 amd64 Miscellaneous utilities specific to Debian\\nii desktop-file-utils 0.27-2build1 amd64 Utilities for .desktop files\\nii dhcpcd-base 1:10.0.6-1ubuntu3.1 amd64 DHCPv4 and DHCPv6 dual-stack client (binaries and exit hooks)\\nii dictionaries-common 1.29.7 all spelling dictionaries - common utilities\\nii diffutils 1:3.10-1build1 amd64 File comparison utilities\\nii dirmngr 2.4.4-2ubuntu17 amd64 GNU privacy guard - network certificate management service\\nii distro-info 1.7build1 amd64 provides information about the distributions\' releases\\nii distro-info-data 0.60ubuntu0.1 all information about the distributions\' releases (data files)\\nii dmidecode 3.5-3build1 amd64 SMBIOS/DMI table decoder\\nii dmsetup 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii dmz-cursor-theme 0.4.5ubuntu1 all Style neutral, scalable cursor theme\\nii dns-root-data 2023112702~willsync1 all DNS root data including root zone and DNSSEC key\\nii dnsmasq-base 2.90-2build2 amd64 Small caching DNS proxy and DHCP/TFTP server - executable\\nii docbook-xml 4.5-12 all standard XML documentation system for software and systems\\nii docker-buildx-plugin 0.16.2-1~ubuntu.22.04~jammy amd64 Docker Buildx cli plugin.\\nii docker-ce 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker: the open-source application container engine\\nii docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine\\nii docker-ce-rootless-extras 5:27.2.1-1~ubuntu.22.04~jammy amd64 Rootless support for Docker.\\nii docker-compose-plugin 2.29.2-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.\\nii dosfstools 4.2-1.1build1 amd64 utilities for making and checking MS-DOS FAT filesystems\\nii dpkg 1.22.6ubuntu6.1 amd64 Debian package management system\\nii dpkg-dev 1.22.6ubuntu6.1 all Debian package development tools\\nii dracut-install 060+5-1ubuntu3.2 amd64 dracut is an event driven initramfs infrastructure (dracut-install)\\nii e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system utilities\\nii eatmydata 131-1ubuntu1 all Library and utilities designed to disable fsync and friends\\nii ed 1.20.1-1 amd64 classic UNIX line editor\\nii efibootmgr 18-1build2 amd64 Interact with the EFI Boot Manager\\nii eject 2.39.3-9ubuntu6.1 amd64 ejects CDs and operates CD-Changers under Linux\\nii emacsen-common 3.0.5 all Common facilities for all emacsen\\nii enchant-2 2.3.3-2build2 amd64 Wrapper for various spell checker engines (binary programs)\\nii eog 45.3-1ubuntu2 amd64 Eye of GNOME graphics viewer program\\nii espeak-ng-data:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: speech data files\\nii ethtool 1:6.7-1build1 amd64 display or change Ethernet device settings\\nii evince 46.0-1build1 amd64 Document (PostScript, PDF) viewer\\nii evince-common 46.0-1build1 all Document (PostScript, PDF) viewer - common files\\nii evolution-data-server 3.52.3-0ubuntu1 amd64 evolution database backend server\\nii evolution-data-server-common 3.52.3-0ubuntu1 all architecture independent files for Evolution Data Server\\nii fakeroot 1.33-1 amd64 tool for simulating superuser privileges\\nii fdisk 2.39.3-9ubuntu6.1 amd64 collection of partitioning utilities\\nii file 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers\\nii file-roller 44.3-0ubuntu1 amd64 archive manager for GNOME\\nii findutils 4.9.0-5build1 amd64 utilities for finding files--find, xargs\\nii firefox 1:1snap1-0ubuntu5 amd64 Transitional package - firefox -> firefox snap\\nii firmware-sof-signed 2023.12.1-1ubuntu1 all Intel SOF firmware - signed\\nii fontconfig 2.15.0-1.1ubuntu2 amd64 generic font configuration library - support binaries\\nii fontconfig-config 2.15.0-1.1ubuntu2 amd64 generic font configuration library - configuration\\nii fonts-beng 2:1.3 all Metapackage to install Bengali and Assamese fonts\\nii fonts-beng-extra 3.3.1-2 all TrueType fonts for Bengali language\\nii fonts-dejavu-core 2.37-8 all Vera font family derivate with additional characters\\nii fonts-dejavu-mono 2.37-8 all Vera font family derivate with additional characters\\nii fonts-deva 2:1.4 all Meta package to install all Devanagari fonts\\nii fonts-deva-extra 3.0-6 all Free fonts for Devanagari script\\nii fonts-droid-fallback 1:6.0.1r16-1.1build1 all handheld device font with extensive style and language support (fallback)\\nii fonts-freefont-ttf 20211204+svn4273-2 all Freefont Serif, Sans and Mono Truetype fonts\\nii fonts-gargi 2.0-6 all OpenType Devanagari font\\nii fonts-gubbi 1.3-7 all Gubbi free font for Kannada script\\nii fonts-gujr 2:1.5 all Meta package to install all Gujarati fonts\\nii fonts-gujr-extra 1.0.1-2 all Free fonts for Gujarati script\\nii fonts-guru 2:1.3 all Meta package to install all Punjabi fonts\\nii fonts-guru-extra 2.0-5 all Free fonts for Punjabi language\\nii fonts-indic 2:1.4 all Meta package to install all Indian language fonts\\nii fonts-kalapi 1.0-5 all Kalapi Gujarati Unicode font\\nii fonts-knda 2:1.3 all Meta package for Kannada fonts\\nii fonts-liberation 1:2.1.5-3 all fonts with the same metrics as Times, Arial and Courier\\nii fonts-liberation-sans-narrow 1:1.07.6-4 all Sans-serif Narrow fonts to replace commonly used Arial Narrow\\nii fonts-lohit-beng-assamese 2.91.5-2 all Lohit TrueType font for Assamese Language\\nii fonts-lohit-beng-bengali 2.91.5-3 all Lohit TrueType font for Bengali Language\\nii fonts-lohit-deva 2.95.4-5 all Lohit TrueType font for Devanagari script\\nii fonts-lohit-gujr 2.92.4-4 all Lohit TrueType font for Gujarati Language\\nii fonts-lohit-guru 2.91.2-3 all Lohit TrueType font for Punjabi Language\\nii fonts-lohit-knda 2.5.4-3 all Lohit TrueType font for Kannada Language\\nii fonts-lohit-mlym 2.92.2-2 all Lohit TrueType font for Malayalam Language\\nii fonts-lohit-orya 2.91.2-2 all Lohit TrueType font for Oriya Language\\nii fonts-lohit-taml 2.91.3-2 all Lohit TrueType font for Tamil Language\\nii fonts-lohit-taml-classical 2.5.4-2 all Lohit Tamil TrueType fonts for Tamil script\\nii fonts-lohit-telu 2.5.5-2build1 all Lohit TrueType font for Telugu Language\\nii fonts-mlym 2:1.3 all Meta package to install all Malayalam fonts\\nii fonts-nakula 1.0-4 all Free Unicode compliant Devanagari font\\nii fonts-navilu 1.2-4 all Handwriting font for Kannada\\nii fonts-noto-cjk 1:20230817+repack1-3 all \\"No Tofu\\" font families with large Unicode coverage (CJK regular and bold)\\nii fonts-noto-color-emoji 2.042-1 all color emoji font from Google\\nii fonts-noto-core 20201225-2 all \\"No Tofu\\" font families with large Unicode coverage (core)\\nii fonts-noto-mono 20201225-2 all \\"No Tofu\\" monospaced font family with large Unicode coverage\\nii fonts-opensymbol 4:102.12+LibO24.2.5-0ubuntu0.24.04.2 all OpenSymbol TrueType font\\nii fonts-orya 2:1.3 all Meta package to install all Odia fonts\\nii fonts-orya-extra 2.0-6 all Free fonts for Odia script\\nii fonts-pagul 1.0-9 all Free TrueType font for the Sourashtra language\\nii fonts-sahadeva 1.0-5 all Free Unicode compliant Devanagari font\\nii fonts-samyak-deva 1.2.2-6 all Samyak TrueType font for Devanagari script\\nii fonts-samyak-gujr 1.2.2-6 all Samyak TrueType font for Gujarati language\\nii fonts-samyak-mlym 1.2.2-6 all Samyak TrueType font for Malayalam language\\nii fonts-samyak-taml 1.2.2-6 all Samyak TrueType font for Tamil language\\nii fonts-sarai 1.0-3 all truetype font for devanagari script\\nii fonts-sil-annapurna 2.000-2 all smart font for languages using Devanagari script\\nii fonts-smc 1:7.5 all Metapackage for various TrueType fonts for Malayalam Language\\nii fonts-smc-anjalioldlipi 7.1.2-2 all AnjaliOldLipi malayalam font\\nii fonts-smc-chilanka 1.540-2 all Chilanka malayalam font\\nii fonts-smc-dyuthi 3.0.2-2 all Dyuthi malayalam font\\nii fonts-smc-gayathri 1.200-1 all Gayathri Malayalam font\\nii fonts-smc-karumbi 1.1.2-2 all Karumbi malayalam font\\nii fonts-smc-keraleeyam 3.0.2-2 all Keraleeyam malayalam font\\nii fonts-smc-manjari 2.200-1 all Manjari malayalam font\\nii fonts-smc-meera 7.0.3-1 all Meera malayalam font\\nii fonts-smc-rachana 7.0.2-1build1 all Rachana malayalam font\\nii fonts-smc-raghumalayalamsans 2.2.1-1 all RaghuMalayalamSans malayalam font\\nii fonts-smc-suruma 3.2.3-1 all Suruma malayalam font\\nii fonts-smc-uroob 2.0.2-1 all Uroob malayalam font\\nii fonts-taml 2:1.4 all Meta package to install all Tamil fonts\\nii fonts-telu 2:1.3 all Meta package to install all Telugu fonts\\nii fonts-telu-extra 2.0-6 all Free fonts for Telugu script\\nii fonts-teluguvijayam 2.1-1 all TrueType fonts for Telugu script (te)\\nii fonts-ubuntu 0.869+git20240321-0ubuntu1 all sans-serif font set from Ubuntu\\nii fonts-urw-base35 20200910-8 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts\\nii fonts-yrsa-rasa 2.005-1 all Open-source, libre fonts for Latin + Gujarati\\nii foomatic-db-compressed-ppds 20230202-1 all OpenPrinting printer support - Compressed PPDs derived from the database\\nii fprintd 1.94.3-1 amd64 D-Bus daemon for fingerprint reader access\\nii freeipmi-common 1.6.13-3 all GNU implementation of the IPMI protocol - common files\\nii freeipmi-tools 1.6.13-3 amd64 GNU implementation of the IPMI protocol - tools\\nii friendly-recovery 0.2.42 all Make recovery boot mode more user-friendly\\nii ftp 20230507-2build3 all dummy transitional package for tnftp\\nii fuse3 3.14.0-5build1 amd64 Filesystem in Userspace (3.x version)\\nii fwupd 1.9.24-1~24.04.1 amd64 Firmware update daemon\\nii fwupd-signed 1.52+1.4-1 amd64 Linux Firmware Updater EFI signed binary\\nii g++ 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler\\nii g++-13 13.2.0-23ubuntu4 amd64 GNU C++ compiler\\nii g++-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C++ compiler for x86_64-linux-gnu architecture\\nii g++-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C++ compiler for the amd64 architecture\\nii gamemode 1.8.1-2build1 amd64 Optimise Linux system performance on demand\\nii gamemode-daemon 1.8.1-2build1 amd64 Optimise Linux system performance on demand (daemon)\\nii gcc 4:13.2.0-7ubuntu1 amd64 GNU C compiler\\nii gcc-11 11.4.0-9ubuntu1 amd64 GNU C compiler\\nii gcc-11-base:amd64 11.4.0-9ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13 13.2.0-23ubuntu4 amd64 GNU C compiler\\nii gcc-13-base:amd64 13.2.0-23ubuntu4 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-13-x86-64-linux-gnu 13.2.0-23ubuntu4 amd64 GNU C compiler for the x86_64-linux-gnu architecture\\nii gcc-14-base:amd64 14-20240412-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package)\\nii gcc-x86-64-linux-gnu 4:13.2.0-7ubuntu1 amd64 GNU C compiler for the amd64 architecture\\nii gcr 3.41.2-1build3 amd64 GNOME crypto services (daemon and tools)\\nii gcr4 4.2.0-5 amd64 GNOME crypto services (daemon and tools)\\nii gdb 15.0.50.20240403-0ubuntu1 amd64 GNU Debugger\\nii gdisk 1.0.10-1build1 amd64 GPT fdisk text-mode partitioning tool\\nii gdm3 46.0-2ubuntu1 amd64 GNOME Display Manager\\nii geoclue-2.0 2.7.0-3ubuntu7 amd64 geoinformation service\\nii geocode-glib-common 3.26.3-6build3 all icons for the geocode-glib library\\nii gettext-base 0.21-14ubuntu2 amd64 GNU Internationalization utilities for the base system\\nii ghostscript 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF\\nii gir1.2-accountsservice-1.0:amd64 23.13.9-2ubuntu6 amd64 GObject introspection data for AccountService\\nii gir1.2-adw-1:amd64 1.5.0-1ubuntu2 amd64 GObject introspection files for libadwaita\\nii gir1.2-atk-1.0:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit (GObject introspection)\\nii gir1.2-atspi-2.0:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider (GObject introspection)\\nii gir1.2-dbusmenu-glib-0.4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 typelib file for libdbusmenu-glib4\\nii gir1.2-dee-1.0:amd64 1.2.7+17.10.20170616-7build5 amd64 GObject introspection data for the Dee library\\nii gir1.2-freedesktop:amd64 1.80.1-1 amd64 Introspection data for some FreeDesktop components\\nii gir1.2-gck-2:amd64 4.2.0-5 amd64 GObject introspection data for the GCK library\\nii gir1.2-gcr-4:amd64 4.2.0-5 amd64 GObject introspection data for the GCR library\\nii gir1.2-gdesktopenums-3.0:amd64 46.1-0ubuntu1 amd64 GObject introspection for GSettings desktop-wide schemas\\nii gir1.2-gdkpixbuf-2.0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library - GObject-Introspection\\nii gir1.2-gdm-1.0 46.0-2ubuntu1 amd64 GObject introspection data for the GNOME Display Manager\\nii gir1.2-geoclue-2.0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service (introspection)\\nii gir1.2-girepository-2.0:amd64 1.80.1-1 amd64 Introspection data for GIRepository library\\nii gir1.2-glib-2.0:amd64 2.80.0-6ubuntu3.1 amd64 Introspection data for GLib, GObject, Gio and GModule\\nii gir1.2-gmenu-3.0:amd64 3.36.0-1.1ubuntu3 amd64 GObject introspection data for the GNOME menu library\\nii gir1.2-gnomeautoar-0.1:amd64 0.4.4-2build4 amd64 GObject introspection data for GnomeAutoar\\nii gir1.2-gnomebg-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeBG (GTK 4)\\nii gir1.2-gnomebluetooth-3.0:amd64 46.0-1build1 amd64 Introspection data for GnomeBluetooth\\nii gir1.2-gnomedesktop-3.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 3)\\nii gir1.2-gnomedesktop-4.0:amd64 44.0-5build2 amd64 Introspection data for GnomeDesktop (GTK 4)\\nii gir1.2-graphene-1.0:amd64 1.10.8-3build2 amd64 library of graphic data types (introspection files)\\nii gir1.2-gstreamer-1.0:amd64 1.24.2-1 amd64 GObject introspection data for the GStreamer library\\nii gir1.2-gtk-3.0:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gtk-4.0:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library -- gir bindings\\nii gir1.2-gudev-1.0:amd64 1:238-5ubuntu1 amd64 libgudev-1.0 introspection data\\nii gir1.2-gweather-4.0:amd64 4.4.2-1build1 amd64 GObject introspection data for the GWeather library\\nii gir1.2-handy-1:amd64 1.8.3-1build2 amd64 GObject introspection files for libhandy\\nii gir1.2-harfbuzz-0.0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (GObject introspection data)\\nii gir1.2-ibus-1.0:amd64 1.5.29-2 amd64 Intelligent Input Bus - introspection data\\nii gir1.2-javascriptcoregtk-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-javascriptcoregtk-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK - GObject introspection data\\nii gir1.2-mutter-14:amd64 46.2-1ubuntu0.24.04.1 amd64 GObject introspection data for Mutter\\nii gir1.2-nm-1.0:amd64 1.46.0-1ubuntu2 amd64 GObject introspection data for the libnm library\\nii gir1.2-nma4-1.0:amd64 1.10.6-3build2 amd64 GObject introspection data for libnma-gtk4\\nii gir1.2-notify-0.7:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Introspection files)\\nii gir1.2-packagekitglib-1.0 1.2.8-2build3 amd64 GObject introspection data for the PackageKit GLib library\\nii gir1.2-pango-1.0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text - gir bindings\\nii gir1.2-peas-1.0:amd64 1.36.0-3build4 amd64 Application plugin library (introspection files)\\nii gir1.2-polkit-1.0 124-2ubuntu1 amd64 GObject introspection data for polkit\\nii gir1.2-rsvg-2.0:amd64 2.58.0+dfsg-1build1 amd64 gir files for renderer library for SVG files\\nii gir1.2-secret-1:amd64 0.21.4-1build3 amd64 Secret store (GObject-Introspection)\\nii gir1.2-snapd-2:amd64 1.64-0ubuntu5 amd64 Typelib file for libsnapd-glib1\\nii gir1.2-soup-3.0:amd64 3.4.4-5build2 amd64 GObject introspection data for the libsoup HTTP library\\nii gir1.2-udisks-2.0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2 - introspection data\\nii gir1.2-unity-7.0:amd64 7.1.4+19.04.20190319-6build4 amd64 GObject introspection data for the Unity library\\nii gir1.2-upowerglib-1.0:amd64 1.90.3-1 amd64 GObject introspection data for upower\\nii gir1.2-vte-2.91:amd64 0.76.0-1ubuntu0.1 amd64 GObject introspection data for the VTE library\\nii gir1.2-webkit-6.0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-webkit2-4.1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK - GObject introspection data\\nii gir1.2-wnck-3.0:amd64 43.0-3build4 amd64 GObject introspection data for the WNCK library\\nii git 1:2.43.0-1ubuntu7.1 amd64 fast, scalable, distributed revision control system\\nii git-man 1:2.43.0-1ubuntu7.1 all fast, scalable, distributed revision control system (manual pages)\\nii gjs 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform (cli tool)\\nii gkbd-capplet 3.28.1-1build3 amd64 GNOME control center tools for libgnomekbd\\nii glade2script 3.2.4~ppa23 all Glade interface engine for scripts\\nii glade2script-python3 3.2.4~ppa23 all Glade interface engine for scripts (Python3 version)\\nii glib-networking:amd64 2.80.0-1build1 amd64 network-related giomodules for GLib\\nii glib-networking-common 2.80.0-1build1 all network-related giomodules for GLib - data files\\nii glib-networking-services 2.80.0-1build1 amd64 network-related giomodules for GLib - D-Bus services\\nii gnome-accessibility-themes 3.28-2ubuntu5 all High Contrast GTK 2 theme and icons\\nii gnome-bluetooth-3-common 46.0-1build1 all GNOME Bluetooth 3 common files\\nii gnome-bluetooth-sendto 46.0-1build1 amd64 GNOME Bluetooth Send To app\\nii gnome-calculator 1:46.1-1ubuntu1~24.04.1 amd64 GNOME desktop calculator\\nii gnome-characters 46.0-1build1 amd64 character map application\\nii gnome-clocks 46.0-1build1 amd64 Simple GNOME app with stopwatch, timer, and world clock support\\nii gnome-control-center 1:46.0.1-1ubuntu7 amd64 utilities to configure the GNOME desktop\\nii gnome-control-center-data 1:46.0.1-1ubuntu7 all configuration applets for GNOME - data files\\nii gnome-control-center-faces 1:46.0.1-1ubuntu7 all utilities to configure the GNOME desktop - faces images\\nii gnome-desktop3-data 44.0-5build2 all Common files for GNOME desktop apps\\nii gnome-disk-utility 46.0-1ubuntu3 amd64 manage and configure disk drives and media\\nii gnome-font-viewer 46.0-1build1 amd64 font viewer for GNOME\\nii gnome-initial-setup 46.2-1ubuntu0.24.04.1 amd64 Initial GNOME system setup helper\\nii gnome-keyring 46.1-2build1 amd64 GNOME keyring services (daemon and tools)\\nii gnome-keyring-pkcs11:amd64 46.1-2build1 amd64 GNOME keyring module for the PKCS#11 module loading library\\nii gnome-logs 45.0-1build1 amd64 viewer for the systemd journal\\nii gnome-menus 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii gnome-online-accounts 3.50.4-0ubuntu2 amd64 service to manage online accounts for the GNOME desktop\\nii gnome-power-manager 43.0-2build2 amd64 power management tool for the GNOME desktop\\nii gnome-remote-desktop 46.3-0ubuntu1 amd64 Remote desktop daemon for GNOME using PipeWire\\nii gnome-session-bin 46.0-1ubuntu4 amd64 GNOME Session Manager - Minimal runtime\\nii gnome-session-canberra 0.30-10ubuntu10 amd64 GNOME session log in and log out sound events\\nii gnome-session-common 46.0-1ubuntu4 all GNOME Session Manager - common files\\nii gnome-settings-daemon 46.0-1ubuntu1 amd64 daemon handling the GNOME session settings\\nii gnome-settings-daemon-common 46.0-1ubuntu1 all daemon handling the GNOME session settings - common files\\nii gnome-shell 46.0-0ubuntu6~24.04.4 amd64 graphical shell for the GNOME desktop\\nii gnome-shell-common 46.0-0ubuntu6~24.04.4 all common files for the GNOME graphical shell\\nii gnome-shell-extension-appindicator 58-1 all AppIndicator, KStatusNotifierItem and tray support for GNOME Shell\\nii gnome-shell-extension-desktop-icons-ng 46+really47.0.9-1 all desktop icon support for GNOME Shell\\nii gnome-shell-extension-ubuntu-dock 90ubuntu1 all Ubuntu Dock for GNOME Shell\\nii gnome-shell-extension-ubuntu-tiling-assistant 46-1ubuntu1.1 all extension which adds a Windows-like snap assist to GNOME Shell\\nii gnome-snapshot 46.2-1ubuntu2 amd64 Take pictures and videos from your webcam\\nii gnome-startup-applications 46.0-1ubuntu4 amd64 Startup Applications manager for GNOME\\nii gnome-system-monitor 46.0-1build1 amd64 Process viewer and system resource monitor for GNOME\\nii gnome-terminal 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application\\nii gnome-terminal-data 3.52.0-1ubuntu2 all Data files for the GNOME terminal emulator\\nii gnome-text-editor 46.3-0ubuntu2 amd64 simple text editor for GNOME\\nii gnome-themes-extra:amd64 3.28-2ubuntu5 amd64 Adwaita GTK 2 theme — engine\\nii gnome-themes-extra-data 3.28-2ubuntu5 all Adwaita GTK 2 theme and Adwaita-dark GTK 3 theme — common files\\nii gnome-user-docs 46.0-1ubuntu1 all GNOME Help\\nii gnome-user-docs-de 46.0-1ubuntu1 all GNOME Help (German)\\nii gnupg 2.4.4-2ubuntu17 all GNU privacy guard - a free PGP replacement\\nii gnupg-l10n 2.4.4-2ubuntu17 all GNU privacy guard - localization files\\nii gnupg-utils 2.4.4-2ubuntu17 amd64 GNU privacy guard - utility programs\\nii gpg 2.4.4-2ubuntu17 amd64 GNU Privacy Guard -- minimalist public key operations\\nii gpg-agent 2.4.4-2ubuntu17 amd64 GNU privacy guard - cryptographic agent\\nii gpg-wks-client 2.4.4-2ubuntu17 amd64 GNU privacy guard - Web Key Service client\\nii gpgconf 2.4.4-2ubuntu17 amd64 GNU privacy guard - core configuration utilities\\nii gpgsm 2.4.4-2ubuntu17 amd64 GNU privacy guard - S/MIME version\\nii gpgv 2.4.4-2ubuntu17 amd64 GNU privacy guard - signature verification tool\\nii grep 3.11-4build1 amd64 GNU grep, egrep and fgrep\\nii groff-base 1.23.0-3build2 amd64 GNU troff text-formatting system (base system components)\\nii grub-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files)\\nii grub-efi-amd64-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 modules)\\nii grub-efi-amd64-signed 1.202+2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)\\nii grub-gfxpayload-lists 0.7build2 amd64 GRUB gfxpayload blacklist\\nii grub-pc 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)\\nii grub-pc-bin 2.12-1ubuntu7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules)\\nii grub2-common 2.12-1ubuntu7 amd64 GRand Unified Bootloader (common files for version 2)\\nii gsettings-desktop-schemas 46.1-0ubuntu1 all GSettings desktop-wide schemas\\nii gsettings-ubuntu-schemas 0.0.7+21.10.20210712-0ubuntu3 all GSettings deskop-wide schemas for Ubuntu\\nii gstreamer1.0-alsa:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugin for ALSA\\nii gstreamer1.0-gl:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for GL\\nii gstreamer1.0-libcamera:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library (GStreamer plugin)\\nii gstreamer1.0-packagekit 1.2.8-2build3 amd64 GStreamer plugin to install codecs using PackageKit\\nii gstreamer1.0-pipewire:amd64 1.0.5-1ubuntu1 amd64 GStreamer 1.0 plugin for the PipeWire multimedia server\\nii gstreamer1.0-plugins-base:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins from the \\"base\\" set\\nii gstreamer1.0-plugins-base-apps 1.24.2-1ubuntu0.1 amd64 GStreamer helper programs from the \\"base\\" set\\nii gstreamer1.0-plugins-good:amd64 1.24.2-1ubuntu1 amd64 GStreamer plugins from the \\"good\\" set\\nii gstreamer1.0-tools 1.24.2-1 amd64 Tools for use with GStreamer\\nii gstreamer1.0-x:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer plugins for X11 and Pango\\nii gtk-update-icon-cache 3.24.41-4ubuntu1.1 amd64 icon theme caching utility\\nii gtk2-engines-murrine:amd64 0.98.2-4 amd64 cairo-based gtk+-2.0 theme engine\\nii gtk2-engines-pixbuf:amd64 2.24.33-4ubuntu1.1 amd64 pixbuf-based theme for GTK 2\\nii gvfs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - GIO module\\nii gvfs-backends 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - backends\\nii gvfs-common 1.54.0-1ubuntu2 all userspace virtual filesystem - common data files\\nii gvfs-daemons 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - servers\\nii gvfs-fuse 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - fuse server\\nii gvfs-libs:amd64 1.54.0-1ubuntu2 amd64 userspace virtual filesystem - private libraries\\nii gzip 1.12-1ubuntu3 amd64 GNU compression utilities\\nii hdparm 9.65+ds-1build1 amd64 tune hard disk parameters for high performance\\nii heif-gdk-pixbuf:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - gdk-pixbuf loader\\nii heif-thumbnailer 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - thumbnailer\\nii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes\\nii hostname 3.23+nmu2ubuntu2 amd64 utility to set/show the host name or domain name\\nii hplip 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging System (HPLIP)\\nii hplip-data 3.23.12+dfsg0-0ubuntu5 all HP Linux Printing and Imaging - data files\\nii humanity-icon-theme 0.6.16 all Humanity Icon theme\\nii hunspell-en-us 1:2020.12.07-2 all English_american dictionary for hunspell\\nii hwdata 0.379-1 all hardware identification / configuration data\\nii ibus 1.5.29-2 amd64 Intelligent Input Bus - core\\nii ibus-data 1.5.29-2 all Intelligent Input Bus - data files\\nii ibus-gtk:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK2 support\\nii ibus-gtk3:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK3 support\\nii ibus-gtk4:amd64 1.5.29-2 amd64 Intelligent Input Bus - GTK4 support\\nii ibus-table 1.17.4-2 all table engine for IBus\\nii ibverbs-providers:amd64 50.0-2build2 amd64 User space provider drivers for libibverbs\\nii ieee-data 20220827.1 all OUI and IAB listings\\nii iio-sensor-proxy 3.5-1build2 amd64 IIO sensors to D-Bus proxy\\nii im-config 0.57-2 all Input method configuration framework\\nii inetutils-telnet 2:2.5-3ubuntu4 amd64 telnet client\\nii info 7.1-3build2 amd64 Standalone GNU Info documentation browser\\nii init 1.66ubuntu1 amd64 metapackage ensuring an init system is installed\\nii init-system-helpers 1.66ubuntu1 all helper tools for all init systems\\nii initramfs-tools 0.142ubuntu25.2 all generic modular initramfs generator (automation)\\nii initramfs-tools-bin 0.142ubuntu25.2 amd64 binaries used by initramfs-tools\\nii initramfs-tools-core 0.142ubuntu25.2 all generic modular initramfs generator (core tools)\\nii inputattach 1:1.8.1-2build1 amd64 utility to connect serial-attached peripherals to the input subsystem\\nii install-info 7.1-3build2 amd64 Manage installed documentation in info format\\nii intel-microcode 3.20240813.0ubuntu0.24.04.2 amd64 Processor microcode firmware for Intel CPUs\\nii ipmitool 1.8.19-7build2 amd64 utility for IPMI control with kernel driver or LAN interface (daemon)\\nii ipp-usb 0.9.24-0ubuntu3.1 amd64 Daemon for IPP over USB printer support\\nii iproute2 6.1.0-1ubuntu6 amd64 networking and traffic control tools\\nii iptables 1.8.10-3ubuntu2 amd64 administration tools for packet filtering and NAT\\nii iputils-ping 3:20240117-1build1 amd64 Tools to test the reachability of network hosts\\nii iputils-tracepath 3:20240117-1build1 amd64 Tools to trace the network path to a remote host\\nii iso-codes 4.16.0-1 all ISO language, territory, currency, script codes and their translations\\nii iucode-tool 2.3.1-3build1 amd64 Intel processor microcode tool\\nii java-common 0.75+exp1 all Base package for Java runtimes\\nii javascript-common 11+nmu1 all Base support for JavaScript library packages\\nii jq 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor\\nii kbd 2.6.4-2ubuntu2 amd64 Linux console font and keytable utilities\\nii kerneloops 0.12+git20140509-6ubuntu8 amd64 kernel oops tracker\\nii keyboard-configuration 1.226ubuntu1 all system-wide keyboard preferences\\nii keyboxd 2.4.4-2ubuntu17 amd64 GNU privacy guard - public key material service\\nii klibc-utils 2.0.13-4ubuntu0.1 amd64 small utilities built with klibc for early boot\\nii kmod 31+20240202-2ubuntu7 amd64 tools for managing Linux kernel modules\\nii language-pack-de 1:24.04+20240817 all translation updates for language German\\nii language-pack-de-base 1:24.04+20240817 all translations for language German\\nii language-pack-en 1:24.04+20240817 all translation updates for language English\\nii language-pack-en-base 1:24.04+20240817 all translations for language English\\nii language-pack-gnome-de 1:24.04+20240817 all GNOME translation updates for language German\\nii language-pack-gnome-de-base 1:24.04+20240817 all GNOME translations for language German\\nii language-pack-gnome-en 1:24.04+20240817 all GNOME translation updates for language English\\nii language-pack-gnome-en-base 1:24.04+20240817 all GNOME translations for language English\\nii language-selector-common 0.225 all Language selector for Ubuntu\\nii language-selector-gnome 0.225 all Language selector frontend for Ubuntu\\nii laptop-detect 0.16 all system chassis type checker\\nii less 590-2ubuntu2.1 amd64 pager program similar to more\\nii libaa1:amd64 1.4p5-51.1 amd64 ASCII art library\\nii libabsl20220623t64:amd64 20220623.1-3.1ubuntu3 amd64 extensions to the C++ standard library\\nii libaccountsservice0:amd64 23.13.9-2ubuntu6 amd64 query and manipulate user account information - shared libraries\\nii libacl1:amd64 2.3.2-1build1 amd64 access control list - shared library\\nii libadwaita-1-0:amd64 1.5.0-1ubuntu2 amd64 Library with GTK widgets for mobile phones\\nii libaio1t64:amd64 0.3.113-6build1 amd64 Linux kernel AIO access library - shared library\\nii libalgorithm-diff-perl 1.201-1 all module to find differences between files\\nii libalgorithm-diff-xs-perl:amd64 0.04-8build3 amd64 module to find differences between files (XS accelerated)\\nii libalgorithm-merge-perl 0.08-5 all Perl module for three-way merge of textual data\\nii libao-common 1.2.2+20180113-1.1ubuntu4 all Cross Platform Audio Output Library (Common files)\\nii libao4:amd64 1.2.2+20180113-1.1ubuntu4 amd64 Cross Platform Audio Output Library\\nii libaom3:amd64 3.8.2-2ubuntu0.1 amd64 AV1 Video Codec Library\\nii libapparmor1:amd64 4.0.1really4.0.0-beta3-0ubuntu0.1 amd64 changehat AppArmor library\\nii libappstream5:amd64 1.0.2-1build6 amd64 Library to access AppStream services\\nii libapr1-dev 1.7.2-3.1build2 amd64 Apache Portable Runtime Library - Development Headers\\nii libapr1t64:amd64 1.7.2-3.1build2 amd64 Apache Portable Runtime Library\\nii libapt-pkg6.0t64:amd64 2.7.14build2 amd64 package management runtime library\\nii libarchive13t64:amd64 3.7.2-2ubuntu0.1 amd64 Multi-format archive and compression library (shared library)\\nii libargon2-1:amd64 0~20190702+dfsg-4build1 amd64 memory-hard hashing function - runtime library\\nii libasan6:amd64 11.4.0-9ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasan8:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libasound2-data 1.2.11-1build2 all Configuration files and profiles for ALSA drivers\\nii libasound2t64:amd64 1.2.11-1build2 amd64 shared library for ALSA applications\\nii libaspell15:amd64 0.60.8.1-1build1 amd64 GNU Aspell spell-checker runtime library\\nii libassuan0:amd64 2.5.6-1build1 amd64 IPC library for the GnuPG components\\nii libasyncns0:amd64 0.8-6build4 amd64 Asynchronous name service query library\\nii libatasmart4:amd64 0.19-5build3 amd64 ATA S.M.A.R.T. reading and parsing library\\nii libatk-adaptor:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge\\nii libatk-bridge2.0-0t64:amd64 2.52.0-1build1 amd64 AT-SPI 2 toolkit bridge - shared library\\nii libatk1.0-0t64:amd64 2.52.0-1build1 amd64 ATK accessibility toolkit\\nii libatm1t64:amd64 1:2.5.1-5.1build1 amd64 shared library for ATM (Asynchronous Transfer Mode)\\nii libatomic1:amd64 14-20240412-0ubuntu1 amd64 support library providing __atomic built-in functions\\nii libatopology2t64:amd64 1.2.11-1build2 amd64 shared library for handling ALSA topology definitions\\nii libatspi2.0-0t64:amd64 2.52.0-1build1 amd64 Assistive Technology Service Provider Interface - shared library\\nii libattr1:amd64 1:2.5.2-1build1 amd64 extended attribute handling - shared library\\nii libaudit-common 1:3.1.2-2.1build1 all Dynamic library for security auditing - common files\\nii libaudit1:amd64 1:3.1.2-2.1build1 amd64 Dynamic library for security auditing\\nii libauthen-sasl-perl 2.1700-1 all Authen::SASL - SASL Authentication framework\\nii libavahi-client3:amd64 0.8-13ubuntu6 amd64 Avahi client library\\nii libavahi-common-data:amd64 0.8-13ubuntu6 amd64 Avahi common data files\\nii libavahi-common3:amd64 0.8-13ubuntu6 amd64 Avahi common library\\nii libavahi-core7:amd64 0.8-13ubuntu6 amd64 Avahi\'s embeddable mDNS/DNS-SD library\\nii libavahi-glib1:amd64 0.8-13ubuntu6 amd64 Avahi GLib integration library\\nii libavc1394-0:amd64 0.5.4-5build3 amd64 control IEEE 1394 audio/video devices\\nii libayatana-appindicator3-1 0.5.93-1build3 amd64 Ayatana Application Indicators (GTK-3+ version)\\nii libayatana-ido3-0.4-0:amd64 0.10.1-1build2 amd64 Widgets and other objects used for Ayatana Indicators\\nii libayatana-indicator3-7:amd64 0.9.4-1build1 amd64 panel indicator applet - shared library (GTK-3+ variant)\\nii libbabeltrace1:amd64 1.5.11-3build3 amd64 Babeltrace conversion libraries\\nii libbinutils:amd64 2.42-4ubuntu2 amd64 GNU binary utilities (private shared library)\\nii libblkid-dev:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library - headers\\nii libblkid1:amd64 2.39.3-9ubuntu6.1 amd64 block device ID library\\nii libblockdev-crypto3:amd64 3.1.1-1 amd64 Crypto plugin for libblockdev\\nii libblockdev-fs3:amd64 3.1.1-1 amd64 file system plugin for libblockdev\\nii libblockdev-loop3:amd64 3.1.1-1 amd64 Loop device plugin for libblockdev\\nii libblockdev-mdraid3:amd64 3.1.1-1 amd64 MD RAID plugin for libblockdev\\nii libblockdev-nvme3:amd64 3.1.1-1 amd64 NVMe plugin for libblockdev\\nii libblockdev-part3:amd64 3.1.1-1 amd64 Partitioning plugin for libblockdev\\nii libblockdev-swap3:amd64 3.1.1-1 amd64 Swap plugin for libblockdev\\nii libblockdev-utils3:amd64 3.1.1-1 amd64 Utility functions for libblockdev\\nii libblockdev3:amd64 3.1.1-1 amd64 Library for manipulating block devices\\nii libbluetooth3:amd64 5.72-0ubuntu5 amd64 Library to use the BlueZ Linux Bluetooth stack\\nii libboost-iostreams1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 Boost.Iostreams Library\\nii libboost-locale1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 C++ facilities for localization\\nii libboost-thread1.83.0:amd64 1.83.0-2.1ubuntu3 amd64 portable C++ multi-threading\\nii libbpf1:amd64 1:1.3.0-2build2 amd64 eBPF helper library (shared library)\\nii libbpfcc:amd64 0.29.1+ds-1ubuntu7 amd64 shared library for BPF Compiler Collection (BCC)\\nii libbrlapi0.8:amd64 6.6-4ubuntu5 amd64 braille display access via BRLTTY - shared library\\nii libbrotli1:amd64 1.1.0-2build2 amd64 library implementing brotli encoder and decoder (shared libraries)\\nii libbsd0:amd64 0.12.1-1build1 amd64 utility functions from BSD systems - shared library\\nii libburn4t64:amd64 1.5.6-1.1build1 amd64 library to provide CD/DVD/BD writing functions\\nii libbytesize-common 2.10-1ubuntu2 all library for common operations with sizes in bytes - translations\\nii libbytesize1:amd64 2.10-1ubuntu2 amd64 library for common operations with sizes in bytes\\nii libbz2-1.0:amd64 1.0.8-5.1build0.1 amd64 high-quality block-sorting file compressor library - runtime\\nii libc-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Binaries\\nii libc-dev-bin 2.39-0ubuntu8.3 amd64 GNU C Library: Development binaries\\nii libc-devtools 2.39-0ubuntu8.3 amd64 GNU C Library: Development tools\\nii libc6:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Shared libraries\\nii libc6-dbg:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: detached debugging symbols\\nii libc6-dev:amd64 2.39-0ubuntu8.3 amd64 GNU C Library: Development Libraries and Header Files\\nii libcaca0:amd64 0.99.beta20-4build2 amd64 colour ASCII art library\\nii libcairo-gobject-perl 1.005-4build3 amd64 integrate Cairo into the Glib type system in Perl\\nii libcairo-gobject2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (GObject library)\\nii libcairo-perl 1.109-4build1 amd64 Perl interface to the Cairo graphics library\\nii libcairo-script-interpreter2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library (script interpreter)\\nii libcairo2:amd64 1.18.0-3build1 amd64 Cairo 2D vector graphics library\\nii libcairomm-1.16-1:amd64 1.18.0-1build1 amd64 C++ wrappers for Cairo (shared libraries)\\nii libcamel-1.2-64t64:amd64 3.52.3-0ubuntu1 amd64 Evolution MIME message handling library\\nii libcamera0.2:amd64 0.2.0-3fakesync1build6 amd64 complex camera support library\\nii libcanberra-gtk3-0t64:amd64 0.30-10ubuntu10 amd64 GTK+ 3.0 helper for playing widget event sounds with libcanberra\\nii libcanberra-gtk3-module:amd64 0.30-10ubuntu10 amd64 translates GTK3 widgets signals to event sounds\\nii libcanberra-pulse:amd64 0.30-10ubuntu10 amd64 PulseAudio backend for libcanberra\\nii libcanberra0t64:amd64 0.30-10ubuntu10 amd64 simple abstract interface for playing event sounds\\nii libcap-ng0:amd64 0.8.4-2build2 amd64 alternate POSIX capabilities library\\nii libcap2:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (library)\\nii libcap2-bin 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (utilities)\\nii libcbor0.10:amd64 0.10.2-1.2ubuntu2 amd64 library for parsing and generating CBOR (RFC 7049)\\nii libcc1-0:amd64 14-20240412-0ubuntu1 amd64 GCC cc1 plugin for GDB\\nii libcdio-cdda2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read and control digital audio CDs\\nii libcdio-paranoia2t64:amd64 10.2+2.0.1-1.1build2 amd64 library to read digital audio CDs with error correction\\nii libcdio19t64:amd64 2.1.0-4.1ubuntu1.2 amd64 library to read and control CD-ROM\\nii libcdparanoia0:amd64 3.10.2+debian-14build3 amd64 audio extraction tool for sampling CDs (library)\\nii libclang-cpp18 1:18.1.3-1ubuntu1 amd64 C++ interface to the Clang library\\nii libclang1-18 1:18.1.3-1ubuntu1 amd64 C interface to the Clang library\\nii libclone-perl:amd64 0.46-1build3 amd64 module for recursively copying Perl datatypes\\nii libclucene-contribs1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 language specific text analyzers (runtime)\\nii libclucene-core1t64:amd64 2.3.3.4+dfsg-1.2ubuntu2 amd64 core library for full-featured text search engine (runtime)\\nii libcolord-gtk4-1t64:amd64 0.3.1-1build2 amd64 GTK4 convenience library for interacting with colord\\nii libcolord2:amd64 1.4.7-1build2 amd64 system service to manage device colour profiles -- runtime\\nii libcolorhug2:amd64 1.4.7-1build2 amd64 library to access the ColorHug colourimeter -- runtime\\nii libcom-err2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 common error description library\\nii libcrack2:amd64 2.9.6-5.1build2 amd64 pro-active password checker library\\nii libcrypt-dev:amd64 1:4.4.36-4build1 amd64 libcrypt development files\\nii libcrypt1:amd64 1:4.4.36-4build1 amd64 libcrypt shared library\\nii libcryptsetup12:amd64 2:2.7.0-1ubuntu4.1 amd64 disk encryption support - shared library\\nii libctf-nobfd0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, no BFD dependency)\\nii libctf0:amd64 2.42-4ubuntu2 amd64 Compact C Type Format library (runtime, BFD dependency)\\nii libcue2:amd64 2.2.1-4.1build1 amd64 CUE Sheet Parser Library\\nii libcups2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Core library\\nii libcupsfilters2-common 2.0.0-0ubuntu7 all OpenPrinting libcupsfilters - Auxiliary files\\nii libcupsfilters2t64:amd64 2.0.0-0ubuntu7 amd64 OpenPrinting libcupsfilters - Shared library\\nii libcupsimage2t64:amd64 2.4.7-1.2ubuntu7.2 amd64 Common UNIX Printing System(tm) - Raster image library\\nii libcurl3t64-gnutls:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour)\\nii libcurl4t64:amd64 8.5.0-2ubuntu10.3 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)\\nii libdaemon0:amd64 0.14-7.1ubuntu4 amd64 lightweight C library for daemons - runtime library\\nii libdata-dump-perl 1.25-1 all Perl module to help dump data structures\\nii libdatrie1:amd64 0.2.13-3build1 amd64 Double-array trie library\\nii libdb5.3t64:amd64 5.3.28+dfsg2-7 amd64 Berkeley v5.3 Database Libraries [runtime]\\nii libdbus-1-3:amd64 1.14.10-4ubuntu4.1 amd64 simple interprocess messaging system (library)\\nii libdbus-glib-1-2:amd64 0.112-3build2 amd64 deprecated library for D-Bus IPC\\nii libdbusmenu-glib4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus\\nii libdbusmenu-gtk3-4:amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 amd64 library for passing menus over DBus - GTK-3+ version\\nii libdconf1:amd64 0.40.0-4build2 amd64 simple configuration storage system - runtime library\\nii libde265-0:amd64 1.0.15-1build3 amd64 Open H.265 video codec implementation\\nii libdebconfclient0:amd64 0.271ubuntu3 amd64 Debian Configuration Management System (C-implementation library)\\nii libdebuginfod-common 0.190-1.1build4 all configuration to enable the Debian debug info server\\nii libdebuginfod1t64:amd64 0.190-1.1build4 amd64 library to interact with debuginfod (development files)\\nii libdecor-0-0:amd64 0.2.2-1build2 amd64 client-side window decoration library\\nii libdecor-0-plugin-1-gtk:amd64 0.2.2-1build2 amd64 libdecor decoration plugin using GTK\\nii libdee-1.0-4:amd64 1.2.7+17.10.20170616-7build5 amd64 Model to synchronize multiple instances over DBus - shared lib\\nii libdeflate0:amd64 1.19-1build1.1 amd64 fast, whole-buffer DEFLATE-based compression and decompression\\nii libdevmapper1.02.1:amd64 2:1.02.185-3ubuntu3.1 amd64 Linux Kernel Device Mapper userspace library\\nii libdjvulibre-text 3.5.28-2build4 all Linguistic support files for libdjvulibre\\nii libdjvulibre21:amd64 3.5.28-2build4 amd64 Runtime support for the DjVu image format\\nii libdotconf0:amd64 1.3-0.3fakesync1build3 amd64 Configuration file parser library - runtime files\\nii libdpkg-perl 1.22.6ubuntu6.1 all Dpkg perl modules\\nii libdrm-amdgpu1:amd64 2.4.120-2build1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime\\nii libdrm-common 2.4.120-2build1 all Userspace interface to kernel DRM services -- common files\\nii libdrm-intel1:amd64 2.4.120-2build1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime\\nii libdrm-nouveau2:amd64 2.4.120-2build1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime\\nii libdrm-radeon1:amd64 2.4.120-2build1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime\\nii libdrm2:amd64 2.4.120-2build1 amd64 Userspace interface to kernel DRM services -- runtime\\nii libduktape207:amd64 2.7.0+tests-0ubuntu3 amd64 embeddable Javascript engine, library\\nii libdv4t64:amd64 1.0.0-17.1build1 amd64 software library for DV format digital video (runtime lib)\\nii libdw1t64:amd64 0.190-1.1build4 amd64 library that provides access to the DWARF debug information\\nii libeatmydata1:amd64 131-1ubuntu1 amd64 Library and utilities designed to disable fsync and friends - shared library\\nii libebackend-1.2-11t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libebook-1.2-21t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution address books\\nii libebook-contacts-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution contacts books\\nii libecal-2.0-3:amd64 3.52.3-0ubuntu1 amd64 Client library for evolution calendars\\nii libedata-book-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution address books\\nii libedata-cal-2.0-2t64:amd64 3.52.3-0ubuntu1 amd64 Backend library for evolution calendars\\nii libedataserver-1.2-27t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedataserverui-1.2-4t64:amd64 3.52.3-0ubuntu1 amd64 Utility library for evolution data servers\\nii libedit2:amd64 3.1-20230828-1build1 amd64 BSD editline and history libraries\\nii libeditorconfig0:amd64 0.12.7-0.1 amd64 coding style indenter across editors - library\\nii libefiboot1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libefivar1t64:amd64 38-3.1build1 amd64 Library to manage UEFI variables\\nii libegl-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the EGL API -- Mesa vendor library\\nii libegl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- EGL support\\nii libei1:amd64 1.2.1-1 amd64 Emulated Input client library\\nii libeis1:amd64 1.2.1-1 amd64 Emulated Input server library\\nii libelf1t64:amd64 0.190-1.1build4 amd64 library to read and write ELF files\\nii libenchant-2-2:amd64 2.3.3-2build2 amd64 Wrapper library for various spell checker engines (runtime libs)\\nii libencode-locale-perl 1.05-3 all utility to determine the locale encoding\\nii libeot0:amd64 0.01-5build3 amd64 Library for parsing/converting Embedded OpenType files\\nii libepoxy0:amd64 1.5.10-1build1 amd64 OpenGL function pointer management library\\nii liberror-perl 0.17029-2 all Perl module for error/exception handling in an OO-ish way\\nii libespeak-ng1:amd64 1.51+dfsg-12build1 amd64 Multi-lingual software speech synthesizer: shared library\\nii libestr0:amd64 0.1.11-1build1 amd64 Helper functions for handling strings (lib)\\nii libevdev2:amd64 1.13.1+dfsg-1build1 amd64 wrapper library for evdev devices\\nii libevdocument3-4t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library\\nii libevview3-3t64:amd64 46.0-1build1 amd64 Document (PostScript, PDF) rendering library - Gtk+ widgets\\nii libexempi8:amd64 2.6.5-1build1 amd64 library to parse XMP metadata (Library)\\nii libexif12:amd64 0.6.24-1build2 amd64 library to parse EXIF files\\nii libexiv2-27:amd64 0.27.6-1build1 amd64 EXIF/IPTC/XMP metadata manipulation library\\nii libexpat1:amd64 2.6.1-2build1 amd64 XML parsing C library - runtime library\\nii libexpat1-dev:amd64 2.6.1-2build1 amd64 XML parsing C library - development kit\\nii libext2fs2t64:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 ext2/ext3/ext4 file system libraries\\nii libexttextcat-2.0-0:amd64 3.4.7-1build1 amd64 Language detection library\\nii libexttextcat-data 3.4.7-1build1 all Language detection library - data files\\nii libextutils-depends-perl 0.8001-2 all Perl module for building extensions that depend on other extensions\\nii libfakeroot:amd64 1.33-1 amd64 tool for simulating superuser privileges - shared libraries\\nii libfastjson4:amd64 1.2304.0-1build1 amd64 fast json library for C\\nii libfdisk1:amd64 2.39.3-9ubuntu6.1 amd64 fdisk partitioning library\\nii libffi-dev:amd64 3.4.6-1build1 amd64 Foreign Function Interface library (development files)\\nii libffi8:amd64 3.4.6-1build1 amd64 Foreign Function Interface library runtime\\nii libfftw3-single3:amd64 3.3.10-1ubuntu3 amd64 Library for computing Fast Fourier Transforms - Single precision\\nii libfido2-1:amd64 1.14.0-1build3 amd64 library for generating and verifying FIDO 2.0 objects\\nii libfile-basedir-perl 0.09-2 all Perl module to use the freedesktop basedir specification\\nii libfile-desktopentry-perl 0.22-3 all Perl module to handle freedesktop .desktop files\\nii libfile-fcntllock-perl 0.22-4ubuntu5 amd64 Perl module for file locking with fcntl(2)\\nii libfile-listing-perl 6.16-1 all module to parse directory listings\\nii libfile-mimeinfo-perl 0.34-1 all Perl module to determine file types\\nii libflac12t64:amd64 1.4.3+ds-2.1ubuntu2 amd64 Free Lossless Audio Codec - runtime C library\\nii libflashrom1:amd64 1.3.0-2.1ubuntu2 amd64 Identify, read, write, erase, and verify BIOS/ROM/flash chips - library\\nii libfont-afm-perl 1.20-4 all Perl interface to Adobe Font Metrics files\\nii libfontconfig1:amd64 2.15.0-1.1ubuntu2 amd64 generic font configuration library - runtime\\nii libfontenc1:amd64 1:1.1.8-1build1 amd64 X11 font encoding library\\nii libfprint-2-2 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, shared libraries\\nii libfprint-2-tod1:amd64 1:1.94.7+tod1-0ubuntu5~24.04.1 amd64 async fingerprint library of fprint project, drivers shared libraries\\nii libfreeaptx0:amd64 0.1.1-2build1 amd64 Free implementation of aptX\\nii libfreeipmi17 1.6.13-3 amd64 GNU IPMI - libraries\\nii libfreerdp-server3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (server library)\\nii libfreerdp3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Free Remote Desktop Protocol library (core library)\\nii libfreetype6:amd64 2.13.2+dfsg-1build3 amd64 FreeType 2 font engine, shared library files\\nii libfribidi0:amd64 1.0.13-3build1 amd64 Free Implementation of the Unicode BiDi algorithm\\nii libftdi1-2:amd64 1.5-6build5 amd64 C Library to control and program the FTDI USB controllers\\nii libfuse3-3:amd64 3.14.0-5build1 amd64 Filesystem in Userspace (library) (3.x version)\\nii libfwupd2:amd64 1.9.24-1~24.04.1 amd64 Firmware update daemon library\\nii libgail-common:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- common modules\\nii libgail18t64:amd64 2.24.33-4ubuntu1.1 amd64 GNOME Accessibility Implementation Library -- shared libraries\\nii libgamemode0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (host library)\\nii libgamemodeauto0:amd64 1.8.1-2build1 amd64 Optimise Linux system performance on demand (client library)\\nii libgbm1:amd64 24.0.9-0ubuntu0.1 amd64 generic buffer management API -- runtime\\nii libgcc-11-dev:amd64 11.4.0-9ubuntu1 amd64 GCC support library (development files)\\nii libgcc-13-dev:amd64 13.2.0-23ubuntu4 amd64 GCC support library (development files)\\nii libgcc-s1:amd64 14-20240412-0ubuntu1 amd64 GCC support library\\nii libgck-1-0:amd64 3.41.2-1build3 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgck-2-2:amd64 4.2.0-5 amd64 Glib wrapper library for PKCS#11 - runtime\\nii libgcr-4-4:amd64 4.2.0-5 amd64 Library for Crypto related tasks\\nii libgcr-base-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto related tasks\\nii libgcr-ui-3-1:amd64 3.41.2-1build3 amd64 Library for Crypto UI related tasks\\nii libgcrypt20:amd64 1.10.3-2build1 amd64 LGPL Crypto library - runtime library\\nii libgd3:amd64 2.3.3-9ubuntu5 amd64 GD Graphics Library\\nii libgdata-common 0.18.1-6build2 all Library for accessing GData webservices - common data files\\nii libgdata22:amd64 0.18.1-6build2 amd64 Library for accessing GData webservices - shared libraries\\nii libgdbm-compat4t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (legacy support runtime version) \\nii libgdbm6t64:amd64 1.23-5.1build1 amd64 GNU dbm database routines (runtime version) \\nii libgdk-pixbuf-2.0-0:amd64 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library\\nii libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 amd64 GDK Pixbuf library (thumbnailer)\\nii libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 all GDK Pixbuf library - data files\\nii libgdm1 46.0-2ubuntu1 amd64 GNOME Display Manager (shared library)\\nii libgee-0.8-2:amd64 0.20.6-1build2 amd64 GObject based collection and utility library\\nii libgeoclue-2-0:amd64 2.7.0-3ubuntu7 amd64 convenience library to interact with geoinformation service\\nii libgeocode-glib-2-0:amd64 3.26.3-6build3 amd64 geocoding and reverse geocoding GLib library using Nominatim\\nii libgexiv2-2:amd64 0.14.2-2build3 amd64 GObject-based wrapper around the Exiv2 library\\nii libgif7:amd64 5.2.2-1ubuntu1 amd64 library for GIF images (library)\\nii libgirepository-1.0-1:amd64 1.80.1-1 amd64 Library for handling GObject introspection data (runtime library)\\nii libgirepository-2.0-0:amd64 2.80.0-6ubuntu3.1 amd64 GLib runtime library for handling GObject introspection data\\nii libgjs0g:amd64 1.80.2-1build2 amd64 Mozilla-based javascript bindings for the GNOME platform\\nii libgl1:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- legacy GL support\\nii libgl1-amber-dri:amd64 21.3.9-0ubuntu2 amd64 free implementation of the OpenGL API -- Amber DRI modules\\nii libgl1-mesa-dri:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- DRI modules\\nii libglapi-mesa:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the GL API -- shared library\\nii libgles2:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLESv2 support\\nii libglib-object-introspection-perl 0.051-1build3 amd64 Perl bindings for gobject-introspection libraries\\nii libglib-perl:amd64 3:1.329.3-3build3 amd64 interface to the GLib and GObject libraries\\nrc libglib2.0-0:amd64 2.72.4-0ubuntu2.3 amd64 GLib library of C routines\\nii libglib2.0-0t64:amd64 2.80.0-6ubuntu3.1 amd64 GLib library of C routines\\nii libglib2.0-bin 2.80.0-6ubuntu3.1 amd64 Programs for the GLib library\\nii libglib2.0-data 2.80.0-6ubuntu3.1 all Common files for GLib library\\nii libglib2.0-dev:amd64 2.80.0-6ubuntu3.1 amd64 Development files for the GLib library\\nii libglib2.0-dev-bin 2.80.0-6ubuntu3.1 amd64 Development utilities for the GLib library\\nii libglibmm-2.68-1t64:amd64 2.78.1-2.2build2 amd64 C++ wrapper for the GLib toolkit (shared libraries)\\nii libglu1-mesa:amd64 9.0.2-1.1build1 amd64 Mesa OpenGL utility library (GLU)\\nii libglvnd0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library\\nii libglx-mesa0:amd64 24.0.9-0ubuntu0.1 amd64 free implementation of the OpenGL API -- GLX vendor library\\nii libglx0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- GLX support\\nii libgmp10:amd64 2:6.3.0+dfsg-2ubuntu6 amd64 Multiprecision arithmetic library\\nii libgnome-autoar-0-0:amd64 0.4.4-2build4 amd64 Archives integration support for GNOME\\nii libgnome-bg-4-2t64:amd64 44.0-5build2 amd64 Utility library for background images - runtime files\\nii libgnome-bluetooth-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 support library\\nii libgnome-bluetooth-ui-3.0-13:amd64 46.0-1build1 amd64 GNOME Bluetooth 3 UI support library\\nii libgnome-desktop-3-20t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - GTK 3 version\\nii libgnome-desktop-4-2t64:amd64 44.0-5build2 amd64 Utility library for the GNOME desktop - runtime files\\nii libgnome-menu-3-0:amd64 3.36.0-1.1ubuntu3 amd64 GNOME implementation of the freedesktop menu specification\\nii libgnome-rr-4-2t64:amd64 44.0-5build2 amd64 Utility library for display information - runtime files\\nii libgnomekbd-common 3.28.1-1build3 all GNOME library to manage keyboard configuration - common files\\nii libgnomekbd8:amd64 3.28.1-1build3 amd64 GNOME library to manage keyboard configuration - shared library\\nii libgnutls30t64:amd64 3.8.3-1.1ubuntu3.2 amd64 GNU TLS library - main runtime library\\nii libgoa-1.0-0b:amd64 3.50.4-0ubuntu2 amd64 library for GNOME Online Accounts\\nii libgoa-1.0-common 3.50.4-0ubuntu2 all library for GNOME Online Accounts - common files\\nii libgoa-backend-1.0-2:amd64 3.50.4-0ubuntu2 amd64 backend library for GNOME Online Accounts\\nii libgomp1:amd64 14-20240412-0ubuntu1 amd64 GCC OpenMP (GOMP) support library\\nii libgpg-error0:amd64 1.47-3build2 amd64 GnuPG development runtime library\\nii libgpgme11t64:amd64 1.18.0-4.1ubuntu4 amd64 GPGME - GnuPG Made Easy (library)\\nii libgpgmepp6t64:amd64 1.18.0-4.1ubuntu4 amd64 C++ wrapper library for GPGME\\nii libgphoto2-6t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera library\\nii libgphoto2-l10n 2.5.31-2.1build2 all gphoto2 digital camera library - localized messages\\nii libgphoto2-port12t64:amd64 2.5.31-2.1build2 amd64 gphoto2 digital camera port library\\nii libgpm2:amd64 1.20.7-11 amd64 General Purpose Mouse - shared library\\nii libgprofng0:amd64 2.42-4ubuntu2 amd64 GNU Next Generation profiler (runtime library)\\nii libgraphene-1.0-0:amd64 1.10.8-3build2 amd64 library of graphic data types\\nii libgraphite2-3:amd64 1.3.14-2build1 amd64 Font rendering engine for Complex Scripts -- library\\nii libgs-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - ICC profiles\\nii libgs10:amd64 10.02.1~dfsg1-0ubuntu7.3 amd64 interpreter for the PostScript language and for PDF - Library\\nii libgs10-common 10.02.1~dfsg1-0ubuntu7.3 all interpreter for the PostScript language and for PDF - common files\\nii libgsf-1-114:amd64 1.14.51-2build2 amd64 Structured File Library - runtime version\\nii libgsf-1-common 1.14.51-2build2 all Structured File Library - common files\\nii libgsound0t64:amd64 1.0.3-3.2build2 amd64 small library for playing system sounds\\nii libgspell-1-2:amd64 1.12.2-1build4 amd64 spell-checking library for GTK+ applications\\nii libgspell-1-common 1.12.2-1build4 all libgspell architecture-independent files\\nii libgssapi-krb5-2:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism\\nii libgssdp-1.6-0:amd64 1.6.3-1build3 amd64 GObject-based library for SSDP\\nii libgstreamer-gl1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer GL libraries\\nii libgstreamer-plugins-base1.0-0:amd64 1.24.2-1ubuntu0.1 amd64 GStreamer libraries from the \\"base\\" set\\nii libgstreamer-plugins-good1.0-0:amd64 1.24.2-1ubuntu1 amd64 GStreamer development files for libraries from the \\"good\\" set\\nii libgstreamer1.0-0:amd64 1.24.2-1 amd64 Core GStreamer libraries and elements\\nrc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library\\nii libgtk-3-0t64:amd64 3.24.41-4ubuntu1.1 amd64 GTK graphical user interface library\\nii libgtk-3-bin 3.24.41-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk-3-common 3.24.41-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk-4-1:amd64 4.14.2+ds-1ubuntu1 amd64 GTK graphical user interface library\\nii libgtk-4-bin 4.14.2+ds-1ubuntu1 amd64 programs for the GTK graphical user interface library\\nii libgtk-4-common 4.14.2+ds-1ubuntu1 all common files for the GTK graphical user interface library\\nii libgtk-4-media-gstreamer 4.14.2+ds-1ubuntu1 amd64 GStreamer media backend for the GTK graphical user interface library\\nrc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-0t64:amd64 2.24.33-4ubuntu1.1 amd64 GTK graphical user interface library - old version\\nii libgtk2.0-bin 2.24.33-4ubuntu1.1 amd64 programs for the GTK graphical user interface library\\nii libgtk2.0-common 2.24.33-4ubuntu1.1 all common files for the GTK graphical user interface library\\nii libgtk3-perl 0.038-3 all Perl bindings for the GTK+ graphical user interface library\\nii libgtkmm-4.0-0:amd64 4.10.0-4build3 amd64 C++ wrappers for GTK4 (shared libraries)\\nii libgtksourceview-5-0:amd64 5.12.0-1build1 amd64 shared libraries for the GTK 4 syntax highlighting widget\\nii libgtksourceview-5-common 5.12.0-1build1 all common files for the GTK 4 syntax highlighting widget\\nii libgtop-2.0-11:amd64 2.41.3-1build4 amd64 gtop system monitoring library (shared)\\nii libgtop2-common 2.41.3-1build4 all gtop system monitoring library (common)\\nii libgudev-1.0-0:amd64 1:238-5ubuntu1 amd64 GObject-based wrapper library for libudev\\nii libgupnp-1.6-0:amd64 1.6.6-1build3 amd64 GObject-based library for UPnP\\nii libgupnp-av-1.0-3:amd64 0.14.1-2build2 amd64 Audio/Visual utility library for GUPnP\\nii libgupnp-dlna-2.0-4:amd64 0.12.0-4build2 amd64 DLNA utility library for GUPnP\\nii libgusb2:amd64 0.4.8-1build2 amd64 GLib wrapper around libusb1\\nii libgweather-4-0t64:amd64 4.4.2-1build1 amd64 GWeather shared library\\nii libgweather-4-common 4.4.2-1build1 all GWeather common files\\nii libgxps2t64:amd64 0.3.2-4build3 amd64 handling and rendering XPS documents (library)\\nii libhandy-1-0:amd64 1.8.3-1build2 amd64 Library with GTK widgets for mobile phones\\nii libharfbuzz-gobject0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend (GObject library)\\nii libharfbuzz-icu0:amd64 8.3.0-2build2 amd64 OpenType text shaping engine ICU backend\\nii libharfbuzz0b:amd64 8.3.0-2build2 amd64 OpenType text shaping engine (shared library)\\nii libheif-plugin-aomdec:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomdec plugin\\nii libheif-plugin-aomenc:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - aomenc plugin\\nii libheif-plugin-libde265:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - libde265 plugin\\nii libheif1:amd64 1.17.6-1ubuntu4 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library\\nii libhogweed6t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (public-key cryptos)\\nii libhpmud0:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP Multi-Point Transport Driver (hpmud) run-time libraries\\nii libhtml-form-perl 6.11-1 all module that represents an HTML form element\\nii libhtml-format-perl 2.16-2 all module for transforming HTML into various formats\\nii libhtml-parser-perl:amd64 3.81-1build3 amd64 collection of modules that parse HTML text documents\\nii libhtml-tagset-perl 3.20-6 all data tables pertaining to HTML\\nii libhtml-tree-perl 5.07-3 all Perl module to represent and create HTML syntax trees\\nii libhttp-cookies-perl 6.11-1 all HTTP cookie jars\\nii libhttp-daemon-perl 6.16-1 all simple http server class\\nii libhttp-date-perl 6.06-1 all module of date conversion routines\\nii libhttp-message-perl 6.45-1ubuntu1 all perl interface to HTTP style messages\\nii libhttp-negotiate-perl 6.01-2 all implementation of content negotiation\\nii libhunspell-1.7-0:amd64 1.7.2+really1.7.2-10build3 amd64 spell checker and morphological analyzer (shared library)\\nii libhwasan0:amd64 14-20240412-0ubuntu1 amd64 AddressSanitizer -- a fast memory error detector\\nii libhyphen0:amd64 2.8.8-7build3 amd64 ALTLinux hyphenation library - shared library\\nii libibus-1.0-5:amd64 1.5.29-2 amd64 Intelligent Input Bus - shared library\\nii libibverbs1:amd64 50.0-2build2 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP)\\nii libical3t64:amd64 3.0.17-1.1build3 amd64 iCalendar library implementation in C (runtime)\\nii libice6:amd64 2:1.0.10-1build3 amd64 X11 Inter-Client Exchange library\\nii libicu74:amd64 74.2-1ubuntu3.1 amd64 International Components for Unicode\\nii libidn12:amd64 1.42-1build1 amd64 GNU Libidn library, implementation of IETF IDN specifications\\nii libidn2-0:amd64 2.3.7-2build1 amd64 Internationalized domain names (IDNA2008/TR46) library\\nii libiec61883-0:amd64 1.2.0-6build1 amd64 partial implementation of IEC 61883 (shared lib)\\nii libieee1284-3t64:amd64 0.2.11-14.1build1 amd64 cross-platform library for parallel port access\\nii libijs-0.35:amd64 0.35-15.1build1 amd64 IJS raster image transport protocol: shared library\\nii libimagequant0:amd64 2.18.0-1build1 amd64 palette quantization library\\nii libimobiledevice6:amd64 1.3.0-8.1build3 amd64 Library for communicating with iPhone and other Apple devices\\nii libinih1:amd64 55-1ubuntu2 amd64 simple .INI file parser\\nii libinput-bin 1.25.0-1ubuntu2 amd64 input device management and event handling library - udev quirks\\nii libinput10:amd64 1.25.0-1ubuntu2 amd64 input device management and event handling library - shared library\\nii libio-html-perl 1.004-3 all open an HTML file with automatic charset detection\\nii libio-socket-ssl-perl 2.085-1 all Perl module implementing object oriented interface to SSL sockets\\nii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays)\\nii libip4tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip4tc library\\nii libip6tc2:amd64 1.8.10-3ubuntu2 amd64 netfilter libip6tc library\\nii libipc-system-simple-perl 1.30-2 all Perl module to run commands simply, with detailed diagnostics\\nii libipmiconsole2 1.6.13-3 amd64 GNU IPMI - Serial-over-Lan library\\nii libipmidetect0 1.6.13-3 amd64 GNU IPMI - IPMI node detection library\\nii libipsec-mb1 1.5-1build1 amd64 Intel(R) Multi-Buffer Crypto for IPSec library\\nii libipt2 2.0.6-1build1 amd64 Intel Processor Trace Decoder Library\\nii libisl23:amd64 0.26-3build1 amd64 manipulating sets and relations of integer points bounded by linear constraints\\nii libisoburn1t64:amd64 1:1.5.6-1.1ubuntu3 amd64 library to handle creation and inspection of ISO-9660 file systems\\nii libisofs6t64:amd64 1.5.6.pl01-1.1ubuntu2 amd64 library to create ISO 9660 images\\nii libitm1:amd64 14-20240412-0ubuntu1 amd64 GNU Transactional Memory Library\\nii libiw30t64:amd64 30~pre9-16.1ubuntu2 amd64 Wireless tools - library\\nii libjansson4:amd64 2.14-2build2 amd64 C library for encoding, decoding and manipulating JSON data\\nii libjavascriptcoregtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjavascriptcoregtk-6.0-1:amd64 2.44.3-0ubuntu0.24.04.1 amd64 JavaScript engine library from WebKitGTK\\nii libjbig0:amd64 2.1-6.1ubuntu2 amd64 JBIGkit libraries\\nii libjbig2dec0:amd64 0.20-1build3 amd64 JBIG2 decoder library - shared libraries\\nii libjcat1:amd64 0.2.0-2build3 amd64 JSON catalog library\\nii libjpeg-turbo8:amd64 2.1.5-2ubuntu2 amd64 libjpeg-turbo JPEG runtime library\\nii libjpeg8:amd64 8c-2ubuntu11 amd64 Independent JPEG Group\'s JPEG runtime library (dependency package)\\nii libjq1:amd64 1.7.1-3build1 amd64 lightweight and flexible command-line JSON processor - shared library\\nii libjs-jquery 3.6.1+dfsg+~3.5.14-1 all JavaScript library for dynamic web applications\\nii libjs-sphinxdoc 7.2.6-6 all JavaScript support for Sphinx documentation\\nii libjs-underscore 1.13.4~dfsg+~1.11.4-3 all JavaScript\'s functional programming helper library\\nii libjson-c5:amd64 0.17-1build1 amd64 JSON manipulation library - shared library\\nii libjson-glib-1.0-0:amd64 1.8.0-2build2 amd64 GLib JSON manipulation library\\nii libjson-glib-1.0-common 1.8.0-2build2 all GLib JSON manipulation library (common files)\\nii libjudydebian1 1.0.5-5.1build1 amd64 C library for creating and accessing dynamic arrays\\nii libk5crypto3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Crypto Library\\nii libkeyutils1:amd64 1.6.3-3build1 amd64 Linux Key Management Utilities (library)\\nii libklibc:amd64 2.0.13-4ubuntu0.1 amd64 minimal libc subset for use with initramfs\\nii libkmod2:amd64 31+20240202-2ubuntu7 amd64 libkmod shared library\\nii libkpathsea6:amd64 2023.20230311.66589-9build3 amd64 TeX Live: path search library for TeX (runtime part)\\nii libkrb5-3:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries\\nii libkrb5support0:amd64 1.20.1-6ubuntu2.1 amd64 MIT Kerberos runtime libraries - Support library\\nii libksba8:amd64 1.6.6-1build1 amd64 X.509 and CMS support library\\nii liblangtag-common 0.6.7-1build2 all library to access tags for identifying languages -- data\\nii liblangtag1:amd64 0.6.7-1build2 amd64 library to access tags for identifying languages\\nii liblc3-1:amd64 1.0.4-3build1 amd64 Low Complexity Communication Codec (shared library)\\nii liblcms2-2:amd64 2.14-2build1 amd64 Little CMS 2 color management library\\nii liblcms2-utils 2.14-2build1 amd64 Little CMS 2 color management library (utilities)\\nii libldacbt-abr2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth ABR library (shared library)\\nii libldacbt-enc2:amd64 2.0.2.3+git20200429+ed310a0-4ubuntu2 amd64 LDAC Bluetooth encoder library (shared library)\\nii libldap-common 2.6.7+dfsg-1~exp1ubuntu8 all OpenLDAP common files for libraries\\nii libldap2:amd64 2.6.7+dfsg-1~exp1ubuntu8 amd64 OpenLDAP libraries\\nii libldb2:amd64 2:2.8.0+samba4.19.5+dfsg-4ubuntu9 amd64 LDAP-like embedded database - shared library\\nii liblerc4:amd64 4.0.0+ds-4ubuntu2 amd64 Limited Error Raster Compression library\\nii libllvm17t64:amd64 1:17.0.6-9ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii libllvm18:amd64 1:18.1.3-1ubuntu1 amd64 Modular compiler and toolchain technologies, runtime library\\nii liblmdb0:amd64 0.9.31-1build1 amd64 Lightning Memory-Mapped Database shared library\\nii liblocale-gettext-perl 1.07-6ubuntu5 amd64 module using libc functions for internationalization in Perl\\nii liblouis-data 3.29.0-1build1 all Braille translation library - data\\nii liblouis20:amd64 3.29.0-1build1 amd64 Braille translation library - shared libs\\nii liblouisutdml-bin 2.12.0-3.1build1 amd64 Braille UTDML translation utilities\\nii liblouisutdml-data 2.12.0-3.1build1 all Braille UTDML translation library - data\\nii liblouisutdml9t64:amd64 2.12.0-3.1build1 amd64 Braille UTDML translation library - shared libs\\nii liblsan0:amd64 14-20240412-0ubuntu1 amd64 LeakSanitizer -- a memory leak detector (runtime)\\nii libltdl7:amd64 2.4.7-7build1 amd64 System independent dlopen wrapper for GNU libtool\\nii liblttng-ust-common1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (common library)\\nii liblttng-ust-ctl5t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (trace control library)\\nii liblttng-ust1t64:amd64 2.13.7-1.1ubuntu2 amd64 LTTng 2.0 Userspace Tracer (tracing libraries)\\nii liblua5.4-0:amd64 5.4.6-3build2 amd64 Shared library for the Lua interpreter version 5.4\\nii libluajit-5.1-2:amd64 2.1.0+git20231223.c525bcb+dfsg-1 amd64 Just in time compiler for Lua - library version\\nii libluajit-5.1-common 2.1.0+git20231223.c525bcb+dfsg-1 all Just in time compiler for Lua - common files\\nii liblwp-mediatypes-perl 6.04-2 all module to guess media type for a file or a URL\\nii liblwp-protocol-https-perl 6.13-1 all HTTPS driver for LWP::UserAgent\\nii liblz4-1:amd64 1.9.4-1build1.1 amd64 Fast LZ compression algorithm library - runtime\\nii liblzma5:amd64 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression library\\nii liblzo2-2:amd64 2.10-2build4 amd64 data compression library\\nii libmagic-mgc 1:5.45-3build1 amd64 File type determination library using \\"magic\\" numbers (compiled magic file)\\nrc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmagic1t64:amd64 1:5.45-3build1 amd64 Recognize the type of data in a file using \\"magic\\" numbers - library\\nii libmailtools-perl 2.21-2 all modules to manipulate email in perl programs\\nii libmanette-0.2-0:amd64 0.2.7-1build2 amd64 Simple GObject game controller library\\nii libmaxminddb0:amd64 1.9.1-1build1 amd64 IP geolocation database library\\nii libmbim-glib4:amd64 1.31.2-0ubuntu3 amd64 Support library to use the MBIM protocol\\nii libmbim-proxy 1.31.2-0ubuntu3 amd64 Proxy to communicate with MBIM ports\\nii libmbim-utils 1.31.2-0ubuntu3 amd64 Utilities to use the MBIM protocol from the command line\\nii libmd0:amd64 1.1.0-2build1 amd64 message digest functions from BSD systems - shared library\\nii libmediaart-2.0-0:amd64 1.9.6-1build2 amd64 media art extraction and cache management library\\nii libmhash2:amd64 0.9.9.9-9build3 amd64 Library for cryptographic hashing and message authentication\\nii libmm-glib0:amd64 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems - shared libraries\\nii libmnl0:amd64 1.0.5-2build1 amd64 minimalistic Netlink communication library\\nii libmount-dev:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library - headers\\nii libmount1:amd64 2.39.3-9ubuntu6.1 amd64 device mounting library\\nii libmozjs-115-0t64:amd64 115.10.0-1 amd64 SpiderMonkey JavaScript library\\nii libmp3lame0:amd64 3.100-6build1 amd64 MP3 encoding library\\nii libmpc3:amd64 1.3.1-1build1 amd64 multiple precision complex floating-point library\\nii libmpfr6:amd64 4.2.1-1build1 amd64 multiple precision floating-point computation\\nii libmpg123-0t64:amd64 1.32.5-1ubuntu1 amd64 MPEG layer 1/2/3 audio decoder (shared library)\\nii libmsgraph-0-1:amd64 0.2.1-0ubuntu3 amd64 library for accessing the Microsoft Graph API\\nii libmtdev1t64:amd64 1.1.6-1.1build1 amd64 Multitouch Protocol Translation Library - shared library\\nii libmtp-common 1.1.21-3.1build1 all Media Transfer Protocol (MTP) common files\\nii libmtp-runtime 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) runtime tools\\nii libmtp9t64:amd64 1.1.21-3.1build1 amd64 Media Transfer Protocol (MTP) library\\nii libmutter-14-0:amd64 46.2-1ubuntu0.24.04.1 amd64 window manager library from the Mutter window manager\\nii libmysqlclient21:amd64 8.0.39-0ubuntu0.24.04.2 amd64 MySQL database client library\\nii libmythes-1.2-0:amd64 2:1.2.5-1build1 amd64 simple thesaurus library\\nii libnautilus-extension4:amd64 1:46.2-0ubuntu0.2 amd64 libraries for nautilus components - runtime version\\nii libncurses6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling\\nii libncursesw6:amd64 6.4+20240113-1ubuntu2 amd64 shared libraries for terminal handling (wide character support)\\nii libndp0:amd64 1.8-1fakesync1ubuntu0.24.04.1 amd64 Library for Neighbor Discovery Protocol\\nii libnet-dbus-perl 1.2.0-2build3 amd64 Perl extension for the DBus bindings\\nii libnet-http-perl 6.23-1 all module providing low-level HTTP connection client\\nii libnet-smtp-ssl-perl 1.04-2 all Perl module providing SSL support to Net::SMTP\\nii libnet-ssleay-perl:amd64 1.94-1build4 amd64 Perl module for Secure Sockets Layer (SSL)\\nii libnetfilter-conntrack3:amd64 1.0.9-6build1 amd64 Netfilter netlink-conntrack library\\nii libnetplan1:amd64 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration runtime library\\nii libnettle8t64:amd64 3.9.1-2.2build1.1 amd64 low level cryptographic library (symmetric and one-way cryptos)\\nii libnewt0.52:amd64 0.52.24-2ubuntu2 amd64 Not Erik\'s Windowing Toolkit - text mode windowing with slang\\nii libnfnetlink0:amd64 1.0.2-2build1 amd64 Netfilter netlink library\\nii libnfs14:amd64 5.0.2-1build1 amd64 NFS client library (shared library)\\nii libnftables1:amd64 1.0.9-1build1 amd64 Netfilter nftables high level userspace API library\\nii libnftnl11:amd64 1.2.6-2build1 amd64 Netfilter nftables userspace API library\\nii libnghttp2-14:amd64 1.59.0-1ubuntu0.1 amd64 library implementing HTTP/2 protocol (shared library)\\nii libnl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets\\nii libnl-genl-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - generic netlink\\nii libnl-route-3-200:amd64 3.7.0-0.3build1 amd64 library for dealing with netlink sockets - route interface\\nii libnm0:amd64 1.46.0-1ubuntu2 amd64 GObject-based client library for NetworkManager\\nii libnma-common 1.10.6-3build2 all NetworkManager GUI library - translations\\nii libnma-gtk4-0:amd64 1.10.6-3build2 amd64 NetworkManager GUI GTK4 library\\nii libnma0:amd64 1.10.6-3build2 amd64 NetworkManager GUI library\\nii libnotify-bin 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon (Utilities)\\nii libnotify4:amd64 0.8.3-1build2 amd64 sends desktop notifications to a notification daemon\\nii libnpth0t64:amd64 1.6-3.1build1 amd64 replacement for GNU Pth using system threads\\nii libnspr4:amd64 2:4.35-1.1build1 amd64 NetScape Portable Runtime Library\\nii libnss-mdns:amd64 0.15.1-4build1 amd64 NSS module for Multicast DNS name resolution\\nii libnss-systemd:amd64 255.4-1ubuntu8.4 amd64 nss module providing dynamic user and group name resolution\\nii libnss3:amd64 2:3.98-1build1 amd64 Network Security Service libraries\\nii libntfs-3g89t64:amd64 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE (runtime library)\\nii libnuma1:amd64 2.0.18-1build1 amd64 Libraries for controlling NUMA policy\\nii libnvme1t64 1.8-3build1 amd64 NVMe management library (library)\\nii libogg0:amd64 1.3.5-3build1 amd64 Ogg bitstream library\\nii libonig5:amd64 6.9.9-1build1 amd64 regular expressions library\\nii libopengl0:amd64 1.7.0-1build1 amd64 Vendor neutral GL dispatch library -- OpenGL support\\nii libopenipmi0t64 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface - runtime\\nii libopenjp2-7:amd64 2.5.0-2build3 amd64 JPEG 2000 image compression/decompression library\\nii libopus0:amd64 1.4-1build1 amd64 Opus codec runtime library\\nii liborc-0.4-0t64:amd64 1:0.4.38-1ubuntu0.1 amd64 Library of Optimized Inner Loops Runtime Compiler\\nii liborcus-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents\\nii liborcus-parser-0.18-0:amd64 0.19.2-3build3 amd64 library for processing spreadsheet documents - parser library\\nii libp11-kit0:amd64 0.25.3-4ubuntu2.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime\\nii libpackagekit-glib2-18:amd64 1.2.8-2build3 amd64 Library for accessing PackageKit using GLib\\nii libpam-cap:amd64 1:2.66-5ubuntu2 amd64 POSIX 1003.1e capabilities (PAM module)\\nii libpam-fprintd:amd64 1.94.3-1 amd64 PAM module for fingerprint authentication through fprintd\\nii libpam-gnome-keyring:amd64 46.1-2build1 amd64 PAM module to unlock the GNOME keyring upon login\\nii libpam-modules:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM\\nii libpam-modules-bin 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules for PAM - helper binaries\\nii libpam-pwquality:amd64 1.4.5-3build1 amd64 PAM module to check password strength\\nii libpam-runtime 1.5.3-5ubuntu5.1 all Runtime support for the PAM library\\nii libpam-sss:amd64 2.9.4-1.1ubuntu6.1 amd64 Pam module for the System Security Services Daemon\\nii libpam-systemd:amd64 255.4-1ubuntu8.4 amd64 system and service manager - PAM module\\nii libpam0g:amd64 1.5.3-5ubuntu5.1 amd64 Pluggable Authentication Modules library\\nii libpango-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangocairo-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangoft2-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpangomm-2.48-1t64:amd64 2.52.0-1build1 amd64 C++ Wrapper for pango (shared libraries)\\nii libpangoxft-1.0-0:amd64 1.52.1+ds-1build1 amd64 Layout and rendering of internationalized text\\nii libpaper-utils 1.1.29build1 amd64 library for handling paper characteristics (utilities)\\nii libpaper1:amd64 1.1.29build1 amd64 library for handling paper characteristics\\nii libparted2t64:amd64 3.6-4build1 amd64 disk partition manipulator - shared library\\nii libpcap0.8t64:amd64 1.10.4-4.1ubuntu3 amd64 system interface for user-level packet capture\\nii libpcaudio0:amd64 1.2-2build3 amd64 C API to different audio devices - shared library\\nii libpci3:amd64 1:3.10.0-2build1 amd64 PCI utilities (shared library)\\nii libpciaccess0:amd64 0.17-3build1 amd64 Generic PCI access library for X\\nii libpcre2-16-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files\\nii libpcre2-32-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - 32 bit runtime files\\nii libpcre2-8-0:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files\\nii libpcre2-dev:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - development files\\nii libpcre2-posix3:amd64 10.42-4ubuntu2 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files\\nii libpcsclite1:amd64 2.0.3-1build1 amd64 Middleware to access a smart card using PC/SC (library)\\nii libpeas-1.0-0:amd64 1.36.0-3build4 amd64 Application plugin library\\nii libpeas-common 1.36.0-3build4 all Application plugin library (common files)\\nii libperl5.38t64:amd64 5.38.2-3.2build2 amd64 shared Perl library\\nii libphonenumber8:amd64 8.12.57+ds-4.2build3 amd64 parsing/formatting/validating phone numbers\\nii libpipeline1:amd64 1.5.7-2 amd64 Unix process pipeline manipulation library\\nii libpipewire-0.3-0t64:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server\\nii libpipewire-0.3-common 1.0.5-1ubuntu1 all libraries for the PipeWire multimedia server - common files\\nii libpipewire-0.3-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - modules\\nii libpixman-1-0:amd64 0.42.2-1build1 amd64 pixel-manipulation library for X and cairo\\nii libpkcs11-helper1t64:amd64 1.29.0-2.1build2 amd64 library that simplifies the interaction with PKCS#11\\nii libpkgconf3:amd64 1.8.1-2build1 amd64 shared library for pkgconf\\nii libplist-2.0-4:amd64 2.3.0-1~exp2build2 amd64 Library for handling Apple binary and XML property lists\\nii libplymouth5:amd64 24.004.60-1ubuntu7 amd64 graphical boot animation and logger - shared libraries\\nii libpng16-16t64:amd64 1.6.43-5build1 amd64 PNG library - runtime (version 1.6)\\nii libpolkit-agent-1-0:amd64 124-2ubuntu1 amd64 polkit Authentication Agent API\\nii libpolkit-gobject-1-0:amd64 124-2ubuntu1 amd64 polkit Authorization API\\nii libpoppler-cpp0t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (CPP shared library)\\nii libpoppler-glib8t64:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library (GLib-based shared library)\\nii libpoppler134:amd64 24.02.0-1ubuntu9.1 amd64 PDF rendering library\\nii libpopt0:amd64 1.19+dfsg-1build1 amd64 lib for parsing cmdline parameters\\nii libportal-gtk4-1:amd64 0.7.1-5build5 amd64 Flatpak portal library for GTK 4 GUIs\\nii libportal1:amd64 0.7.1-5build5 amd64 Flatpak portal library - non-GUI part\\nii libppd2:amd64 2:2.0.0-0ubuntu4 amd64 OpenPrinting libppd - Shared library\\nii libppd2-common 2:2.0.0-0ubuntu4 all OpenPrinting libppd - Auxiliary files\\nii libpq5:amd64 16.4-0ubuntu0.24.04.2 amd64 PostgreSQL C client library\\nii libproc2-0:amd64 2:4.0.4-4ubuntu3 amd64 library for accessing process information from /proc\\nii libprotobuf-c1:amd64 1.4.1-1ubuntu4 amd64 Protocol Buffers C shared library (protobuf-c)\\nii libprotobuf32t64:amd64 3.21.12-8.2build1 amd64 protocol buffers C++ library\\nii libproxy1-plugin-gsettings:amd64 0.5.4-4build1 amd64 transitional package for libproxy GSettings plugin\\nii libproxy1-plugin-networkmanager:amd64 0.5.4-4build1 amd64 transitional package for libproxy NetworkManager plugin\\nii libproxy1v5:amd64 0.5.4-4build1 amd64 automatic proxy configuration management library (shared)\\nii libpsl5t64:amd64 0.21.2-1.1build1 amd64 Library for Public Suffix List (shared libraries)\\nii libpulse-mainloop-glib0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries (glib support)\\nii libpulse0:amd64 1:16.1+dfsg1-2ubuntu10 amd64 PulseAudio client libraries\\nii libpwquality-common 1.4.5-3build1 all library for password quality checking and generation (data files)\\nii libpwquality1:amd64 1.4.5-3build1 amd64 library for password quality checking and generation\\nii libpython3-dev:amd64 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii libpython3-stdlib:amd64 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii libpython3.12-dev:amd64 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii libpython3.12-minimal:amd64 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii libpython3.12-stdlib:amd64 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (standard library, version 3.12)\\nii libpython3.12t64:amd64 3.12.3-1ubuntu0.1 amd64 Shared Python runtime library (version 3.12)\\nii libqmi-glib5:amd64 1.35.2-0ubuntu2 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol\\nii libqmi-proxy 1.35.2-0ubuntu2 amd64 Proxy to communicate with QMI ports\\nii libqmi-utils 1.35.2-0ubuntu2 amd64 Utilities to use the QMI protocol from the command line\\nii libqpdf29t64:amd64 11.9.0-1.1build1 amd64 runtime library for PDF transformation/inspection software\\nii libqrtr-glib0:amd64 1.2.2-1ubuntu4 amd64 Support library to use the QRTR protocol\\nii libquadmath0:amd64 14-20240412-0ubuntu1 amd64 GCC Quad-Precision Math Library\\nii libraptor2-0:amd64 2.0.16-3build3 amd64 Raptor 2 RDF syntax library\\nii libraqm0:amd64 0.10.1-1build1 amd64 Library for complex text layout\\nii librasqal3t64:amd64 0.9.33-2.1build1 amd64 Rasqal RDF query library\\nii libraw1394-11:amd64 2.1.2-2build3 amd64 library for direct access to IEEE 1394 bus (aka FireWire)\\nii librdf0t64:amd64 1.0.17-3.1ubuntu3 amd64 Redland Resource Description Framework (RDF) library\\nii libreadline8t64:amd64 8.2-4build1 amd64 GNU readline and history libraries, run-time libraries\\nii libreoffice-common 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- arch-independent files\\nii libreoffice-core 4:24.2.5-0ubuntu0.24.04.2 amd64 office productivity suite -- arch-dependent files\\nii libreoffice-style-colibre 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- colibre symbol style\\nii libreoffice-style-yaru 4:24.2.5-0ubuntu0.24.04.2 all office productivity suite -- Yaru symbol style\\nii libreoffice-uiconfig-common 4:24.2.5-0ubuntu0.24.04.2 all UI data (\\"config\\") for LibreOffice (\\"common\\" set)\\nii librest-1.0-0:amd64 0.9.1-6build3 amd64 REST service access library\\nii librevenge-0.0-0:amd64 0.0.5-3build1 amd64 Base Library for writing document interface filters\\nii libroc0.3:amd64 0.3.0+dfsg-7ubuntu2 amd64 real-time audio streaming over the network (shared library)\\nii librsvg2-2:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (runtime)\\nii librsvg2-common:amd64 2.58.0+dfsg-1build1 amd64 SAX-based renderer library for SVG files (extra runtime)\\nii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2build7 amd64 toolkit for RTMP streams (shared library)\\nii librygel-core-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - core library\\nii librygel-db-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - db library\\nii librygel-renderer-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - renderer library\\nii librygel-server-2.8-0:amd64 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services - server library\\nii libsamplerate0:amd64 0.2.2-4build1 amd64 Audio sample rate conversion library\\nii libsane-common 1.2.1-7build4 all API library for scanners -- documentation and support files\\nii libsane-hpaio:amd64 3.23.12+dfsg0-0ubuntu5 amd64 HP SANE backend for multi-function peripherals\\nii libsane1:amd64 1.2.1-7build4 amd64 API library for scanners\\nii libsasl2-2:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - authentication abstraction library\\nii libsasl2-modules:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules\\nii libsasl2-modules-db:amd64 2.1.28+dfsg1-5ubuntu3.1 amd64 Cyrus SASL - pluggable authentication modules (DB)\\nii libsbc1:amd64 2.0-1build1 amd64 Sub Band CODEC library - runtime\\nii libsctp-dev:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - development files\\nii libsctp1:amd64 1.0.19+dfsg-2build1 amd64 user-space access to Linux kernel SCTP - shared library\\nii libseccomp2:amd64 2.5.5-1ubuntu3.1 amd64 high level interface to Linux seccomp filter\\nii libsecret-1-0:amd64 0.21.4-1build3 amd64 Secret store\\nii libsecret-common 0.21.4-1build3 all Secret store (common files)\\nii libselinux1:amd64 3.5-2ubuntu2 amd64 SELinux runtime shared libraries\\nii libselinux1-dev:amd64 3.5-2ubuntu2 amd64 SELinux development headers\\nii libsemanage-common 3.5-1build5 all Common files for SELinux policy management libraries\\nii libsemanage2:amd64 3.5-1build5 amd64 SELinux policy management library\\nii libsensors-config 1:3.6.0-9build1 all lm-sensors configuration files\\nii libsensors-dev:amd64 1:3.6.0-9build1 amd64 lm-sensors development kit\\nii libsensors5:amd64 1:3.6.0-9build1 amd64 library to read temperature/voltage/fan sensors\\nii libsepol-dev:amd64 3.5-2build1 amd64 SELinux binary policy manipulation library and development files\\nii libsepol2:amd64 3.5-2build1 amd64 SELinux library for manipulating binary security policies\\nii libsframe1:amd64 2.42-4ubuntu2 amd64 Library to handle the SFrame format (runtime library)\\nii libsharpyuv0:amd64 1.3.2-0.4build3 amd64 Library for sharp RGB to YUV conversion\\nii libshout3:amd64 2.4.6-1build2 amd64 MP3/Ogg Vorbis broadcast streaming library\\nii libsigc++-3.0-0:amd64 3.6.0-2 amd64 type-safe Signal Framework for C++ - runtime\\nii libslang2:amd64 2.3.3-3build2 amd64 S-Lang programming library - runtime version\\nii libslirp0:amd64 4.7.0-1ubuntu3 amd64 General purpose TCP-IP emulator library\\nii libsm6:amd64 2:1.2.3-1build3 amd64 X11 Session Management library\\nii libsmartcols1:amd64 2.39.3-9ubuntu6.1 amd64 smart column output alignment library\\nii libsmbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 shared library for communication with SMB/CIFS servers\\nii libsnapd-glib-2-1:amd64 1.64-0ubuntu5 amd64 GLib snapd library\\nii libsndfile1:amd64 1.2.2-1ubuntu5 amd64 Library for reading/writing audio files\\nii libsnmp-base 5.9.4+dfsg-1.1ubuntu3 all SNMP configuration script, MIBs and documentation\\nii libsnmp40t64:amd64 5.9.4+dfsg-1.1ubuntu3 amd64 SNMP (Simple Network Management Protocol) library\\nii libsonic0:amd64 0.2.0-13build1 amd64 Simple library to speed up or slow down speech\\nii libsoup-2.4-1:amd64 2.74.3-6ubuntu1 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-0:amd64 3.4.4-5build2 amd64 HTTP library implementation in C -- Shared library\\nii libsoup-3.0-common 3.4.4-5build2 all HTTP library implementation in C -- Common files\\nii libsoup2.4-common 2.74.3-6ubuntu1 all HTTP library implementation in C -- Common files\\nii libsource-highlight-common 3.1.9-4.3build1 all architecture-independent files for source highlighting library\\nii libsource-highlight4t64:amd64 3.1.9-4.3build1 amd64 source highlighting library\\nii libspa-0.2-bluetooth:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server - bluetooth plugins\\nii libspa-0.2-modules:amd64 1.0.5-1ubuntu1 amd64 libraries for the PipeWire multimedia server Simple Plugin API - modules\\nii libspectre1:amd64 0.2.12-1build2 amd64 Library for rendering PostScript documents\\nii libspeechd2:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Shared libraries\\nii libspeex1:amd64 1.2.1-2ubuntu2 amd64 The Speex codec runtime library\\nii libspeexdsp1:amd64 1.2.1-1ubuntu3 amd64 DSP library derived from speex\\nii libsqlite3-0:amd64 3.45.1-1ubuntu2 amd64 SQLite 3 shared library\\nii libss2:amd64 1.47.0-2.4~exp1ubuntu4.1 amd64 command-line interface parsing library\\nii libssh-4:amd64 0.10.6-2build2 amd64 tiny C SSH library (OpenSSL flavor)\\nrc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libssl3t64:amd64 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - shared libraries\\nii libstartup-notification0:amd64 0.12-6build3 amd64 library for program launch feedback (shared library)\\nii libstdc++-13-dev:amd64 13.2.0-23ubuntu4 amd64 GNU Standard C++ Library v3 (development files)\\nii libstdc++6:amd64 14-20240412-0ubuntu1 amd64 GNU Standard C++ Library v3\\nii libstemmer0d:amd64 2.2.0-4build1 amd64 Snowball stemming algorithms for use in Information Retrieval\\nii libsynctex2:amd64 2023.20230311.66589-9build3 amd64 TeX Live: SyncTeX parser library\\nii libsysmetrics1:amd64 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics - shared lib\\nii libsystemd-shared:amd64 255.4-1ubuntu8.4 amd64 systemd shared private library\\nii libsystemd0:amd64 255.4-1ubuntu8.4 amd64 systemd utility library\\nii libtag1v5:amd64 1.13.1-1build1 amd64 audio meta-data library\\nii libtag1v5-vanilla:amd64 1.13.1-1build1 amd64 audio meta-data library - vanilla flavour\\nii libtalloc2:amd64 2.4.2-1build2 amd64 hierarchical pool based memory allocator\\nii libtasn1-6:amd64 4.19.0-3build1 amd64 Manage ASN.1 structures (runtime)\\nii libtcl8.6:amd64 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files\\nii libtdb1:amd64 1.4.10-1build1 amd64 Trivial Database - shared library\\nii libteamdctl0:amd64 1.31-1build3 amd64 library for communication with `teamd` process\\nii libtevent0t64:amd64 0.16.1-2build1 amd64 talloc-based event loop library - shared library\\nii libtext-charwidth-perl:amd64 0.04-11build3 amd64 get display widths of characters on the terminal\\nii libtext-iconv-perl:amd64 1.7-8build3 amd64 module to convert between character sets in Perl\\nii libtext-wrapi18n-perl 0.06-10 all internationalized substitute of Text::Wrap\\nii libthai-data 0.1.29-2build1 all Data files for Thai language support library\\nii libthai0:amd64 0.1.29-2build1 amd64 Thai language support library\\nii libtheora0:amd64 1.1.1+dfsg.1-16.1build3 amd64 Theora Video Compression Codec\\nii libtie-ixhash-perl 1.23-4 all Perl module to order associative arrays\\nii libtiff6:amd64 4.5.1+git230720-4ubuntu2.2 amd64 Tag Image File Format (TIFF) library\\nii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information\\nii libtinfo6:amd64 6.4+20240113-1ubuntu2 amd64 shared low-level terminfo library for terminal handling\\nii libtirpc-common 1.3.4+ds-1.1build1 all transport-independent RPC library - common files\\nii libtirpc3t64:amd64 1.3.4+ds-1.1build1 amd64 transport-independent RPC library\\nii libtotem-plparser-common 3.26.6-1build5 all Totem Playlist Parser library - common files\\nii libtotem-plparser18:amd64 3.26.6-1build5 amd64 Totem Playlist Parser library - runtime files\\nii libtraceevent1:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (shared library)\\nii libtraceevent1-plugin:amd64 1:1.8.2-1ubuntu2 amd64 Linux kernel trace event library (plugins)\\nii libtracefs1:amd64 1.8.0-1ubuntu1 amd64 API to access the kernel tracefs directory (shared library)\\nii libtracker-sparql-3.0-0:amd64 3.7.1-1build1 amd64 metadata database, indexer and search tool - library\\nii libtry-tiny-perl 0.31-2 all module providing minimalistic try/catch\\nii libtsan0:amd64 11.4.0-9ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtsan2:amd64 14-20240412-0ubuntu1 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime)\\nii libtss2-esys-3.0.2-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-mu-4.0.1-0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-rc0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-sys1t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-cmd0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-device0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-libtpms0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-mssim0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-spi-helper0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tcti-swtpm0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtss2-tctildr0t64:amd64 4.0.1-7.1ubuntu5.1 amd64 TPM2 Software stack library - TSS and TCTI libraries\\nii libtwolame0:amd64 0.4.0-2build3 amd64 MPEG Audio Layer 2 encoding library\\nii libu2f-udev 1.1.10-3build3 all Universal 2nd Factor (U2F) — transitional package\\nii libubsan1:amd64 14-20240412-0ubuntu1 amd64 UBSan -- undefined behaviour sanitizer (runtime)\\nii libuchardet0:amd64 0.0.8-1build1 amd64 universal charset detection library - shared library\\nii libudev1:amd64 255.4-1ubuntu8.4 amd64 libudev shared library\\nii libudisks2-0:amd64 2.10.1-6build1 amd64 GObject based library to access udisks2\\nii libunistring5:amd64 1.1-2build1 amd64 Unicode string library for C\\nii libunity-protocol-private0:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - private library\\nii libunity-scopes-json-def-desktop 7.1.4+19.04.20190319-6build4 all binding to get places into the launcher - desktop def file\\nii libunity9:amd64 7.1.4+19.04.20190319-6build4 amd64 binding to get places into the launcher - shared library\\nii libuno-cppu3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU public library\\nii libuno-cppuhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- CPPU helper library\\nii libuno-purpenvhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- \\"purpose environment\\" helper\\nii libuno-sal3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL public library\\nii libuno-salhelpergcc3-3t64 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- SAL helpers for C++ library\\nii libunwind8:amd64 1.6.2-3build1 amd64 library to determine the call-chain of a program - runtime\\nii libupower-glib3:amd64 1.90.3-1 amd64 abstraction for power management - shared library\\nii liburi-perl 5.27-1 all module to manipulate and access URI strings\\nii libusb-1.0-0:amd64 2:1.0.27-1 amd64 userspace USB programming library\\nii libusbmuxd6:amd64 2.0.2-4build3 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library\\nii libuuid1:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library\\nii libuv1t64:amd64 1.48.0-1.1build1 amd64 asynchronous event notification library - runtime library\\nii libv4l-0t64:amd64 1.26.1-4build3 amd64 Collection of video4linux support libraries\\nii libv4lconvert0t64:amd64 1.26.1-4build3 amd64 Video4linux frame format conversion library\\nii libvisual-0.4-0:amd64 0.4.2-2build1 amd64 audio visualization framework\\nii libvolume-key1:amd64 0.3.12-7build2 amd64 Library for manipulating storage encryption keys and passphrases\\nii libvorbis0a:amd64 1.3.7-1build3 amd64 decoder library for Vorbis General Audio Compression Codec\\nii libvorbisenc2:amd64 1.3.7-1build3 amd64 encoder library for Vorbis General Audio Compression Codec\\nii libvorbisfile3:amd64 1.3.7-1build3 amd64 high-level API for Vorbis General Audio Compression Codec\\nii libvpx9:amd64 1.14.0-1ubuntu2.1 amd64 VP8 and VP9 video codec (shared library)\\nii libvte-2.91-0:amd64 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime files\\nii libvte-2.91-common 0.76.0-1ubuntu0.1 amd64 Terminal emulator widget for GTK+ 3.0 - common files\\nii libvulkan1:amd64 1.3.275.0-1build1 amd64 Vulkan loader library\\nii libwacom-common 2.10.0-2 all Wacom model feature query library (common files)\\nii libwacom9:amd64 2.10.0-2 amd64 Wacom model feature query library\\nii libwavpack1:amd64 5.6.0-1build1 amd64 audio codec (lossy and lossless) - library\\nii libwayland-client0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - client library\\nii libwayland-cursor0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - cursor library\\nii libwayland-egl1:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - EGL library\\nii libwayland-server0:amd64 1.22.0-2.1build1 amd64 wayland compositor infrastructure - server library\\nii libwbclient0:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba winbind client library\\nii libwebkit2gtk-4.1-0:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebkitgtk-6.0-4:amd64 2.44.3-0ubuntu0.24.04.1 amd64 Web content engine library for GTK\\nii libwebp7:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebpdemux2:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images.\\nii libwebpmux3:amd64 1.3.2-0.4build3 amd64 Lossy compression of digital photographic images\\nii libwebrtc-audio-processing1:amd64 0.3.1-0ubuntu6 amd64 AudioProcessing module from the WebRTC project.\\nii libwhoopsie-preferences0 23build3 amd64 Ubuntu error tracker submission settings - shared library\\nii libwhoopsie0:amd64 0.2.77build3 amd64 Ubuntu error tracker submission - shared library\\nii libwinpr3-3:amd64 3.5.1+dfsg1-0ubuntu1 amd64 Windows Portable Runtime library\\nii libwireplumber-0.4-0:amd64 0.4.17-1ubuntu4 amd64 Shared libraries for WirePlumber\\nii libwmf-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion library\\nii libwmf-0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin\\nii libwmf0.2-7-gtk:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion GTK pixbuf plugin - transitional package\\nii libwmflite-0.2-7:amd64 0.2.13-1.1build3 amd64 Windows metafile conversion lite library\\nii libwnck-3-0:amd64 43.0-3build4 amd64 Window Navigator Construction Kit - runtime files\\nii libwnck-3-common 43.0-3build4 all Window Navigator Construction Kit - common files\\nii libwoff1:amd64 1.0.2-2build1 amd64 library for converting fonts to WOFF 2.0\\nii libwrap0:amd64 7.6.q-33 amd64 Wietse Venema\'s TCP wrappers library\\nii libwww-perl 6.76-1 all simple and consistent interface to the world-wide web\\nii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions\\nii libx11-6:amd64 2:1.8.7-1build1 amd64 X11 client-side library\\nii libx11-data 2:1.8.7-1build1 all X11 client-side library\\nii libx11-protocol-perl 0.56-9 all Perl module for the X Window System Protocol, version 11\\nii libx11-xcb1:amd64 2:1.8.7-1build1 amd64 Xlib/XCB interface library\\nii libxatracker2:amd64 24.0.9-0ubuntu0.1 amd64 X acceleration library -- runtime\\nii libxau6:amd64 1:1.0.9-1build6 amd64 X11 authorisation library\\nii libxaw7:amd64 2:1.0.14-1build2 amd64 X11 Athena Widget library\\nii libxcb-damage0:amd64 1.15-1ubuntu2 amd64 X C Binding, damage extension\\nii libxcb-dri2-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri2 extension\\nii libxcb-dri3-0:amd64 1.15-1ubuntu2 amd64 X C Binding, dri3 extension\\nii libxcb-glx0:amd64 1.15-1ubuntu2 amd64 X C Binding, glx extension\\nii libxcb-icccm4:amd64 0.4.1-1.1build3 amd64 utility libraries for X C Binding -- icccm\\nii libxcb-image0:amd64 0.4.0-2build1 amd64 utility libraries for X C Binding -- image\\nii libxcb-keysyms1:amd64 0.4.0-1build4 amd64 utility libraries for X C Binding -- keysyms\\nii libxcb-present0:amd64 1.15-1ubuntu2 amd64 X C Binding, present extension\\nii libxcb-randr0:amd64 1.15-1ubuntu2 amd64 X C Binding, randr extension\\nii libxcb-render-util0:amd64 0.3.9-1build4 amd64 utility libraries for X C Binding -- render-util\\nii libxcb-render0:amd64 1.15-1ubuntu2 amd64 X C Binding, render extension\\nii libxcb-res0:amd64 1.15-1ubuntu2 amd64 X C Binding, res extension\\nii libxcb-shape0:amd64 1.15-1ubuntu2 amd64 X C Binding, shape extension\\nii libxcb-shm0:amd64 1.15-1ubuntu2 amd64 X C Binding, shm extension\\nii libxcb-sync1:amd64 1.15-1ubuntu2 amd64 X C Binding, sync extension\\nii libxcb-util1:amd64 0.4.0-1build3 amd64 utility libraries for X C Binding -- atom, aux and event\\nii libxcb-xfixes0:amd64 1.15-1ubuntu2 amd64 X C Binding, xfixes extension\\nii libxcb-xkb1:amd64 1.15-1ubuntu2 amd64 X C Binding, XKEYBOARD extension\\nii libxcb-xv0:amd64 1.15-1ubuntu2 amd64 X C Binding, xv extension\\nii libxcb1:amd64 1.15-1ubuntu2 amd64 X C Binding\\nii libxcomposite1:amd64 1:0.4.5-1build3 amd64 X11 Composite extension library\\nii libxcursor1:amd64 1:1.2.1-1build1 amd64 X cursor management library\\nii libxcvt0:amd64 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator -- shared library\\nii libxdamage1:amd64 1:1.1.6-1build1 amd64 X11 damaged region extension library\\nii libxdmcp6:amd64 1:1.1.3-0ubuntu6 amd64 X11 Display Manager Control Protocol library\\nii libxext6:amd64 2:1.3.4-1build2 amd64 X11 miscellaneous extension library\\nii libxfixes3:amd64 1:6.0.0-2build1 amd64 X11 miscellaneous \'fixes\' extension library\\nii libxfont2:amd64 1:2.0.6-1build1 amd64 X11 font rasterisation library\\nii libxft2:amd64 2.3.6-1build1 amd64 FreeType-based font drawing library for X\\nii libxi6:amd64 2:1.8.1-1build1 amd64 X11 Input extension library\\nii libxinerama1:amd64 2:1.1.4-3build1 amd64 X11 Xinerama extension library\\nii libxkbcommon-x11-0:amd64 1.6.0-1build1 amd64 library to create keymaps with the XKB X11 protocol\\nii libxkbcommon0:amd64 1.6.0-1build1 amd64 library interface to the XKB compiler - shared library\\nii libxkbfile1:amd64 1:1.1.0-1build4 amd64 X11 keyboard file manipulation library\\nii libxkbregistry0:amd64 1.6.0-1build1 amd64 library to query available RMLVO\\nii libxklavier16:amd64 5.4-5build2 amd64 X Keyboard Extension high-level API\\nii libxml-parser-perl 2.47-1build3 amd64 Perl module for parsing XML files\\nii libxml-twig-perl 1:3.52-2 all Perl module for processing huge XML documents in tree mode\\nii libxml-xpathengine-perl 0.14-2 all re-usable XPath engine for DOM-like trees\\nii libxml2:amd64 2.9.14+dfsg-1.3ubuntu3 amd64 GNOME XML library\\nii libxmlb2:amd64 0.3.18-1 amd64 Binary XML library\\nii libxmlsec1t64:amd64 1.2.39-5build2 amd64 XML security library\\nii libxmlsec1t64-nss:amd64 1.2.39-5build2 amd64 Nss engine for the XML security library\\nii libxmu6:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous utility library\\nii libxmuu1:amd64 2:1.1.3-3build2 amd64 X11 miscellaneous micro-utility library\\nii libxpm4:amd64 1:3.5.17-1build2 amd64 X11 pixmap library\\nii libxrandr2:amd64 2:1.5.2-2build1 amd64 X11 RandR extension library\\nii libxrender1:amd64 1:0.9.10-1.1build1 amd64 X Rendering Extension client library\\nii libxres1:amd64 2:1.2.1-1build1 amd64 X11 Resource extension library\\nii libxshmfence1:amd64 1.3-1build5 amd64 X shared memory fences - shared library\\nii libxslt1.1:amd64 1.1.39-0exp1build1 amd64 XSLT 1.0 processing library - runtime library\\nii libxss1:amd64 1:1.2.3-1build3 amd64 X11 Screen Saver extension library\\nii libxt6t64:amd64 1:1.2.1-1.2build1 amd64 X11 toolkit intrinsics library\\nii libxtables12:amd64 1.8.10-3ubuntu2 amd64 netfilter xtables library\\nii libxtst6:amd64 2:1.2.3-1.1build1 amd64 X11 Testing -- Record extension library\\nii libxv1:amd64 2:1.0.11-1.1build1 amd64 X11 Video extension library\\nii libxvmc1:amd64 2:1.0.12-2build3 amd64 X11 Video extension library\\nii libxxf86dga1:amd64 2:1.1.5-1build1 amd64 X11 Direct Graphics Access extension library\\nii libxxf86vm1:amd64 1:1.1.4-1build4 amd64 X11 XFree86 video mode extension library\\nii libxxhash0:amd64 0.8.2-2build1 amd64 shared library for xxhash\\nii libyajl2:amd64 2.1.0-5build1 amd64 Yet Another JSON Library\\nii libyaml-0-2:amd64 0.2.5-1build1 amd64 Fast YAML 1.1 parser and emitter library\\nii libyelp0:amd64 42.2-1build2 amd64 Library for the GNOME help browser\\nii libzstd1:amd64 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm\\nii linux-base 4.5ubuntu9 all Linux image base package\\nii linux-firmware 20240318.git3b128b60-0ubuntu2.3 amd64 Firmware for Linux kernel drivers\\nii linux-generic 6.8.0-44.44 amd64 Complete Generic Linux kernel and headers\\nii linux-headers-6.8.0-40 6.8.0-40.40 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-6.8.0-44 6.8.0-44.44 all Header files related to Linux kernel version 6.8.0\\nii linux-headers-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel headers for version 6.8.0 on 64 bit x86 SMP\\nii linux-headers-generic 6.8.0-44.44 amd64 Generic Linux kernel headers\\nrc linux-image-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Signed kernel image generic\\nrc linux-image-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Signed kernel image generic\\nii linux-image-6.8.0-40-generic 6.8.0-40.40 amd64 Signed kernel image generic\\nii linux-image-6.8.0-44-generic 6.8.0-44.44 amd64 Signed kernel image generic\\nii linux-image-generic 6.8.0-44.44 amd64 Generic Linux kernel image\\nii linux-libc-dev:amd64 6.8.0-44.44 amd64 Linux Kernel Headers for development\\nrc linux-modules-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-18-generic 6.5.0-18.18~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-26-generic 6.5.0-26.26~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-27-generic 6.5.0-27.28~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-28-generic 6.5.0-28.29~22.04.1 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nrc linux-modules-extra-6.5.0-41-generic 6.5.0-41.41~22.04.2 amd64 Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-modules-extra-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel extra modules for version 6.8.0 on 64 bit x86 SMP\\nii linux-sound-base 1.0.25+dfsg-0ubuntu7 all base package for ALSA and OSS sound systems\\nii linux-tools-6.8.0-40 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-40-generic 6.8.0-40.40 amd64 Linux kernel version specific tools for version 6.8.0-40\\nii linux-tools-6.8.0-44 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-6.8.0-44-generic 6.8.0-44.44 amd64 Linux kernel version specific tools for version 6.8.0-44\\nii linux-tools-common 6.8.0-44.44 all Linux kernel version specific tools for version 6.8.0\\nii lm-sensors 1:3.6.0-9build1 amd64 utilities to read temperature/voltage/fan sensors\\nii locales 2.39-0ubuntu8.3 all GNU C Library: National Language (locale) data [support]\\nii login 1:4.13+dfsg1-4ubuntu3 amd64 system login tools\\nii logrotate 3.21.0-2build1 amd64 Log rotation utility\\nii logsave 1.47.0-2.4~exp1ubuntu4.1 amd64 save the output of a command in a log file\\nii lsb-base 11.6 all transitional package for Linux Standard Base init script functionality\\nii lsb-release 12.0-2 all Linux Standard Base version reporting utility (minimal implementation)\\nii lshw 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 information about hardware configuration\\nii lsof 4.95.0-1build3 amd64 utility to list open files\\nii lto-disabled-list 47 all list of packages not to build with LTO\\nii mailcap 3.70+nmu1ubuntu1 all Debian\'s mailcap system, and support programs\\nii make 4.3-4.1build2 amd64 utility for directing compilation\\nii man-db 2.12.0-4build2 amd64 tools for reading manual pages\\nii manpages 6.7-2 all Manual pages about using a GNU/Linux system\\nii manpages-dev 6.7-2 all Manual pages about using GNU/Linux for development\\nii mawk 1.3.4.20240123-1build1 amd64 Pattern scanning and text processing language\\nii media-types 10.1.0 all List of standard media types and their usual file extension\\nii memtest86+ 7.00-1build1 amd64 stand-alone memory tester for x86 and x86-64\\nii mesa-vulkan-drivers:amd64 24.0.9-0ubuntu0.1 amd64 Mesa Vulkan graphics drivers\\nii mobile-broadband-provider-info 20230416-1 all database of mobile broadband service providers\\nii modemmanager 1.23.4-0ubuntu2 amd64 D-Bus service for managing modems\\nii mokutil 0.6.0-2build3 amd64 tools for manipulating machine owner keys\\nii mongodb-database-tools 100.9.4 amd64 mongodb-database-tools package provides tools for working with the MongoDB server: \\nii mongodb-org-database-tools-extra 7.0.9 amd64 Extra MongoDB database tools\\nii mongodb-org-server 7.0.9 amd64 MongoDB database server\\nii mongodb-org-shell 7.0.9 amd64 MongoDB shell client\\nii mongodb-org-tools 7.0.9 amd64 MongoDB tools\\nii mount 2.39.3-9ubuntu6.1 amd64 tools for mounting and manipulating filesystems\\nii mousetweaks 3.32.0-4build2 amd64 mouse accessibility enhancements for the GNOME desktop\\nii mscompress 0.4-10build1 amd64 Microsoft \\"compress.exe/expand.exe\\" compatible (de)compressor\\nii msr-tools 1.3-5build1 amd64 Utilities for modifying MSRs from userspace\\nii mtr-tiny 0.95-1.1build2 amd64 Full screen ncurses traceroute tool\\nii mutter-common 46.2-1ubuntu0.24.04.1 all shared files for the Mutter window manager\\nii mutter-common-bin 46.2-1ubuntu0.24.04.1 amd64 shared programs for the Mutter window manager\\nii mysql-common 5.8+1.1.0build1 all MySQL database common files, e.g. /etc/mysql/my.cnf\\nii nano 7.2-2build1 amd64 small, friendly text editor inspired by Pico\\nii nautilus 1:46.2-0ubuntu0.2 amd64 file manager and graphical shell for GNOME\\nii nautilus-data 1:46.2-0ubuntu0.2 all data files for nautilus\\nii nautilus-extension-gnome-terminal:amd64 3.52.0-1ubuntu2 amd64 GNOME terminal emulator application - Nautilus extension\\nii nautilus-sendto 3.8.6-7build2 amd64 easily send files via email from within Nautilus\\nii ncurses-base 6.4+20240113-1ubuntu2 all basic terminal type definitions\\nii ncurses-bin 6.4+20240113-1ubuntu2 amd64 terminal-related programs and man pages\\nii ncurses-term 6.4+20240113-1ubuntu2 all additional terminal type definitions\\nii net-tools 2.10-0.1ubuntu4 amd64 NET-3 networking toolkit\\nii netbase 6.4 all Basic TCP/IP networking system\\nii netcat-openbsd 1.226-1ubuntu2 amd64 TCP/IP swiss army knife\\nii netplan-generator 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration systemd-generator\\nii netplan.io 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration for various backends\\nii network-manager 1.46.0-1ubuntu2 amd64 network management framework (daemon and userspace tools)\\nii network-manager-config-connectivity-ubuntu 1.46.0-1ubuntu2 all NetworkManager configuration to enable connectivity checking\\nii network-manager-gnome 1.34.0-1ubuntu3 amd64 network management framework (GNOME frontend)\\nii network-manager-openvpn 1.10.2-4build2 amd64 network management framework (OpenVPN plugin core)\\nii network-manager-openvpn-gnome 1.10.2-4build2 amd64 network management framework (OpenVPN plugin GNOME GUI)\\nii network-manager-pptp 1.2.12-3build2 amd64 network management framework (PPTP plugin core)\\nii network-manager-pptp-gnome 1.2.12-3build2 amd64 network management framework (PPTP plugin GNOME GUI)\\nii networkd-dispatcher 2.2.4-1 all Dispatcher service for systemd-networkd connection status changes\\nii nftables 1.0.9-1build1 amd64 Program to control packet filtering rules by Netfilter project\\nii ntfs-3g 1:2022.10.3-1.2ubuntu3 amd64 read/write NTFS driver for FUSE\\nii numactl 2.0.18-1build1 amd64 NUMA scheduling and memory placement tool\\nii openipmi 2.0.33-1.1build3 amd64 Intelligent Platform Management Interface (for servers)\\nii openjdk-17-jre-headless:amd64 17.0.12+7-1ubuntu2~24.04 amd64 OpenJDK Java runtime, using Hotspot JIT (headless)\\nii openprinting-ppds 20230202-1 all OpenPrinting printer support - PostScript PPD files\\nii openssh-client 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) client, for secure access to remote machines\\nii openssh-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) server, for secure access from remote machines\\nii openssh-sftp-server 1:9.6p1-3ubuntu13.5 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines\\nii openssl 3.0.13-0ubuntu3.4 amd64 Secure Sockets Layer toolkit - cryptographic utility\\nii openvpn 2.6.9-1ubuntu4.1 amd64 virtual private network daemon\\nii orca 46.1-1ubuntu1 all Scriptable screen reader\\nii os-prober 1.81ubuntu4 amd64 utility to detect other OSes on a set of drives\\nii p11-kit 0.25.3-4ubuntu2.1 amd64 p11-glue utilities\\nii p11-kit-modules:amd64 0.25.3-4ubuntu2.1 amd64 p11-glue proxy and trust modules\\nii packagekit 1.2.8-2build3 amd64 Provides a package management service\\nii packagekit-tools 1.2.8-2build3 amd64 Provides PackageKit command-line tools\\nii parted 3.6-4build1 amd64 disk partition manipulator\\nii passwd 1:4.13+dfsg1-4ubuntu3 amd64 change and administer password and group data\\nii pastebinit 1.6.2-1 all command-line pastebin client\\nii patch 2.7.6-7build3 amd64 Apply a diff file to an original\\nii pci.ids 0.0~2024.03.31-1 all PCI ID Repository\\nii pciutils 1:3.10.0-2build1 amd64 PCI utilities\\nii pcmciautils 018-14build1 amd64 PCMCIA utilities for Linux 2.6\\nii perl 5.38.2-3.2build2 amd64 Larry Wall\'s Practical Extraction and Report Language\\nii perl-base 5.38.2-3.2build2 amd64 minimal Perl system\\nii perl-modules-5.38 5.38.2-3.2build2 all Core Perl modules\\nii perl-openssl-defaults:amd64 7build3 amd64 version compatibility baseline for Perl OpenSSL packages\\nii pigz 2.8-1 amd64 Parallel Implementation of GZip\\nii pinentry-curses 1.2.1-3ubuntu5 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG\\nii pinentry-gnome3 1.2.1-3ubuntu5 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG\\nii pipewire:amd64 1.0.5-1ubuntu1 amd64 audio and video processing engine multimedia server\\nii pipewire-alsa:amd64 1.0.5-1ubuntu1 amd64 PipeWire ALSA plugin, for ALSA applications to output via PipeWire\\nii pipewire-audio 1.0.5-1ubuntu1 all recommended set of PipeWire packages for a standard audio desktop use\\nii pipewire-bin 1.0.5-1ubuntu1 amd64 PipeWire multimedia server - programs\\nrc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire\\nii pipewire-pulse 1.0.5-1ubuntu1 amd64 PipeWire PulseAudio daemon\\nii pkexec 124-2ubuntu1 amd64 run commands as another user with polkit authorization\\nii pkgconf:amd64 1.8.1-2build1 amd64 manage compile and link flags for libraries\\nii pkgconf-bin 1.8.1-2build1 amd64 manage compile and link flags for libraries (binaries)\\nii plymouth 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer\\nii plymouth-label 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - label control\\nii plymouth-theme-spinner 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - spinner theme\\nii plymouth-theme-ubuntu-text 24.004.60-1ubuntu7 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme\\nii policykit-1 124-2ubuntu1 amd64 transitional package for polkitd and pkexec\\nii policykit-desktop-privileges 0.22 all run common desktop actions without password\\nii polkitd 124-2ubuntu1 amd64 framework for managing administrative policies and privileges\\nii poppler-data 0.4.12-1 all encoding data for the poppler PDF rendering library\\nii poppler-utils 24.02.0-1ubuntu9.1 amd64 PDF utilities (based on Poppler)\\nii power-profiles-daemon 0.21-1 amd64 Makes power profiles handling available over D-Bus.\\nii powermgmt-base 1.37 all common utils for power management\\nii powertop 2.15-3build1 amd64 diagnose issues with power consumption and management\\nii ppp 2.4.9-1+1.1ubuntu4 amd64 Point-to-Point Protocol (PPP) - daemon\\nii pptp-linux 1.10.0-1build4 amd64 Point-to-Point Tunneling Protocol (PPTP) Client\\nii printer-driver-brlaser 6-3build2 amd64 printer driver for (some) Brother laser printers\\nii printer-driver-c2esp 27-11ubuntu7 amd64 printer driver for Kodak ESP AiO color inkjet Series\\nii printer-driver-foo2zjs 20200505dfsg0-2ubuntu6 amd64 printer driver for ZjStream-based printers\\nii printer-driver-foo2zjs-common 20200505dfsg0-2ubuntu6 all printer driver for ZjStream-based printers - common files\\nii printer-driver-hpcups 3.23.12+dfsg0-0ubuntu5 amd64 HP Linux Printing and Imaging - CUPS Raster driver (hpcups)\\nii printer-driver-m2300w 0.51-15build2 amd64 printer driver for Minolta magicolor 2300W/2400W color laser printers\\nii printer-driver-min12xxw 0.0.9-11build3 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW\\nii printer-driver-pnm2ppa 1.13+nondbs-0ubuntu10 amd64 printer driver for HP-GDI printers\\nii printer-driver-postscript-hp 3.23.12+dfsg0-0ubuntu5 amd64 HP Printers PostScript Descriptions\\nii printer-driver-ptouch 1.7-1build2 amd64 printer driver Brother P-touch label printers\\nii printer-driver-pxljr 1.4+repack0-6build2 amd64 printer driver for HP Color LaserJet 35xx/36xx\\nii printer-driver-sag-gdi 0.1-8 all printer driver for Ricoh Aficio SP 1000s/SP 1100s\\nii printer-driver-splix 2.0.0+svn315-7fakesync1ubuntu1 amd64 Driver for Samsung and Xerox SPL2 and SPLc laser printers\\nii procps 2:4.0.4-4ubuntu3 amd64 /proc file system utilities\\nii psmisc 23.7-1build1 amd64 utilities that use the proc file system\\nii publicsuffix 20231001.0357-0.1 all accurate, machine-readable list of domain name suffixes\\nrc pulseaudio 1:15.99.1+dfsg1-1ubuntu2.2 amd64 PulseAudio sound server\\nii python-apt-common 2.7.7ubuntu3 all Python interface to libapt-pkg (locales)\\nii python-babel-localedata 2.10.3-3build1 all tools for internationalizing Python applications - locale data files\\nii python3 3.12.3-0ubuntu2 amd64 interactive high-level object-oriented language (default python3 version)\\nii python3-apport 2.28.1-0ubuntu3.1 all Python 3 library for Apport crash report handling\\nii python3-apt 2.7.7ubuntu3 amd64 Python 3 interface to libapt-pkg\\nii python3-aptdaemon 1.1.1+bzr982-0ubuntu44 all Python 3 module for the server and client of aptdaemon\\nii python3-aptdaemon.gtk3widgets 1.1.1+bzr982-0ubuntu44 all Python 3 GTK+ 3 widgets to run an aptdaemon client\\nii python3-attr 23.2.0-2 all Attributes without boilerplate (Python 3)\\nii python3-babel 2.10.3-3build1 all tools for internationalizing Python applications - Python 3.x\\nii python3-blinker 1.7.0-1 all Fast, simple object-to-object and broadcast signaling (Python3)\\nii python3-bpfcc 0.29.1+ds-1ubuntu7 all Python 3 wrappers for BPF Compiler Collection (BCC)\\nii python3-brlapi:amd64 6.6-4ubuntu5 amd64 Braille display access via BRLTTY - Python3 bindings\\nii python3-cairo 1.25.1-2build2 amd64 Python3 bindings for the Cairo vector graphics library\\nii python3-certifi 2023.11.17-1 all root certificates for validating SSL certs and verifying TLS hosts (python3)\\nii python3-cffi-backend:amd64 1.16.0-2build1 amd64 Foreign Function Interface for Python 3 calling C code - runtime\\nii python3-chardet 5.2.0+dfsg-1 all Universal Character Encoding Detector (Python3)\\nii python3-click 8.1.6-2 all Wrapper around optparse for command line utilities - Python 3.x\\nii python3-colorama 0.4.6-4 all Cross-platform colored terminal text in Python - Python 3.x\\nii python3-commandnotfound 23.04.0 all Python 3 bindings for command-not-found.\\nii python3-configobj 5.0.8-3 all simple but powerful config file reader and writer for Python 3\\nii python3-cryptography 41.0.7-4ubuntu0.1 amd64 Python library exposing cryptographic recipes and primitives (Python 3)\\nii python3-cups:amd64 2.0.1-5build6 amd64 Python3 bindings for CUPS\\nii python3-cupshelpers 1.5.18-1ubuntu9 all Python utility modules around the CUPS printing system\\nii python3-dateutil 2.8.2-3ubuntu1 all powerful extensions to the standard Python 3 datetime module\\nii python3-dbus 1.3.2-5build3 amd64 simple interprocess messaging system (Python 3 interface)\\nii python3-debconf 1.5.86ubuntu1 all interact with debconf from Python 3\\nii python3-debian 0.1.49ubuntu2 all Python 3 modules to work with Debian-related data formats\\nii python3-defer 1.0.6-2.1ubuntu1 all Small framework for asynchronous programming (Python 3)\\nii python3-dev 3.12.3-0ubuntu2 amd64 header files and a static library for Python (default)\\nii python3-distro 1.9.0-1 all Linux OS platform information API\\nii python3-distro-info 1.7build1 all information about distributions\' releases (Python 3 module)\\nii python3-distupgrade 1:24.04.23 all manage release upgrades\\nii python3-gdbm:amd64 3.12.3-0ubuntu1 amd64 GNU dbm database support for Python 3.x\\nii python3-gi 3.48.2-1 amd64 Python 3 bindings for gobject-introspection libraries\\nii python3-httplib2 0.20.4-3 all comprehensive HTTP client library written for Python3\\nii python3-ibus-1.0 1.5.29-2 all Intelligent Input Bus - introspection overrides for Python (Python 3)\\nii python3-idna 3.6-2ubuntu0.1 all Python IDNA2008 (RFC 5891) handling (Python 3)\\nii python3-importlib-metadata 4.12.0-1 all library to access the metadata for a Python package - Python 3.x\\nii python3-jinja2 3.1.2-1ubuntu1.1 all small but fast and easy to use stand-alone template engine\\nii python3-json-pointer 2.0-0ubuntu1 all resolve JSON pointers - Python 3.x\\nii python3-jsonpatch 1.32-3 all library to apply JSON patches - Python 3.x\\nii python3-jsonschema 4.10.3-2ubuntu1 all An(other) implementation of JSON Schema (Draft 3, 4, 6, 7)\\nii python3-jwt 2.7.0-1 all Python 3 implementation of JSON Web Token\\nii python3-launchpadlib 1.11.0-6 all Launchpad web services client library (Python 3)\\nii python3-lazr.restfulclient 0.14.6-1 all client for lazr.restful-based web services (Python 3)\\nii python3-lazr.uri 1.0.6-3 all library for parsing, manipulating, and generating URIs\\nii python3-louis 3.29.0-1build1 all Python bindings for liblouis\\nii python3-markdown-it 3.0.0-2 all Python port of markdown-it and some its associated plugins\\nii python3-markupsafe 2.1.5-1build2 amd64 HTML/XHTML/XML string library\\nii python3-mdurl 0.1.2-1 all Python port of the JavaScript mdurl package\\nii python3-minimal 3.12.3-0ubuntu2 amd64 minimal subset of the Python language (default python3 version)\\nii python3-more-itertools 10.2.0-1 all library with routines for operating on iterables, beyond itertools (Python 3)\\nii python3-netaddr 0.8.0-2ubuntu1 all manipulation of various common network address notations (Python 3)\\nii python3-netifaces:amd64 0.11.0-2build3 amd64 portable network interface information - Python 3.x\\nii python3-netplan 1.0.1-1ubuntu2~24.04.1 amd64 Declarative network configuration Python bindings\\nii python3-oauthlib 3.2.2-1 all generic, spec-compliant implementation of OAuth for Python3\\nii python3-olefile 0.46-3 all Python module to read/write MS OLE2 files\\nii python3-packaging 24.0-1 all core utilities for python3 packages\\nii python3-pexpect 4.9-2 all Python 3 module for automating interactive applications\\nii python3-pil:amd64 10.2.0-1ubuntu1 amd64 Python Imaging Library (Python3)\\nii python3-pip 24.0+dfsg-1ubuntu1 all Python package installer\\nii python3-pip-whl 24.0+dfsg-1ubuntu1 all Python package installer (pip wheel)\\nii python3-pkg-resources 68.1.2-2ubuntu1 all Package Discovery and Resource Access using pkg_resources\\nii python3-problem-report 2.28.1-0ubuntu3.1 all Python 3 library to handle problem reports\\nii python3-ptyprocess 0.7.0-5 all Run a subprocess in a pseudo terminal from Python 3\\nii python3-pygments 2.17.2+dfsg-1 all syntax highlighting package written in Python 3\\nii python3-pyparsing 3.1.1-1 all alternative to creating and executing simple grammars - Python 3.x\\nii python3-pyrsistent:amd64 0.20.0-1build2 amd64 persistent/functional/immutable data structures for Python\\nii python3-requests 2.31.0+dfsg-1ubuntu1 all elegant and simple HTTP library for Python3, built for human beings\\nii python3-rich 13.7.1-1 all render rich text, tables, progress bars, syntax highlighting, markdown and more\\nii python3-serial 3.5-2 all pyserial - module encapsulating access for the serial port\\nii python3-setuptools 68.1.2-2ubuntu1 all Python3 Distutils Enhancements\\nii python3-setuptools-whl 68.1.2-2ubuntu1 all Python Distutils Enhancements (wheel package)\\nii python3-six 1.16.0-4 all Python 2 and 3 compatibility library\\nii python3-software-properties 0.99.48 all manage the repositories that you install software from\\nii python3-speechd 0.12.0~rc2-2build3 all Python interface to Speech Dispatcher\\nii python3-systemd 235-1build4 amd64 Python 3 bindings for systemd\\nii python3-tz 2024.1-2 all Python3 version of the Olson timezone database\\nii python3-uno 4:24.2.5-0ubuntu0.24.04.2 amd64 Python-UNO bridge\\nii python3-update-manager 1:24.04.6 all Python 3.x module for update-manager\\nii python3-urllib3 2.0.7-1 all HTTP library with thread-safe connection pooling for Python3\\nii python3-venv 3.12.3-0ubuntu2 amd64 venv module for python3 (default python3 version)\\nii python3-wadllib 1.3.6-5 all Python 3 library for navigating WADL files\\nii python3-wheel 0.42.0-2 all built-package format for Python\\nii python3-xdg 0.28-2 all Python 3 library to access freedesktop.org standards\\nii python3-xkit 0.5.0ubuntu6 all library for the manipulation of xorg.conf files (Python 3)\\nii python3-yaml 6.0.1-2build2 amd64 YAML parser and emitter for Python3\\nii python3-zipp 1.0.0-6ubuntu0.1 all pathlib-compatible Zipfile object wrapper - Python 3.x\\nrc python3.10-venv 3.10.12-1~22.04.5 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.10)\\nii python3.12 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (version 3.12)\\nii python3.12-dev 3.12.3-1ubuntu0.1 amd64 Header files and a static library for Python (v3.12)\\nii python3.12-minimal 3.12.3-1ubuntu0.1 amd64 Minimal subset of the Python language (version 3.12)\\nii python3.12-venv 3.12.3-1ubuntu0.1 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.12)\\nii readline-common 8.2-4build1 all GNU readline and history libraries, common files\\nii rfkill 2.39.3-9ubuntu6.1 amd64 tool for enabling and disabling wireless devices\\nii rpcsvc-proto 1.4.2-0ubuntu7 amd64 RPC protocol compiler and definitions\\nii rsync 3.2.7-1ubuntu1 amd64 fast, versatile, remote (and local) file-copying tool\\nii rsyslog 8.2312.0-3ubuntu9 amd64 reliable system and kernel logging daemon\\nii rtkit 0.13-5build1 amd64 Realtime Policy and Watchdog Daemon\\nii rygel 0.42.5-1ubuntu3 amd64 GNOME UPnP/DLNA services\\nii samba-libs:amd64 2:4.19.5+dfsg-4ubuntu9 amd64 Samba core libraries\\nii sane-airscan 0.99.29-0ubuntu4 amd64 SANE backend for AirScan (eSCL) and WSD document scanner\\nii sane-utils 1.2.1-7build4 amd64 API library for scanners -- utilities\\nii sbsigntool 0.9.4-3.1ubuntu7 amd64 Tools to manipulate signatures on UEFI binaries and drivers\\nii seahorse 43.0-3build2 amd64 GNOME front end for GnuPG\\nii secureboot-db 1.9build1 amd64 Secure Boot updates for DB and DBX\\nii sed 4.9-2build1 amd64 GNU stream editor for filtering/transforming text\\nii sensible-utils 0.0.22 all Utilities for sensible alternative selection\\nii session-migration 0.3.9build1 amd64 Tool to migrate in user session settings\\nii sgml-base 1.31 all SGML infrastructure and SGML catalog file support\\nii sgml-data 2.0.11+nmu1 all common SGML and XML data\\nii shared-mime-info 2.4-4 amd64 FreeDesktop.org shared MIME database and spec\\nii shim-signed 1.58+15.8-0ubuntu1 amd64 Secure Boot chain-loading bootloader (Microsoft-signed binary)\\nii slirp4netns 1.2.1-1build2 amd64 User-mode networking for unprivileged network namespaces\\nii snapd 2.63.1+24.04 amd64 Daemon and tooling that enable snap packages\\nii software-properties-common 0.99.48 all manage the repositories that you install software from (common)\\nii software-properties-gtk 0.99.48 all manage the repositories that you install software from (gtk)\\nii sound-icons 0.1-8 all Sounds for speech enabled applications\\nii sound-theme-freedesktop 0.8-2ubuntu1 all freedesktop.org sound theme\\nii speech-dispatcher 0.12.0~rc2-2build3 amd64 Common interface to speech synthesizers\\nii speech-dispatcher-audio-plugins:amd64 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Audio output plugins\\nii speech-dispatcher-espeak-ng 0.12.0~rc2-2build3 amd64 Speech Dispatcher: Espeak-ng output module\\nii spice-vdagent 0.22.1-4build3 amd64 Spice agent for Linux\\nii squashfs-tools 1:4.6.1-1build1 amd64 Tool to create and append to squashfs filesystems\\nii ssh-import-id 5.11-0ubuntu2 all securely retrieve an SSH public key and install it locally\\nii ssl-cert 1.1.2ubuntu1 all simple debconf wrapper for OpenSSL\\nii strace 6.8-0ubuntu2 amd64 System call tracer\\nii stress-ng 0.17.06-1build1 amd64 tool to load and stress a computer\\nii sudo 1.9.15p5-3ubuntu5 amd64 Provide limited super user privileges to specific users\\nii switcheroo-control 2.6-2build2 amd64 D-Bus service to check the availability of dual-GPU\\nii sysbench 1.0.20+ds-6build2 amd64 multi-threaded benchmark tool for database systems\\nii sysbox-ce 0.6.4.linux amd64 Sysbox Community Edition (CE) is a next-generation container runtime,\\nii syslinux-common 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 all collection of bootloaders (common)\\nii sysstat 12.6.1-2 amd64 system performance tools for Linux\\nii system-config-printer-common 1.5.18-1ubuntu9 all backend and the translation files for system-config-printer\\nii system-config-printer-udev 1.5.18-1ubuntu9 amd64 Utilities to detect and configure printers automatically\\nii systemd 255.4-1ubuntu8.4 amd64 system and service manager\\nii systemd-dev 255.4-1ubuntu8.4 all systemd development files\\nii systemd-hwe-hwdb 255.1.3 all udev rules for hardware enablement (HWE)\\nii systemd-oomd 255.4-1ubuntu8.4 amd64 userspace out-of-memory (OOM) killer\\nii systemd-resolved 255.4-1ubuntu8.4 amd64 systemd DNS resolver\\nii systemd-sysv 255.4-1ubuntu8.4 amd64 system and service manager - SysV compatibility symlinks\\nii systemd-timesyncd 255.4-1ubuntu8.4 amd64 minimalistic service to synchronize local time with NTP servers\\nii sysvinit-utils 3.08-6ubuntu3 amd64 System-V-like utilities\\nii tar 1.35+dfsg-3build1 amd64 GNU version of the tar archiving utility\\nii tcl 8.6.14build1 amd64 Tool Command Language (default version) - shell\\nii tcl8.6 8.6.14+dfsg-1build1 amd64 Tcl (the Tool Command Language) v8.6 - shell\\nii tcpdump 4.99.4-3ubuntu4 amd64 command-line network traffic analyzer\\nii tecla 46.0-1build1 amd64 keyboard layout viewer for the GNOME desktop\\nii telnet 0.17+2.5-3ubuntu4 all transitional dummy package for inetutils-telnet default switch\\nii thermald 2.5.6-2build2 amd64 Thermal monitoring and controlling daemon\\nii time 1.9-0.2build1 amd64 GNU time program for measuring CPU resource usage\\nii tinyproxy 1.11.1-3 all Lightweight, non-caching, optionally anonymizing HTTP proxy\\nii tinyproxy-bin 1.11.1-3 amd64 Lightweight, non-caching, optionally anonymizing HTTP proxy (executable only)\\nii tnftp 20230507-2build3 amd64 enhanced ftp client\\nii tpm-udev 0.6ubuntu1 all udev rules for TPM modules\\nii trace-cmd 3.2-1ubuntu2 amd64 Utility for retrieving and analyzing function tracing in the kernel\\nii tracker 3.7.1-1build1 amd64 metadata database, indexer and search tool\\nii tracker-extract 3.7.1-1build1 amd64 metadata database, indexer and search tool - metadata extractors\\nii tracker-miner-fs 3.7.1-1build1 amd64 metadata database, indexer and search tool - filesystem indexer\\nii tzdata 2024a-3ubuntu1.1 all time zone and daylight-saving time data\\nii ubuntu-advantage-desktop-daemon 1.11 amd64 Daemon to allow access to ubuntu-advantage via D-Bus\\nii ubuntu-desktop 1.539.1 amd64 Ubuntu desktop system\\nii ubuntu-desktop-minimal 1.539.1 amd64 Ubuntu desktop minimal system\\nii ubuntu-docs 24.04.2 all Ubuntu Desktop Guide\\nii ubuntu-drivers-common 1:0.9.7.6ubuntu3.1 amd64 Detect and install additional Ubuntu driver packages\\nii ubuntu-kernel-accessories 1.539.1 amd64 packages useful to install by default on systems with kernels\\nii ubuntu-keyring 2023.11.28.1 all GnuPG keys of the Ubuntu archive\\nii ubuntu-minimal 1.539.1 amd64 Minimal core of Ubuntu\\nii ubuntu-mono 24.04-0ubuntu1 all Ubuntu Mono Icon theme\\nii ubuntu-pro-client 33.2~24.04.1 amd64 Management tools for Ubuntu Pro\\nii ubuntu-pro-client-l10n 33.2~24.04.1 amd64 Translations for Ubuntu Pro Client\\nii ubuntu-release-upgrader-core 1:24.04.23 all manage release upgrades\\nii ubuntu-release-upgrader-gtk 1:24.04.23 all manage release upgrades\\nii ubuntu-report 1.7.3ubuntu0.24.04.1 amd64 Report hardware and other collected metrics\\nii ubuntu-session 46.0-1ubuntu4 all Ubuntu session with GNOME Shell\\nii ubuntu-settings 24.04.4 all default settings for the Ubuntu desktop\\nii ubuntu-standard 1.539.1 amd64 Ubuntu standard system\\nii ubuntu-wallpapers 24.04.2 all Ubuntu Wallpapers\\nii ubuntu-wallpapers-noble 24.04.2 all Ubuntu 24.04 Wallpapers\\nii ucf 3.0043+nmu1 all Update Configuration File(s): preserve user changes to config files\\nii udev 255.4-1ubuntu8.4 amd64 /dev/ and hotplug management daemon\\nii udisks2 2.10.1-6build1 amd64 D-Bus service to access and manipulate storage devices\\nii ufw 0.36.2-6 all program for managing a Netfilter firewall\\nii unattended-upgrades 2.9.1+nmu4ubuntu1 all automatic installation of security upgrades\\nii unifi 8.1.127-25320-1 all Ubiquiti UniFi server\\nii uno-libs-private 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment -- private libraries used by public ones\\nii unzip 6.0-28ubuntu4 amd64 De-archiver for .zip files\\nii update-inetd 4.53 all inetd configuration file updater\\nii update-manager 1:24.04.6 all GNOME application that manages apt updates\\nii update-manager-core 1:24.04.6 all manage release upgrades\\nii update-notifier 3.192.68build3 amd64 Daemon which notifies about package updates\\nii update-notifier-common 3.192.68build3 all Files shared between update-notifier and other packages\\nii upower 1.90.3-1 amd64 abstraction for power management\\nii ure 4:24.2.5-0ubuntu0.24.04.2 amd64 LibreOffice UNO runtime environment\\nii usb-creator-common 0.3.17 all create a startup disk using a CD or disc image (common files)\\nii usb-creator-gtk 0.3.17 all create a startup disk using a CD or disc image (for GNOME)\\nii usb-modeswitch 2.6.1-3ubuntu3 amd64 mode switching tool for controlling \\"flip flop\\" USB devices\\nii usb-modeswitch-data 20191128-6 all mode switching data for usb-modeswitch\\nii usb.ids 2024.03.18-1 all USB ID Repository\\nii usbmuxd 1.1.1-5~exp3ubuntu2 amd64 USB multiplexor daemon for iPhone and iPod Touch devices\\nii usbutils 1:017-3build1 amd64 Linux USB utilities\\nii util-linux 2.39.3-9ubuntu6.1 amd64 miscellaneous system utilities\\nii uuid-dev:amd64 2.39.3-9ubuntu6.1 amd64 Universally Unique ID library - headers and static libraries\\nii uuid-runtime 2.39.3-9ubuntu6.1 amd64 runtime components for the Universally Unique ID library\\nii vim-common 2:9.1.0016-1ubuntu7.2 all Vi IMproved - Common files\\nii vim-tiny 2:9.1.0016-1ubuntu7.2 amd64 Vi IMproved - enhanced vi editor - compact version\\nii wamerican 2020.12.07-2 all American English dictionary words for /usr/share/dict\\nii wbritish 2020.12.07-2 all British English dictionary words for /usr/share/dict\\nii webp-pixbuf-loader:amd64 0.2.4-2build2 amd64 WebP Image format GdkPixbuf loader\\nii wget 1.21.4-1ubuntu4.1 amd64 retrieves files from the web\\nii whiptail 0.52.24-2ubuntu2 amd64 Displays user-friendly dialog boxes from shell scripts\\nii whoopsie 0.2.77build3 amd64 Ubuntu error tracker submission\\nii whoopsie-preferences 23build3 amd64 System preferences for error reporting\\nii wireless-regdb 2022.06.06-0ubuntu2 all wireless regulatory database\\nii wireless-tools 30~pre9-16.1ubuntu2 amd64 Tools for manipulating Linux Wireless Extensions\\nii wireplumber 0.4.17-1ubuntu4 amd64 modular session / policy manager for PipeWire\\nii wngerman 20161207-12 all New German orthography wordlist\\nii wogerman 1:2-39 all Traditional German wordlist\\nii wpasupplicant 2:2.10-21ubuntu0.1 amd64 client support for WPA and WPA2 (IEEE 802.11i)\\nii wswiss 20161207-12 all Swiss (German) orthography wordlist\\nii x11-apps 7.7+11build3 amd64 X applications\\nii x11-common 1:7.7+23ubuntu3 all X Window System (X.Org) infrastructure\\nii x11-session-utils 7.7+6build2 amd64 X session utilities\\nii x11-utils 7.7+6build2 amd64 X11 utilities\\nii x11-xkb-utils 7.7+8build2 amd64 X11 XKB utilities\\nii x11-xserver-utils 7.7+10build2 amd64 X server utilities\\nii xauth 1:1.1.2-1build1 amd64 X authentication utility\\nii xbitmaps 1.1.1-2.2 all Base X bitmaps\\nii xbrlapi 6.6-4ubuntu5 amd64 Access software for a blind person using a braille display - xbrlapi\\nii xcursor-themes 1.0.6-0ubuntu1 all Base X cursor themes\\nii xcvt 0.1.2-1build1 amd64 VESA CVT standard timing modelines generator\\nii xdg-dbus-proxy 0.1.5-1build2 amd64 filtering D-Bus proxy\\nii xdg-desktop-portal 1.18.4-1ubuntu2 amd64 desktop integration portal for Flatpak and Snap\\nii xdg-desktop-portal-gnome 46.2-0ubuntu1 amd64 GNOME portal backend for xdg-desktop-portal\\nii xdg-desktop-portal-gtk 1.15.1-1build2 amd64 GTK+/GNOME portal backend for xdg-desktop-portal\\nii xdg-user-dirs 0.18-1build1 amd64 tool to manage well known user directories\\nii xdg-user-dirs-gtk 0.11-1build2 amd64 tool to manage well known user directories (Gtk extension)\\nii xdg-utils 1.1.3-4.1ubuntu3 all desktop integration utilities from freedesktop.org\\nii xfonts-base 1:1.0.5+nmu1 all standard fonts for X\\nii xfonts-encodings 1:1.0.5-0ubuntu2 all Encodings for X.Org fonts\\nii xfonts-scalable 1:1.0.3-1.3 all scalable fonts for X\\nii xfonts-utils 1:7.7+6build3 amd64 X Window System font utility programs\\nii xinit 1.4.1-0ubuntu5 amd64 X server initialisation tool\\nii xinput 1.6.4-1build1 amd64 Runtime configuration and test of XInput devices\\nii xkb-data 2.41-2ubuntu1.1 all X Keyboard Extension (XKB) configuration data\\nii xml-core 0.19 all XML infrastructure and XML catalog file support\\nii xorg 1:7.7+23ubuntu3 amd64 X.Org X Window System\\nii xorg-docs-core 1:1.7.1-1.2 all Core documentation for the X.org X Window System\\nii xorriso 1:1.5.6-1.1ubuntu3 amd64 command line ISO-9660 and Rock Ridge manipulation tool\\nii xserver-common 2:21.1.12-1ubuntu1 all common files used by various X servers\\nii xserver-xephyr 2:21.1.12-1ubuntu1 amd64 nested X server\\nii xserver-xorg 1:7.7+23ubuntu3 amd64 X.Org X server\\nii xserver-xorg-core 2:21.1.12-1ubuntu1 amd64 Xorg X server - core server\\nii xserver-xorg-input-all 1:7.7+23ubuntu3 amd64 X.Org X server -- input driver metapackage\\nii xserver-xorg-input-libinput 1.4.0-1build1 amd64 X.Org X server -- libinput input driver\\nii xserver-xorg-input-wacom 1:1.2.0-1ubuntu2 amd64 X.Org X server -- Wacom input driver\\nii xserver-xorg-legacy 2:21.1.12-1ubuntu1 amd64 setuid root Xorg server wrapper\\nii xserver-xorg-video-all 1:7.7+23ubuntu3 amd64 X.Org X server -- output driver metapackage\\nii xserver-xorg-video-amdgpu 23.0.0-1build1 amd64 X.Org X server -- AMDGPU display driver\\nii xserver-xorg-video-ati 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI display driver wrapper\\nii xserver-xorg-video-fbdev 1:0.5.0-2build2 amd64 X.Org X server -- fbdev display driver\\nii xserver-xorg-video-intel 2:2.99.917+git20210115-1build1 amd64 X.Org X server -- Intel i8xx, i9xx display driver\\nii xserver-xorg-video-nouveau 1:1.0.17-2build1 amd64 X.Org X server -- Nouveau display driver\\nii xserver-xorg-video-qxl 0.1.6-1build1 amd64 X.Org X server -- QXL display driver\\nii xserver-xorg-video-radeon 1:22.0.0-1build1 amd64 X.Org X server -- AMD/ATI Radeon display driver\\nii xserver-xorg-video-vesa 1:2.6.0-1 amd64 X.Org X server -- VESA display driver\\nii xserver-xorg-video-vmware 1:13.4.0-1build1 amd64 X.Org X server -- VMware display driver\\nii xwayland 2:23.2.6-1 amd64 X server for running X clients under Wayland\\nii xxd 2:9.1.0016-1ubuntu7.2 amd64 tool to make (or reverse) a hex dump\\nii xz-utils 5.6.1+really5.4.5-1build0.1 amd64 XZ-format compression utilities\\nii yaru-theme-gnome-shell 24.04.2-0ubuntu1 all Yaru GNOME Shell desktop theme from the Ubuntu Community\\nii yaru-theme-gtk 24.04.2-0ubuntu1 all Yaru GTK theme from the Ubuntu Community\\nii yaru-theme-icon 24.04.2-0ubuntu1 all Yaru icon theme from the Ubuntu Community\\nii yaru-theme-sound 24.04.2-0ubuntu1 all Yaru sound theme from the Ubuntu Community\\nii yelp 42.2-1build2 amd64 Help browser for GNOME\\nii yelp-xsl 42.1-2 all XSL stylesheets for the yelp help browser\\nii zenity 4.0.1-1build3 amd64 Display graphical dialog boxes from shell scripts\\nii zenity-common 4.0.1-1build3 all Display graphical dialog boxes from shell scripts (common files)\\nii zip 3.0-13build1 amd64 Archiver for .zip files\\nii zlib1g:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - runtime\\nii zlib1g-dev:amd64 1:1.3.dfsg-3.1ubuntu2.1 amd64 compression library - development\\nii zstd 1.5.5+dfsg2-2build1.1 amd64 fast lossless compression algorithm -- CLI tool\\n", "Turbo Boost (Legacy non intel_pstate)": "File not found"}',E'{"uri": "/home/arne/Sites/green-coding/example-applications/", "uri_type": "folder", "name": "Stress Test #5", "filename": "stress/usage_scenario.yml", "branch": null, "debug_mode": false, "allow_unsafe": false, "skip_system_checks": false, "skip_unsafe": true, "verbose_provider_boot": false, "full_docker_prune": false, "dev_no_sleeps": false, "dev_no_build": true, "dev_no_metrics": false, "dev_flow_timetravel": false, "dev_no_optimizations": false, "docker_prune": false, "job_id": null}',1,E'64134395e83e6e57cf6247a2b0ec11b562d1fa95',E'{"sci": {"I": 436, "EL": 4, "RS": 1, "TE": 181000}, "measurement": {"boot": {"wait_time_dependencies": 60}, "idle-duration": 5, "pre-test-sleep": 5, "total-duration": 3600, "post-test-sleep": 5, "metric-providers": {"linux": {"network.io.cgroup.container.provider.NetworkIoCgroupContainerProvider": {"resolution": 99}, "cpu.energy.rapl.msr.component.provider.CpuEnergyRaplMsrComponentProvider": {"resolution": 99}, "cpu.utilization.procfs.system.provider.CpuUtilizationProcfsSystemProvider": {"resolution": 99}, "memory.total.cgroup.container.provider.MemoryTotalCgroupContainerProvider": {"resolution": 99}, "psu.energy.dc.rapl.msr.machine.provider.PsuEnergyDcRaplMsrMachineProvider": {"resolution": 99}, "cpu.utilization.cgroup.container.provider.CpuUtilizationCgroupContainerProvider": {"resolution": 99}}, "macos": {"powermetrics.provider.PowermetricsProvider": {"resolution": 99}, "cpu.utilization.mach.system.provider.CpuUtilizationMachSystemProvider": {"resolution": 99}}, "common": {"network.connections.proxy.container.provider.NetworkConnectionsProxyContainerProvider": null}}, "baseline-duration": 5, "flow-process-duration": 1800, "phase-transition-time": 1, "system_check_threshold": 3}}',NULL,NULL,NULL,NULL,NULL,FALSE,E'2024-09-12 17:00:58.98517+00',E'2024-09-12 17:01:02.265489+00', 1); diff --git a/docker/structure.sql b/docker/structure.sql index 34c38bbea..b26d34cc9 100644 --- a/docker/structure.sql +++ b/docker/structure.sql @@ -28,16 +28,10 @@ INSERT INTO "public"."users"("name","token","capabilities","created_at","updated VALUES (E'DEFAULT',E'89dbf71048801678ca4abfbaa3ea8f7c651aae193357a3e23d68e21512cd07f5',E'{"user":{"is_super_user": true},"api":{"quotas":{},"routes":["/v2/carbondb/filters","/v2/carbondb","/v2/carbondb/add","/v2/ci/measurement/add","/v1/ci/measurement/add","/v1/software/add","/v1/hog/add","/v1/authentication/data"]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":["one-off","daily","weekly","commit","variance","tag","commit-variance","tag-variance"]},"machines":[1],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":["container_memory_utilization","container_cpu_utilization","message_optimization","container_build_time","container_boot_time","container_image_size"]}',E'2024-08-22 11:28:24.937262+00',NULL); - - -(E'DEFAULT',E'89dbf71048801678ca4abfbaa3ea8f7c651aae193357a3e23d68e21512cd07f5',E'{"user":{"is_super_user": true},"api":{"quotas":{},"routes":["/v2/carbondb/filters","/v2/carbondb","/v2/carbondb/add","/v2/ci/measurement/add","/v1/ci/measurement/add","/v1/software/add","/v1/hog/add","/v1/authentication/data"]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":["one-off","daily","weekly","commit","variance","tag","commit-variance","tag-variance"]},"machines":[1],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":["container_memory_utilization","container_cpu_utilization","message_optimization","container_build_time","container_boot_time","container_image_size"]}',E'2024-08-22 11:28:24.937262+00',NULL); - - -- Default password for user 0 is empty INSERT INTO "public"."users"("id", "name","token","capabilities","created_at","updated_at") VALUES -(0, E'[GMT-SYSTEM]',E'',E'{"user":{"is_super_user": false},"api":{"quotas":{},"routes":[]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":[]},"machines":[],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":[]}',E'2024-11-06 11:2 -8:24.937262+00',NULL); +(0, E'[GMT-SYSTEM]',E'',E'{"user":{"is_super_user": false},"api":{"quotas":{},"routes":[]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":[]},"machines":[],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":[]}',E'2024-11-06 11:28:24.937262+00',NULL); CREATE TABLE machines ( id SERIAL PRIMARY KEY, @@ -77,7 +71,7 @@ CREATE TABLE jobs ( categories int[], machine_id int REFERENCES machines(id) ON DELETE SET NULL ON UPDATE CASCADE, message text, - user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); @@ -109,7 +103,7 @@ CREATE TABLE runs ( logs text, invalid_run text, failed boolean DEFAULT false, - user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); @@ -230,7 +224,7 @@ CREATE TABLE ci_measurements ( filter_project text NOT NULL, filter_machine text NOT NULL, filter_tags text[] NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); @@ -266,7 +260,7 @@ CREATE TABLE timeline_projects ( schedule_mode text NOT NULL, last_scheduled timestamp with time zone, last_marker text, - user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); @@ -288,7 +282,7 @@ CREATE TABLE hog_measurements ( thermal_pressure text, settings jsonb, data jsonb, - user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); @@ -375,7 +369,7 @@ CREATE INDEX optimizations_runs ON optimizations(run_id); CREATE TABLE carbondb_types ( id SERIAL PRIMARY KEY, type text NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); @@ -385,7 +379,7 @@ CREATE UNIQUE INDEX carbondb_types_unique ON carbondb_types(type text_ops,user_i CREATE TABLE carbondb_tags ( id SERIAL PRIMARY KEY, tag text NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); @@ -395,7 +389,7 @@ CREATE UNIQUE INDEX carbondb_tags_unique ON carbondb_tags(tag text_ops,user_id i CREATE TABLE carbondb_machines ( id SERIAL PRIMARY KEY, machine text NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); @@ -404,7 +398,7 @@ CREATE UNIQUE INDEX carbondb_machines_unique ON carbondb_machines(machine text_o CREATE TABLE carbondb_projects ( id SERIAL PRIMARY KEY, project text NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); @@ -413,7 +407,7 @@ CREATE UNIQUE INDEX carbondb_projects_unique ON carbondb_projects(project text_o CREATE TABLE carbondb_sources ( id SERIAL PRIMARY KEY, source text NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE SET NULL ON UPDATE CASCADE, + user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), updated_at timestamp with time zone ); diff --git a/migrations/2024_12_17_user_zero.sql b/migrations/2024_12_17_user_zero.sql index 0a5c09df4..d2c516615 100644 --- a/migrations/2024_12_17_user_zero.sql +++ b/migrations/2024_12_17_user_zero.sql @@ -1,8 +1,6 @@ INSERT INTO "public"."users"("id", "name","token","capabilities","created_at","updated_at") VALUES -(0, E'[GMT-SYSTEM]',E'',E'{"user":{"is_super_user": false},"api":{"quotas":{},"routes":[]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measu -rements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":[]},"machines":[],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":[]}',E'2024-11-06 11:2 -8:24.937262+00',NULL); +(0, E'[GMT-SYSTEM]',E'',E'{"user":{"is_super_user": false},"api":{"quotas":{},"routes":[]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":[]},"machines":[],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":[]}',E'2024-11-06 11:28:24.937262+00',NULL); UPDATE jobs SET user_id = 0 WHERE user_id IS NULL; From 75e83d770cc02fafc6d06f0d4c27012d643c747b Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Tue, 17 Dec 2024 20:41:48 +0100 Subject: [PATCH 03/15] (fix): tests --- tests/api/test_api_gmt.py | 4 ++-- tests/frontend/test_frontend.py | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/api/test_api_gmt.py b/tests/api/test_api_gmt.py index f946e500f..a5d403989 100644 --- a/tests/api/test_api_gmt.py +++ b/tests/api/test_api_gmt.py @@ -26,9 +26,9 @@ def test_get_runs(): run_name = 'test_' + utils.randomword(12) uri = os.path.abspath(os.path.join( CURRENT_DIR, 'stress-application/')) - pid = DB().fetch_one("INSERT INTO runs (name,uri,branch,filename,email,created_at) \ + pid = DB().fetch_one("INSERT INTO runs (name,uri,branch,filename,email,created_at,user_id) \ VALUES \ - (%s,%s,'testing','testing', 'testing', NOW()) RETURNING id;", params=(run_name, uri))[0] + (%s,%s,'testing','testing', 'testing', NOW(), 1) RETURNING id;", params=(run_name, uri))[0] response = requests.get(f"{API_URL}/v1/runs?repo=&filename=", timeout=15) res_json = response.json() diff --git a/tests/frontend/test_frontend.py b/tests/frontend/test_frontend.py index 94499ec4a..20b510bb7 100644 --- a/tests/frontend/test_frontend.py +++ b/tests/frontend/test_frontend.py @@ -205,13 +205,13 @@ def test_stats(): assert chart_label.strip() == 'CPU % via procfs' - first_metric = new_page.locator("#runtime-steps > div.ui.bottom.attached.active.tab.segment > div.ui.segment.secondary > phase-metrics > div.ui.accordion > div.content.active > table > tbody > tr:nth-child(1) > td:nth-child(1)").text_content() + first_metric = new_page.locator("#runtime-steps > div.ui.bottom.attached.active.tab.segment > div.ui.segment.secondary > phase-metrics > div.ui.accordion > div.content.active > table > tbody > tr:nth-child(14) > td:nth-child(1)").text_content() assert first_metric.strip() == 'CPU Energy (Package)' - first_value = new_page.locator("#runtime-steps > div.ui.bottom.attached.active.tab.segment > div.ui.segment.secondary > phase-metrics > div.ui.accordion > div.content.active > table > tbody > tr:nth-child(1) > td:nth-child(6)").text_content() + first_value = new_page.locator("#runtime-steps > div.ui.bottom.attached.active.tab.segment > div.ui.segment.secondary > phase-metrics > div.ui.accordion > div.content.active > table > tbody > tr:nth-child(14) > td:nth-child(6)").text_content() assert first_value.strip() == '45.05' - first_unit = new_page.locator("#runtime-steps > div.ui.bottom.attached.active.tab.segment > div.ui.segment.secondary > phase-metrics > div.ui.accordion > div.content.active > table > tbody > tr:nth-child(1) > td:nth-child(7)").text_content() + first_unit = new_page.locator("#runtime-steps > div.ui.bottom.attached.active.tab.segment > div.ui.segment.secondary > phase-metrics > div.ui.accordion > div.content.active > table > tbody > tr:nth-child(14) > td:nth-child(7)").text_content() assert first_unit.strip() == 'J' @@ -220,13 +220,13 @@ def test_stats(): new_page.locator('div[data-tab="[BASELINE]"] .ui.accordion .title > a').click() first_metric = new_page.locator("#main > div.ui.tab.attached.segment.secondary.active > phase-metrics > div.ui.accordion > div.content.active > table > tbody > tr:nth-child(1) > td:nth-child(1)").text_content() - assert first_metric.strip() == 'CPU Energy (Package)' + assert first_metric.strip() == 'Embodied Carbon' first_value = new_page.locator("#main > div.ui.tab.attached.segment.secondary.active > phase-metrics > div.ui.accordion > div.content.active > table > tbody > tr:nth-child(1) > td:nth-child(6)").text_content() - assert first_value.strip() == '9.69' + assert first_value.strip() == '0.01' first_unit = new_page.locator("#main > div.ui.tab.attached.segment.secondary.active > phase-metrics > div.ui.accordion > div.content.active > table > tbody > tr:nth-child(1) > td:nth-child(7)").text_content() - assert first_unit.strip() == 'J' + assert first_unit.strip() == 'g' new_page.close() From 39f12aa96bb027651bda7e6a76c2b8e48fe0b0ff Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Sun, 22 Dec 2024 20:42:29 +0100 Subject: [PATCH 04/15] Refactor datePicker and getParamsFromURL [skip ci] --- frontend/js/ci.js | 39 +++-------------------- frontend/js/compare.js | 25 +++++---------- frontend/js/helpers/main.js | 22 +++++++++++-- frontend/js/helpers/runs.js | 22 ++++++------- frontend/js/stats.js | 18 +++++------ frontend/js/timeline.js | 63 ++++++++++++++----------------------- 6 files changed, 75 insertions(+), 114 deletions(-) diff --git a/frontend/js/ci.js b/frontend/js/ci.js index 662217172..f43144899 100644 --- a/frontend/js/ci.js +++ b/frontend/js/ci.js @@ -226,18 +226,6 @@ const displayRunDetailsTable = (measurements, repo) => { $('table').tablesort(); } - -function dateTimePicker() { - $('#rangestart').calendar({ - type: 'date', - endCalendar: $('#rangeend') - }); - $('#rangeend').calendar({ - type: 'date', - startCalendar: $('#rangestart') - }); -} - const getBadges = async (repo, branch, workflow_id) => { try { const link_node = document.createElement("a") @@ -346,21 +334,6 @@ const bindRefreshButton = (repo, branch, workflow_id, chart_instance) => { }); } -const populateInputs = (url_params) => { - - // set defaults first, so we have filled in data if we fail - const start_date = (url_params.get('start_date') == null) ? dateToYMD(new Date((new Date()).setDate((new Date).getDate() -7)), short=true) : url_params.get('start_date'); - const end_date = (url_params.get('end_date') == null) ? dateToYMD(new Date(), short=true) : url_params.get('end_date'); - - // these two need no escaping, as the date library will always produce a result - // it might fail parsing the date however - try { - $('#rangestart').calendar({initialDate: start_date}); - $('#rangeend').calendar({initialDate: end_date}); - } catch (err) { - showNotification('Date error', 'Date parsing failed'); - } -} $(document).ready((e) => { (async () => { @@ -369,9 +342,9 @@ $(document).ready((e) => { const url_params = getURLParams(); - let branch = escapeString(url_params.get('branch')); - let repo = escapeString(url_params.get('repo')); - let workflow_id = escapeString(url_params.get('workflow')); + let branch = escapeString(url_params['branch']); + let repo = escapeString(url_params['repo']); + let workflow_id = escapeString(url_params['workflow']); const ci_data_node = document.querySelector('#ci-data') if (repo == null || repo == '' || repo == 'null') { @@ -392,14 +365,12 @@ $(document).ready((e) => { bindRefreshButton(repo, branch, workflow_id, chart_instance) - ci_data_node.insertAdjacentHTML('afterbegin', `Branch:${escapeString(url_params.get('branch'))}`) + ci_data_node.insertAdjacentHTML('afterbegin', `Branch:${escapeString(url_params['branch'])}`) ci_data_node.insertAdjacentHTML('afterbegin', `Workflow ID:${escapeString(workflow_id)}`) getBadges(repo, branch, workflow_id) // async - populateInputs(url_params); - - dateTimePicker(); + dateTimePicker(7, url_params); let measurements = null; let stats = null; diff --git a/frontend/js/compare.js b/frontend/js/compare.js index 4bbfc3724..04a943dc3 100644 --- a/frontend/js/compare.js +++ b/frontend/js/compare.js @@ -1,15 +1,10 @@ async function fetchDiff() { document.querySelector('#diff-question').remove(); document.querySelector('#loader-diff').style.display = ''; - - const url_params = getURLParams(); document.querySelector('#diff-container').insertAdjacentHTML('beforebegin', '

Configuration and Settings diff

') try { - let api_url = '/v1/diff?ids='; - params.forEach( id => { - api_url = `${api_url}${id}` - }); - const diffString = (await makeAPICall(api_url)).data + const url_params = getURLParams(); + const diffString = (await makeAPICall(`/v1/diff?ids=${url_params['ids']}`)).data const targetElement = document.getElementById('diff-container'); const configuration = { drawFileList: true, matching: 'lines', highlight: true }; @@ -27,21 +22,17 @@ $(document).ready( (e) => { (async () => { const url_params = getURLParams(); - if(url_params.get('ids') == null - || url_params.get('ids') == '' - || url_params.get('ids') == 'null') { + if(url_params['ids'] == null + || url_params['ids'] == '' + || url_params['ids'] == 'null') { showNotification('No ids', 'ids parameter in URL is empty or not present. Did you follow a correct URL?'); throw "Error"; } - params = url_params.getAll('ids'); - const run_count = params[0].split(",").length + + const run_count = url_params['ids'].split(",").length try { - let api_url = '/v1/compare?ids='; - params.forEach( id => { - api_url = `${api_url}${id}` - }); - window.phase_stats_data = (await makeAPICall(api_url)).data + window.phase_stats_data = (await makeAPICall(`/v1/compare?ids=${url_params['ids']}`)).data } catch (err) { showNotification('Could not get compare in-repo data from API', err); } diff --git a/frontend/js/helpers/main.js b/frontend/js/helpers/main.js index f571569d6..ac2ea62ed 100644 --- a/frontend/js/helpers/main.js +++ b/frontend/js/helpers/main.js @@ -71,9 +71,26 @@ class GMTMenu extends HTMLElement { } customElements.define('gmt-menu', GMTMenu); +const dateTimePicker = (days_before=30, url_params=null) => { + + $('#rangestart').calendar({ + type: 'date', + endCalendar: $('#rangeend'), + initialDate: (url_params['start_date'] != null) ? url_params['start_date'] : new Date((new Date()).setDate((new Date).getDate() - days_before)), + }); + + $('#rangeend').calendar({ + type: 'date', + startCalendar: $('#rangestart'), + initialDate: (url_params['end_date'] != null) ? url_params['end_date'] : new Date(), + }); + +} + const getURLParams = () => { - const query_string = window.location.search; - return (new URLSearchParams(query_string)) + const url_params = new URLSearchParams(window.location.search); + if (!url_params.size) return {}; + return Object.fromEntries(url_params.entries()) } const getPretty = (metric_name, key) => { @@ -199,7 +216,6 @@ const escapeString = (string) =>{ async function makeAPICall(path, values=null, force_authentication_token=null) { - if(values != null ) { var options = { method: "POST", diff --git a/frontend/js/helpers/runs.js b/frontend/js/helpers/runs.js index 93f19fbd1..150ecc655 100644 --- a/frontend/js/helpers/runs.js +++ b/frontend/js/helpers/runs.js @@ -65,30 +65,30 @@ const showActiveFilters = (key, value) => { } const getFilterQueryStringFromURI = () => { - const url_params = (new URLSearchParams(window.location.search)) + const url_params = getURLParams(); let query_string = ''; - if (url_params.get('uri') != null && url_params.get('uri').trim() != '') { - const uri = url_params.get('uri').trim() + if (url_params['uri'] != null && url_params['uri'].trim() != '') { + const uri = url_params['uri'].trim() query_string = `${query_string}&uri=${uri}` showActiveFilters('uri', uri) } - if (url_params.get('filename') != null && url_params.get('filename').trim() != '') { - const filename = url_params.get('filename').trim() + if (url_params['filename'] != null && url_params['filename'].trim() != '') { + const filename = url_params['filename'].trim() query_string = `${query_string}&filename=${filename}` showActiveFilters('filename', filename) } - if (url_params.get('branch') != null && url_params.get('branch').trim() != '') { - const branch = url_params.get('branch').trim() + if (url_params['branch'] != null && url_params['branch'].trim() != '') { + const branch = url_params['branch'].trim() query_string = `${query_string}&branch=${branch}` showActiveFilters('branch', branch) } - if (url_params.get('machine_id') != null && url_params.get('machine_id').trim() != '') { - const machine_id = url_params.get('machine_id').trim() + if (url_params['machine_id'] != null && url_params['machine_id'].trim() != '') { + const machine_id = url_params['machine_id'].trim() query_string = `${query_string}&machine_id=${machine_id}` showActiveFilters('machine_id', machine_id) } - if (url_params.get('machine') != null && url_params.get('machine').trim() != '') { - const machine = url_params.get('machine').trim() + if (url_params['machine'] != null && url_params['machine'].trim() != '') { + const machine = url_params['machine'].trim() query_string = `${query_string}&machine=${machine}` showActiveFilters('machine', machine) } diff --git a/frontend/js/stats.js b/frontend/js/stats.js index 0006a15fa..21eed996b 100644 --- a/frontend/js/stats.js +++ b/frontend/js/stats.js @@ -301,24 +301,24 @@ async function makeBaseAPICalls(url_params) { let optimizations_data = null; try { - run_data = await makeAPICall('/v1/run/' + url_params.get('id')) + run_data = await makeAPICall('/v1/run/' + url_params['id']) } catch (err) { showNotification('Could not get run data from API', err); } try { - phase_stats_data = await makeAPICall('/v1/phase_stats/single/' + url_params.get('id')) + phase_stats_data = await makeAPICall('/v1/phase_stats/single/' + url_params['id']) } catch (err) { showNotification('Could not get phase_stats data from API', err); } try { - network_data = await makeAPICall('/v1/network/' + url_params.get('id')) + network_data = await makeAPICall('/v1/network/' + url_params['id']) } catch (err) { showNotification('Could not get network intercepts data from API', err); } try { - optimizations_data = await makeAPICall('/v1/optimizations/' + url_params.get('id')) + optimizations_data = await makeAPICall('/v1/optimizations/' + url_params['id']) } catch (err) { showNotification('Could not get optimizations data from API', err); } @@ -333,8 +333,8 @@ const renderBadges = (url_params) => { document.querySelectorAll("#badges span.energy-badge-container").forEach(el => { const link_node = document.createElement("a") const img_node = document.createElement("img") - link_node.href = `${METRICS_URL}/stats.html?id=${url_params.get('id')}` - img_node.src = `${API_URL}/v1/badge/single/${url_params.get('id')}?metric=${el.attributes['data-metric'].value}` + link_node.href = `${METRICS_URL}/stats.html?id=${url_params['id']}` + img_node.src = `${API_URL}/v1/badge/single/${url_params['id']}?metric=${el.attributes['data-metric'].value}` link_node.appendChild(img_node) el.appendChild(link_node) }) @@ -410,7 +410,7 @@ async function fetchTimelineData(url_params) { document.querySelector('#loader-question').remove(); try { - const measurement_data = await makeAPICall('/v1/measurements/single/' + url_params.get('id')) + const measurement_data = await makeAPICall('/v1/measurements/single/' + url_params['id']) return measurement_data?.data; } catch (err) { showNotification('Could not get stats data from API', err); @@ -420,7 +420,7 @@ async function fetchTimelineData(url_params) { async function fetchTimelineNotes(url_params) { try { - const note_data = await makeAPICall('/v1/notes/' + url_params.get('id')) + const note_data = await makeAPICall('/v1/notes/' + url_params['id']) return note_data?.data; } catch (err) { showNotification('Could not get notes data from API', err); @@ -435,7 +435,7 @@ $(document).ready( (e) => { let url_params = getURLParams(); - if(url_params.get('id') == null || url_params.get('id') == '' || url_params.get('id') == 'null') { + if(url_params['id'] == null || url_params['id'] == '' || url_params['id'] == 'null') { showNotification('No run id', 'ID parameter in URL is empty or not present. Did you follow a correct URL?'); return; } diff --git a/frontend/js/timeline.js b/frontend/js/timeline.js index e39a2db06..fbe9ce139 100644 --- a/frontend/js/timeline.js +++ b/frontend/js/timeline.js @@ -56,43 +56,35 @@ const populateMachines = async () => { } -const fillInputsFromURL = () => { - let url_params = getURLParams(); +const fillInputsFromURL = (url_params) => { - if(url_params.get('uri') == null - || url_params.get('uri') == '' - || url_params.get('uri') == 'null') { + + if(url_params['uri'] == null + || url_params['uri'] == '' + || url_params['uri'] == 'null') { showNotification('No uri', 'uri parameter in URL is empty or not present. Did you follow a correct URL?'); throw "Error"; } - $('input[name="uri"]').val(escapeString(url_params.get('uri'))); - $('#uri').text(escapeString(url_params.get('uri'))); + $('input[name="uri"]').val(escapeString(url_params['uri'])); + $('#uri').text(escapeString(url_params['uri'])); // all variables can be set via URL initially - if(url_params.get('branch') != null) { - $('input[name="branch"]').val(escapeString(url_params.get('branch'))); - $('#branch').text(escapeString(url_params.get('branch'))); + if(url_params['branch'] != null) { + $('input[name="branch"]').val(escapeString(url_params['branch'])); + $('#branch').text(escapeString(url_params['branch'])); } - if(url_params.get('filename') != null) { - $('input[name="filename"]').val(escapeString(url_params.get('filename'))); - $('#filename').text(escapeString(url_params.get('filename'))); + if(url_params['filename'] != null) { + $('input[name="filename"]').val(escapeString(url_params['filename'])); + $('#filename').text(escapeString(url_params['filename'])); } - if(url_params.get('machine_id') != null) { - $('select[name="machine_id"]').val(escapeString(url_params.get('machine_id'))); + if(url_params['machine_id'] != null) { + $('select[name="machine_id"]').val(escapeString(url_params['machine_id'])); $('#machine').text($('select[name="machine_id"] :checked').text()); } - if(url_params.get('sorting') != null) $(`#sorting-${url_params.get('sorting')}`).prop('checked', true); - if(url_params.get('phase') != null) $(`#phase-${url_params.get('phase')}`).prop('checked', true); - if(url_params.get('metrics') != null) $(`#metrics-${url_params.get('metrics')}`).prop('checked', true); + if(url_params['sorting'] != null) $(`#sorting-${url_params['sorting']}`).prop('checked', true); + if(url_params['phase'] != null) $(`#phase-${url_params['phase']}`).prop('checked', true); + if(url_params['metrics'] != null) $(`#metrics-${url_params['metrics']}`).prop('checked', true); - // these two need no escaping, as the date library will always produce a result - // it might fail parsing the date however - try { - if(url_params.get('start_date') != null) $('#rangestart').calendar({initialDate: url_params.get('start_date')}); - if(url_params.get('end_date') != null) $('#rangeend').calendar({initialDate: url_params.get('end_date')}); - } catch (err) { - console.log("Date parsing failed") - } } const buildQueryParams = (skip_dates=false,metric_override=null,detail_name=null) => { @@ -130,10 +122,8 @@ const loadCharts = async () => { document.querySelector("#chart-container").innerHTML = ''; // reset document.querySelector("#badge-container").innerHTML = ''; // reset - const api_url = `/v1/timeline?${buildQueryParams()}`; - try { - var phase_stats_data = (await makeAPICall(api_url)).data + var phase_stats_data = (await makeAPICall(`/v1/timeline?${buildQueryParams()}`)).data history.pushState(null, '', `${window.location.origin}${window.location.pathname}?${buildQueryParams()}`); // replace URL to bookmark! } catch (err) { showNotification('Could not get compare in-repo data from API', err); @@ -267,23 +257,16 @@ const loadCharts = async () => { $(document).ready( (e) => { (async () => { $('.ui.secondary.menu .item').tab({childrenOnly: true, context: '.run-data-container'}); // activate tabs for run data - $('#rangestart').calendar({ - type: 'date', - endCalendar: $('#rangeend'), - initialDate: new Date((new Date()).setDate((new Date).getDate() -30)), - }); - $('#rangeend').calendar({ - type: 'date', - startCalendar: $('#rangestart'), - initialDate: new Date(), - }); + + const url_params = getURLParams(); + dateTimePicker(30, url_params); await populateMachines(); $('#submit').on('click', function() { loadCharts() }); - fillInputsFromURL(); + fillInputsFromURL(url_params); loadCharts(); })(); }); From 23a5ebeceb0c430d2c287bb817ad644f85448c6b Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 15:20:53 +0100 Subject: [PATCH 05/15] Adding User Management also to GET routes --- api/api_helpers.py | 52 ++--- api/eco_ci.py | 64 +++--- api/main.py | 374 ++++++++++++++++++++---------------- docker/structure.sql | 6 +- frontend/js/ci-index.js | 17 +- frontend/js/helpers/runs.js | 13 +- frontend/js/index.js | 2 +- frontend/js/repositories.js | 2 +- lib/diff.py | 24 ++- lib/user.py | 7 +- tests/api/test_api_base.py | 12 ++ 11 files changed, 341 insertions(+), 232 deletions(-) diff --git a/api/api_helpers.py b/api/api_helpers.py index f217db868..31609876d 100644 --- a/api/api_helpers.py +++ b/api/api_helpers.py @@ -2,8 +2,6 @@ import faulthandler faulthandler.enable(file=sys.__stderr__) # will catch segfaults and write to stderr -from urllib.parse import urlparse - from collections import OrderedDict from functools import cache from html import escape as html_escape @@ -153,7 +151,7 @@ def get_machine_list(): return DB().fetch_all(query) -def get_run_info(run_id): +def get_run_info(user, run_id): query = """ SELECT id, name, uri, branch, commit_hash, @@ -163,12 +161,14 @@ def get_run_info(run_id): measurement_config, machine_specs, machine_id, usage_scenario, created_at, invalid_run, phases, logs, failed FROM runs - WHERE id = %s + WHERE + (TRUE = %s OR user_id = ANY(%s::int[])) + AND id = %s """ - params = (run_id,) + params = (user.is_super_user(), user.visible_users(), run_id) return DB().fetch_one(query, params=params, fetch_mode='dict') -def get_timeline_query(uri, filename, machine_id, branch, metrics, phase, start_date=None, end_date=None, detail_name=None, limit_365=False, sorting='run'): +def get_timeline_query(user, uri, filename, machine_id, branch, metrics, phase, start_date=None, end_date=None, detail_name=None, limit_365=False, sorting='run'): if filename is None or filename.strip() == '': filename = 'usage_scenario.yml' @@ -176,7 +176,7 @@ def get_timeline_query(uri, filename, machine_id, branch, metrics, phase, start_ if branch is None or branch.strip() == '': branch = 'main' - params = [uri, filename, branch, machine_id, f"%{phase}"] + params = [user.is_super_user(), user.visible_users(), uri, filename, branch, machine_id, f"%{phase}"] metrics_condition = '' if metrics is None or metrics.strip() == '' or metrics.strip() == 'key': @@ -217,7 +217,8 @@ def get_timeline_query(uri, filename, machine_id, branch, metrics, phase, start_ LEFT JOIN phase_stats as p ON r.id = p.run_id WHERE - r.uri = %s + (TRUE = %s OR r.user_id = ANY(%s::int[])) + AND r.uri = %s AND r.filename = %s AND r.branch = %s AND r.end_measurement IS NOT NULL @@ -239,17 +240,20 @@ def get_timeline_query(uri, filename, machine_id, branch, metrics, phase, start_ return (query, params) -def get_comparison_details(ids, comparison_db_key): +def get_comparison_details(user, ids, comparison_db_key): query = sql.SQL(''' SELECT id, name, created_at, commit_hash, commit_timestamp, gmt_hash, {} FROM runs - WHERE id = ANY(%s::uuid[]) + WHERE + (TRUE = %s OR user_id = ANY(%s::int[])) + AND id = ANY(%s::uuid[]) ORDER BY created_at -- Must be same order as in get_phase_stats ''').format(sql.Identifier(comparison_db_key)) - data = DB().fetch_all(query, (ids, )) + params = (user.is_super_user(), user.visible_users(), ids) + data = DB().fetch_all(query, params=params) if data is None or data == []: raise RuntimeError('Could not get comparison details') @@ -276,12 +280,14 @@ def get_comparison_details(ids, comparison_db_key): return comparison_details -def determine_comparison_case(ids): +def determine_comparison_case(user, ids): query = ''' WITH uniques as ( SELECT uri, filename, machine_id, commit_hash, branch FROM runs - WHERE id = ANY(%s::uuid[]) + WHERE + (TRUE = %s OR user_id = ANY(%s::int[])) + AND id = ANY(%s::uuid[]) GROUP BY uri, filename, machine_id, commit_hash, branch ) SELECT @@ -289,8 +295,8 @@ def determine_comparison_case(ids): COUNT(DISTINCT commit_hash ), COUNT(DISTINCT branch) FROM uniques ''' - - data = DB().fetch_one(query, (ids, )) + params = (user.is_super_user(), user.visible_users(), ids) + data = DB().fetch_one(query, params=params) if data is None or data == [] or data[1] is None: # special check for data[1] as this is aggregate query which always returns result raise RuntimeError('Could not determine compare case') @@ -376,7 +382,7 @@ def determine_comparison_case(ids): raise RuntimeError('Could not determine comparison case after checking all conditions') -def get_phase_stats(ids): +def get_phase_stats(user, ids): query = """ SELECT a.phase, a.metric, a.detail_name, a.value, a.type, a.max_value, a.min_value, a.unit, @@ -387,11 +393,13 @@ def get_phase_stats(ids): LEFT JOIN machines as c on c.id = b.machine_id WHERE - a.run_id = ANY(%s::uuid[]) + (TRUE = %s OR b.user_id = ANY(%s::int[])) + AND a.run_id = ANY(%s::uuid[]) ORDER BY b.created_at ASC -- Must be same order as in get_comparison_details """ - return DB().fetch_all(query, (ids, )) + params = (user.is_super_user(), user.visible_users(), ids) + return DB().fetch_all(query, params=params) # Would be interesting to know if in an application server like gunicor @cache # Will also work for subsequent requests ...? @@ -695,20 +703,20 @@ def __init__( ) def authenticate(authentication_token=Depends(header_scheme), request: Request = None): - parsed_url = urlparse(str(request.url)) + try: if not authentication_token or authentication_token.strip() == '': # Note that if no token is supplied this will authenticate as the DEFAULT user, which in FOSS systems has full capabilities authentication_token = 'DEFAULT' user = User.authenticate(SecureVariable(authentication_token)) - if not user.can_use_route(parsed_url.path): + if not user.can_use_route(request.scope["route"].path): raise HTTPException(status_code=401, detail="Route not allowed") from UserAuthenticationError - if not user.has_api_quota(parsed_url.path): + if not user.has_api_quota(request.scope["route"].path): raise HTTPException(status_code=401, detail="Quota exceeded") from UserAuthenticationError - user.deduct_api_quota(parsed_url.path, 1) + user.deduct_api_quota(request.scope["route"].path, 1) except UserAuthenticationError: raise HTTPException(status_code=401, detail="Invalid token") from UserAuthenticationError diff --git a/api/eco_ci.py b/api/eco_ci.py index 890ac1cb7..fff5ece1c 100644 --- a/api/eco_ci.py +++ b/api/eco_ci.py @@ -153,9 +153,9 @@ async def post_ci_measurement_add( return Response(status_code=204) @router.get('/v1/ci/measurements') -async def get_ci_measurements(repo: str, branch: str, workflow: str, start_date: date, end_date: date): +async def get_ci_measurements(repo: str, branch: str, workflow: str, start_date: date, end_date: date, user: User = Depends(authenticate)): - query = """ + query = ''' SELECT energy_uj, run_id, created_at, label, cpu, commit_hash, duration_us, source, cpu_util_avg, (SELECT workflow_name FROM ci_measurements AS latest_workflow WHERE latest_workflow.repo = ci_measurements.repo @@ -166,12 +166,14 @@ async def get_ci_measurements(repo: str, branch: str, workflow: str, start_date: lat, lon, city, carbon_intensity_g, carbon_ug FROM ci_measurements WHERE - repo = %s AND branch = %s AND workflow_id = %s + (TRUE = %s OR user_id = ANY(%s::int[])) + AND repo = %s AND branch = %s AND workflow_id = %s AND DATE(created_at) >= TO_DATE(%s, 'YYYY-MM-DD') AND DATE(created_at) <= TO_DATE(%s, 'YYYY-MM-DD') ORDER BY run_id ASC, created_at ASC - """ - params = (repo, branch, workflow, str(start_date), str(end_date)) + ''' + + params = (user.is_super_user(), user.visible_users(), repo, branch, workflow, str(start_date), str(end_date)) data = DB().fetch_all(query, params=params) if data is None or data == []: @@ -180,7 +182,7 @@ async def get_ci_measurements(repo: str, branch: str, workflow: str, start_date: return ORJSONResponse({'success': True, 'data': data}) @router.get('/v1/ci/stats') -async def get_ci_stats(repo: str, branch: str, workflow: str, start_date: date, end_date: date): +async def get_ci_stats(repo: str, branch: str, workflow: str, start_date: date, end_date: date, user: User = Depends(authenticate)): query = ''' @@ -193,7 +195,8 @@ async def get_ci_stats(repo: str, branch: str, workflow: str, start_date: date, SUM(carbon_ug) as e FROM ci_measurements WHERE - repo = %s AND branch = %s AND workflow_id = %s + (TRUE = %s OR user_id = ANY(%s::int[])) + AND repo = %s AND branch = %s AND workflow_id = %s AND DATE(created_at) >= TO_DATE(%s, 'YYYY-MM-DD') AND DATE(created_at) <= TO_DATE(%s, 'YYYY-MM-DD') GROUP BY run_id ) SELECT @@ -206,7 +209,8 @@ async def get_ci_stats(repo: str, branch: str, workflow: str, start_date: date, COUNT(*) FROM my_table; ''' - params = (repo, branch, workflow, str(start_date), str(end_date)) + + params = (user.is_super_user(), user.visible_users(), repo, branch, workflow, str(start_date), str(end_date)) totals_data = DB().fetch_one(query, params=params) if totals_data is None or totals_data[0] is None: # aggregate query always returns row @@ -224,11 +228,12 @@ async def get_ci_stats(repo: str, branch: str, workflow: str, start_date: date, COUNT(*), label FROM ci_measurements WHERE - repo = %s AND branch = %s AND workflow_id = %s + (TRUE = %s OR user_id = ANY(%s::int[])) + AND repo = %s AND branch = %s AND workflow_id = %s AND DATE(created_at) >= TO_DATE(%s, 'YYYY-MM-DD') AND DATE(created_at) <= TO_DATE(%s, 'YYYY-MM-DD') GROUP BY label ''' - params = (repo, branch, workflow, str(start_date), str(end_date)) + params = (user.is_super_user(), user.visible_users(), repo, branch, workflow, str(start_date), str(end_date)) per_label_data = DB().fetch_all(query, params=params) if per_label_data is None or per_label_data[0] is None: @@ -238,14 +243,15 @@ async def get_ci_stats(repo: str, branch: str, workflow: str, start_date: date, @router.get('/v1/ci/repositories') -async def get_ci_repositories(repo: str | None = None, sort_by: str = 'name'): +async def get_ci_repositories(repo: str | None = None, sort_by: str = 'name', user: User = Depends(authenticate)): - params = [] - query = """ + query = ''' SELECT repo, source, MAX(created_at) as last_run FROM ci_measurements - WHERE 1=1 - """ + WHERE + (TRUE = %s OR user_id = ANY(%s::int[])) + ''' + params = [user.is_super_user(), user.visible_users()] if repo: # filter is currently not used, but may be a feature in the future query = f"{query} AND ci_measurements.repo = %s \n" @@ -266,10 +272,10 @@ async def get_ci_repositories(repo: str | None = None, sort_by: str = 'name'): @router.get('/v1/ci/runs') -async def get_ci_runs(repo: str, sort_by: str = 'name'): +async def get_ci_runs(repo: str, sort_by: str = 'name', user: User = Depends(authenticate)): + - params = [] - query = """ + query = ''' SELECT repo, branch, workflow_id, source, MAX(created_at) as last_run, (SELECT workflow_name FROM ci_measurements AS latest_workflow WHERE latest_workflow.repo = ci_measurements.repo @@ -278,8 +284,11 @@ async def get_ci_runs(repo: str, sort_by: str = 'name'): ORDER BY latest_workflow.created_at DESC LIMIT 1) AS workflow_name FROM ci_measurements - WHERE 1=1 - """ + WHERE + (TRUE = %s OR user_id = ANY(%s::int[])) + ''' + + params = [user.is_super_user(), user.visible_users()] query = f"{query} AND ci_measurements.repo = %s \n" params.append(repo) @@ -296,8 +305,11 @@ async def get_ci_runs(repo: str, sort_by: str = 'name'): return ORJSONResponse({'success': True, 'data': data}) # no escaping needed, as it happend on ingest +# Route to display a badge for a CI run +## A complex case to allow public visibility of the badge but restricting everything else would be to have +## User 1 restricted to only this route but a fully populated 'visible_users' array @router.get('/v1/ci/badge/get') -async def get_ci_badge_get(repo: str, branch: str, workflow:str, mode: str = 'last', metric: str = 'energy', duration_days: int | None = None): +async def get_ci_badge_get(repo: str, branch: str, workflow:str, mode: str = 'last', metric: str = 'energy', duration_days: int | None = None, user: User = Depends(authenticate)): if metric == 'energy': metric = 'energy_uj' metric_unit = 'uJ' @@ -316,14 +328,16 @@ async def get_ci_badge_get(repo: str, branch: str, workflow:str, mode: str = 'la if duration_days and (duration_days < 1 or duration_days > 365): raise RequestValidationError('Duration days must be between 1 and 365 days') - params = [repo, branch, workflow] query = f""" SELECT SUM({metric}) FROM ci_measurements - WHERE repo = %s AND branch = %s AND workflow_id = %s + WHERE + (TRUE = %s OR user_id = ANY(%s::int[])) + AND repo = %s AND branch = %s AND workflow_id = %s """ + params = [user.is_super_user(), user.visible_users(), repo, branch, workflow] if mode == 'avg': if not duration_days: @@ -332,7 +346,9 @@ async def get_ci_badge_get(repo: str, branch: str, workflow:str, mode: str = 'la WITH my_table as ( SELECT SUM({metric}) my_sum FROM ci_measurements - WHERE repo = %s AND branch = %s AND workflow_id = %s AND DATE(created_at) > NOW() - make_interval(days => %s) + WHERE + (TRUE = %s OR user_id = ANY(%s::int[])) + AND repo = %s AND branch = %s AND workflow_id = %s AND DATE(created_at) > NOW() - make_interval(days => %s) GROUP BY run_id ) SELECT AVG(my_sum) FROM my_table; """ diff --git a/api/main.py b/api/main.py index 521e8adbd..38d59118d 100644 --- a/api/main.py +++ b/api/main.py @@ -31,7 +31,7 @@ from lib.global_config import GlobalConfig from lib.db import DB -from lib.diff import get_diffable_row, diff_rows +from lib.diff import get_diffable_rows, diff_rows from lib import error_helpers from lib.job.base import Job from lib.user import User @@ -122,69 +122,147 @@ def obfuscate_authentication_token(headers: StarletteHeaders): headers_mut['X-Authentication'] = '****OBFUSCATED****' return headers_mut +############################################################# +##### Unauthorized routes. These can be used by any user #### +############################################################# +# Self documentation from FastAPI @app.get('/') async def home(): return RedirectResponse(url='/docs') +@app.get('/robots.txt') +async def robots_txt(): + data = "User-agent: *\n" + data += "Disallow: /" + return Response(content=data, media_type='text/plain') + + +##################################################################################################################### +##### Authorized routes. #### +##### These must have Authentication token set and will restrict to visible users (GET) or insert user_id (POST) #### +##################################################################################################################### + +# @app.get('/v1/authentication/new') +# This will fail if the DB insert fails but still report 'success': True +# Must be reworked if we want to allow API based token generation +# async def get_authentication_token(name: str = None): +# if name is not None and name.strip() == '': +# name = None +# return ORJSONResponse({'success': True, 'data': User.get_new(name)}) + +# Read your own authentication token. Used by AJAX requests to test if token is valid and save it in local storage +@app.get('/v1/authentication/data') +async def read_authentication_token(user: User = Depends(authenticate)): + return ORJSONResponse({'success': True, 'data': user.to_dict()}) + +# Return a list of all known machines in the cluster +@app.get('/v1/machines') +async def get_machines( + user: User = Depends(authenticate), # pylint: disable=unused-argument + ): + + data = get_machine_list() + if data is None or data == []: + return Response(status_code=204) # No-Content + + return ORJSONResponse({'success': True, 'data': data}) + +@app.get('/v1/jobs') +async def get_jobs( + machine_id: int | None = None, + state: str | None = None, + user: User = Depends(authenticate), # pylint: disable=unused-argument + ): + + params = [] + machine_id_condition = '' + state_condition = '' + + if machine_id is not None: + machine_id_condition = 'AND j.machine_id = %s' + params.append(machine_id) + + if state is not None and state != '': + state_condition = 'AND j.state = %s' + params.append(state) + + query = f""" + SELECT j.id, r.id as run_id, j.name, j.url, j.filename, j.branch, m.description, j.state, j.updated_at, j.created_at + FROM jobs as j + LEFT JOIN machines as m on m.id = j.machine_id + LEFT JOIN runs as r on r.job_id = j.id + WHERE + j.type = 'run' + {machine_id_condition} + {state_condition} + ORDER BY j.updated_at DESC, j.created_at ASC + """ + data = DB().fetch_all(query, params) + if data is None or data == []: + return Response(status_code=204) # No-Content + + return ORJSONResponse({'success': True, 'data': data}) # A route to return all of the available entries in our catalog. @app.get('/v1/notes/{run_id}') -async def get_notes(run_id): +async def get_notes(run_id, user: User = Depends(authenticate)): if run_id is None or not is_valid_uuid(run_id): raise RequestValidationError('Run ID is not a valid UUID or empty') - query = """ - SELECT run_id, detail_name, note, time - FROM notes - WHERE run_id = %s - ORDER BY created_at DESC -- important to order here, the charting library in JS cannot do that automatically! - """ - data = DB().fetch_all(query, (run_id,)) + query = ''' + SELECT n.run_id, n.detail_name, n.note, n.time + FROM notes as n + JOIN runs as r on n.run_id = r.id + WHERE + (TRUE = %s OR r.user_id = ANY(%s::int[])) + AND n.run_id = %s + ORDER BY n.created_at DESC -- important to order here, the charting library in JS cannot do that automatically! + ''' + + params = (user.is_super_user(), user.visible_users(), run_id) + data = DB().fetch_all(query, params=params) if data is None or data == []: return Response(status_code=204) # No-Content escaped_data = [html_escape_multi(note) for note in data] return ORJSONResponseObjKeep({'success': True, 'data': escaped_data}) + @app.get('/v1/network/{run_id}') -async def get_network(run_id): +async def get_network(run_id, user: User = Depends(authenticate)): if run_id is None or not is_valid_uuid(run_id): raise RequestValidationError('Run ID is not a valid UUID or empty') - query = """ - SELECT * - FROM network_intercepts - WHERE run_id = %s - ORDER BY time - """ - data = DB().fetch_all(query, (run_id,)) + query = ''' + SELECT ni.* + FROM network_intercepts as ni + JOIN runs as r on r.id = ni.run_id + WHERE + (TRUE = %s OR r.user_id = ANY(%s::int[])) + AND ni.run_id = %s + ORDER BY ni.time + ''' + params = (user.is_super_user(), user.visible_users(), run_id) + data = DB().fetch_all(query, params=params) escaped_data = html_escape_multi(data) return ORJSONResponseObjKeep({'success': True, 'data': escaped_data}) -# return a list of all possible registered machines -@app.get('/v1/machines') -async def get_machines(): - - data = get_machine_list() - if data is None or data == []: - return Response(status_code=204) # No-Content - - return ORJSONResponse({'success': True, 'data': data}) - @app.get('/v1/repositories') -async def get_repositories(uri: str | None = None, branch: str | None = None, machine_id: int | None = None, machine: str | None = None, filename: str | None = None, sort_by: str = 'name'): - query = """ +async def get_repositories(uri: str | None = None, branch: str | None = None, machine_id: int | None = None, machine: str | None = None, filename: str | None = None, sort_by: str = 'name', user: User = Depends(authenticate)): + query = ''' SELECT r.uri, MAX(r.created_at) as last_run FROM runs as r LEFT JOIN machines as m on r.machine_id = m.id - WHERE 1=1 - """ - params = [] + WHERE + (TRUE = %s OR r.user_id = ANY(%s::int[])) + ''' + + params = [user.is_super_user(), user.visible_users()] if uri: query = f"{query} AND r.uri LIKE %s \n" @@ -213,7 +291,7 @@ async def get_repositories(uri: str | None = None, branch: str | None = None, ma else: query = f"{query} ORDER BY last_run DESC" - data = DB().fetch_all(query, params=tuple(params)) + data = DB().fetch_all(query, params=params) if data is None or data == []: return Response(status_code=204) # No-Content @@ -224,15 +302,16 @@ async def get_repositories(uri: str | None = None, branch: str | None = None, ma # A route to return all of the available entries in our catalog. @app.get('/v1/runs') -async def get_runs(uri: str | None = None, branch: str | None = None, machine_id: int | None = None, machine: str | None = None, filename: str | None = None, limit: int | None = None, uri_mode = 'none'): +async def get_runs(uri: str | None = None, branch: str | None = None, machine_id: int | None = None, machine: str | None = None, filename: str | None = None, limit: int | None = None, uri_mode = 'none', user: User = Depends(authenticate)): - query = """ + query = ''' SELECT r.id, r.name, r.uri, r.branch, r.created_at, r.invalid_run, r.filename, m.description, r.commit_hash, r.end_measurement, r.failed, r.machine_id FROM runs as r LEFT JOIN machines as m on r.machine_id = m.id - WHERE 1=1 - """ - params = [] + WHERE + (TRUE = %s OR r.user_id = ANY(%s::int[])) + ''' + params = [user.is_super_user(), user.visible_users()] if uri: if uri_mode == 'exact': @@ -265,7 +344,7 @@ async def get_runs(uri: str | None = None, branch: str | None = None, machine_id params.append(limit) - data = DB().fetch_all(query, params=tuple(params)) + data = DB().fetch_all(query, params=params) if data is None or data == []: return Response(status_code=204) # No-Content @@ -279,7 +358,7 @@ async def get_runs(uri: str | None = None, branch: str | None = None, machine_id # later if supplied. Also deprecation shall be used once we move to v2 for all v1 routesthrough @app.get('/v1/compare') -async def compare_in_repo(ids: str): +async def compare_in_repo(ids: str, user: User = Depends(authenticate)): if ids is None or not ids.strip(): raise RequestValidationError('run_id is empty') ids = ids.split(',') @@ -287,17 +366,17 @@ async def compare_in_repo(ids: str): raise RequestValidationError('One of Run IDs is not a valid UUID or empty') - if artifact := get_artifact(ArtifactType.COMPARE, str(ids)): + if artifact := get_artifact(ArtifactType.COMPARE, f"{user._id}_{str(ids)}"): return ORJSONResponse({'success': True, 'data': orjson.loads(artifact)}) # pylint: disable=no-member try: - case, comparison_db_key = determine_comparison_case(ids) + case, comparison_db_key = determine_comparison_case(user, ids) except RuntimeError as err: raise RequestValidationError(str(err)) from err - comparison_details = get_comparison_details(ids, comparison_db_key) + comparison_details = get_comparison_details(user, ids, comparison_db_key) - if not (phase_stats := get_phase_stats(ids)): + if not (phase_stats := get_phase_stats(user, ids)): return Response(status_code=204) # No-Content phase_stats_object = get_phase_stats_object(phase_stats, case, comparison_details) @@ -305,7 +384,7 @@ async def compare_in_repo(ids: str): phase_stats_object['common_info'] = {} try: - run_info = get_run_info(ids[0]) + run_info = get_run_info(user, ids[0]) machine_list = get_machine_list() machines = {machine[0]: machine[1] for machine in machine_list} @@ -359,64 +438,67 @@ async def compare_in_repo(ids: str): except RuntimeError as err: raise RequestValidationError(str(err)) from err - store_artifact(ArtifactType.COMPARE, str(ids), orjson.dumps(phase_stats_object)) # pylint: disable=no-member + store_artifact(ArtifactType.COMPARE, f"{user._id}_{str(ids)}", orjson.dumps(phase_stats_object)) # pylint: disable=no-member return ORJSONResponse({'success': True, 'data': phase_stats_object}) @app.get('/v1/phase_stats/single/{run_id}') -async def get_phase_stats_single(run_id: str): +async def get_phase_stats_single(run_id: str, user: User = Depends(authenticate)): if run_id is None or not is_valid_uuid(run_id): raise RequestValidationError('Run ID is not a valid UUID or empty') - if artifact := get_artifact(ArtifactType.STATS, str(run_id)): + if artifact := get_artifact(ArtifactType.STATS, f"{user._id}_{str(run_id)}"): return ORJSONResponse({'success': True, 'data': orjson.loads(artifact)}) # pylint: disable=no-member - if not (phase_stats := get_phase_stats([run_id])): + if not (phase_stats := get_phase_stats(user, [run_id])): return Response(status_code=204) # No-Content phase_stats_object = get_phase_stats_object(phase_stats, None, None, [run_id]) phase_stats_object = add_phase_stats_statistics(phase_stats_object) - store_artifact(ArtifactType.STATS, str(run_id), orjson.dumps(phase_stats_object)) # pylint: disable=no-member + store_artifact(ArtifactType.STATS, f"{user._id}_{str(run_id)}", orjson.dumps(phase_stats_object)) # pylint: disable=no-member return ORJSONResponseObjKeep({'success': True, 'data': phase_stats_object}) # This route gets the measurements to be displayed in a timeline chart @app.get('/v1/measurements/single/{run_id}') -async def get_measurements_single(run_id: str): +async def get_measurements_single(run_id: str, user: User = Depends(authenticate)): if run_id is None or not is_valid_uuid(run_id): raise RequestValidationError('Run ID is not a valid UUID or empty') - query = """ - SELECT measurements.detail_name, measurements.time, measurements.metric, - measurements.value, measurements.unit - FROM measurements - WHERE measurements.run_id = %s - """ - - # extremely important to order here, cause the charting library in JS cannot do that automatically! + query = ''' + SELECT m.detail_name, m.time, m.metric, + m.value, m.unit + FROM measurements as m + JOIN runs as r ON m.run_id = r.id + WHERE + (TRUE = %s OR r.user_id = ANY(%s::int[])) + AND m.run_id = %s + ''' - query = f"{query} ORDER BY measurements.metric ASC, measurements.detail_name ASC, measurements.time ASC" + params = (user.is_super_user(), user.visible_users(), run_id) - data = DB().fetch_all(query, params=(run_id, )) + # extremely important to order here, cause the charting library in JS cannot do that automatically! + query = f"{query} ORDER BY m.metric ASC, m.detail_name ASC, m.time ASC" + data = DB().fetch_all(query, params=params) if data is None or data == []: return Response(status_code=204) # No-Content return ORJSONResponseObjKeep({'success': True, 'data': data}) @app.get('/v1/timeline') -async def get_timeline_stats(uri: str, machine_id: int, branch: str | None = None, filename: str | None = None, start_date: date | None = None, end_date: date | None = None, metrics: str | None = None, phase: str | None = None, sorting: str | None = None,): +async def get_timeline_stats(uri: str, machine_id: int, branch: str | None = None, filename: str | None = None, start_date: date | None = None, end_date: date | None = None, metrics: str | None = None, phase: str | None = None, sorting: str | None = None, user: User = Depends(authenticate)): if uri is None or uri.strip() == '': raise RequestValidationError('URI is empty') if phase is None or phase.strip() == '': raise RequestValidationError('Phase is empty') - query, params = get_timeline_query(uri,filename,machine_id, branch, metrics, phase, start_date=start_date, end_date=end_date, sorting=sorting) + query, params = get_timeline_query(user, uri, filename, machine_id, branch, metrics, phase, start_date=start_date, end_date=end_date, sorting=sorting) data = DB().fetch_all(query, params=params) @@ -425,20 +507,23 @@ async def get_timeline_stats(uri: str, machine_id: int, branch: str | None = Non return ORJSONResponse({'success': True, 'data': data}) +# Show the timeline badges with regression trend +## A complex case to allow public visibility of the badge but restricting everything else would be to have +## User 1 restricted to only this route but a fully populated 'visible_users' array @app.get('/v1/badge/timeline') -async def get_timeline_badge(detail_name: str, uri: str, machine_id: int, branch: str | None = None, filename: str | None = None, metrics: str | None = None): +async def get_timeline_badge(detail_name: str, uri: str, machine_id: int, branch: str | None = None, filename: str | None = None, metrics: str | None = None, user: User = Depends(authenticate)): if uri is None or uri.strip() == '': raise RequestValidationError('URI is empty') if detail_name is None or detail_name.strip() == '': raise RequestValidationError('Detail Name is mandatory') - if artifact := get_artifact(ArtifactType.BADGE, f"{uri}_{filename}_{machine_id}_{branch}_{metrics}_{detail_name}"): + if artifact := get_artifact(ArtifactType.BADGE, f"{user._id}_{uri}_{filename}_{machine_id}_{branch}_{metrics}_{detail_name}"): return Response(content=str(artifact), media_type="image/svg+xml") + query, params = get_timeline_query(user, uri,filename,machine_id, branch, metrics, '[RUNTIME]', detail_name=detail_name, limit_365=True) - query, params = get_timeline_query(uri,filename,machine_id, branch, metrics, '[RUNTIME]', detail_name=detail_name, limit_365=True) - + # query already contains user access check. No need to have it in aggregate query too query = f""" WITH trend_data AS ( {query} @@ -466,51 +551,56 @@ async def get_timeline_badge(detail_name: str, uri: str, machine_id: int, branch badge_str = str(badge) - store_artifact(ArtifactType.BADGE, f"{uri}_{filename}_{machine_id}_{branch}_{metrics}_{detail_name}", badge_str, ex=60*60*12) # 12 hour storage + store_artifact(ArtifactType.BADGE, f"{user._id}_{uri}_{filename}_{machine_id}_{branch}_{metrics}_{detail_name}", badge_str, ex=60*60*12) # 12 hour storage return Response(content=badge_str, media_type="image/svg+xml") -# A route to return all of the available entries in our catalog. +# Return a badge for a single metric of a single run +## A complex case to allow public visibility of the badge but restricting everything else would be to have +## User 1 restricted to only this route but a fully populated 'visible_users' array @app.get('/v1/badge/single/{run_id}') -async def get_badge_single(run_id: str, metric: str = 'ml-estimated'): +async def get_badge_single(run_id: str, metric: str = 'ml-estimated', user: User = Depends(authenticate)): if run_id is None or not is_valid_uuid(run_id): raise RequestValidationError('Run ID is not a valid UUID or empty') - if artifact := get_artifact(ArtifactType.BADGE, f"{run_id}_{metric}"): + if artifact := get_artifact(ArtifactType.BADGE, f"{user._id}_{run_id}_{metric}"): return Response(content=str(artifact), media_type="image/svg+xml") query = ''' SELECT - SUM(value), MAX(unit) + SUM(ps.value), MAX(ps.unit) FROM - phase_stats + phase_stats as ps + JOIN + runs as r ON ps.run_id = r.id WHERE - run_id = %s - AND metric LIKE %s - AND phase LIKE '%%_[RUNTIME]' + (TRUE = %s OR r.user_id = ANY(%s::int[])) + AND ps.run_id = %s + AND ps.metric LIKE %s + AND ps.phase LIKE '%%_[RUNTIME]' ''' - value = None + params = [user.is_super_user(), user.visible_users(), run_id] + label = 'Energy Cost' via = '' if metric == 'ml-estimated': - value = 'psu_energy_ac_xgboost_machine' + params.append('psu_energy_ac_xgboost_machine') via = 'via XGBoost ML' elif metric == 'RAPL': - value = '%_energy_rapl_%' + params.append('%_energy_rapl_%') via = 'via RAPL' elif metric == 'AC': - value = 'psu_energy_ac_%' + params.append('psu_energy_ac_%') via = 'via PSU (AC)' elif metric == 'SCI': label = 'SCI' - value = 'software_carbon_intensity_global' + params.append('software_carbon_intensity_global') else: raise RequestValidationError(f"Unknown metric '{metric}' submitted") - params = (run_id, value) data = DB().fetch_one(query, params=params) if data is None or data == [] or data[1] is None: # special check for data[1] as this is aggregate query which always returns result @@ -527,78 +617,49 @@ async def get_badge_single(run_id: str, metric: str = 'ml-estimated'): badge_str = str(badge) - store_artifact(ArtifactType.BADGE, f"{run_id}_{metric}", badge_str) + store_artifact(ArtifactType.BADGE, f"{user._id}_{run_id}_{metric}", badge_str) return Response(content=badge_str, media_type="image/svg+xml") @app.get('/v1/timeline-projects') -async def get_timeline_projects(): +async def get_timeline_projects(user: User = Depends(authenticate)): # Do not get the email jobs as they do not need to be display in the frontend atm # Also do not get the email field for privacy - query = """ + query = ''' SELECT - p.id, p.name, p.url, + tp.id, tp.name, tp.url, ( SELECT STRING_AGG(t.name, ', ' ) - FROM unnest(p.categories) as elements + FROM unnest(tp.categories) as elements LEFT JOIN categories as t on t.id = elements ) as categories, - p.branch, p.filename, p.machine_id, m.description, p.schedule_mode, p.last_scheduled, p.created_at, p.updated_at, + tp.branch, tp.filename, tp.machine_id, m.description, tp.schedule_mode, tp.last_scheduled, tp.created_at, tp.updated_at, ( SELECT created_at FROM runs as r WHERE - p.url = r.uri - AND p.branch = r.branch - AND p.filename = r.filename - AND p.machine_id = r.machine_id + tp.url = r.uri + AND tp.branch = r.branch + AND tp.filename = r.filename + AND tp.machine_id = r.machine_id ORDER BY r.created_at DESC LIMIT 1 ) as "last_run" - FROM timeline_projects as p - LEFT JOIN machines as m ON m.id = p.machine_id - ORDER BY p.url ASC; - """ - data = DB().fetch_all(query) - if data is None or data == []: - return Response(status_code=204) # No-Content - - return ORJSONResponse({'success': True, 'data': data}) - - -@app.get('/v1/jobs') -async def get_jobs(machine_id: int | None = None, state: str | None = None): - - params = [] - machine_id_condition = '' - state_condition = '' - - if machine_id is not None: - machine_id_condition = 'AND j.machine_id = %s' - params.append(machine_id) - - if state is not None and state != '': - state_condition = 'AND j.state = %s' - params.append(state) - - query = f""" - SELECT j.id, r.id as run_id, j.name, j.url, j.filename, j.branch, m.description, j.state, j.updated_at, j.created_at - FROM jobs as j - LEFT JOIN machines as m on m.id = j.machine_id - LEFT JOIN runs as r on r.job_id = j.id + FROM timeline_projects as tp + LEFT JOIN machines as m ON m.id = tp.machine_id WHERE - j.type = 'run' - {machine_id_condition} - {state_condition} - ORDER BY j.updated_at DESC, j.created_at ASC - """ - data = DB().fetch_all(query, params) + (TRUE = %s OR tp.user_id = ANY(%s::int[])) + ORDER BY tp.url ASC; + ''' + params = (user.is_super_user(), user.visible_users(),) + data = DB().fetch_all(query, params=params) if data is None or data == []: return Response(status_code=204) # No-Content return ORJSONResponse({'success': True, 'data': data}) + @app.post('/v1/software/add') async def software_add(software: Software, user: User = Depends(authenticate)): @@ -661,11 +722,11 @@ async def software_add(software: Software, user: User = Depends(authenticate)): @app.get('/v1/run/{run_id}') -async def get_run(run_id: str): +async def get_run(run_id: str, user: User = Depends(authenticate)): if run_id is None or not is_valid_uuid(run_id): raise RequestValidationError('Run ID is not a valid UUID or empty') - data = get_run_info(run_id) + data = get_run_info(user, run_id) if data is None or data == []: return Response(status_code=204) # No-Content @@ -675,17 +736,21 @@ async def get_run(run_id: str): return ORJSONResponseObjKeep({'success': True, 'data': data}) @app.get('/v1/optimizations/{run_id}') -async def get_optimizations(run_id: str): +async def get_optimizations(run_id: str, user: User = Depends(authenticate)): if run_id is None or not is_valid_uuid(run_id): raise RequestValidationError('Run ID is not a valid UUID or empty') - query = """ - SELECT title, label, criticality, reporter, icon, description, link - FROM optimizations - WHERE optimizations.run_id = %s - """ + query = ''' + SELECT o.title, o.label, o.criticality, o.reporter, o.icon, o.description, o.link + FROM optimizations as o + JOIN runs as r ON o.run_id = r.id + WHERE + (TRUE = %s OR r.user_id = ANY(%s::int[])) + AND o.run_id = %s + ''' - data = DB().fetch_all(query, params=(run_id, )) + params = (user.is_super_user(), user.visible_users(), run_id) + data = DB().fetch_all(query, params=params) if data is None or data == []: return Response(status_code=204) # No-Content @@ -695,7 +760,7 @@ async def get_optimizations(run_id: str): @app.get('/v1/diff') -async def diff(ids: str): +async def diff(ids: str, user: User = Depends(authenticate)): if ids is None or not ids.strip(): raise RequestValidationError('run_ids are empty') ids = ids.split(',') @@ -704,37 +769,18 @@ async def diff(ids: str): if len(ids) != 2: raise RequestValidationError('Run IDs != 2. Only exactly 2 Run IDs can be diffed.') - if artifact := get_artifact(ArtifactType.DIFF, str(ids)): + if artifact := get_artifact(ArtifactType.DIFF, f"{user._id}_{str(ids)}"): return ORJSONResponse({'success': True, 'data': artifact}) - a = get_diffable_row(ids[0]) - b = get_diffable_row(ids[1]) - diff_runs = diff_rows(a,b) + try: + diff_runs = diff_rows(get_diffable_rows(user, ids)) + except ValueError as exc: + raise RequestValidationError(exc) from exc - store_artifact(ArtifactType.DIFF, str(ids), diff_runs) + store_artifact(ArtifactType.DIFF, f"{user._id}_{str(ids)}", diff_runs) return ORJSONResponse({'success': True, 'data': diff_runs}) - -@app.get('/robots.txt') -async def robots_txt(): - data = "User-agent: *\n" - data += "Disallow: /" - - return Response(content=data, media_type='text/plain') - -# @app.get('/v1/authentication/new') -# This will fail if the DB insert fails but still report 'success': True -# Must be reworked if we want to allow API based token generation -# async def get_authentication_token(name: str = None): -# if name is not None and name.strip() == '': -# name = None -# return ORJSONResponse({'success': True, 'data': User.get_new(name)}) - -@app.get('/v1/authentication/data') -async def read_authentication_token(user: User = Depends(authenticate)): - return ORJSONResponse({'success': True, 'data': user.to_dict()}) - app.include_router(eco_ci.router) # include enterprise functionality if activated diff --git a/docker/structure.sql b/docker/structure.sql index b26d34cc9..1e5b5beaa 100644 --- a/docker/structure.sql +++ b/docker/structure.sql @@ -26,7 +26,7 @@ CREATE TRIGGER users_moddatetime -- Default password for authentication is DEFAULT INSERT INTO "public"."users"("name","token","capabilities","created_at","updated_at") VALUES -(E'DEFAULT',E'89dbf71048801678ca4abfbaa3ea8f7c651aae193357a3e23d68e21512cd07f5',E'{"user":{"is_super_user": true},"api":{"quotas":{},"routes":["/v2/carbondb/filters","/v2/carbondb","/v2/carbondb/add","/v2/ci/measurement/add","/v1/ci/measurement/add","/v1/software/add","/v1/hog/add","/v1/authentication/data"]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":["one-off","daily","weekly","commit","variance","tag","commit-variance","tag-variance"]},"machines":[1],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":["container_memory_utilization","container_cpu_utilization","message_optimization","container_build_time","container_boot_time","container_image_size"]}',E'2024-08-22 11:28:24.937262+00',NULL); +(E'DEFAULT',E'89dbf71048801678ca4abfbaa3ea8f7c651aae193357a3e23d68e21512cd07f5',E'{"user":{"visible_users":[0,1],"is_super_user": true},"api":{"quotas":{},"routes":["/v1/machines","/v1/jobs","/v1/notes/{run_id}","/v1/network/{run_id}","/v1/repositories","/v1/runs","/v1/compare","/v1/phase_stats/single/{run_id}","/v1/measurements/single/{run_id}","/v1/diff","/v1/run/{run_id}","/v1/optimizations/{run_id}","/v1/timeline-projects","/v1/badge/single/{run_id}","/v1/badge/timeline","/v1/timeline","/v1/ci/measurement/add","/v1/ci/measurements","/v1/ci/badge/get","/v1/ci/runs","/v1/ci/repositories","/v1/ci/stats","/v2/ci/measurement/add","/v1/software/add","/v1/authentication/data"]},"data":{"runs":{"retention":2678400},"measurements":{"retention":2678400},"ci_measurements":{"retention":2678400}},"jobs":{"schedule_modes":["one-off","daily","weekly","commit","variance","tag","commit-variance","tag-variance"]},"machines":[1],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":["container_memory_utilization","container_cpu_utilization","message_optimization","container_build_time","container_boot_time","container_image_size"]}',E'2024-08-22 11:28:24.937262+00',NULL); -- Default password for user 0 is empty INSERT INTO "public"."users"("id", "name","token","capabilities","created_at","updated_at") @@ -132,7 +132,6 @@ CREATE TRIGGER measurements_moddatetime FOR EACH ROW EXECUTE PROCEDURE moddatetime (updated_at); - CREATE TABLE network_intercepts ( id SERIAL PRIMARY KEY, run_id uuid NOT NULL REFERENCES runs(id) ON DELETE CASCADE ON UPDATE CASCADE , @@ -182,8 +181,6 @@ CREATE TRIGGER phase_stats_moddatetime EXECUTE PROCEDURE moddatetime (updated_at); - - CREATE TABLE notes ( id SERIAL PRIMARY KEY, run_id uuid REFERENCES runs(id) ON DELETE CASCADE ON UPDATE CASCADE, @@ -199,7 +196,6 @@ CREATE TRIGGER notes_moddatetime FOR EACH ROW EXECUTE PROCEDURE moddatetime (updated_at); - CREATE TABLE ci_measurements ( id SERIAL PRIMARY KEY, energy_uj bigint, diff --git a/frontend/js/ci-index.js b/frontend/js/ci-index.js index c5d964ebe..edcd0c51a 100644 --- a/frontend/js/ci-index.js +++ b/frontend/js/ci-index.js @@ -31,12 +31,12 @@ async function getRepositories(sort_by = 'date') { `; }); $('.ui.accordion').accordion({ - onOpen: function(value, text) { + onOpen: async function(value, text) { const table = this.querySelector('table'); if(!$.fn.DataTable.isDataTable(table)) { const repo = this.getAttribute('data-uri'); - getCIRunsTable($(table), `${API_URL}/v1/ci/runs?repo=${repo}`, false, false, true) + await getCIRunsTable($(table), `/v1/ci/runs?repo=${repo}`, false, false, true) } }}); }; @@ -69,7 +69,16 @@ function getRepoUri(repo, source) { } } -const getCIRunsTable = (el, url, include_uri=true, include_button=true, searching=false) => { +const getCIRunsTable = async (el, url, include_uri=true, include_button=true, searching=false) => { + + let ci_data = null; + try { + ci_data = await makeAPICall(url); + console.log(ci_data.data); + } catch (err) { + showNotification('Could not get CI data from API', err); + return + } const columns = [ { @@ -91,7 +100,7 @@ const getCIRunsTable = (el, url, include_uri=true, include_button=true, searchin // initCollapsed: true, // }, searching: searching, - ajax: url, + data: ci_data.data, columns: columns, deferRender: true, }); diff --git a/frontend/js/helpers/runs.js b/frontend/js/helpers/runs.js index 150ecc655..458218a4e 100644 --- a/frontend/js/helpers/runs.js +++ b/frontend/js/helpers/runs.js @@ -97,7 +97,16 @@ const getFilterQueryStringFromURI = () => { return query_string } -const getRunsTable = (el, url, include_uri=true, include_button=true, searching=false) => { +const getRunsTable = async (el, url, include_uri=true, include_button=true, searching=false) => { + + let run_data = null; + + try { + run_data = await makeAPICall(url) + } catch (err) { + showNotification('Could not get run data from API', err); + return + } const columns = [ { @@ -162,7 +171,7 @@ const getRunsTable = (el, url, include_uri=true, include_button=true, searching= // initCollapsed: true, // }, searching: searching, - ajax: url, + data: run_data.data, columns: columns, deferRender: true, drawCallback: function(settings) { diff --git a/frontend/js/index.js b/frontend/js/index.js index 803690d44..0ad2f1422 100644 --- a/frontend/js/index.js +++ b/frontend/js/index.js @@ -1,5 +1,5 @@ $(document).ready(function () { (async () => { - getRunsTable($('#runs-table'), `${API_URL}/v1/runs?${getFilterQueryStringFromURI()}&limit=50`) + getRunsTable($('#runs-table'), `/v1/runs?${getFilterQueryStringFromURI()}&limit=50`) })(); }); \ No newline at end of file diff --git a/frontend/js/repositories.js b/frontend/js/repositories.js index 2f2865270..1686b0d76 100644 --- a/frontend/js/repositories.js +++ b/frontend/js/repositories.js @@ -39,7 +39,7 @@ async function getRepositories(sort_by = 'date') { if(!$.fn.DataTable.isDataTable(table)) { const uri = this.getAttribute('data-uri'); - getRunsTable($(table), `${API_URL}/v1/runs?uri=${uri}&uri_mode=exact`, false, false, true) + getRunsTable($(table), `/v1/runs?uri=${uri}&uri_mode=exact`, false, false, true) } }}); } diff --git a/lib/diff.py b/lib/diff.py index eb6fc992e..7f6846c7b 100644 --- a/lib/diff.py +++ b/lib/diff.py @@ -9,7 +9,7 @@ from deepdiff import DeepDiff import json -def get_diffable_row(uuid): +def get_diffable_rows(user, uuids): query = """SELECT uri, branch, @@ -24,12 +24,22 @@ def get_diffable_row(uuid): usage_scenario, measurement_config, runner_arguments - FROM runs WHERE id = %s + FROM runs + WHERE + (TRUE = %s OR user_id = ANY(%s::int[])) + AND id = ANY(%s::uuid[]) """ - return DB().fetch_one(query, (uuid, ), fetch_mode='dict') + params = (user.is_super_admin(), user.visible_users(), uuids) + return DB().fetch_all(query, params, fetch_mode='dict') + +def diff_rows(rows): + if len(rows) != 2: + raise ValueError(f"Diffing currently only supported for 2 rows. Amount of valid IDs supplied: {len(rows)}") + + row_a = rows[0] + row_b = rows[1] -def diff_rows(row_a,row_b): unified_diff = [] for field in row_a: field_a = json.dumps(row_a[field], indent=2, separators=(',', ': ')).replace('\\n', "\n") if isinstance(row_a[field], (dict, list)) else str(row_a[field]) @@ -81,6 +91,6 @@ def diff_rows(row_a,row_b): return "\n".join(unified_diff) if __name__ == '__main__': - a = get_diffable_row('6f34b31e-f35c-4601-ae0d-6fd04a951aaf') - b = get_diffable_row('70ed5b3f-fa90-43fe-abcc-d4bf8048786a') - print(diff_rows(a,b)) + from lib.user import User + diffable_rows = get_diffable_rows(User(1), ['6f34b31e-f35c-4601-ae0d-6fd04a951aaf', '70ed5b3f-fa90-43fe-abcc-d4bf8048786a']) + print(diff_rows(diffable_rows)) diff --git a/lib/user.py b/lib/user.py index 3fe3c92f2..bd57f1b35 100644 --- a/lib/user.py +++ b/lib/user.py @@ -38,8 +38,11 @@ def update(self): WHERE id = %s """, params=(json.dumps(self._capabilities), self._id, )) - def is_super_admin(self): - return bool(self._capabilities['user']['is_super_admin']) + def visible_users(self): + return self._capabilities['user']['visible_users'] + + def is_super_user(self): + return bool(self._capabilities['user']['is_super_user']) def can_use_machine(self, machine_id: int): return machine_id in self._capabilities['machines'] diff --git a/tests/api/test_api_base.py b/tests/api/test_api_base.py index 213a57d63..722a05f4d 100644 --- a/tests/api/test_api_base.py +++ b/tests/api/test_api_base.py @@ -19,6 +19,18 @@ def test_route_forbidden(): assert response.status_code == 401 assert response.text == '{"success":false,"err":"Route not allowed"}' +# This method is just a safe-guard in case FastAPI ever changes the mechanic that an authentication parameter +# can be overriden through a simple query string +def test_no_user_query_string_override(): + response = requests.get(f"{API_URL}/v1/authentication/data?user=2", timeout=15) + + assert response.status_code == 200 + json_data = json.loads(response.text) + + assert json_data['success'] is True + assert json_data['data']['_name'] == 'DEFAULT' + + def test_can_read_authentication_data(): response = requests.get(f"{API_URL}/v1/authentication/data", timeout=15) assert response.status_code == 200 From 7124a65ebe44501d974e55cbe82440b4fe5feffe Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 15:22:17 +0100 Subject: [PATCH 06/15] Enterprise tables now segmented out --- docker/structure.sql | 174 ---------------------------------------- tests/setup-test-env.py | 26 +++--- 2 files changed, 10 insertions(+), 190 deletions(-) diff --git a/docker/structure.sql b/docker/structure.sql index 1e5b5beaa..89fdcc450 100644 --- a/docker/structure.sql +++ b/docker/structure.sql @@ -265,80 +265,6 @@ CREATE TRIGGER timeline_projects_moddatetime FOR EACH ROW EXECUTE PROCEDURE moddatetime (updated_at); -CREATE TABLE hog_measurements ( - id SERIAL PRIMARY KEY, - time bigint NOT NULL, - machine_uuid uuid NOT NULL, - elapsed_ns bigint NOT NULL, - combined_energy int, - cpu_energy int, - gpu_energy int, - ane_energy int, - energy_impact int, - thermal_pressure text, - settings jsonb, - data jsonb, - user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, - created_at timestamp with time zone DEFAULT now(), - updated_at timestamp with time zone -); -CREATE TRIGGER hog_measurements_moddatetime - BEFORE UPDATE ON hog_measurements - FOR EACH ROW - EXECUTE PROCEDURE moddatetime (updated_at); - -CREATE INDEX idx_hog_measurements_machine_uuid ON hog_measurements USING hash (machine_uuid); -CREATE INDEX idx_hog_measurements_time ON hog_measurements (time); - - -CREATE TABLE hog_coalitions ( - id SERIAL PRIMARY KEY, - measurement integer REFERENCES hog_measurements(id) ON DELETE RESTRICT ON UPDATE CASCADE NOT NULL, - name text NOT NULL, - cputime_ns bigint, - cputime_per int, - energy_impact int, - diskio_bytesread bigint, - diskio_byteswritten bigint, - intr_wakeups bigint, - idle_wakeups bigint, - data jsonb, - created_at timestamp with time zone DEFAULT now(), - updated_at timestamp with time zone -); -CREATE TRIGGER hog_coalitions_moddatetime - BEFORE UPDATE ON hog_coalitions - FOR EACH ROW - EXECUTE PROCEDURE moddatetime (updated_at); - -CREATE INDEX idx_coalition_energy_impact ON hog_coalitions(energy_impact); -CREATE INDEX idx_coalition_name ON hog_coalitions(name); -CREATE INDEX idx_coalition_measurement ON hog_coalitions(measurement); - -CREATE TABLE hog_tasks ( - id SERIAL PRIMARY KEY, - coalition integer REFERENCES hog_coalitions(id) ON DELETE RESTRICT ON UPDATE CASCADE NOT NULL, - name text NOT NULL, - cputime_ns bigint, - cputime_per int, - energy_impact int, - bytes_received bigint, - bytes_sent bigint, - diskio_bytesread bigint, - diskio_byteswritten bigint, - intr_wakeups bigint, - idle_wakeups bigint, - data jsonb, - created_at timestamp with time zone DEFAULT now(), - updated_at timestamp with time zone -); -CREATE TRIGGER hog_tasks_moddatetime - BEFORE UPDATE ON hog_tasks - FOR EACH ROW - EXECUTE PROCEDURE moddatetime (updated_at); - -CREATE INDEX idx_task_coalition ON hog_tasks(coalition); - CREATE TABLE optimizations ( id SERIAL PRIMARY KEY, run_id uuid NOT NULL REFERENCES runs(id) ON DELETE CASCADE ON UPDATE CASCADE , @@ -362,98 +288,6 @@ CREATE TRIGGER optimizations_moddatetime CREATE INDEX optimizations_runs ON optimizations(run_id); -CREATE TABLE carbondb_types ( - id SERIAL PRIMARY KEY, - type text NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, - created_at timestamp with time zone DEFAULT now(), - updated_at timestamp with time zone -); -CREATE UNIQUE INDEX carbondb_types_unique ON carbondb_types(type text_ops,user_id int4_ops); - - -CREATE TABLE carbondb_tags ( - id SERIAL PRIMARY KEY, - tag text NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, - created_at timestamp with time zone DEFAULT now(), - updated_at timestamp with time zone -); -CREATE UNIQUE INDEX carbondb_tags_unique ON carbondb_tags(tag text_ops,user_id int4_ops); - - -CREATE TABLE carbondb_machines ( - id SERIAL PRIMARY KEY, - machine text NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, - created_at timestamp with time zone DEFAULT now(), - updated_at timestamp with time zone -); -CREATE UNIQUE INDEX carbondb_machines_unique ON carbondb_machines(machine text_ops,user_id int4_ops); - -CREATE TABLE carbondb_projects ( - id SERIAL PRIMARY KEY, - project text NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, - created_at timestamp with time zone DEFAULT now(), - updated_at timestamp with time zone -); -CREATE UNIQUE INDEX carbondb_projects_unique ON carbondb_projects(project text_ops,user_id int4_ops); - -CREATE TABLE carbondb_sources ( - id SERIAL PRIMARY KEY, - source text NOT NULL, - user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, - created_at timestamp with time zone DEFAULT now(), - updated_at timestamp with time zone -); -CREATE UNIQUE INDEX carbondb_sources_unique ON carbondb_sources(source text_ops,user_id int4_ops); - - -CREATE TABLE carbondb_data_raw ( - id SERIAL PRIMARY KEY, - type text NOT NULL, - project text NOT NULL, - machine text NOT NULL, - source text NOT NULL CHECK (source IN ('CUSTOM', 'Eco-CI', 'Green Metrics Tool', 'Power HOG')), - tags text[] NOT NULL, - time BIGINT NOT NULL, - energy_kwh DOUBLE PRECISION NOT NULL, - carbon_kg DOUBLE PRECISION NOT NULL, - carbon_intensity_g int NOT NULL, - latitude DOUBLE PRECISION, - longitude DOUBLE PRECISION, - ip_address INET, - user_id int NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, - created_at timestamp with time zone DEFAULT now(), - updated_at timestamp with time zone -); - -CREATE TRIGGER carbondb_data_raw_moddatetime - BEFORE UPDATE ON carbondb_data_raw - FOR EACH ROW - EXECUTE PROCEDURE moddatetime (updated_at); - --- note that the carbondb_data uses integer fields instead of type fields. This is because we --- operate for querying and filtering only on integers for performance - -CREATE TABLE carbondb_data ( - id SERIAL PRIMARY KEY, - type integer NOT NULL REFERENCES carbondb_types(id) ON DELETE RESTRICT ON UPDATE CASCADE, - project integer NOT NULL REFERENCES carbondb_projects(id) ON DELETE RESTRICT ON UPDATE CASCADE, - machine integer NOT NULL REFERENCES carbondb_machines(id) ON DELETE RESTRICT ON UPDATE CASCADE, - source integer NOT NULL REFERENCES carbondb_sources(id) ON DELETE RESTRICT ON UPDATE CASCADE, - tags int[] NOT NULL, - date DATE NOT NULL, - energy_kwh_sum DOUBLE PRECISION NOT NULL, - carbon_kg_sum DOUBLE PRECISION NOT NULL, - carbon_intensity_g_avg int NOT NULL, - record_count INT, - user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE -); - -CREATE UNIQUE INDEX carbondb_data_unique_entry ON carbondb_data(type int4_ops,project int4_ops,machine int4_ops,source int4_ops,tags array_ops,date date_ops,user_id int4_ops) NULLS NOT DISTINCT; - CREATE TABLE ip_data ( ip_address INET, data JSONB, @@ -468,11 +302,3 @@ CREATE TABLE carbon_intensity ( created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), PRIMARY KEY (latitude, longitude, created_at) ); - - -CREATE VIEW carbondb_data_view AS -SELECT cd.*, t.type as type_str, s.source as source_str, m.machine as machine_str, p.project as project_str FROM carbondb_data as cd -LEFT JOIN carbondb_types as t ON cd.type = t.id -LEFT JOIN carbondb_sources as s ON cd.source = s.id -LEFT JOIN carbondb_machines as m ON cd.machine = m.id -LEFT JOIN carbondb_projects as p ON cd.project = p.id; \ No newline at end of file diff --git a/tests/setup-test-env.py b/tests/setup-test-env.py index da67464f1..5af9885f2 100644 --- a/tests/setup-test-env.py +++ b/tests/setup-test-env.py @@ -2,6 +2,7 @@ from copy import deepcopy import subprocess import yaml +import shutil CURRENT_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -16,28 +17,21 @@ DB_PW = 'testpw' -def copy_sql_structure(): +def copy_sql_structure(ee=False): print('Copying SQL structure...') - subprocess.run( - ['cp', '-f', '../docker/structure.sql', './structure.sql'], - check=True, - stderr=subprocess.PIPE, - stdout=subprocess.PIPE, - encoding='UTF-8' - ) + shutil.copyfile('../docker/structure.sql', './structure.sql') if utils.get_architecture() == 'macos': command = ['sed', '-i', "", 's/green-coding/test-green-coding/g', './structure.sql'] else: command = ['sed', '-i', 's/green-coding/test-green-coding/g', './structure.sql'] - subprocess.run( - command, - check=True, - stderr=subprocess.PIPE, - stdout=subprocess.PIPE, - encoding='UTF-8' - ) + subprocess.check_output(command) + + if ee: + with open('../ee/docker/structure_ee.sql', 'r', encoding='utf-8') as source, open('./structure.sql', 'a', encoding='utf-8') as target: + target.write(source.read()) + print("Enterprise DB definitions of '../ee/docker/structure.sql' appended to './structure.sql' successfully.") def edit_compose_file(): print('Creating test-compose.yml...') @@ -129,7 +123,7 @@ def build_test_docker_image(): args = parser.parse_args() - copy_sql_structure() + copy_sql_structure(args.ee) create_test_config_file(args.ee) edit_compose_file() edit_etc_hosts() From 8b31633e1459f0f3827582c8b74d715ba1bebe35 Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 15:26:55 +0100 Subject: [PATCH 07/15] EE user-zero checkout added --- ee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee b/ee index 325e352b9..2ca569103 160000 --- a/ee +++ b/ee @@ -1 +1 @@ -Subproject commit 325e352b9a1dea814fe189fb2a620f09520bbc90 +Subproject commit 2ca569103e78f9d1ec87ab277077e10c9d8b27d2 From b609b368222b7e8da1dec0de434c6605dfb2ee3c Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 15:39:13 +0100 Subject: [PATCH 08/15] Stray console.log --- frontend/js/ci-index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/js/ci-index.js b/frontend/js/ci-index.js index edcd0c51a..6218dc416 100644 --- a/frontend/js/ci-index.js +++ b/frontend/js/ci-index.js @@ -74,7 +74,6 @@ const getCIRunsTable = async (el, url, include_uri=true, include_button=true, se let ci_data = null; try { ci_data = await makeAPICall(url); - console.log(ci_data.data); } catch (err) { showNotification('Could not get CI data from API', err); return From 5b8e8715a6f03f8a864e9924f7c4176772471c2a Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 15:39:56 +0100 Subject: [PATCH 09/15] Clearer naming --- frontend/js/helpers/runs.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/js/helpers/runs.js b/frontend/js/helpers/runs.js index 458218a4e..13255a6ef 100644 --- a/frontend/js/helpers/runs.js +++ b/frontend/js/helpers/runs.js @@ -99,10 +99,10 @@ const getFilterQueryStringFromURI = () => { const getRunsTable = async (el, url, include_uri=true, include_button=true, searching=false) => { - let run_data = null; + let runs = null; try { - run_data = await makeAPICall(url) + runs = await makeAPICall(url) } catch (err) { showNotification('Could not get run data from API', err); return @@ -171,7 +171,7 @@ const getRunsTable = async (el, url, include_uri=true, include_button=true, sear // initCollapsed: true, // }, searching: searching, - data: run_data.data, + data: runs.data, columns: columns, deferRender: true, drawCallback: function(settings) { From 9079b76d856e50fca11253e79d7adaa026bf3edd Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 15:42:33 +0100 Subject: [PATCH 10/15] If machine_id was set and machine is then deleted we want to restrict and manually resolve --- docker/structure.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/structure.sql b/docker/structure.sql index 89fdcc450..3f18344e6 100644 --- a/docker/structure.sql +++ b/docker/structure.sql @@ -69,7 +69,7 @@ CREATE TABLE jobs ( branch text, filename text, categories int[], - machine_id int REFERENCES machines(id) ON DELETE SET NULL ON UPDATE CASCADE, + machine_id int REFERENCES machines(id) ON DELETE RESTRICT ON UPDATE CASCADE, message text, user_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), @@ -94,7 +94,7 @@ CREATE TABLE runs ( filename text NOT NULL, machine_specs jsonb, runner_arguments json, - machine_id int REFERENCES machines(id) ON DELETE SET NULL ON UPDATE CASCADE, + machine_id int REFERENCES machines(id) ON DELETE RESTRICT ON UPDATE CASCADE, gmt_hash text, measurement_config jsonb, start_measurement bigint, @@ -234,7 +234,7 @@ CREATE TRIGGER ci_measurements_moddatetime CREATE TABLE client_status ( id SERIAL PRIMARY KEY, status_code TEXT NOT NULL, - machine_id int REFERENCES machines(id) ON DELETE SET NULL ON UPDATE CASCADE, + machine_id int REFERENCES machines(id) ON DELETE RESTRICT ON UPDATE CASCADE, "data" TEXT, run_id uuid REFERENCES runs(id) ON DELETE CASCADE ON UPDATE CASCADE, created_at timestamp with time zone DEFAULT now(), From 7d99ba7981f5a1d295a7b83bfe65457a4f9ffbdf Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 18:04:53 +0100 Subject: [PATCH 11/15] Test functions must insert new is_super_user and visible_users properties --- tests/test_functions.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_functions.py b/tests/test_functions.py index ff9f0f0f1..5136200fa 100644 --- a/tests/test_functions.py +++ b/tests/test_functions.py @@ -12,10 +12,11 @@ def insert_user(user_id, token): sha256_hash = hashlib.sha256() sha256_hash.update(token.encode('UTF-8')) - DB().query(""" + # Reminder: because of f-string all {} braces are doubled to be escaped + DB().query(f""" INSERT INTO "public"."users"("id", "name","token","capabilities","created_at") VALUES - (%s, %s, %s,E'{"api":{"quotas":{},"routes":["/v2/carbondb/add","/v2/carbondb/filters","/v2/carbondb","/v1/carbondb/add","/v1/ci/measurement/add","/v2/ci/measurement/add","/v1/software/add","/v1/hog/add","/v1/authentication/data"]},"data":{"runs":{"retention":2678400},"hog_tasks":{"retention":2678400},"measurements":{"retention":2678400},"hog_coalitions":{"retention":2678400},"ci_measurements":{"retention":2678400},"hog_measurements":{"retention":2678400}},"jobs":{"schedule_modes":["one-off","daily","weekly","commit","variance"]},"machines":[1],"measurement":{"quotas":{},"settings":{"total-duration":86400,"flow-process-duration":86400}},"optimizations":["container_memory_utilization","container_cpu_utilization","message_optimization","container_build_time","container_boot_time","container_image_size"]}',E'2024-08-22 11:28:24.937262+00'); + (%s, %s, %s,E'{{"user":{{"visible_users":[{user_id}],"is_super_user": false}},"api":{{"quotas":{{}},"routes":["/v2/carbondb/add","/v2/carbondb/filters","/v2/carbondb","/v1/carbondb/add","/v1/ci/measurement/add","/v2/ci/measurement/add","/v1/software/add","/v1/hog/add","/v1/authentication/data"]}},"data":{{"runs":{{"retention":2678400}},"hog_tasks":{{"retention":2678400}},"measurements":{{"retention":2678400}},"hog_coalitions":{{"retention":2678400}},"ci_measurements":{{"retention":2678400}},"hog_measurements":{{"retention":2678400}}}},"jobs":{{"schedule_modes":["one-off","daily","weekly","commit","variance"]}},"machines":[1],"measurement":{{"quotas":{{}},"settings":{{"total-duration":86400,"flow-process-duration":86400}}}},"optimizations":["container_memory_utilization","container_cpu_utilization","message_optimization","container_build_time","container_boot_time","container_image_size"]}}',E'2024-08-22 11:28:24.937262+00'); """, params=(user_id, token, sha256_hash.hexdigest())) def import_demo_data(): From f40388160d447d7bc3899ac416add7f9cf27fd83 Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 18:41:31 +0100 Subject: [PATCH 12/15] Added more tests --- api/api_helpers.py | 4 ++-- lib/user.py | 4 ++-- tests/api/test_api_base.py | 24 +++++++++++++++++++++++- tests/lib/test_user.py | 37 +++++++++++++++++++++++++++++++++++++ tests/smoke_test.py | 3 +++ tests/test_functions.py | 11 +++++++++++ tests/test_runner.py | 11 +++++++++++ 7 files changed, 89 insertions(+), 5 deletions(-) create mode 100644 tests/lib/test_user.py diff --git a/api/api_helpers.py b/api/api_helpers.py index 31609876d..e63e2b767 100644 --- a/api/api_helpers.py +++ b/api/api_helpers.py @@ -718,8 +718,8 @@ def authenticate(authentication_token=Depends(header_scheme), request: Request = user.deduct_api_quota(request.scope["route"].path, 1) - except UserAuthenticationError: - raise HTTPException(status_code=401, detail="Invalid token") from UserAuthenticationError + except UserAuthenticationError as exc: + raise HTTPException(status_code=401, detail=str(exc)) from UserAuthenticationError return user def get_connecting_ip(request): diff --git a/lib/user.py b/lib/user.py index bd57f1b35..5df4a76a6 100644 --- a/lib/user.py +++ b/lib/user.py @@ -9,7 +9,7 @@ class User(): def __init__(self, user_id: int): if user_id == 0: - raise RuntimeError('User 0 is system user and cannot log in') + raise UserAuthenticationError('User 0 is system user and cannot log in') user = DB().fetch_one(""" SELECT id, name, capabilities @@ -17,7 +17,7 @@ def __init__(self, user_id: int): WHERE id = %s """, params=(user_id, )) if not user: - raise RuntimeError(f"User with id {user_id} not found in database") + raise UserAuthenticationError(f"User with id {user_id} not found in database") self._id = user[0] self._name = user[1] diff --git a/tests/api/test_api_base.py b/tests/api/test_api_base.py index 722a05f4d..a631711d0 100644 --- a/tests/api/test_api_base.py +++ b/tests/api/test_api_base.py @@ -53,7 +53,7 @@ def test_api_quota_exhausted(): def test_wrong_authentication(): response = requests.get(f"{API_URL}/v1/authentication/data", timeout=15, headers={'X-Authentication': 'Asd'}) assert response.status_code == 401 - assert response.text == '{"success":false,"err":"Invalid token"}' + assert response.text == '{"success":false,"err":"User with corresponding token not found"}' def test_alternative_user(): Tests.insert_user(300, 'PYTEST') @@ -61,3 +61,25 @@ def test_alternative_user(): response = requests.get(f"{API_URL}/v1/authentication/data", timeout=15, headers={'X-Authentication': 'PYTEST'}) assert response.status_code == 200 assert json.loads(response.text)['data']['_name'] == 'PYTEST' + +def test_authenticate_with_empty_token_will_return_default(): + response = requests.get(f"{API_URL}/v1/authentication/data", timeout=15, headers={'X-Authentication': ''}) + assert response.status_code == 200 + json_data = json.loads(response.text) + + assert json_data['success'] is True + assert json_data['data'].get('_id', None) is None # must be deleted in response + assert json_data['data']['_name'] == 'DEFAULT' + +def test_even_if_token_set_for_user_zero_api_will_still_fail(): + Tests.update_user_token(0, 'asd') + try: + response = requests.get(f"{API_URL}/v1/authentication/data", timeout=15, headers={'X-Authentication': 'asd'}) + assert response.status_code == 401 + + json_data = json.loads(response.text) + + assert json_data['err'] == 'User 0 is system user and cannot log in' + + finally: + Tests.update_user_token(0, '') diff --git a/tests/lib/test_user.py b/tests/lib/test_user.py new file mode 100644 index 000000000..b3e5de55b --- /dev/null +++ b/tests/lib/test_user.py @@ -0,0 +1,37 @@ +import os +import pytest + +CURRENT_DIR = os.path.dirname(os.path.abspath(__file__)) + +from lib.user import User, UserAuthenticationError +from lib.secure_variable import SecureVariable +from tests import test_functions as Tests + + +def test_user_zero_fails(): + with pytest.raises(RuntimeError) as e: + User(0) + assert str(e.value) == 'User 0 is system user and cannot log in' + +def test_empty_token_fails(): + with pytest.raises(UserAuthenticationError) as e: + User.authenticate(SecureVariable('')) + assert str(e.value) == 'User with corresponding token not found' + +def test_even_if_token_set_for_user_zero_creation_still_fails(): + Tests.update_user_token(0, 'asd') + try: + with pytest.raises(UserAuthenticationError) as e: + User.authenticate(SecureVariable('asd')) + assert str(e.value) == 'User 0 is system user and cannot log in' + finally: + Tests.update_user_token(0, '') + +def test_even_if_token_set_for_user_zero_authenticate_still_fails(): + Tests.update_user_token(0, 'asd') + try: + with pytest.raises(UserAuthenticationError) as e: + User.authenticate(SecureVariable('asd')) + assert str(e.value) == 'User 0 is system user and cannot log in' + finally: + Tests.update_user_token(0, '') diff --git a/tests/smoke_test.py b/tests/smoke_test.py index 7d16c89f1..fecb40fae 100644 --- a/tests/smoke_test.py +++ b/tests/smoke_test.py @@ -45,6 +45,9 @@ def setup_module(module): run_stderr = err.getvalue() run_stdout = out.getvalue() +def test_run_has_used_default_user(): + assert utils.get_run_data(RUN_NAME)['user_id'] == 1 + def test_no_errors(): # Assert that there is no std.err output assert run_stderr == '' diff --git a/tests/test_functions.py b/tests/test_functions.py index 5136200fa..9c8530b75 100644 --- a/tests/test_functions.py +++ b/tests/test_functions.py @@ -8,6 +8,17 @@ from lib.global_config import GlobalConfig +def update_user_token(user_id, token): + sha256_hash = hashlib.sha256() + sha256_hash.update(token.encode('UTF-8')) + + DB().query(''' + UPDATE users + SET token = %s + WHERE id = %s + ''', params=(sha256_hash.hexdigest(), user_id)) + + def insert_user(user_id, token): sha256_hash = hashlib.sha256() sha256_hash.update(token.encode('UTF-8')) diff --git a/tests/test_runner.py b/tests/test_runner.py index 02367de3f..cce3bbacd 100644 --- a/tests/test_runner.py +++ b/tests/test_runner.py @@ -44,3 +44,14 @@ def test_reporters_still_running(): expected_error = r'Another instance of the \w+ metrics provider is already running on the system!\nPlease close it before running the Green Metrics Tool.' assert re.match(expected_error, str(e.value)), Tests.assertion_info(expected_error, str(e.value)) + + +def test_runner_can_use_different_user(): + USER_ID = 758932 + Tests.insert_user(USER_ID, "My bad password") + runner = Runner(uri=GMT_DIR, uri_type='folder', filename='tests/data/usage_scenarios/basic_stress.yml', skip_system_checks=True, dev_cache_build=True, dev_no_sleeps=True, dev_no_metrics=True, user_id=USER_ID) + + with Tests.RunUntilManager(runner) as context: + context.run_until('setup_services') + + assert runner._user_id == USER_ID From 62caa021963598f3d611d759b252daaea2e2384b Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 18:41:42 +0100 Subject: [PATCH 13/15] EE user-zero checkout added --- ee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee b/ee index 2ca569103..796a3b799 160000 --- a/ee +++ b/ee @@ -1 +1 @@ -Subproject commit 2ca569103e78f9d1ec87ab277077e10c9d8b27d2 +Subproject commit 796a3b79927a84a93680c1d9999c6c2cebf845cd From 5904123fa90f39d6b3a58efa533c73e4b06e9fc4 Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 21:55:03 +0100 Subject: [PATCH 14/15] Removed redundant tests --- tests/api/test_api_base.py | 12 ++++-------- tests/lib/test_user.py | 19 ++++--------------- 2 files changed, 8 insertions(+), 23 deletions(-) diff --git a/tests/api/test_api_base.py b/tests/api/test_api_base.py index a631711d0..9f47dfc08 100644 --- a/tests/api/test_api_base.py +++ b/tests/api/test_api_base.py @@ -73,13 +73,9 @@ def test_authenticate_with_empty_token_will_return_default(): def test_even_if_token_set_for_user_zero_api_will_still_fail(): Tests.update_user_token(0, 'asd') - try: - response = requests.get(f"{API_URL}/v1/authentication/data", timeout=15, headers={'X-Authentication': 'asd'}) - assert response.status_code == 401 - - json_data = json.loads(response.text) + response = requests.get(f"{API_URL}/v1/authentication/data", timeout=15, headers={'X-Authentication': 'asd'}) + assert response.status_code == 401 - assert json_data['err'] == 'User 0 is system user and cannot log in' + json_data = json.loads(response.text) - finally: - Tests.update_user_token(0, '') + assert json_data['err'] == 'User 0 is system user and cannot log in' diff --git a/tests/lib/test_user.py b/tests/lib/test_user.py index b3e5de55b..de063973f 100644 --- a/tests/lib/test_user.py +++ b/tests/lib/test_user.py @@ -18,20 +18,9 @@ def test_empty_token_fails(): User.authenticate(SecureVariable('')) assert str(e.value) == 'User with corresponding token not found' -def test_even_if_token_set_for_user_zero_creation_still_fails(): - Tests.update_user_token(0, 'asd') - try: - with pytest.raises(UserAuthenticationError) as e: - User.authenticate(SecureVariable('asd')) - assert str(e.value) == 'User 0 is system user and cannot log in' - finally: - Tests.update_user_token(0, '') - def test_even_if_token_set_for_user_zero_authenticate_still_fails(): Tests.update_user_token(0, 'asd') - try: - with pytest.raises(UserAuthenticationError) as e: - User.authenticate(SecureVariable('asd')) - assert str(e.value) == 'User 0 is system user and cannot log in' - finally: - Tests.update_user_token(0, '') + + with pytest.raises(UserAuthenticationError) as e: + User.authenticate(SecureVariable('asd')) + assert str(e.value) == 'User 0 is system user and cannot log in' From 761939f5afff2fd5a9232058cba5e201bb9dbf50 Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Mon, 23 Dec 2024 21:55:14 +0100 Subject: [PATCH 15/15] Test fix --- tests/lib/test_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/test_user.py b/tests/lib/test_user.py index de063973f..7abbf5eb6 100644 --- a/tests/lib/test_user.py +++ b/tests/lib/test_user.py @@ -9,7 +9,7 @@ def test_user_zero_fails(): - with pytest.raises(RuntimeError) as e: + with pytest.raises(UserAuthenticationError) as e: User(0) assert str(e.value) == 'User 0 is system user and cannot log in'