-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfdb-3444444-cjazzy_241130_1625.nmon
5248 lines (5248 loc) · 475 KB
/
fdb-3444444-cjazzy_241130_1625.nmon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
AAA,progname,nmon
AAA,command,nmon -f -s 60 -c 3600 -T -d /var/log/nmon_logs/
AAA,version,16p
AAA,disks_per_line,150
AAA,max_disks,256,set by -d option
AAA,disks,55,
AAA,host,fdb-3444444-cjazzy
AAA,user,kevin
AAA,OS,Linux,6.10.6-061006-generic,#202408190440 SMP PREEMPT_DYNAMIC Mon Aug 19 04:53:21 UTC 2024,x86_64
AAA,runname,fdb-3444444-cjazzy
AAA,time,16:25.25
AAA,date,30-NOV-2024
AAA,interval,60
AAA,snapshots,3600
AAA,cpus,4
AAA,proc_stat_variables,8
AAA,boottime,06:53 AM 28-Nov-2024
AAA,note0, Warning - use the UNIX sort command to order this file before loading into a spreadsheet
AAA,note1, The First Column is simply to get the output sorted in the right order
AAA,note2, The T0001-T9999 column is a snapshot number. To work out the actual time; see the ZZZ section at the end
CPU001,CPU 1 fdb-3444444-cjazzy,User%,Sys%,Wait%,Idle%,Steal%
CPU002,CPU 2 fdb-3444444-cjazzy,User%,Sys%,Wait%,Idle%,Steal%
CPU003,CPU 3 fdb-3444444-cjazzy,User%,Sys%,Wait%,Idle%,Steal%
CPU004,CPU 4 fdb-3444444-cjazzy,User%,Sys%,Wait%,Idle%,Steal%
CPU_ALL,CPU Total fdb-3444444-cjazzy,User%,Sys%,Wait%,Idle%,Steal%,Busy,CPUs
MEM,Memory MB fdb-3444444-cjazzy,memtotal,hightotal,lowtotal,swaptotal,memfree,highfree,lowfree,swapfree,memshared,cached,active,bigfree,buffers,swapcached,inactive
PROC,Processes fdb-3444444-cjazzy,Runnable,Blocked,pswitch,syscall,read,write,fork,exec,sem,msg
NET,Network I/O fdb-3444444-cjazzy,lo-read-KB/s,enp0s25-read-KB/s,wlp3s0-read-KB/s,docker0-read-KB/s,lo-write-KB/s,enp0s25-write-KB/s,wlp3s0-write-KB/s,docker0-write-KB/s
NETPACKET,Network Packets fdb-3444444-cjazzy,lo-read/s,enp0s25-read/s,wlp3s0-read/s,docker0-read/s,lo-write/s,enp0s25-write/s,wlp3s0-write/s,docker0-write/s
DISKBUSY,Disk %Busy fdb-3444444-cjazzy,loop0,loop1,loop2,loop3,loop4,loop5,loop6,loop7,sda,sda1,sda2,sda3,loop8,loop10,loop9,loop11,loop13,loop12,loop15,loop14,loop16,loop17,loop18,loop19,loop20,loop21,loop22,loop23,loop24,loop25,loop26,loop27,loop28,loop29,loop30,loop31,loop32,loop33,loop34,loop35,loop36,loop37,loop38,loop39,loop40,loop41,loop42,loop43,loop44,loop45,loop46,loop47,zram0,loop48,loop49
DISKREAD,Disk Read KB/s fdb-3444444-cjazzy,loop0,loop1,loop2,loop3,loop4,loop5,loop6,loop7,sda,sda1,sda2,sda3,loop8,loop10,loop9,loop11,loop13,loop12,loop15,loop14,loop16,loop17,loop18,loop19,loop20,loop21,loop22,loop23,loop24,loop25,loop26,loop27,loop28,loop29,loop30,loop31,loop32,loop33,loop34,loop35,loop36,loop37,loop38,loop39,loop40,loop41,loop42,loop43,loop44,loop45,loop46,loop47,zram0,loop48,loop49
DISKWRITE,Disk Write KB/s fdb-3444444-cjazzy,loop0,loop1,loop2,loop3,loop4,loop5,loop6,loop7,sda,sda1,sda2,sda3,loop8,loop10,loop9,loop11,loop13,loop12,loop15,loop14,loop16,loop17,loop18,loop19,loop20,loop21,loop22,loop23,loop24,loop25,loop26,loop27,loop28,loop29,loop30,loop31,loop32,loop33,loop34,loop35,loop36,loop37,loop38,loop39,loop40,loop41,loop42,loop43,loop44,loop45,loop46,loop47,zram0,loop48,loop49
DISKXFER,Disk transfers per second fdb-3444444-cjazzy,loop0,loop1,loop2,loop3,loop4,loop5,loop6,loop7,sda,sda1,sda2,sda3,loop8,loop10,loop9,loop11,loop13,loop12,loop15,loop14,loop16,loop17,loop18,loop19,loop20,loop21,loop22,loop23,loop24,loop25,loop26,loop27,loop28,loop29,loop30,loop31,loop32,loop33,loop34,loop35,loop36,loop37,loop38,loop39,loop40,loop41,loop42,loop43,loop44,loop45,loop46,loop47,zram0,loop48,loop49
DISKBSIZE,Disk Block Size fdb-3444444-cjazzy,loop0,loop1,loop2,loop3,loop4,loop5,loop6,loop7,sda,sda1,sda2,sda3,loop8,loop10,loop9,loop11,loop13,loop12,loop15,loop14,loop16,loop17,loop18,loop19,loop20,loop21,loop22,loop23,loop24,loop25,loop26,loop27,loop28,loop29,loop30,loop31,loop32,loop33,loop34,loop35,loop36,loop37,loop38,loop39,loop40,loop41,loop42,loop43,loop44,loop45,loop46,loop47,zram0,loop48,loop49
JFSFILE,JFS Filespace %Used fdb-3444444-cjazzy,/dev,/run,/,/snap/android-studio/161,/snap/android-studio/163,/snap/bare/5,/snap/bluetooth-autostart/10,/snap/canonical-livepatch/286,/snap/canonical-livepatch/282,/snap/chiaki/10,/snap/core/16928,/snap/core18/2846,/snap/core/17200,/snap/core18/2829,/snap/core20/2379,/snap/core22/1621,/snap/core20/2434,/snap/core22/1663,/snap/core24/490,/snap/core24/609,/snap/cups/1058,/snap/cups/1067,/snap/ffmpeg-2204/126,/snap/gaming-graphics-core22/166,/snap/firefox/4757,/snap/flutter/145,/snap/gaming-graphics-core22/184,/snap/gnome-3-28-1804/198,/snap/gnome-3-38-2004/143,/snap/gnome-42-2204/176,/snap/gnome-46-2404/42,/snap/gnome-46-2404/48,/snap/jira-to-tripletex/1,/snap/gtk-common-themes/1535,/snap/lunatask/68,/snap/lunatask/70,/snap/mesa-2404/143,/snap/metadata-cleaner/58,/snap/mesa-2404/44,/snap/nordvpn/16,/snap/nordvpn/22,/snap/pieces-os/61,/snap/snapd/21759,/snap/spotify/80,/snap/steam/200,/snap/steam/206,/snap/superproductivity/2133,/snap/trello-desktop/22,/snap/trello-desktop/23
TOP,%CPU Utilisation
TOP,+PID,Time,%CPU,%Usr,%Sys,Size,ResSet,ResText,ResData,ShdLib,MinorFault,MajorFault,Command,Threads,IOwaitTime
BBBP,000,/etc/release
BBBP,001,/etc/release,"DISTRIB_ID=Ubuntu"
BBBP,002,/etc/release,"DISTRIB_RELEASE=24.04"
BBBP,003,/etc/release,"DISTRIB_CODENAME=noble"
BBBP,004,/etc/release,"DISTRIB_DESCRIPTION=QUbuntu 24.04.1 LTSQ"
BBBP,005,/etc/release,"PRETTY_NAME=QUbuntu 24.04.1 LTSQ"
BBBP,006,/etc/release,"NAME=QUbuntuQ"
BBBP,007,/etc/release,"VERSION_ID=Q24.04Q"
BBBP,008,/etc/release,"VERSION=Q24.04.1 LTS (Noble Numbat)Q"
BBBP,009,/etc/release,"VERSION_CODENAME=noble"
BBBP,010,/etc/release,"ID=ubuntu"
BBBP,011,/etc/release,"ID_LIKE=debian"
BBBP,012,/etc/release,"HOME_URL=Qhttps://www.ubuntu.com/Q"
BBBP,013,/etc/release,"SUPPORT_URL=Qhttps://help.ubuntu.com/Q"
BBBP,014,/etc/release,"BUG_REPORT_URL=Qhttps://bugs.launchpad.net/ubuntu/Q"
BBBP,015,/etc/release,"PRIVACY_POLICY_URL=Qhttps://www.ubuntu.com/legal/terms-and-policies/privacy-policyQ"
BBBP,016,/etc/release,"UBUNTU_CODENAME=noble"
BBBP,017,/etc/release,"LOGO=ubuntu-logo"
BBBP,018,lsb_release
BBBP,019,lsb_release,"Distributor ID: Ubuntu"
BBBP,020,lsb_release,"Description: Ubuntu 24.04.1 LTS"
BBBP,021,lsb_release,"Release: 24.04"
BBBP,022,lsb_release,"Codename: noble"
BBBP,023,fdisk-l
BBBP,024,lsblk
BBBP,025,lsblk,"NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS"
BBBP,026,lsblk,"loop0 7:0 0 1,2G 1 loop /snap/android-studio/161"
BBBP,027,lsblk,"loop1 7:1 0 1,2G 1 loop /snap/android-studio/163"
BBBP,028,lsblk,"loop2 7:2 0 3,6M 1 loop /snap/bluetooth-autostart/10"
BBBP,029,lsblk,"loop3 7:3 0 4K 1 loop /snap/bare/5"
BBBP,030,lsblk,"loop4 7:4 0 10,7M 1 loop /snap/canonical-livepatch/286"
BBBP,031,lsblk,"loop5 7:5 0 10,1M 1 loop /snap/canonical-livepatch/282"
BBBP,032,lsblk,"loop6 7:6 0 307,6M 1 loop /snap/chiaki/10"
BBBP,033,lsblk,"loop7 7:7 0 104M 1 loop /snap/core/16928"
BBBP,034,lsblk,"loop8 7:8 0 55,7M 1 loop /snap/core18/2829"
BBBP,035,lsblk,"loop9 7:9 0 104,2M 1 loop /snap/core/17200"
BBBP,036,lsblk,"loop10 7:10 0 55,4M 1 loop /snap/core18/2846"
BBBP,037,lsblk,"loop11 7:11 0 64M 1 loop /snap/core20/2379"
BBBP,038,lsblk,"loop12 7:12 0 63,7M 1 loop /snap/core20/2434"
BBBP,039,lsblk,"loop13 7:13 0 74,2M 1 loop /snap/core22/1621"
BBBP,040,lsblk,"loop14 7:14 0 73,9M 1 loop /snap/core22/1663"
BBBP,041,lsblk,"loop15 7:15 0 66,2M 1 loop /snap/core24/490"
BBBP,042,lsblk,"loop16 7:16 0 66,2M 1 loop /snap/core24/609"
BBBP,043,lsblk,"loop17 7:17 0 67,8M 1 loop /snap/cups/1058"
BBBP,044,lsblk,"loop18 7:18 0 67,8M 1 loop /snap/cups/1067"
BBBP,045,lsblk,"loop19 7:19 0 62,2M 1 loop /snap/ffmpeg-2204/126"
BBBP,046,lsblk,"loop20 7:20 0 269,3M 1 loop /snap/firefox/4757"
BBBP,047,lsblk,"loop21 7:21 0 210,7M 1 loop /snap/gaming-graphics-core22/166"
BBBP,048,lsblk,"loop22 7:22 0 206,3M 1 loop /snap/flutter/145"
BBBP,049,lsblk,"loop23 7:23 0 193M 1 loop /snap/gaming-graphics-core22/184"
BBBP,050,lsblk,"loop24 7:24 0 164,8M 1 loop /snap/gnome-3-28-1804/198"
BBBP,051,lsblk,"loop25 7:25 0 349,7M 1 loop /snap/gnome-3-38-2004/143"
BBBP,052,lsblk,"loop26 7:26 0 505,1M 1 loop /snap/gnome-42-2204/176"
BBBP,053,lsblk,"loop27 7:27 0 402,4M 1 loop /snap/gnome-46-2404/42"
BBBP,054,lsblk,"loop28 7:28 0 406,3M 1 loop /snap/gnome-46-2404/48"
BBBP,055,lsblk,"loop29 7:29 0 91,7M 1 loop /snap/gtk-common-themes/1535"
BBBP,056,lsblk,"loop30 7:30 0 4,7M 1 loop /snap/jira-to-tripletex/1"
BBBP,057,lsblk,"loop31 7:31 0 93,6M 1 loop /snap/lunatask/68"
BBBP,058,lsblk,"loop32 7:32 0 93,6M 1 loop /snap/lunatask/70"
BBBP,059,lsblk,"loop33 7:33 0 211,5M 1 loop /snap/mesa-2404/143"
BBBP,060,lsblk,"loop34 7:34 0 225M 1 loop /snap/mesa-2404/44"
BBBP,061,lsblk,"loop35 7:35 0 7,4M 1 loop /snap/metadata-cleaner/58"
BBBP,062,lsblk,"loop36 7:36 0 38,8M 1 loop /snap/nordvpn/16"
BBBP,063,lsblk,"loop37 7:37 0 39,1M 1 loop /snap/nordvpn/22"
BBBP,064,lsblk,"loop38 7:38 0 492,5M 1 loop /snap/pieces-os/61"
BBBP,065,lsblk,"loop39 7:39 0 38,8M 1 loop /snap/snapd/21759"
BBBP,066,lsblk,"loop40 7:40 0 44,3M 1 loop /snap/snapd/23258"
BBBP,067,lsblk,"loop41 7:41 0 184,5M 1 loop /snap/spotify/80"
BBBP,068,lsblk,"loop42 7:42 0 200,9M 1 loop /snap/steam/200"
BBBP,069,lsblk,"loop43 7:43 0 214,9M 1 loop /snap/steam/206"
BBBP,070,lsblk,"loop45 7:45 0 95,8M 1 loop /snap/superproductivity/2133"
BBBP,071,lsblk,"loop46 7:46 0 91,2M 1 loop /snap/trello-desktop/22"
BBBP,072,lsblk,"loop47 7:47 0 91,2M 1 loop /snap/trello-desktop/23"
BBBP,073,lsblk,"loop48 7:48 0 184,8M 1 loop /snap/spotify/81"
BBBP,074,lsblk,"loop49 7:49 0 99,7M 1 loop /snap/superproductivity/2159"
BBBP,075,lsblk,"sda 8:0 0 476,9G 0 disk "
BBBP,076,lsblk,"├─sda1 8:1 0 1M 0 part "
BBBP,077,lsblk,"├─sda2 8:2 0 513M 0 part /boot/efi"
BBBP,078,lsblk,"└─sda3 8:3 0 476,4G 0 part /"
BBBP,079,lsblk,"zram0 251:0 0 7,7G 0 disk [SWAP]"
BBBP,080,lscpu
BBBP,081,lscpu,"Architecture: x86_64"
BBBP,082,lscpu,"CPU op-mode(s): 32-bit, 64-bit"
BBBP,083,lscpu,"Address sizes: 39 bits physical, 48 bits virtual"
BBBP,084,lscpu,"Byte Order: Little Endian"
BBBP,085,lscpu,"CPU(s): 4"
BBBP,086,lscpu,"On-line CPU(s) list: 0-3"
BBBP,087,lscpu,"Vendor ID: GenuineIntel"
BBBP,088,lscpu,"Model name: Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz"
BBBP,089,lscpu,"CPU family: 6"
BBBP,090,lscpu,"Model: 61"
BBBP,091,lscpu,"Thread(s) per core: 2"
BBBP,092,lscpu,"Core(s) per socket: 2"
BBBP,093,lscpu,"Socket(s): 1"
BBBP,094,lscpu,"Stepping: 4"
BBBP,095,lscpu,"CPU(s) scaling MHz: 93%"
BBBP,096,lscpu,"CPU max MHz: 2900,0000"
BBBP,097,lscpu,"CPU min MHz: 500,0000"
BBBP,098,lscpu,"BogoMIPS: 4589,24"
BBBP,099,lscpu,"Flags: fpu 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 lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx 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 pti ssbd ibrs ibpb stibp tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap intel_pt xsaveopt dtherm ida arat pln pts vnmi md_clear flush_l1d"
BBBP,100,lscpu,"Virtualization: VT-x"
BBBP,101,lscpu,"L1d cache: 64 KiB (2 instances)"
BBBP,102,lscpu,"L1i cache: 64 KiB (2 instances)"
BBBP,103,lscpu,"L2 cache: 512 KiB (2 instances)"
BBBP,104,lscpu,"L3 cache: 3 MiB (1 instance)"
BBBP,105,lscpu,"NUMA node(s): 1"
BBBP,106,lscpu,"NUMA node0 CPU(s): 0-3"
BBBP,107,lscpu,"Vulnerability Gather data sampling: Not affected"
BBBP,108,lscpu,"Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled"
BBBP,109,lscpu,"Vulnerability L1tf: Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable"
BBBP,110,lscpu,"Vulnerability Mds: Mitigation; Clear CPU buffers; SMT vulnerable"
BBBP,111,lscpu,"Vulnerability Meltdown: Mitigation; PTI"
BBBP,112,lscpu,"Vulnerability Mmio stale data: Unknown: No mitigations"
BBBP,113,lscpu,"Vulnerability Reg file data sampling: Not affected"
BBBP,114,lscpu,"Vulnerability Retbleed: Not affected"
BBBP,115,lscpu,"Vulnerability Spec rstack overflow: Not affected"
BBBP,116,lscpu,"Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl"
BBBP,117,lscpu,"Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization"
BBBP,118,lscpu,"Vulnerability Spectre v2: Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP conditional; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected"
BBBP,119,lscpu,"Vulnerability Srbds: Mitigation; Microcode"
BBBP,120,lscpu,"Vulnerability Tsx async abort: Mitigation; Clear CPU buffers; SMT vulnerable"
BBBP,121,lshw
BBBP,122,lshw,"fdb-3444444-cjazzy"
BBBP,123,lshw," description: Computer"
BBBP,124,lshw," width: 64 bits"
BBBP,125,lshw," capabilities: smp vsyscall32"
BBBP,126,lshw," *-core"
BBBP,127,lshw," description: Motherboard"
BBBP,128,lshw," physical id: 0"
BBBP,129,lshw," *-memory"
BBBP,130,lshw," description: System memory"
BBBP,131,lshw," physical id: 0"
BBBP,132,lshw," size: 15GiB"
BBBP,133,lshw," *-cpu"
BBBP,134,lshw," product: Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz"
BBBP,135,lshw," vendor: Intel Corp."
BBBP,136,lshw," physical id: 1"
BBBP,137,lshw," bus info: cpu@0"
BBBP,138,lshw," version: 6.61.4"
BBBP,139,lshw," size: 2693MHz"
BBBP,140,lshw," capacity: 2900MHz"
BBBP,141,lshw," width: 64 bits"
BBBP,142,lshw," capabilities: 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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx 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 pti ssbd ibrs ibpb stibp tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap intel_pt xsaveopt dtherm ida arat pln pts vnmi md_clear flush_l1d cpufreq"
BBBP,143,lshw," configuration: microcode=47"
BBBP,144,lshw," *-pci"
BBBP,145,lshw," description: Host bridge"
BBBP,146,lshw," product: Broadwell-U Host Bridge -OPI"
BBBP,147,lshw," vendor: Intel Corporation"
BBBP,148,lshw," physical id: 100"
BBBP,149,lshw," bus info: pci@0000:00:00.0"
BBBP,150,lshw," version: 09"
BBBP,151,lshw," width: 32 bits"
BBBP,152,lshw," clock: 33MHz"
BBBP,153,lshw," configuration: driver=bdw_uncore"
BBBP,154,lshw," resources: irq:0"
BBBP,155,lshw," *-display"
BBBP,156,lshw," description: VGA compatible controller"
BBBP,157,lshw," product: HD Graphics 5500"
BBBP,158,lshw," vendor: Intel Corporation"
BBBP,159,lshw," physical id: 2"
BBBP,160,lshw," bus info: pci@0000:00:02.0"
BBBP,161,lshw," logical name: /dev/fb0"
BBBP,162,lshw," version: 09"
BBBP,163,lshw," width: 64 bits"
BBBP,164,lshw," clock: 33MHz"
BBBP,165,lshw," capabilities: vga_controller bus_master cap_list rom fb"
BBBP,166,lshw," configuration: depth=32 driver=i915 latency=0 resolution=1600,900"
BBBP,167,lshw," resources: irq:54 memory:e0000000-e0ffffff memory:d0000000-dfffffff ioport:3000(size=64) memory:c0000-dffff"
BBBP,168,lshw," *-multimedia:0"
BBBP,169,lshw," description: Audio device"
BBBP,170,lshw," product: Broadwell-U Audio Controller"
BBBP,171,lshw," vendor: Intel Corporation"
BBBP,172,lshw," physical id: 3"
BBBP,173,lshw," bus info: pci@0000:00:03.0"
BBBP,174,lshw," logical name: card1"
BBBP,175,lshw," logical name: /dev/snd/controlC1"
BBBP,176,lshw," logical name: /dev/snd/hwC1D0"
BBBP,177,lshw," logical name: /dev/snd/pcmC1D3p"
BBBP,178,lshw," logical name: /dev/snd/pcmC1D7p"
BBBP,179,lshw," logical name: /dev/snd/pcmC1D8p"
BBBP,180,lshw," version: 09"
BBBP,181,lshw," width: 64 bits"
BBBP,182,lshw," clock: 33MHz"
BBBP,183,lshw," capabilities: bus_master cap_list"
BBBP,184,lshw," configuration: driver=snd_hda_intel latency=0"
BBBP,185,lshw," resources: irq:53 memory:e1230000-e1233fff"
BBBP,186,lshw," *-input:0"
BBBP,187,lshw," product: HDA Intel HDMI HDMI/DP,pcm=3"
BBBP,188,lshw," physical id: 0"
BBBP,189,lshw," logical name: input13"
BBBP,190,lshw," logical name: /dev/input/event12"
BBBP,191,lshw," *-input:1"
BBBP,192,lshw," product: HDA Intel HDMI HDMI/DP,pcm=7"
BBBP,193,lshw," physical id: 1"
BBBP,194,lshw," logical name: input14"
BBBP,195,lshw," logical name: /dev/input/event13"
BBBP,196,lshw," *-input:2"
BBBP,197,lshw," product: HDA Intel HDMI HDMI/DP,pcm=8"
BBBP,198,lshw," physical id: 2"
BBBP,199,lshw," logical name: input15"
BBBP,200,lshw," logical name: /dev/input/event14"
BBBP,201,lshw," *-usb:0"
BBBP,202,lshw," description: USB controller"
BBBP,203,lshw," product: Wildcat Point-LP USB xHCI Controller"
BBBP,204,lshw," vendor: Intel Corporation"
BBBP,205,lshw," physical id: 14"
BBBP,206,lshw," bus info: pci@0000:00:14.0"
BBBP,207,lshw," version: 03"
BBBP,208,lshw," width: 64 bits"
BBBP,209,lshw," clock: 33MHz"
BBBP,210,lshw," capabilities: xhci bus_master cap_list"
BBBP,211,lshw," configuration: driver=xhci_hcd latency=0"
BBBP,212,lshw," resources: irq:43 memory:e1220000-e122ffff"
BBBP,213,lshw," *-communication"
BBBP,214,lshw," description: Communication controller"
BBBP,215,lshw," product: Wildcat Point-LP MEI Controller #1"
BBBP,216,lshw," vendor: Intel Corporation"
BBBP,217,lshw," physical id: 16"
BBBP,218,lshw," bus info: pci@0000:00:16.0"
BBBP,219,lshw," version: 03"
BBBP,220,lshw," width: 64 bits"
BBBP,221,lshw," clock: 33MHz"
BBBP,222,lshw," capabilities: bus_master cap_list"
BBBP,223,lshw," configuration: driver=mei_me latency=0"
BBBP,224,lshw," resources: irq:50 memory:e1239000-e123901f"
BBBP,225,lshw," *-network"
BBBP,226,lshw," description: Ethernet interface"
BBBP,227,lshw," product: Ethernet Connection (3) I218-LM"
BBBP,228,lshw," vendor: Intel Corporation"
BBBP,229,lshw," physical id: 19"
BBBP,230,lshw," bus info: pci@0000:00:19.0"
BBBP,231,lshw," logical name: enp0s25"
BBBP,232,lshw," version: 03"
BBBP,233,lshw," serial: 50:7b:9d:6e:3d:cd"
BBBP,234,lshw," capacity: 1Gbit/s"
BBBP,235,lshw," width: 32 bits"
BBBP,236,lshw," clock: 33MHz"
BBBP,237,lshw," capabilities: bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation"
BBBP,238,lshw," configuration: autonegotiation=on broadcast=yes driver=e1000e driverversion=6.10.6-061006-generic firmware=0.2-3 latency=0 link=no multicast=yes port=twisted pair"
BBBP,239,lshw," resources: irq:55 memory:e1200000-e121ffff memory:e123e000-e123efff ioport:3080(size=32)"
BBBP,240,lshw," *-multimedia:1"
BBBP,241,lshw," description: Audio device"
BBBP,242,lshw," product: Wildcat Point-LP High Definition Audio Controller"
BBBP,243,lshw," vendor: Intel Corporation"
BBBP,244,lshw," physical id: 1b"
BBBP,245,lshw," bus info: pci@0000:00:1b.0"
BBBP,246,lshw," logical name: card0"
BBBP,247,lshw," logical name: /dev/snd/controlC0"
BBBP,248,lshw," logical name: /dev/snd/hwC0D0"
BBBP,249,lshw," logical name: /dev/snd/pcmC0D0c"
BBBP,250,lshw," logical name: /dev/snd/pcmC0D0p"
BBBP,251,lshw," version: 03"
BBBP,252,lshw," width: 64 bits"
BBBP,253,lshw," clock: 33MHz"
BBBP,254,lshw," capabilities: bus_master cap_list"
BBBP,255,lshw," configuration: driver=snd_hda_intel latency=32"
BBBP,256,lshw," resources: irq:51 memory:e1234000-e1237fff"
BBBP,257,lshw," *-input:0"
BBBP,258,lshw," product: HDA Intel PCH Dock Headphone"
BBBP,259,lshw," physical id: 0"
BBBP,260,lshw," logical name: input10"
BBBP,261,lshw," logical name: /dev/input/event9"
BBBP,262,lshw," *-input:1"
BBBP,263,lshw," product: HDA Intel PCH Headphone"
BBBP,264,lshw," physical id: 1"
BBBP,265,lshw," logical name: input11"
BBBP,266,lshw," logical name: /dev/input/event10"
BBBP,267,lshw," *-input:2"
BBBP,268,lshw," product: HDA Intel PCH Dock Mic"
BBBP,269,lshw," physical id: 2"
BBBP,270,lshw," logical name: input8"
BBBP,271,lshw," logical name: /dev/input/event7"
BBBP,272,lshw," *-input:3"
BBBP,273,lshw," product: HDA Intel PCH Mic"
BBBP,274,lshw," physical id: 3"
BBBP,275,lshw," logical name: input9"
BBBP,276,lshw," logical name: /dev/input/event8"
BBBP,277,lshw," *-pci:0"
BBBP,278,lshw," description: PCI bridge"
BBBP,279,lshw," product: Wildcat Point-LP PCI Express Root Port #6"
BBBP,280,lshw," vendor: Intel Corporation"
BBBP,281,lshw," physical id: 1c"
BBBP,282,lshw," bus info: pci@0000:00:1c.0"
BBBP,283,lshw," version: e3"
BBBP,284,lshw," width: 32 bits"
BBBP,285,lshw," clock: 33MHz"
BBBP,286,lshw," capabilities: pci normal_decode bus_master cap_list"
BBBP,287,lshw," configuration: driver=pcieport"
BBBP,288,lshw," resources: irq:41 memory:e1100000-e11fffff"
BBBP,289,lshw," *-generic"
BBBP,290,lshw," description: MMC Host"
BBBP,291,lshw," product: RTS5227 PCI Express Card Reader"
BBBP,292,lshw," vendor: Realtek Semiconductor Co., Ltd."
BBBP,293,lshw," physical id: 0"
BBBP,294,lshw," bus info: pci@0000:02:00.0"
BBBP,295,lshw," logical name: mmc0"
BBBP,296,lshw," version: 01"
BBBP,297,lshw," width: 32 bits"
BBBP,298,lshw," clock: 33MHz"
BBBP,299,lshw," capabilities: bus_master cap_list"
BBBP,300,lshw," configuration: driver=rtsx_pci latency=0"
BBBP,301,lshw," resources: irq:49 memory:e1100000-e1100fff"
BBBP,302,lshw," *-pci:1"
BBBP,303,lshw," description: PCI bridge"
BBBP,304,lshw," product: Wildcat Point-LP PCI Express Root Port #3"
BBBP,305,lshw," vendor: Intel Corporation"
BBBP,306,lshw," physical id: 1c.1"
BBBP,307,lshw," bus info: pci@0000:00:1c.1"
BBBP,308,lshw," version: e3"
BBBP,309,lshw," width: 32 bits"
BBBP,310,lshw," clock: 33MHz"
BBBP,311,lshw," capabilities: pci normal_decode bus_master cap_list"
BBBP,312,lshw," configuration: driver=pcieport"
BBBP,313,lshw," resources: irq:42 memory:e1000000-e10fffff"
BBBP,314,lshw," *-network"
BBBP,315,lshw," description: Wireless interface"
BBBP,316,lshw," product: Wireless 7265"
BBBP,317,lshw," vendor: Intel Corporation"
BBBP,318,lshw," physical id: 0"
BBBP,319,lshw," bus info: pci@0000:03:00.0"
BBBP,320,lshw," logical name: wlp3s0"
BBBP,321,lshw," version: 59"
BBBP,322,lshw," serial: dc:53:60:ee:30:e0"
BBBP,323,lshw," width: 64 bits"
BBBP,324,lshw," clock: 33MHz"
BBBP,325,lshw," capabilities: bus_master cap_list ethernet physical wireless"
BBBP,326,lshw," configuration: broadcast=yes driver=iwlwifi driverversion=6.10.6-061006-generic firmware=29.4063824552.0 7265D-29.ucode ip=192.168.1.114 latency=0 link=yes multicast=yes wireless=IEEE 802.11"
BBBP,327,lshw," resources: irq:52 memory:e1000000-e1001fff"
BBBP,328,lshw," *-usb:1"
BBBP,329,lshw," description: USB controller"
BBBP,330,lshw," product: Wildcat Point-LP USB EHCI Controller"
BBBP,331,lshw," vendor: Intel Corporation"
BBBP,332,lshw," physical id: 1d"
BBBP,333,lshw," bus info: pci@0000:00:1d.0"
BBBP,334,lshw," version: 03"
BBBP,335,lshw," width: 32 bits"
BBBP,336,lshw," clock: 33MHz"
BBBP,337,lshw," capabilities: ehci bus_master cap_list"
BBBP,338,lshw," configuration: driver=ehci-pci latency=0"
BBBP,339,lshw," resources: irq:23 memory:e123d000-e123d3ff"
BBBP,340,lshw," *-isa"
BBBP,341,lshw," description: ISA bridge"
BBBP,342,lshw," product: Wildcat Point-LP LPC Controller"
BBBP,343,lshw," vendor: Intel Corporation"
BBBP,344,lshw," physical id: 1f"
BBBP,345,lshw," bus info: pci@0000:00:1f.0"
BBBP,346,lshw," version: 03"
BBBP,347,lshw," width: 32 bits"
BBBP,348,lshw," clock: 33MHz"
BBBP,349,lshw," capabilities: isa bus_master cap_list"
BBBP,350,lshw," configuration: driver=lpc_ich latency=0"
BBBP,351,lshw," resources: irq:0"
BBBP,352,lshw," *-pnp00:00"
BBBP,353,lshw," product: PnP device PNP0c01"
BBBP,354,lshw," physical id: 0"
BBBP,355,lshw," capabilities: pnp"
BBBP,356,lshw," configuration: driver=system"
BBBP,357,lshw," *-pnp00:01"
BBBP,358,lshw," product: PnP device PNP0c02"
BBBP,359,lshw," physical id: 1"
BBBP,360,lshw," capabilities: pnp"
BBBP,361,lshw," configuration: driver=system"
BBBP,362,lshw," *-pnp00:02"
BBBP,363,lshw," product: PnP device PNP0b00"
BBBP,364,lshw," physical id: 2"
BBBP,365,lshw," capabilities: pnp"
BBBP,366,lshw," configuration: driver=rtc_cmos"
BBBP,367,lshw," *-pnp00:03"
BBBP,368,lshw," product: PnP device LEN0071"
BBBP,369,lshw," vendor: Lenovo Group Limited"
BBBP,370,lshw," physical id: 3"
BBBP,371,lshw," capabilities: pnp"
BBBP,372,lshw," configuration: driver=i8042 kbd"
BBBP,373,lshw," *-pnp00:04"
BBBP,374,lshw," product: PnP device LEN200e"
BBBP,375,lshw," vendor: Lenovo Group Limited"
BBBP,376,lshw," physical id: 4"
BBBP,377,lshw," capabilities: pnp"
BBBP,378,lshw," configuration: driver=i8042 aux"
BBBP,379,lshw," *-pnp00:05"
BBBP,380,lshw," product: PnP device SMO1200"
BBBP,381,lshw," vendor: STMicroelectronics"
BBBP,382,lshw," physical id: 5"
BBBP,383,lshw," capabilities: pnp"
BBBP,384,lshw," configuration: driver=tpm_tis"
BBBP,385,lshw," *-pnp00:06"
BBBP,386,lshw," product: PnP device PNP0c02"
BBBP,387,lshw," physical id: 6"
BBBP,388,lshw," capabilities: pnp"
BBBP,389,lshw," configuration: driver=system"
BBBP,390,lshw," *-sata"
BBBP,391,lshw," description: SATA controller"
BBBP,392,lshw," product: Wildcat Point-LP SATA Controller [AHCI Mode]"
BBBP,393,lshw," vendor: Intel Corporation"
BBBP,394,lshw," physical id: 1f.2"
BBBP,395,lshw," bus info: pci@0000:00:1f.2"
BBBP,396,lshw," version: 03"
BBBP,397,lshw," width: 32 bits"
BBBP,398,lshw," clock: 66MHz"
BBBP,399,lshw," capabilities: sata ahci_1.0 bus_master cap_list"
BBBP,400,lshw," configuration: driver=ahci latency=0"
BBBP,401,lshw," resources: irq:48 ioport:30a8(size=8) ioport:30bc(size=4) ioport:30a0(size=8) ioport:30b8(size=4) ioport:3060(size=32) memory:e123c000-e123c7ff"
BBBP,402,lshw," *-serial"
BBBP,403,lshw," description: SMBus"
BBBP,404,lshw," product: Wildcat Point-LP SMBus Controller"
BBBP,405,lshw," vendor: Intel Corporation"
BBBP,406,lshw," physical id: 1f.3"
BBBP,407,lshw," bus info: pci@0000:00:1f.3"
BBBP,408,lshw," version: 03"
BBBP,409,lshw," width: 64 bits"
BBBP,410,lshw," clock: 33MHz"
BBBP,411,lshw," configuration: driver=i801_smbus latency=0"
BBBP,412,lshw," resources: irq:18 memory:e1238000-e12380ff ioport:efa0(size=32)"
BBBP,413,lshw," *-generic"
BBBP,414,lshw," description: Signal processing controller"
BBBP,415,lshw," product: Wildcat Point-LP Thermal Management Controller"
BBBP,416,lshw," vendor: Intel Corporation"
BBBP,417,lshw," physical id: 1f.6"
BBBP,418,lshw," bus info: pci@0000:00:1f.6"
BBBP,419,lshw," version: 03"
BBBP,420,lshw," width: 64 bits"
BBBP,421,lshw," clock: 33MHz"
BBBP,422,lshw," capabilities: bus_master cap_list"
BBBP,423,lshw," configuration: driver=intel_pch_thermal latency=0"
BBBP,424,lshw," resources: irq:18 memory:e123b000-e123bfff"
BBBP,425,lshw," *-input:0"
BBBP,426,lshw," product: Lid Switch"
BBBP,427,lshw," physical id: 1"
BBBP,428,lshw," logical name: input0"
BBBP,429,lshw," logical name: /dev/input/event0"
BBBP,430,lshw," capabilities: platform"
BBBP,431,lshw," *-input:1"
BBBP,432,lshw," product: Sleep Button"
BBBP,433,lshw," physical id: 2"
BBBP,434,lshw," logical name: input1"
BBBP,435,lshw," logical name: /dev/input/event1"
BBBP,436,lshw," capabilities: platform"
BBBP,437,lshw," *-input:2"
BBBP,438,lshw," product: Video Bus"
BBBP,439,lshw," physical id: 3"
BBBP,440,lshw," logical name: input12"
BBBP,441,lshw," logical name: /dev/input/event11"
BBBP,442,lshw," capabilities: platform"
BBBP,443,lshw," *-input:3"
BBBP,444,lshw," product: Power Button"
BBBP,445,lshw," physical id: 4"
BBBP,446,lshw," logical name: input2"
BBBP,447,lshw," logical name: /dev/input/event2"
BBBP,448,lshw," capabilities: platform"
BBBP,449,lshw," *-input:4"
BBBP,450,lshw," product: AT Translated Set 2 keyboard"
BBBP,451,lshw," physical id: 5"
BBBP,452,lshw," logical name: input3"
BBBP,453,lshw," logical name: /dev/input/event3"
BBBP,454,lshw," logical name: input3::capslock"
BBBP,455,lshw," logical name: input3::numlock"
BBBP,456,lshw," logical name: input3::scrolllock"
BBBP,457,lshw," capabilities: i8042"
BBBP,458,lshw," *-input:5"
BBBP,459,lshw," product: SynPS/2 Synaptics TouchPad"
BBBP,460,lshw," physical id: 6"
BBBP,461,lshw," logical name: input5"
BBBP,462,lshw," logical name: /dev/input/event4"
BBBP,463,lshw," logical name: /dev/input/mouse0"
BBBP,464,lshw," capabilities: i8042"
BBBP,465,lshw," *-input:6"
BBBP,466,lshw," product: TPPS/2 IBM TrackPoint"
BBBP,467,lshw," physical id: 7"
BBBP,468,lshw," logical name: input6"
BBBP,469,lshw," logical name: /dev/input/event5"
BBBP,470,lshw," logical name: /dev/input/mouse1"
BBBP,471,lshw," capabilities: i8042"
BBBP,472,lshw," *-input:7"
BBBP,473,lshw," product: ThinkPad Extra Buttons"
BBBP,474,lshw," physical id: 8"
BBBP,475,lshw," logical name: input7"
BBBP,476,lshw," logical name: /dev/input/event6"
BBBP,477,lshw," capabilities: platform"
BBBP,478,/proc/cpuinfo
BBBP,479,/proc/cpuinfo,"processor : 0"
BBBP,480,/proc/cpuinfo,"vendor_id : GenuineIntel"
BBBP,481,/proc/cpuinfo,"cpu family : 6"
BBBP,482,/proc/cpuinfo,"model : 61"
BBBP,483,/proc/cpuinfo,"model name : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz"
BBBP,484,/proc/cpuinfo,"stepping : 4"
BBBP,485,/proc/cpuinfo,"microcode : 0x2f"
BBBP,486,/proc/cpuinfo,"cpu MHz : 2693.686"
BBBP,487,/proc/cpuinfo,"cache size : 3072 KB"
BBBP,488,/proc/cpuinfo,"physical id : 0"
BBBP,489,/proc/cpuinfo,"siblings : 4"
BBBP,490,/proc/cpuinfo,"core id : 0"
BBBP,491,/proc/cpuinfo,"cpu cores : 2"
BBBP,492,/proc/cpuinfo,"apicid : 0"
BBBP,493,/proc/cpuinfo,"initial apicid : 0"
BBBP,494,/proc/cpuinfo,"fpu : yes"
BBBP,495,/proc/cpuinfo,"fpu_exception : yes"
BBBP,496,/proc/cpuinfo,"cpuid level : 20"
BBBP,497,/proc/cpuinfo,"wp : yes"
BBBP,498,/proc/cpuinfo,"flags : fpu 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 lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx 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 pti ssbd ibrs ibpb stibp tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap intel_pt xsaveopt dtherm ida arat pln pts vnmi md_clear flush_l1d"
BBBP,499,/proc/cpuinfo,"vmx flags : vnmi preemption_timer invvpid ept_x_only ept_ad ept_1gb flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest ple shadow_vmcs ept_violation_ve"
BBBP,500,/proc/cpuinfo,"bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs taa itlb_multihit srbds mmio_unknown"
BBBP,501,/proc/cpuinfo,"bogomips : 4589.24"
BBBP,502,/proc/cpuinfo,"clflush size : 64"
BBBP,503,/proc/cpuinfo,"cache_alignment : 64"
BBBP,504,/proc/cpuinfo,"address sizes : 39 bits physical, 48 bits virtual"
BBBP,505,/proc/cpuinfo,"power management:"
BBBP,506,/proc/cpuinfo,""
BBBP,507,/proc/cpuinfo,"processor : 1"
BBBP,508,/proc/cpuinfo,"vendor_id : GenuineIntel"
BBBP,509,/proc/cpuinfo,"cpu family : 6"
BBBP,510,/proc/cpuinfo,"model : 61"
BBBP,511,/proc/cpuinfo,"model name : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz"
BBBP,512,/proc/cpuinfo,"stepping : 4"
BBBP,513,/proc/cpuinfo,"microcode : 0x2f"
BBBP,514,/proc/cpuinfo,"cpu MHz : 2693.699"
BBBP,515,/proc/cpuinfo,"cache size : 3072 KB"
BBBP,516,/proc/cpuinfo,"physical id : 0"
BBBP,517,/proc/cpuinfo,"siblings : 4"
BBBP,518,/proc/cpuinfo,"core id : 0"
BBBP,519,/proc/cpuinfo,"cpu cores : 2"
BBBP,520,/proc/cpuinfo,"apicid : 1"
BBBP,521,/proc/cpuinfo,"initial apicid : 1"
BBBP,522,/proc/cpuinfo,"fpu : yes"
BBBP,523,/proc/cpuinfo,"fpu_exception : yes"
BBBP,524,/proc/cpuinfo,"cpuid level : 20"
BBBP,525,/proc/cpuinfo,"wp : yes"
BBBP,526,/proc/cpuinfo,"flags : fpu 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 lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx 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 pti ssbd ibrs ibpb stibp tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap intel_pt xsaveopt dtherm ida arat pln pts vnmi md_clear flush_l1d"
BBBP,527,/proc/cpuinfo,"vmx flags : vnmi preemption_timer invvpid ept_x_only ept_ad ept_1gb flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest ple shadow_vmcs ept_violation_ve"
BBBP,528,/proc/cpuinfo,"bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs taa itlb_multihit srbds mmio_unknown"
BBBP,529,/proc/cpuinfo,"bogomips : 4589.24"
BBBP,530,/proc/cpuinfo,"clflush size : 64"
BBBP,531,/proc/cpuinfo,"cache_alignment : 64"
BBBP,532,/proc/cpuinfo,"address sizes : 39 bits physical, 48 bits virtual"
BBBP,533,/proc/cpuinfo,"power management:"
BBBP,534,/proc/cpuinfo,""
BBBP,535,/proc/cpuinfo,"processor : 2"
BBBP,536,/proc/cpuinfo,"vendor_id : GenuineIntel"
BBBP,537,/proc/cpuinfo,"cpu family : 6"
BBBP,538,/proc/cpuinfo,"model : 61"
BBBP,539,/proc/cpuinfo,"model name : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz"
BBBP,540,/proc/cpuinfo,"stepping : 4"
BBBP,541,/proc/cpuinfo,"microcode : 0x2f"
BBBP,542,/proc/cpuinfo,"cpu MHz : 2693.687"
BBBP,543,/proc/cpuinfo,"cache size : 3072 KB"
BBBP,544,/proc/cpuinfo,"physical id : 0"
BBBP,545,/proc/cpuinfo,"siblings : 4"
BBBP,546,/proc/cpuinfo,"core id : 1"
BBBP,547,/proc/cpuinfo,"cpu cores : 2"
BBBP,548,/proc/cpuinfo,"apicid : 2"
BBBP,549,/proc/cpuinfo,"initial apicid : 2"
BBBP,550,/proc/cpuinfo,"fpu : yes"
BBBP,551,/proc/cpuinfo,"fpu_exception : yes"
BBBP,552,/proc/cpuinfo,"cpuid level : 20"
BBBP,553,/proc/cpuinfo,"wp : yes"
BBBP,554,/proc/cpuinfo,"flags : fpu 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 lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx 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 pti ssbd ibrs ibpb stibp tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap intel_pt xsaveopt dtherm ida arat pln pts vnmi md_clear flush_l1d"
BBBP,555,/proc/cpuinfo,"vmx flags : vnmi preemption_timer invvpid ept_x_only ept_ad ept_1gb flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest ple shadow_vmcs ept_violation_ve"
BBBP,556,/proc/cpuinfo,"bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs taa itlb_multihit srbds mmio_unknown"
BBBP,557,/proc/cpuinfo,"bogomips : 4589.24"
BBBP,558,/proc/cpuinfo,"clflush size : 64"
BBBP,559,/proc/cpuinfo,"cache_alignment : 64"
BBBP,560,/proc/cpuinfo,"address sizes : 39 bits physical, 48 bits virtual"
BBBP,561,/proc/cpuinfo,"power management:"
BBBP,562,/proc/cpuinfo,""
BBBP,563,/proc/cpuinfo,"processor : 3"
BBBP,564,/proc/cpuinfo,"vendor_id : GenuineIntel"
BBBP,565,/proc/cpuinfo,"cpu family : 6"
BBBP,566,/proc/cpuinfo,"model : 61"
BBBP,567,/proc/cpuinfo,"model name : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz"
BBBP,568,/proc/cpuinfo,"stepping : 4"
BBBP,569,/proc/cpuinfo,"microcode : 0x2f"
BBBP,570,/proc/cpuinfo,"cpu MHz : 2693.661"
BBBP,571,/proc/cpuinfo,"cache size : 3072 KB"
BBBP,572,/proc/cpuinfo,"physical id : 0"
BBBP,573,/proc/cpuinfo,"siblings : 4"
BBBP,574,/proc/cpuinfo,"core id : 1"
BBBP,575,/proc/cpuinfo,"cpu cores : 2"
BBBP,576,/proc/cpuinfo,"apicid : 3"
BBBP,577,/proc/cpuinfo,"initial apicid : 3"
BBBP,578,/proc/cpuinfo,"fpu : yes"
BBBP,579,/proc/cpuinfo,"fpu_exception : yes"
BBBP,580,/proc/cpuinfo,"cpuid level : 20"
BBBP,581,/proc/cpuinfo,"wp : yes"
BBBP,582,/proc/cpuinfo,"flags : fpu 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 lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx 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 pti ssbd ibrs ibpb stibp tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap intel_pt xsaveopt dtherm ida arat pln pts vnmi md_clear flush_l1d"
BBBP,583,/proc/cpuinfo,"vmx flags : vnmi preemption_timer invvpid ept_x_only ept_ad ept_1gb flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest ple shadow_vmcs ept_violation_ve"
BBBP,584,/proc/cpuinfo,"bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs taa itlb_multihit srbds mmio_unknown"
BBBP,585,/proc/cpuinfo,"bogomips : 4589.24"
BBBP,586,/proc/cpuinfo,"clflush size : 64"
BBBP,587,/proc/cpuinfo,"cache_alignment : 64"
BBBP,588,/proc/cpuinfo,"address sizes : 39 bits physical, 48 bits virtual"
BBBP,589,/proc/cpuinfo,"power management:"
BBBP,590,/proc/cpuinfo,""
BBBP,591,/proc/meminfo
BBBP,592,/proc/meminfo,"MemTotal: 16070788 kB"
BBBP,593,/proc/meminfo,"MemFree: 2603324 kB"
BBBP,594,/proc/meminfo,"MemAvailable: 9805188 kB"
BBBP,595,/proc/meminfo,"Buffers: 322672 kB"
BBBP,596,/proc/meminfo,"Cached: 7859748 kB"
BBBP,597,/proc/meminfo,"SwapCached: 5928 kB"
BBBP,598,/proc/meminfo,"Active: 5373240 kB"
BBBP,599,/proc/meminfo,"Inactive: 5494008 kB"
BBBP,600,/proc/meminfo,"Active(anon): 3443524 kB"
BBBP,601,/proc/meminfo,"Inactive(anon): 594456 kB"
BBBP,602,/proc/meminfo,"Active(file): 1929716 kB"
BBBP,603,/proc/meminfo,"Inactive(file): 4899552 kB"
BBBP,604,/proc/meminfo,"Unevictable: 904440 kB"
BBBP,605,/proc/meminfo,"Mlocked: 624 kB"
BBBP,606,/proc/meminfo,"SwapTotal: 10132540 kB"
BBBP,607,/proc/meminfo,"SwapFree: 9020400 kB"
BBBP,608,/proc/meminfo,"Zswap: 0 kB"
BBBP,609,/proc/meminfo,"Zswapped: 0 kB"
BBBP,610,/proc/meminfo,"Dirty: 16592 kB"
BBBP,611,/proc/meminfo,"Writeback: 0 kB"
BBBP,612,/proc/meminfo,"AnonPages: 3585848 kB"
BBBP,613,/proc/meminfo,"Mapped: 1265108 kB"
BBBP,614,/proc/meminfo,"Shmem: 1352956 kB"
BBBP,615,/proc/meminfo,"KReclaimable: 759352 kB"
BBBP,616,/proc/meminfo,"Slab: 1103588 kB"
BBBP,617,/proc/meminfo,"SReclaimable: 759352 kB"
BBBP,618,/proc/meminfo,"SUnreclaim: 344236 kB"
BBBP,619,/proc/meminfo,"KernelStack: 25340 kB"
BBBP,620,/proc/meminfo,"PageTables: 76296 kB"
BBBP,621,/proc/meminfo,"SecPageTables: 2776 kB"
BBBP,622,/proc/meminfo,"NFS_Unstable: 0 kB"
BBBP,623,/proc/meminfo,"Bounce: 0 kB"
BBBP,624,/proc/meminfo,"WritebackTmp: 0 kB"
BBBP,625,/proc/meminfo,"CommitLimit: 18167932 kB"
BBBP,626,/proc/meminfo,"Committed_AS: 19460444 kB"
BBBP,627,/proc/meminfo,"VmallocTotal: 34359738367 kB"
BBBP,628,/proc/meminfo,"VmallocUsed: 111572 kB"
BBBP,629,/proc/meminfo,"VmallocChunk: 0 kB"
BBBP,630,/proc/meminfo,"Percpu: 4864 kB"
BBBP,631,/proc/meminfo,"HardwareCorrupted: 0 kB"
BBBP,632,/proc/meminfo,"AnonHugePages: 0 kB"
BBBP,633,/proc/meminfo,"ShmemHugePages: 0 kB"
BBBP,634,/proc/meminfo,"ShmemPmdMapped: 0 kB"
BBBP,635,/proc/meminfo,"FileHugePages: 0 kB"
BBBP,636,/proc/meminfo,"FilePmdMapped: 0 kB"
BBBP,637,/proc/meminfo,"Unaccepted: 0 kB"
BBBP,638,/proc/meminfo,"HugePages_Total: 0"
BBBP,639,/proc/meminfo,"HugePages_Free: 0"
BBBP,640,/proc/meminfo,"HugePages_Rsvd: 0"
BBBP,641,/proc/meminfo,"HugePages_Surp: 0"
BBBP,642,/proc/meminfo,"Hugepagesize: 2048 kB"
BBBP,643,/proc/meminfo,"Hugetlb: 0 kB"
BBBP,644,/proc/meminfo,"DirectMap4k: 371364 kB"
BBBP,645,/proc/meminfo,"DirectMap2M: 13998080 kB"
BBBP,646,/proc/meminfo,"DirectMap1G: 2097152 kB"
BBBP,647,/proc/stat
BBBP,648,/proc/stat,"cpu 35029245 131041 7207938 35179681 953503 0 415404 0 0 0"
BBBP,649,/proc/stat,"cpu0 8651319 43133 1835223 8728712 245109 0 201100 0 0 0"
BBBP,650,/proc/stat,"cpu1 8886537 39812 1755040 8808365 195123 0 44109 0 0 0"
BBBP,651,/proc/stat,"cpu2 8848776 24189 1816837 8774328 275602 0 13831 0 0 0"
BBBP,652,/proc/stat,"cpu3 8642611 23907 1800837 8868274 237668 0 156362 0 0 0"
BBBP,653,/proc/stat,"intr 1942064755 91 19277 0 0 0 0 0 0 0 320802 0 0 6491534 0 0 0 0 0 10 0 0 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 698 0 0 0 0 2433125 8 47 117 55475334 99 149748483 53079 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,654,/proc/stat,"ctxt 3760073800"
BBBP,655,/proc/stat,"btime 1732773207"
BBBP,656,/proc/stat,"processes 2401365"
BBBP,657,/proc/stat,"procs_running 8"
BBBP,658,/proc/stat,"procs_blocked 0"
BBBP,659,/proc/stat,"softirq 727684366 168090778 107482191 400 55118725 2274933 3 5482885 318670735 907 70562809"
BBBP,660,/proc/version
BBBP,661,/proc/version,"Linux version 6.10.6-061006-generic (kernel@kathleen) (x86_64-linux-gnu-gcc-14 (Ubuntu 14.1.0-5ubuntu1) 14.1.0, GNU ld (GNU Binutils for Ubuntu) 2.42.90.20240720) #202408190440 SMP PREEMPT_DYNAMIC Mon Aug 19 04:53:21 UTC 2024"
BBBP,662,/proc/net/dev
BBBP,663,/proc/net/dev,"Inter-| Receive | Transmit"
BBBP,664,/proc/net/dev," face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed"
BBBP,665,/proc/net/dev," lo: 46547208 202897 0 0 0 0 0 0 46547208 202897 0 0 0 0 0 0"
BBBP,666,/proc/net/dev,"enp0s25: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,667,/proc/net/dev,"wlp3s0: 6874290510 42691658 0 719 0 0 0 0 160517513042 111412938 0 0 0 0 0 0"
BBBP,668,/proc/net/dev,"docker0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,669,/proc/diskinfo
BBBP,670,/proc/diskstats
BBBP,671,/proc/diskstats," 7 0 loop0 69 0 2250 358 0 0 0 0 0 174 358 0 0 0 0 0 0"
BBBP,672,/proc/diskstats," 7 1 loop1 55 0 2148 446 0 0 0 0 0 260 446 0 0 0 0 0 0"
BBBP,673,/proc/diskstats," 7 2 loop2 48 0 406 95 0 0 0 0 0 98 95 0 0 0 0 0 0"
BBBP,674,/proc/diskstats," 7 3 loop3 14 0 34 7 0 0 0 0 0 7 7 0 0 0 0 0 0"
BBBP,675,/proc/diskstats," 7 4 loop4 344 0 28436 658 0 0 0 0 0 666 658 0 0 0 0 0 0"
BBBP,676,/proc/diskstats," 7 5 loop5 43 0 692 108 0 0 0 0 0 108 108 0 0 0 0 0 0"
BBBP,677,/proc/diskstats," 7 6 loop6 64 0 2198 406 0 0 0 0 0 166 406 0 0 0 0 0 0"
BBBP,678,/proc/diskstats," 7 7 loop7 53 0 2168 308 0 0 0 0 0 216 308 0 0 0 0 0 0"
BBBP,679,/proc/diskstats," 8 0 sda 536773 159227 33578074 821483 1783720 1498702 90059490 1416047 0 573950 2403076 0 0 0 0 159963 165544"
BBBP,680,/proc/diskstats," 8 1 sda1 156 0 1248 914 0 0 0 0 0 908 914 0 0 0 0 0 0"
BBBP,681,/proc/diskstats," 8 2 sda2 161 23 11416 212 2 0 2 0 0 109 213 0 0 0 0 0 0"
BBBP,682,/proc/diskstats," 8 3 sda3 536363 159204 33561914 820154 1783718 1498702 90059488 1416047 1 798303 2236202 0 0 0 0 0 0"
BBBP,683,/proc/diskstats," 7 8 loop8 43 0 696 368 0 0 0 0 0 371 368 0 0 0 0 0 0"
BBBP,684,/proc/diskstats," 7 10 loop10 218 0 4436 212 0 0 0 0 0 211 212 0 0 0 0 0 0"
BBBP,685,/proc/diskstats," 7 9 loop9 79 0 2290 602 0 0 0 0 0 432 602 0 0 0 0 0 0"
BBBP,686,/proc/diskstats," 7 11 loop11 45 0 702 82 0 0 0 0 0 81 82 0 0 0 0 0 0"
BBBP,687,/proc/diskstats," 7 13 loop13 55 0 2176 41 0 0 0 0 0 38 41 0 0 0 0 0 0"
BBBP,688,/proc/diskstats," 7 12 loop12 258 0 5354 528 0 0 0 0 0 525 528 0 0 0 0 0 0"
BBBP,689,/proc/diskstats," 7 15 loop15 56 0 2164 144 0 0 0 0 0 86 144 0 0 0 0 0 0"
BBBP,690,/proc/diskstats," 7 14 loop14 803 0 20308 1760 0 0 0 0 0 1268 1760 0 0 0 0 0 0"
BBBP,691,/proc/diskstats," 7 16 loop16 64 0 2198 643 0 0 0 0 0 316 643 0 0 0 0 0 0"
BBBP,692,/proc/diskstats," 7 17 loop17 57 0 2130 873 0 0 0 0 0 287 873 0 0 0 0 0 0"
BBBP,693,/proc/diskstats," 7 18 loop18 214 0 7826 728 0 0 0 0 0 479 728 0 0 0 0 0 0"
BBBP,694,/proc/diskstats," 7 19 loop19 49 0 724 158 0 0 0 0 0 160 158 0 0 0 0 0 0"
BBBP,695,/proc/diskstats," 7 20 loop20 67 0 2326 1482 0 0 0 0 0 539 1482 0 0 0 0 0 0"
BBBP,696,/proc/diskstats," 7 21 loop21 53 0 2164 582 0 0 0 0 0 486 582 0 0 0 0 0 0"
BBBP,697,/proc/diskstats," 7 22 loop22 66 0 2172 1126 0 0 0 0 0 424 1126 0 0 0 0 0 0"
BBBP,698,/proc/diskstats," 7 23 loop23 61 0 2202 722 0 0 0 0 0 494 722 0 0 0 0 0 0"
BBBP,699,/proc/diskstats," 7 24 loop24 63 0 2182 1414 0 0 0 0 0 526 1414 0 0 0 0 0 0"
BBBP,700,/proc/diskstats," 7 25 loop25 133 0 3906 899 0 0 0 0 0 475 899 0 0 0 0 0 0"
BBBP,701,/proc/diskstats," 7 26 loop26 63 0 2188 1372 0 0 0 0 0 658 1372 0 0 0 0 0 0"
BBBP,702,/proc/diskstats," 7 27 loop27 55 0 2146 1014 0 0 0 0 0 586 1014 0 0 0 0 0 0"
BBBP,703,/proc/diskstats," 7 28 loop28 65 0 2170 1706 0 0 0 0 0 521 1706 0 0 0 0 0 0"
BBBP,704,/proc/diskstats," 7 29 loop29 188 0 2762 1240 0 0 0 0 0 688 1240 0 0 0 0 0 0"
BBBP,705,/proc/diskstats," 7 30 loop30 43 0 268 325 0 0 0 0 0 327 325 0 0 0 0 0 0"
BBBP,706,/proc/diskstats," 7 31 loop31 55 0 2146 1433 0 0 0 0 0 549 1433 0 0 0 0 0 0"
BBBP,707,/proc/diskstats," 7 32 loop32 61 0 2152 1326 0 0 0 0 0 661 1326 0 0 0 0 0 0"
BBBP,708,/proc/diskstats," 7 33 loop33 61 0 2210 668 0 0 0 0 0 637 668 0 0 0 0 0 0"
BBBP,709,/proc/diskstats," 7 34 loop34 52 0 2170 929 0 0 0 0 0 664 929 0 0 0 0 0 0"
BBBP,710,/proc/diskstats," 7 35 loop35 49 0 322 335 0 0 0 0 0 336 335 0 0 0 0 0 0"
BBBP,711,/proc/diskstats," 7 36 loop36 43 0 694 381 0 0 0 0 0 383 381 0 0 0 0 0 0"
BBBP,712,/proc/diskstats," 7 37 loop37 1207 0 81336 1048 0 0 0 0 0 1051 1048 0 0 0 0 0 0"
BBBP,713,/proc/diskstats," 7 38 loop38 67 0 2166 1012 0 0 0 0 0 656 1012 0 0 0 0 0 0"
BBBP,714,/proc/diskstats," 7 39 loop39 61 0 1014 490 0 0 0 0 0 495 490 0 0 0 0 0 0"
BBBP,715,/proc/diskstats," 7 40 loop40 140 0 7422 970 0 0 0 0 0 669 970 0 0 0 0 0 0"
BBBP,716,/proc/diskstats," 7 41 loop41 61 0 2160 1057 0 0 0 0 0 656 1057 0 0 0 0 0 0"
BBBP,717,/proc/diskstats," 7 42 loop42 52 0 2180 771 0 0 0 0 0 600 771 0 0 0 0 0 0"
BBBP,718,/proc/diskstats," 7 43 loop43 64 0 2224 759 0 0 0 0 0 542 759 0 0 0 0 0 0"
BBBP,719,/proc/diskstats," 7 44 loop44 56 0 2184 666 0 0 0 0 0 530 666 0 0 0 0 0 0"
BBBP,720,/proc/diskstats," 7 45 loop45 64 0 2168 447 0 0 0 0 0 442 447 0 0 0 0 0 0"
BBBP,721,/proc/diskstats," 7 46 loop46 53 0 2174 600 0 0 0 0 0 474 600 0 0 0 0 0 0"
BBBP,722,/proc/diskstats," 7 47 loop47 62 0 2206 466 0 0 0 0 0 436 466 0 0 0 0 0 0"
BBBP,723,/proc/diskstats," 251 0 zram0 78983 0 633848 395 399609 0 3196872 4539 0 4924 4934 0 0 0 0 0 0"
BBBP,724,/proc/diskstats," 7 48 loop48 50 0 142 5 0 0 0 0 0 4 5 0 0 0 0 0 0"
BBBP,725,/proc/diskstats," 7 49 loop49 23 0 64 3 0 0 0 0 0 2 3 0 0 0 0 0 0"
BBBP,726,/sbin/multipath
BBBP,727,/dev/mapper
BBBP,728,/dev/mapper,"total 0"
BBBP,729,/dev/mapper,"crw------- 1 root root 10, 236 nov. 28 06:56 control"
BBBP,730,/dev/mpath
BBBP,731,/dev/dm-*
BBBP,732,/dev/md*
BBBP,733,/dev/sd*
BBBP,734,/dev/sd*,"brw-rw---- 1 root disk 8, 0 nov. 28 06:56 /dev/sda"
BBBP,735,/dev/sd*,"brw-rw---- 1 root disk 8, 1 nov. 28 06:56 /dev/sda1"
BBBP,736,/dev/sd*,"brw-rw---- 1 root disk 8, 2 nov. 28 06:56 /dev/sda2"
BBBP,737,/dev/sd*,"brw-rw---- 1 root disk 8, 3 nov. 28 06:56 /dev/sda3"
BBBP,738,/proc/partitions
BBBP,739,/proc/partitions,"major minor #blocks name"
BBBP,740,/proc/partitions,""
BBBP,741,/proc/partitions," 7 0 1280944 loop0"
BBBP,742,/proc/partitions," 7 1 1281376 loop1"
BBBP,743,/proc/partitions," 7 2 3648 loop2"
BBBP,744,/proc/partitions," 7 3 4 loop3"
BBBP,745,/proc/partitions," 7 4 10988 loop4"
BBBP,746,/proc/partitions," 7 5 10324 loop5"
BBBP,747,/proc/partitions," 7 6 314964 loop6"
BBBP,748,/proc/partitions," 7 7 106488 loop7"
BBBP,749,/proc/partitions," 8 0 500107608 sda"
BBBP,750,/proc/partitions," 8 1 1024 sda1"
BBBP,751,/proc/partitions," 8 2 525312 sda2"
BBBP,752,/proc/partitions," 8 3 499579904 sda3"
BBBP,753,/proc/partitions," 7 8 56996 loop8"
BBBP,754,/proc/partitions," 7 10 56692 loop10"
BBBP,755,/proc/partitions," 7 9 106692 loop9"
BBBP,756,/proc/partitions," 7 11 65508 loop11"
BBBP,757,/proc/partitions," 7 13 76028 loop13"
BBBP,758,/proc/partitions," 7 12 65224 loop12"
BBBP,759,/proc/partitions," 7 15 67756 loop15"
BBBP,760,/proc/partitions," 7 14 75648 loop14"
BBBP,761,/proc/partitions," 7 16 67756 loop16"
BBBP,762,/proc/partitions," 7 17 69384 loop17"
BBBP,763,/proc/partitions," 7 18 69388 loop18"
BBBP,764,/proc/partitions," 7 19 63648 loop19"
BBBP,765,/proc/partitions," 7 20 275784 loop20"
BBBP,766,/proc/partitions," 7 21 215796 loop21"
BBBP,767,/proc/partitions," 7 22 211248 loop22"
BBBP,768,/proc/partitions," 7 23 197608 loop23"
BBBP,769,/proc/partitions," 7 24 168780 loop24"
BBBP,770,/proc/partitions," 7 25 358088 loop25"
BBBP,771,/proc/partitions," 7 26 517212 loop26"
BBBP,772,/proc/partitions," 7 27 412020 loop27"
BBBP,773,/proc/partitions," 7 28 416012 loop28"
BBBP,774,/proc/partitions," 7 29 93888 loop29"
BBBP,775,/proc/partitions," 7 30 4796 loop30"
BBBP,776,/proc/partitions," 7 31 95812 loop31"
BBBP,777,/proc/partitions," 7 32 95804 loop32"
BBBP,778,/proc/partitions," 7 33 216564 loop33"
BBBP,779,/proc/partitions," 7 34 230360 loop34"
BBBP,780,/proc/partitions," 7 35 7564 loop35"
BBBP,781,/proc/partitions," 7 36 39772 loop36"
BBBP,782,/proc/partitions," 7 37 40040 loop37"
BBBP,783,/proc/partitions," 7 38 504332 loop38"
BBBP,784,/proc/partitions," 7 39 39760 loop39"
BBBP,785,/proc/partitions," 7 40 45360 loop40"
BBBP,786,/proc/partitions," 7 41 188940 loop41"
BBBP,787,/proc/partitions," 7 42 205768 loop42"
BBBP,788,/proc/partitions," 7 43 220060 loop43"
BBBP,789,/proc/partitions," 7 45 98080 loop45"
BBBP,790,/proc/partitions," 7 46 93408 loop46"
BBBP,791,/proc/partitions," 7 47 93412 loop47"
BBBP,792,/proc/partitions," 251 0 8035396 zram0"
BBBP,793,/proc/partitions," 7 48 189220 loop48"
BBBP,794,/proc/partitions," 7 49 102056 loop49"
BBBP,795,/proc/1/stat
BBBP,796,/proc/1/stat,"1 (systemd) S 0 1 1 0 -1 4194560 320970 8324773 130 8447 2700 1208 75072 16632 20 0 1 0 43 24768512 3494 18446744073709551615 1 1 0 0 0 0 671173123 4096 1260 0 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,797,/proc/net/rpc/nfs
BBBP,798,/proc/net/rpc/nfsd
BBBP,799,/proc/modules
BBBP,800,/proc/modules,"nft_chain_nat 12288 3 - Live 0x0000000000000000"
BBBP,801,/proc/modules,"xt_MASQUERADE 16384 1 - Live 0x0000000000000000"
BBBP,802,/proc/modules,"nf_nat 61440 2 nft_chain_nat,xt_MASQUERADE, Live 0x0000000000000000"
BBBP,803,/proc/modules,"nf_conntrack_netlink 57344 0 - Live 0x0000000000000000"
BBBP,804,/proc/modules,"xfrm_user 65536 1 - Live 0x0000000000000000"
BBBP,805,/proc/modules,"xfrm_algo 16384 1 xfrm_user, Live 0x0000000000000000"
BBBP,806,/proc/modules,"br_netfilter 32768 0 - Live 0x0000000000000000"
BBBP,807,/proc/modules,"bridge 425984 1 br_netfilter, Live 0x0000000000000000"
BBBP,808,/proc/modules,"stp 12288 1 bridge, Live 0x0000000000000000"
BBBP,809,/proc/modules,"llc 16384 2 bridge,stp, Live 0x0000000000000000"
BBBP,810,/proc/modules,"tls 155648 0 - Live 0x0000000000000000"
BBBP,811,/proc/modules,"rfcomm 102400 0 - Live 0x0000000000000000"
BBBP,812,/proc/modules,"snd_seq_dummy 12288 2 - Live 0x0000000000000000"
BBBP,813,/proc/modules,"snd_hrtimer 12288 1 - Live 0x0000000000000000"
BBBP,814,/proc/modules,"snd_seq_midi 24576 0 - Live 0x0000000000000000"
BBBP,815,/proc/modules,"snd_seq_midi_event 16384 1 snd_seq_midi, Live 0x0000000000000000"
BBBP,816,/proc/modules,"snd_rawmidi 57344 1 snd_seq_midi, Live 0x0000000000000000"
BBBP,817,/proc/modules,"snd_seq 122880 15 snd_seq_dummy,snd_seq_midi,snd_seq_midi_event, Live 0x0000000000000000"
BBBP,818,/proc/modules,"snd_seq_device 16384 3 snd_seq_midi,snd_rawmidi,snd_seq, Live 0x0000000000000000"
BBBP,819,/proc/modules,"ccm 20480 9 - Live 0x0000000000000000"
BBBP,820,/proc/modules,"overlay 217088 0 - Live 0x0000000000000000"
BBBP,821,/proc/modules,"cmac 12288 0 - Live 0x0000000000000000"
BBBP,822,/proc/modules,"algif_hash 16384 0 - Live 0x0000000000000000"
BBBP,823,/proc/modules,"algif_skcipher 16384 0 - Live 0x0000000000000000"
BBBP,824,/proc/modules,"af_alg 32768 2 algif_hash,algif_skcipher, Live 0x0000000000000000"
BBBP,825,/proc/modules,"bnep 32768 2 - Live 0x0000000000000000"
BBBP,826,/proc/modules,"zram 36864 1 - Live 0x0000000000000000"
BBBP,827,/proc/modules,"btusb 77824 0 - Live 0x0000000000000000"
BBBP,828,/proc/modules,"btrtl 36864 1 btusb, Live 0x0000000000000000"
BBBP,829,/proc/modules,"btintel 65536 1 btusb, Live 0x0000000000000000"
BBBP,830,/proc/modules,"btbcm 24576 1 btusb, Live 0x0000000000000000"
BBBP,831,/proc/modules,"btmtk 12288 1 btusb, Live 0x0000000000000000"
BBBP,832,/proc/modules,"snd_hda_codec_hdmi 98304 1 - Live 0x0000000000000000"
BBBP,833,/proc/modules,"bluetooth 1032192 17 rfcomm,bnep,btusb,btrtl,btintel,btbcm,btmtk, Live 0x0000000000000000"
BBBP,834,/proc/modules,"ip6t_REJECT 12288 1 - Live 0x0000000000000000"
BBBP,835,/proc/modules,"nf_reject_ipv6 24576 1 ip6t_REJECT, Live 0x0000000000000000"
BBBP,836,/proc/modules,"xt_hl 12288 22 - Live 0x0000000000000000"
BBBP,837,/proc/modules,"ip6t_rt 16384 3 - Live 0x0000000000000000"
BBBP,838,/proc/modules,"ipt_REJECT 12288 1 - Live 0x0000000000000000"
BBBP,839,/proc/modules,"nf_reject_ipv4 12288 1 ipt_REJECT, Live 0x0000000000000000"
BBBP,840,/proc/modules,"xt_LOG 16384 10 - Live 0x0000000000000000"
BBBP,841,/proc/modules,"nf_log_syslog 20480 10 - Live 0x0000000000000000"
BBBP,842,/proc/modules,"nft_limit 16384 13 - Live 0x0000000000000000"
BBBP,843,/proc/modules,"xt_limit 12288 0 - Live 0x0000000000000000"
BBBP,844,/proc/modules,"xt_addrtype 12288 6 - Live 0x0000000000000000"
BBBP,845,/proc/modules,"xt_tcpudp 16384 60 - Live 0x0000000000000000"
BBBP,846,/proc/modules,"xt_conntrack 12288 17 - Live 0x0000000000000000"
BBBP,847,/proc/modules,"nf_conntrack 200704 4 xt_MASQUERADE,nf_nat,nf_conntrack_netlink,xt_conntrack, Live 0x0000000000000000"
BBBP,848,/proc/modules,"nf_defrag_ipv6 24576 1 nf_conntrack, Live 0x0000000000000000"
BBBP,849,/proc/modules,"nf_defrag_ipv4 12288 1 nf_conntrack, Live 0x0000000000000000"
BBBP,850,/proc/modules,"nft_compat 20480 121 - Live 0x0000000000000000"
BBBP,851,/proc/modules,"nf_tables 380928 686 nft_chain_nat,nft_limit,nft_compat, Live 0x0000000000000000"
BBBP,852,/proc/modules,"libcrc32c 12288 3 nf_nat,nf_conntrack,nf_tables, Live 0x0000000000000000"
BBBP,853,/proc/modules,"binfmt_misc 24576 1 - Live 0x0000000000000000"
BBBP,854,/proc/modules,"intel_rapl_msr 20480 0 - Live 0x0000000000000000"
BBBP,855,/proc/modules,"intel_rapl_common 53248 1 intel_rapl_msr, Live 0x0000000000000000"
BBBP,856,/proc/modules,"x86_pkg_temp_thermal 20480 0 - Live 0x0000000000000000"
BBBP,857,/proc/modules,"nls_iso8859_1 12288 1 - Live 0x0000000000000000"
BBBP,858,/proc/modules,"intel_powerclamp 24576 0 - Live 0x0000000000000000"
BBBP,859,/proc/modules,"coretemp 24576 0 - Live 0x0000000000000000"
BBBP,860,/proc/modules,"spi_nor 167936 0 - Live 0x0000000000000000"
BBBP,861,/proc/modules,"kvm_intel 487424 0 - Live 0x0000000000000000"
BBBP,862,/proc/modules,"mtd 102400 1 spi_nor, Live 0x0000000000000000"
BBBP,863,/proc/modules,"iwlmvm 913408 0 - Live 0x0000000000000000"
BBBP,864,/proc/modules,"at24 28672 0 - Live 0x0000000000000000"
BBBP,865,/proc/modules,"i915 4505600 233 - Live 0x0000000000000000"
BBBP,866,/proc/modules,"kvm 1417216 1 kvm_intel, Live 0x0000000000000000"
BBBP,867,/proc/modules,"snd_hda_codec_realtek 200704 1 - Live 0x0000000000000000"
BBBP,868,/proc/modules,"mac80211 1748992 1 iwlmvm, Live 0x0000000000000000"
BBBP,869,/proc/modules,"snd_hda_codec_generic 122880 1 snd_hda_codec_realtek, Live 0x0000000000000000"
BBBP,870,/proc/modules,"mei_hdcp 28672 0 - Live 0x0000000000000000"
BBBP,871,/proc/modules,"snd_hda_scodec_component 20480 1 snd_hda_codec_realtek, Live 0x0000000000000000"
BBBP,872,/proc/modules,"mei_pxp 16384 0 - Live 0x0000000000000000"
BBBP,873,/proc/modules,"spi_intel_platform 12288 0 - Live 0x0000000000000000"
BBBP,874,/proc/modules,"spi_intel 32768 1 spi_intel_platform, Live 0x0000000000000000"
BBBP,875,/proc/modules,"libarc4 12288 1 mac80211, Live 0x0000000000000000"
BBBP,876,/proc/modules,"crct10dif_pclmul 12288 1 - Live 0x0000000000000000"
BBBP,877,/proc/modules,"polyval_clmulni 12288 0 - Live 0x0000000000000000"
BBBP,878,/proc/modules,"snd_hda_intel 61440 7 - Live 0x0000000000000000"
BBBP,879,/proc/modules,"polyval_generic 12288 1 polyval_clmulni, Live 0x0000000000000000"
BBBP,880,/proc/modules,"ghash_clmulni_intel 16384 0 - Live 0x0000000000000000"
BBBP,881,/proc/modules,"snd_intel_dspcfg 45056 1 snd_hda_intel, Live 0x0000000000000000"
BBBP,882,/proc/modules,"sha256_ssse3 32768 0 - Live 0x0000000000000000"
BBBP,883,/proc/modules,"drm_buddy 24576 1 i915, Live 0x0000000000000000"
BBBP,884,/proc/modules,"sha1_ssse3 32768 0 - Live 0x0000000000000000"
BBBP,885,/proc/modules,"snd_intel_sdw_acpi 16384 1 snd_intel_dspcfg, Live 0x0000000000000000"
BBBP,886,/proc/modules,"aesni_intel 356352 6 - Live 0x0000000000000000"
BBBP,887,/proc/modules,"ttm 110592 1 i915, Live 0x0000000000000000"
BBBP,888,/proc/modules,"snd_hda_codec 208896 4 snd_hda_codec_hdmi,snd_hda_codec_realtek,snd_hda_codec_generic,snd_hda_intel, Live 0x0000000000000000"
BBBP,889,/proc/modules,"iwlwifi 622592 1 iwlmvm, Live 0x0000000000000000"
BBBP,890,/proc/modules,"crypto_simd 16384 1 aesni_intel, Live 0x0000000000000000"
BBBP,891,/proc/modules,"drm_display_helper 274432 1 i915, Live 0x0000000000000000"
BBBP,892,/proc/modules,"snd_hda_core 143360 5 snd_hda_codec_hdmi,snd_hda_codec_realtek,snd_hda_codec_generic,snd_hda_intel,snd_hda_codec, Live 0x0000000000000000"
BBBP,893,/proc/modules,"cryptd 24576 2 ghash_clmulni_intel,crypto_simd, Live 0x0000000000000000"
BBBP,894,/proc/modules,"rapl 20480 0 - Live 0x0000000000000000"
BBBP,895,/proc/modules,"snd_hwdep 20480 1 snd_hda_codec, Live 0x0000000000000000"
BBBP,896,/proc/modules,"cec 94208 2 i915,drm_display_helper, Live 0x0000000000000000"
BBBP,897,/proc/modules,"intel_cstate 24576 0 - Live 0x0000000000000000"
BBBP,898,/proc/modules,"snd_ctl_led 24576 0 - Live 0x0000000000000000"
BBBP,899,/proc/modules,"snd_pcm 196608 7 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_core, Live 0x0000000000000000"
BBBP,900,/proc/modules,"i2c_i801 36864 0 - Live 0x0000000000000000"
BBBP,901,/proc/modules,"rc_core 73728 1 cec, Live 0x0000000000000000"
BBBP,902,/proc/modules,"cfg80211 1347584 3 iwlmvm,mac80211,iwlwifi, Live 0x0000000000000000"
BBBP,903,/proc/modules,"think_lmi 45056 0 - Live 0x0000000000000000"
BBBP,904,/proc/modules,"intel_pch_thermal 20480 0 - Live 0x0000000000000000"
BBBP,905,/proc/modules,"mei_me 53248 2 - Live 0x0000000000000000"
BBBP,906,/proc/modules,"i2c_mux 16384 1 i2c_i801, Live 0x0000000000000000"
BBBP,907,/proc/modules,"firmware_attributes_class 12288 1 think_lmi, Live 0x0000000000000000"
BBBP,908,/proc/modules,"i2c_algo_bit 16384 1 i915, Live 0x0000000000000000"
BBBP,909,/proc/modules,"wmi_bmof 12288 0 - Live 0x0000000000000000"
BBBP,910,/proc/modules,"i2c_smbus 16384 1 i2c_i801, Live 0x0000000000000000"
BBBP,911,/proc/modules,"thinkpad_acpi 163840 0 - Live 0x0000000000000000"
BBBP,912,/proc/modules,"snd_timer 53248 3 snd_hrtimer,snd_seq,snd_pcm, Live 0x0000000000000000"
BBBP,913,/proc/modules,"mei 176128 5 mei_hdcp,mei_pxp,mei_me, Live 0x0000000000000000"
BBBP,914,/proc/modules,"nvram 16384 1 thinkpad_acpi, Live 0x0000000000000000"
BBBP,915,/proc/modules,"lpc_ich 32768 0 - Live 0x0000000000000000"
BBBP,916,/proc/modules,"joydev 32768 0 - Live 0x0000000000000000"
BBBP,917,/proc/modules,"input_leds 12288 0 - Live 0x0000000000000000"
BBBP,918,/proc/modules,"mac_hid 12288 0 - Live 0x0000000000000000"
BBBP,919,/proc/modules,"serio_raw 20480 0 - Live 0x0000000000000000"
BBBP,920,/proc/modules,"sch_fq_codel 24576 2 - Live 0x0000000000000000"
BBBP,921,/proc/modules,"msr 12288 0 - Live 0x0000000000000000"
BBBP,922,/proc/modules,"parport_pc 53248 0 - Live 0x0000000000000000"
BBBP,923,/proc/modules,"ppdev 24576 0 - Live 0x0000000000000000"
BBBP,924,/proc/modules,"lp 28672 0 - Live 0x0000000000000000"
BBBP,925,/proc/modules,"parport 73728 3 parport_pc,ppdev,lp, Live 0x0000000000000000"
BBBP,926,/proc/modules,"efi_pstore 12288 0 - Live 0x0000000000000000"
BBBP,927,/proc/modules,"nfnetlink 20480 5 nf_conntrack_netlink,nft_compat,nf_tables, Live 0x0000000000000000"
BBBP,928,/proc/modules,"dmi_sysfs 24576 0 - Live 0x0000000000000000"
BBBP,929,/proc/modules,"ip_tables 36864 0 - Live 0x0000000000000000"
BBBP,930,/proc/modules,"x_tables 65536 12 xt_MASQUERADE,ip6t_REJECT,xt_hl,ip6t_rt,ipt_REJECT,xt_LOG,xt_limit,xt_addrtype,xt_tcpudp,xt_conntrack,nft_compat,ip_tables, Live 0x0000000000000000"
BBBP,931,/proc/modules,"autofs4 57344 2 - Live 0x0000000000000000"
BBBP,932,/proc/modules,"rtsx_pci_sdmmc 36864 0 - Live 0x0000000000000000"
BBBP,933,/proc/modules,"psmouse 221184 0 - Live 0x0000000000000000"
BBBP,934,/proc/modules,"snd 143360 28 snd_rawmidi,snd_seq,snd_seq_device,snd_hda_codec_hdmi,snd_hda_codec_realtek,snd_hda_codec_generic,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_ctl_led,snd_pcm,thinkpad_acpi,snd_timer, Live 0x0000000000000000"
BBBP,935,/proc/modules,"crc32_pclmul 12288 0 - Live 0x0000000000000000"
BBBP,936,/proc/modules,"rtsx_pci 143360 1 rtsx_pci_sdmmc, Live 0x0000000000000000"
BBBP,937,/proc/modules,"e1000e 356352 0 - Live 0x0000000000000000"
BBBP,938,/proc/modules,"soundcore 16384 2 snd_ctl_led,snd, Live 0x0000000000000000"
BBBP,939,/proc/modules,"ahci 49152 2 - Live 0x0000000000000000"
BBBP,940,/proc/modules,"video 73728 2 i915,thinkpad_acpi, Live 0x0000000000000000"
BBBP,941,/proc/modules,"libahci 53248 1 ahci, Live 0x0000000000000000"
BBBP,942,/proc/modules,"xhci_pci 24576 0 - Live 0x0000000000000000"
BBBP,943,/proc/modules,"xhci_pci_renesas 24576 1 xhci_pci, Live 0x0000000000000000"
BBBP,944,/proc/modules,"sparse_keymap 12288 1 thinkpad_acpi, Live 0x0000000000000000"
BBBP,945,/proc/modules,"platform_profile 12288 1 thinkpad_acpi, Live 0x0000000000000000"
BBBP,946,/proc/modules,"wmi 28672 3 think_lmi,wmi_bmof,video, Live 0x0000000000000000"
BBBP,947,ifconfig
BBBP,948,ifconfig,"docker0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500"
BBBP,949,ifconfig," inet 172.17.0.1 netmask 255.255.0.0 broadcast 172.17.255.255"
BBBP,950,ifconfig," ether 02:42:8a:1c:24:35 txqueuelen 0 (Ethernet)"
BBBP,951,ifconfig," RX packets 0 bytes 0 (0.0 B)"
BBBP,952,ifconfig," RX errors 0 dropped 0 overruns 0 frame 0"
BBBP,953,ifconfig," TX packets 0 bytes 0 (0.0 B)"
BBBP,954,ifconfig," TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0"
BBBP,955,ifconfig,""
BBBP,956,ifconfig,"enp0s25: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500"
BBBP,957,ifconfig," ether 50:7b:9d:6e:3d:cd txqueuelen 1000 (Ethernet)"
BBBP,958,ifconfig," RX packets 0 bytes 0 (0.0 B)"
BBBP,959,ifconfig," RX errors 0 dropped 0 overruns 0 frame 0"
BBBP,960,ifconfig," TX packets 0 bytes 0 (0.0 B)"
BBBP,961,ifconfig," TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0"
BBBP,962,ifconfig," device interrupt 20 memory 0xe1200000-e1220000 "