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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
|
# Russian translation of manpages
# This file is distributed under the same license as the manpages-l10n package.
# Copyright © of this file:
# Alexey, 2016.
# Azamat Hackimov <azamat.hackimov@gmail.com>, 2014-2017.
# kogamatranslator49 <r.podarov@yandex.ru>, 2015.
# Darima Kogan <silverdk99@gmail.com>, 2014.
# Max Is <ismax799@gmail.com>, 2016.
# Yuri Kozlov <yuray@komyakino.ru>, 2011-2019.
# Иван Павлов <pavia00@gmail.com>, 2017.
msgid ""
msgstr ""
"Project-Id-Version: manpages-l10n 4.22.0\n"
"POT-Creation-Date: 2024-06-01 06:10+0200\n"
"PO-Revision-Date: 2024-03-29 09:47+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: Russian <man-pages-ru-talks@lists.sourceforge.net>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. type: TH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "proc_meminfo"
msgstr ""
#. type: TH
#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
msgid "2024-05-02"
msgstr "2 мая 2024 г."
#. type: TH
#: archlinux debian-unstable
#, fuzzy, no-wrap
#| msgid "Linux man-pages 6.7"
msgid "Linux man-pages 6.8"
msgstr "Linux man-pages 6.7"
#. type: SH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "NAME"
msgstr "ИМЯ"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "/proc/meminfo - memory usage"
msgstr ""
#. type: SH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "DESCRIPTION"
msgstr "ОПИСАНИЕ"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/meminfo>"
msgstr "I</proc/meminfo>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file reports statistics about memory usage on the system. It is used "
"by B<free>(1) to report the amount of free and used memory (both physical "
"and swap) on the system as well as the shared memory and buffers used by "
"the kernel. Each line of the file consists of a parameter name, followed by "
"a colon, the value of the parameter, and an option unit of measurement (e."
"g., \"kB\"). The list below describes the parameter names and the format "
"specifier required to read the field value. Except as noted below, all of "
"the fields have been present since at least Linux 2.6.0. Some fields are "
"displayed only if the kernel was configured with various options; those "
"dependencies are noted in the list."
msgstr ""
"Этот файл содержит статистику по использованию памяти системы. Он "
"используется программой B<free>(1) для формирования отчёта о свободной и "
"используемой памяти (как физической, так и подкачки), а также общей памяти и "
"памяти под буферы, которую использует ядро. В каждой строке файла содержится "
"имя параметра, двоеточие, значение параметра и необязательная единица "
"измерения (например, «kB»). В списке далее описываются параметры и "
"определитель формата, требуемый для чтения значения поля. За исключением "
"замечаний, представленных ниже, все показанные поля имеются начиная с Linux "
"2.6.0. Некоторые поля появляются только, если ядро собрано с определёнными "
"параметрами; это зависимости также показаны в списке."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<MemTotal> %lu"
msgstr "I<MemTotal> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Total usable RAM (i.e., physical RAM minus a few reserved bits and the "
"kernel binary code)."
msgstr ""
"Общее количество используемой RAM (т.е. физической RAM минус несколько "
"зарезервированных бит и исполняемый код ядра)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<MemFree> %lu"
msgstr "I<MemFree> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "The sum of I<LowFree>+I<HighFree>."
msgstr "Сумма I<LowFree>+I<HighFree>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<MemAvailable> %lu (since Linux 3.14)"
msgstr "I<MemAvailable> %lu (начиная с Linux 3.14)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"An estimate of how much memory is available for starting new applications, "
"without swapping."
msgstr ""
"Предполагаемое количество памяти, доступное для запуска новых приложений, "
"без обращения к подкачке."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Buffers> %lu"
msgstr "I<Buffers> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Relatively temporary storage for raw disk blocks that shouldn't get "
"tremendously large (20 MB or so)."
msgstr ""
"Относительно временное хранилище сырых дисковых блоков, которое не должно "
"быть очень велико (порядка 20 МБ)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Cached> %lu"
msgstr "I<Cached> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"In-memory cache for files read from the disk (the page cache). Doesn't "
"include I<SwapCached>."
msgstr ""
"Кэш в памяти для прочитанных дисковых файлов (страничный кэш). Не включает "
"I<SwapCached>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<SwapCached> %lu"
msgstr "I<SwapCached> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Memory that once was swapped out, is swapped back in but still also is in "
"the swap file. (If memory pressure is high, these pages don't need to be "
"swapped out again because they are already in the swap file. This saves I/"
"O.)"
msgstr ""
"Память, которая однажды попала в подкачку, выгрузилась обратно в память, но "
"всё равно остаётся в файле подкачки (если нагрузка на память велика, эти "
"страницы не придётся снова выгружать, так как они уже в файле подкачки — "
"предотвращается ввод-вывод)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Active> %lu"
msgstr "I<Active> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Memory that has been used more recently and usually not reclaimed unless "
"absolutely necessary."
msgstr ""
"Память, которая часто использовалась и обычно не высвобождается без сильной "
"необходимости."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Inactive> %lu"
msgstr "I<Inactive> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Memory which has been less recently used. It is more eligible to be "
"reclaimed for other purposes."
msgstr ""
"Память, которая редко использовалась. Кандидат на высвобождение для других "
"нужд."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Active(anon)> %lu (since Linux 2.6.28)"
msgstr "I<Active(anon)> %lu (начиная с Linux 2.6.28)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "[To be documented.]"
msgstr "[Будет описано.]"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Inactive(anon)> %lu (since Linux 2.6.28)"
msgstr "I<Inactive(anon)> %lu (начиная с Linux 2.6.28)"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Active(file)> %lu (since Linux 2.6.28)"
msgstr "I<Active(file)> %lu (начиная с Linux 2.6.28)"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Inactive(file)> %lu (since Linux 2.6.28)"
msgstr "I<Inactive(file)> %lu (начиная с Linux 2.6.28)"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Unevictable> %lu (since Linux 2.6.28)"
msgstr "I<Unevictable> %lu (начиная с Linux 2.6.28)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(From Linux 2.6.28 to Linux 2.6.30, B<CONFIG_UNEVICTABLE_LRU> was "
"required.) [To be documented.]"
msgstr ""
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Mlocked> %lu (since Linux 2.6.28)"
msgstr "I<Mlocked> %lu (начиная с Linux 2.6.28)"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<HighTotal> %lu"
msgstr "I<HighTotal> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(Starting with Linux 2.6.19, B<CONFIG_HIGHMEM> is required.) Total amount "
"of highmem. Highmem is all memory above \\[ti]860 MB of physical memory. "
"Highmem areas are for use by user-space programs, or for the page cache. "
"The kernel must use tricks to access this memory, making it slower to access "
"than lowmem."
msgstr ""
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<HighFree> %lu"
msgstr "I<HighFree> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(Starting with Linux 2.6.19, B<CONFIG_HIGHMEM> is required.) Amount of free "
"highmem."
msgstr ""
"(Начиная с Linux 2.6.19, требуется параметр B<CONFIG_HIGHMEM>.) Количество "
"свободной highmem."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<LowTotal> %lu"
msgstr "I<LowTotal> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(Starting with Linux 2.6.19, B<CONFIG_HIGHMEM> is required.) Total amount "
"of lowmem. Lowmem is memory which can be used for everything that highmem "
"can be used for, but it is also available for the kernel's use for its own "
"data structures. Among many other things, it is where everything from "
"I<Slab> is allocated. Bad things happen when you're out of lowmem."
msgstr ""
"(Начиная с Linux 2.6.19, требуется параметр B<CONFIG_HIGHMEM>.) Общее "
"количество lowmem. Lowmem — это память, используемая для всего, что и "
"highmem, но также доступна и для структур ядра. Среди прочего, выделяется "
"для I<Slab>. Когда заканчивается lowmem происходят нехорошие вещи."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<LowFree> %lu"
msgstr "I<LowFree> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(Starting with Linux 2.6.19, B<CONFIG_HIGHMEM> is required.) Amount of free "
"lowmem."
msgstr ""
"(Начиная с Linux 2.6.19, требуется параметр B<CONFIG_HIGHMEM>.) Количество "
"свободной lowmem."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<MmapCopy> %lu (since Linux 2.6.29)"
msgstr "I<MmapCopy> %lu (начиная с Linux 2.6.29)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "(B<CONFIG_MMU> is required.) [To be documented.]"
msgstr "(Требуется параметр B<CONFIG_MMU>.) [Будет описано.]"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<SwapTotal> %lu"
msgstr "I<SwapTotal> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Total amount of swap space available."
msgstr "Общее количество доступного пространства подкачки."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<SwapFree> %lu"
msgstr "I<SwapFree> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Amount of swap space that is currently unused."
msgstr "Общее количество неиспользуемого пространства подкачки."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Dirty> %lu"
msgstr "I<Dirty> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Memory which is waiting to get written back to the disk."
msgstr "Память, которая ждёт записи обратно на диск."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Writeback> %lu"
msgstr "I<Writeback> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Memory which is actively being written back to the disk."
msgstr "Память, которая переписывается обратно на диск."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<AnonPages> %lu (since Linux 2.6.18)"
msgstr "I<AnonPages> %lu (начиная с Linux 2.6.18)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Non-file backed pages mapped into user-space page tables."
msgstr ""
"Не файловые фоновые (backed) страницы, отображённые в страничные таблицы "
"пользовательского пространства."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Mapped> %lu"
msgstr "I<Mapped> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Files which have been mapped into memory (with B<mmap>(2)), such as "
"libraries."
msgstr ""
"Отображённые в память файлы (с помощью B<mmap>(2)), например библиотеки."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Shmem> %lu (since Linux 2.6.32)"
msgstr "I<Shmem> %lu (начиная с Linux 2.6.32)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Amount of memory consumed in B<tmpfs>(5) filesystems."
msgstr "Объём памяти, использованной в файловых системах B<tmpfs>(5)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<KReclaimable> %lu (since Linux 4.20)"
msgstr "I<KReclaimable> %lu (начиная с Linux 4.20)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Kernel allocations that the kernel will attempt to reclaim under memory "
"pressure. Includes I<SReclaimable> (below), and other direct allocations "
"with a shrinker."
msgstr ""
"Выделения ядра, которые оно будет пытаться отозвать при нехватки памяти. "
"Включают I<SReclaimable> (смотрите ниже) и другие непосредственные выделения "
"сокращателя (shrinker)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Slab> %lu"
msgstr "I<Slab> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "In-kernel data structures cache. (See B<slabinfo>(5).)"
msgstr "Кэш ядерных структур данных (смотрите B<slabinfo>(5))."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<SReclaimable> %lu (since Linux 2.6.19)"
msgstr "I<SReclaimable> %lu (начиная с Linux 2.6.19)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Part of I<Slab>, that might be reclaimed, such as caches."
msgstr "Часть I<Slab>, которая может быть высвобождена, например кэши."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<SUnreclaim> %lu (since Linux 2.6.19)"
msgstr "I<SUnreclaim> %lu (начиная с Linux 2.6.19)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Part of I<Slab>, that cannot be reclaimed on memory pressure."
msgstr "Часть I<Slab>, которая не может быть высвобождена при нехватке памяти."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<KernelStack> %lu (since Linux 2.6.32)"
msgstr "I<KernelStack> %lu (начиная с Linux 2.6.32)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Amount of memory allocated to kernel stacks."
msgstr "Количество памяти, выделенное под стеки ядра."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<PageTables> %lu (since Linux 2.6.18)"
msgstr "I<PageTables> %lu (начиная с Linux 2.6.18)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Amount of memory dedicated to the lowest level of page tables."
msgstr ""
"Количество памяти, выделенное под страничные таблицы на самом нижнем уровне."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Quicklists> %lu (since Linux 2.6.27)"
msgstr "I<Quicklists> %lu (начиная с Linux 2.6.27)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "(B<CONFIG_QUICKLIST> is required.) [To be documented.]"
msgstr "(Требуется параметр B<CONFIG_QUICKLIST>.) [Будет описано.]"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<NFS_Unstable> %lu (since Linux 2.6.18)"
msgstr "I<NFS_Unstable> %lu (начиная с Linux 2.6.18)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "NFS pages sent to the server, but not yet committed to stable storage."
msgstr ""
"Страницы NFS, полученные сервером, но ещё не записанные в стабильное "
"хранилище."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Bounce> %lu (since Linux 2.6.18)"
msgstr "I<Bounce> %lu (начиная с Linux 2.6.18)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Memory used for block device \"bounce buffers\"."
msgstr "Память, используемая для блочного устройства «bounce buffers»."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<WritebackTmp> %lu (since Linux 2.6.26)"
msgstr "I<WritebackTmp> %lu (начиная с Linux 2.6.26)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Memory used by FUSE for temporary writeback buffers."
msgstr "Память, используемая FUSE для временных буферов обратной записи."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<CommitLimit> %lu (since Linux 2.6.10)"
msgstr "I<CommitLimit> %lu (начиная с Linux 2.6.10)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This is the total amount of memory currently available to be allocated on "
"the system, expressed in kilobytes. This limit is adhered to only if strict "
"overcommit accounting is enabled (mode 2 in I</proc/sys/vm/"
"overcommit_memory>). The limit is calculated according to the formula "
"described under I</proc/sys/vm/overcommit_memory>. For further details, see "
"the kernel source file I<Documentation/vm/overcommit-accounting.rst>."
msgstr ""
"Общее количество памяти, доступное в данный момент в системе для выделения, "
"выражается в байтах. Данное ограничение соблюдается только, если включён "
"жёсткий учёт перерасчёта (strict overcommit accounting) (режим 2 в I</proc/"
"sys/vm/overcommit_memory>). Ограничение вычисляется по формуле, описанной в "
"разделе про I</proc/sys/vm/overcommit_memory>. Подробности смотрите в файле "
"исходного кода ядра I<Documentation/vm/overcommit-accounting.rst>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Committed_AS> %lu"
msgstr "I<Committed_AS> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"The amount of memory presently allocated on the system. The committed "
"memory is a sum of all of the memory which has been allocated by processes, "
"even if it has not been \"used\" by them as of yet. A process which "
"allocates 1 GB of memory (using B<malloc>(3) or similar), but touches only "
"300 MB of that memory will show up as using only 300 MB of memory even if it "
"has the address space allocated for the entire 1 GB."
msgstr ""
"Количество памяти, распределённое в системе в данный момент. Задействованная "
"память (committed memory) — это сумма всей памяти, распределённая среди всех "
"процессов, даже если она ими ещё не «используется». Для процесса, взявшего 1 "
"ГБ памяти (например, с помощью B<malloc>(3)), но задействовавшего только 300 "
"МБ этой памяти, будет показано что используются только 300 МБ, даже если ему "
"отдано адресное пространство 1ГБ."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This 1 GB is memory which has been \"committed\" to by the VM and can be "
"used at any time by the allocating application. With strict overcommit "
"enabled on the system (mode 2 in I</proc/sys/vm/overcommit_memory>), "
"allocations which would exceed the I<CommitLimit> will not be permitted. "
"This is useful if one needs to guarantee that processes will not fail due to "
"lack of memory once that memory has been successfully allocated."
msgstr ""
"Этот 1 ГБ памяти «задействован» VM и может быть использован запросившим "
"приложением в любое время. При включённом режиме жёсткого учёта перерасхода "
"(режим 2 в I</proc/sys/vm/overcommit_memory>), запросы, которые превысили бы "
"I<CommitLimit> (подробности выше), выполнены не будут. Это полезно, если "
"нужно гарантировать, что процессы не завершатся из-за нехватки памяти после "
"того, как память им будет успешно выделена."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<VmallocTotal> %lu"
msgstr "I<VmallocTotal> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Total size of vmalloc memory area."
msgstr "Общий размер области памяти vmalloc."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<VmallocUsed> %lu"
msgstr "I<VmallocUsed> %lu"
#. commit a5ad88ce8c7fae7ddc72ee49a11a75aa837788e0
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Amount of vmalloc area which is used. Since Linux 4.4, this field is no "
"longer calculated, and is hard coded as 0. See I</proc/vmallocinfo>."
msgstr ""
"Размер используемой области vmalloc. Начиная с Linux 4.4 это поле не "
"вычисляется и всегда равно 0. Смотрите I</proc/vmallocinfo>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<VmallocChunk> %lu"
msgstr "I<VmallocChunk> %lu"
#. commit a5ad88ce8c7fae7ddc72ee49a11a75aa837788e0
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Largest contiguous block of vmalloc area which is free. Since Linux 4.4, "
"this field is no longer calculated and is hard coded as 0. See I</proc/"
"vmallocinfo>."
msgstr ""
"Самый большой свободный непрерывный блок области vmalloc. Начиная с Linux "
"4.4 это поле не вычисляется и всегда равно 0. Смотрите I</proc/vmallocinfo>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<HardwareCorrupted> %lu (since Linux 2.6.32)"
msgstr "I<HardwareCorrupted> %lu (начиная с Linux 2.6.32)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "(B<CONFIG_MEMORY_FAILURE> is required.) [To be documented.]"
msgstr "(Требуется параметр B<CONFIG_MEMORY_FAILURE>.) [Будет описано.]"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<LazyFree> %lu (since Linux 4.12)"
msgstr "I<LazyFree> %lu (начиная с Linux 4.12)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Shows the amount of memory marked by B<madvise>(2) B<MADV_FREE>."
msgstr ""
"Отражает количество памяти, помеченной вызовом B<madvise>(2) B<MADV_FREE>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<AnonHugePages> %lu (since Linux 2.6.38)"
msgstr "I<AnonHugePages> %lu (начиная с Linux 2.6.38)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(B<CONFIG_TRANSPARENT_HUGEPAGE> is required.) Non-file backed huge pages "
"mapped into user-space page tables."
msgstr ""
"(Требуется параметр B<CONFIG_TRANSPARENT_HUGEPAGE>.) Не файловые фоновые "
"огромные страницы, отображённые в страничные таблицы пользовательского "
"пространства."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<ShmemHugePages> %lu (since Linux 4.8)"
msgstr "I<ShmemHugePages> %lu (начиная с Linux 4.8)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(B<CONFIG_TRANSPARENT_HUGEPAGE> is required.) Memory used by shared memory "
"(shmem) and B<tmpfs>(5) allocated with huge pages."
msgstr ""
"(требуется B<CONFIG_TRANSPARENT_HUGEPAGE>) Память, используемая для "
"выделения огромных страниц под общую память (shmem) и B<tmpfs>(5)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<ShmemPmdMapped> %lu (since Linux 4.8)"
msgstr "I<ShmemPmdMapped> %lu (начиная с Linux 4.8)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(B<CONFIG_TRANSPARENT_HUGEPAGE> is required.) Shared memory mapped into "
"user space with huge pages."
msgstr ""
"(Требуется B<CONFIG_TRANSPARENT_HUGEPAGE>.) Общая память, отображённая в "
"пользовательское пространство огромными страницами."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<CmaTotal> %lu (since Linux 3.1)"
msgstr "I<CmaTotal> %lu (начиная с Linux 3.1)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Total CMA (Contiguous Memory Allocator) pages. (B<CONFIG_CMA> is required.)"
msgstr ""
"(Требуется B<CONFIG_CMA>.) Общее количество страниц CMA (выделитель "
"непрерывной памяти)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<CmaFree> %lu (since Linux 3.1)"
msgstr "I<CmaFree> %lu (начиная с Linux 3.1)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Free CMA (Contiguous Memory Allocator) pages. (B<CONFIG_CMA> is required.)"
msgstr ""
"(Требуется B<CONFIG_CMA>.) Количество свободных страниц CMA (выделитель "
"непрерывной памяти)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<HugePages_Total> %lu"
msgstr "I<HugePages_Total> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(B<CONFIG_HUGETLB_PAGE> is required.) The size of the pool of huge pages."
msgstr ""
"(Требуется параметр B<CONFIG_HUGETLB_PAGE>.) Размер пула огромных страниц."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<HugePages_Free> %lu"
msgstr "I<HugePages_Free> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(B<CONFIG_HUGETLB_PAGE> is required.) The number of huge pages in the pool "
"that are not yet allocated."
msgstr ""
"(Требуется параметр B<CONFIG_HUGETLB_PAGE>.) Количество нераспределённых "
"огромных страниц в пуле."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<HugePages_Rsvd> %lu (since Linux 2.6.17)"
msgstr "I<HugePages_Rsvd> %lu (начиная с Linux 2.6.17)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(B<CONFIG_HUGETLB_PAGE> is required.) This is the number of huge pages for "
"which a commitment to allocate from the pool has been made, but no "
"allocation has yet been made. These reserved huge pages guarantee that an "
"application will be able to allocate a huge page from the pool of huge pages "
"at fault time."
msgstr ""
"(Требуется параметр B<CONFIG_HUGETLB_PAGE>.) Количество огромных страниц, "
"для которых есть обязательство по распределению в пуле, но которые ещё не "
"распределены. Эти зарезервированные огромные страницы гарантируют, что "
"приложение сможет получить огромную страницу из пула огромных страниц при "
"нехватке памяти."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<HugePages_Surp> %lu (since Linux 2.6.24)"
msgstr "I<HugePages_Surp> %lu (начиная с Linux 2.6.24)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(B<CONFIG_HUGETLB_PAGE> is required.) This is the number of huge pages in "
"the pool above the value in I</proc/sys/vm/nr_hugepages>. The maximum "
"number of surplus huge pages is controlled by I</proc/sys/vm/"
"nr_overcommit_hugepages>."
msgstr ""
"(Требуется параметр B<CONFIG_HUGETLB_PAGE>.) Количество огромных страниц в "
"пуле выше значения в I</proc/sys/vm/nr_hugepages>. Максимальное число "
"избыточных огромных страниц настраивается в I</proc/sys/vm/"
"nr_overcommit_hugepages>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<Hugepagesize> %lu"
msgstr "I<Hugepagesize> %lu"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "(B<CONFIG_HUGETLB_PAGE> is required.) The size of huge pages."
msgstr "(Требуется параметр B<CONFIG_HUGETLB_PAGE>.) Размер огромных страниц."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<DirectMap4k> %lu (since Linux 2.6.27)"
msgstr "I<DirectMap4k> %lu (начиная с Linux 2.6.27)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Number of bytes of RAM linearly mapped by kernel in 4 kB pages. (x86.)"
msgstr "Количество байт RAM линейно отображаемых ядром в 4 КБ страницы. (x86.)"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<DirectMap4M> %lu (since Linux 2.6.27)"
msgstr "I<DirectMap4M> %lu (начиная с Linux 2.6.27)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Number of bytes of RAM linearly mapped by kernel in 4 MB pages. (x86 with "
"B<CONFIG_X86_64> or B<CONFIG_X86_PAE> enabled.)"
msgstr ""
"Количество байт RAM линейно отображаемых ядром в 4 МБ страницы. (x86 с "
"включённым B<CONFIG_X86_64> или B<CONFIG_X86_PAE>)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<DirectMap2M> %lu (since Linux 2.6.27)"
msgstr "I<DirectMap2M> %lu (начиная с Linux 2.6.27)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Number of bytes of RAM linearly mapped by kernel in 2 MB pages. (x86 with "
"neither B<CONFIG_X86_64> nor B<CONFIG_X86_PAE> enabled.)"
msgstr ""
"Количество байт RAM линейно отображаемых ядром в 2 МБ страницы. (x86 с "
"выключенными B<CONFIG_X86_64> и B<CONFIG_X86_PAE>)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I<DirectMap1G> %lu (since Linux 2.6.27)"
msgstr "I<DirectMap1G> %lu (начиная с Linux 2.6.27)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "(x86 with B<CONFIG_X86_64> and B<CONFIG_X86_DIRECT_GBPAGES> enabled.)"
msgstr "(x86 с включёнными B<CONFIG_X86_64> и B<CONFIG_X86_DIRECT_GBPAGES>)"
#. type: SH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "SEE ALSO"
msgstr "СМОТРИТЕ ТАКЖЕ"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "B<proc>(5)"
msgstr "B<proc>(5)"
#. type: TH
#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "2023-08-15"
msgstr "15 августа 2023 г."
#. type: TH
#: fedora-40 mageia-cauldron
#, no-wrap
msgid "Linux man-pages 6.06"
msgstr "Linux man-pages 6.06"
#. type: TH
#: fedora-rawhide
#, no-wrap
msgid "Linux man-pages 6.7"
msgstr "Linux man-pages 6.7"
#. type: TH
#: opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "Linux man-pages 6.7"
msgid "Linux man-pages (unreleased)"
msgstr "Linux man-pages 6.7"
|