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
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
|
# 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:11+0200\n"
"PO-Revision-Date: 2024-03-29 09:48+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_sys_kernel"
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/sys/kernel/ - control a range of kernel parameters"
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/sys/kernel/>"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This directory contains files controlling a range of kernel parameters, as "
"described below."
msgstr ""
"В этом каталоге содержатся файлы, контролирующие набор параметров ядра, "
"описанных далее."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/acct>"
msgstr "I</proc/sys/kernel/acct>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file contains three numbers: I<highwater>, I<lowwater>, and "
"I<frequency>. If BSD-style process accounting is enabled, these values "
"control its behavior. If free space on filesystem where the log lives goes "
"below I<lowwater> percent, accounting suspends. If free space gets above "
"I<highwater> percent, accounting resumes. I<frequency> determines how often "
"the kernel checks the amount of free space (value is in seconds). Default "
"values are 4, 2, and 30. That is, suspend accounting if 2% or less space is "
"free; resume it if 4% or more space is free; consider information about "
"amount of free space valid for 30 seconds."
msgstr ""
"В этом файле содержатся три числа: I<highwater>, I<lowwater> и I<frequency>. "
"Если включён учёт процессов в стиле BSD, то эти значения управляют его "
"поведением. Если свободного места на файловой системе, куда осуществляется "
"протоколирование учёта, становится меньше, чем I<lowwater> процентов, то "
"учёт процессов приостанавливается. Если свободного места становится больше, "
"чем I<highwater> процентов, то учёт процессов возобновляется. Значение "
"I<frequency> определяет как часто ядро проверяет свободное место (в "
"секундах). По умолчанию значения соответственно составляют 4, 2 и 30. Таким "
"образом, приостановка учёта осуществляется, если свободно менее 2% места на "
"диске; возобновление если места больше или равно 4%; информация о свободном "
"месте обновляется каждые 30 секунд."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/auto_msgmni> (Linux 2.6.27 to Linux 3.18)"
msgstr ""
#. commit 9eefe520c814f6f62c5d36a2ddcd3fb99dfdb30e (introduces feature)
#. commit 0050ee059f7fc86b1df2527aaa14ed5dc72f9973 (rendered redundant)
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"From Linux 2.6.27 to Linux 3.18, this file was used to control recomputing "
"of the value in I</proc/sys/kernel/msgmni> upon the addition or removal of "
"memory or upon IPC namespace creation/removal. Echoing \"1\" into this file "
"enabled I<msgmni> automatic recomputing (and triggered a recomputation of "
"I<msgmni> based on the current amount of available memory and number of IPC "
"namespaces). Echoing \"0\" disabled automatic recomputing. (Automatic "
"recomputing was also disabled if a value was explicitly assigned to I</proc/"
"sys/kernel/msgmni>.) The default value in I<auto_msgmni> was 1."
msgstr ""
#. FIXME Must document the 3.19 'msgmni' changes.
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Since Linux 3.19, the content of this file has no effect (because I<msgmni> "
"defaults to near the maximum value possible), and reads from this file "
"always return the value \"0\"."
msgstr ""
"Начиная с Linux 3.19 содержимое этого файла не учитывается (так как значение "
"I<msgmni> по умолчанию близко к максимально возможному), а чтение из этого "
"файла всегда возвращает «0»."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/cap_last_cap> (since Linux 3.2)"
msgstr "I</proc/sys/kernel/cap_last_cap> (начиная с Linux 3.2)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "See B<capabilities>(7)."
msgstr "Смотрите B<capabilities>(7)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/cap-bound> (from Linux 2.2 to Linux 2.6.24)"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file holds the value of the kernel I<capability bounding set> "
"(expressed as a signed decimal number). This set is ANDed against the "
"capabilities permitted to a process during B<execve>(2). Starting with "
"Linux 2.6.25, the system-wide capability bounding set disappeared, and was "
"replaced by a per-thread bounding set; see B<capabilities>(7)."
msgstr ""
"Этот файл содержит I<набор привязанных мандатов> ядра (выражаемый как "
"десятичные числа со знаком). Этот набор мандатов, предоставляемых процессу "
"во время B<execve>(2), которые складываются посредством битового умножения "
"(AND). Начиная с Linux 2.6.25, глобального набора привязанных мандатов "
"больше нет, теперь свой набор привязанных мандатов есть у каждой нити; "
"смотрите B<capabilities>(7)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/core_pattern>"
msgstr "I</proc/sys/kernel/core_pattern>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "See B<core>(5)."
msgstr "Смотрите B<core>(5)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/core_pipe_limit>"
msgstr "I</proc/sys/kernel/core_pipe_limit>"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/core_uses_pid>"
msgstr "I</proc/sys/kernel/core_uses_pid>"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/ctrl-alt-del>"
msgstr "I</proc/sys/kernel/ctrl-alt-del>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file controls the handling of Ctrl-Alt-Del from the keyboard. When the "
"value in this file is 0, Ctrl-Alt-Del is trapped and sent to the B<init>(1) "
"program to handle a graceful restart. When the value is greater than zero, "
"Linux's reaction to a Vulcan Nerve Pinch (tm) will be an immediate reboot, "
"without even syncing its dirty buffers. Note: when a program (like dosemu) "
"has the keyboard in \"raw\" mode, the Ctrl-Alt-Del is intercepted by the "
"program before it ever reaches the kernel tty layer, and it's up to the "
"program to decide what to do with it."
msgstr ""
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/dmesg_restrict> (since Linux 2.6.37)"
msgstr "I</proc/sys/kernel/dmesg_restrict> (начиная с Linux 2.6.37)"
#. commit 620f6e8e855d6d447688a5f67a4e176944a084e8
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"The value in this file determines who can see kernel syslog contents. A "
"value of 0 in this file imposes no restrictions. If the value is 1, only "
"privileged users can read the kernel syslog. (See B<syslog>(2) for more "
"details.) Since Linux 3.4, only users with the B<CAP_SYS_ADMIN> capability "
"may change the value in this file."
msgstr ""
"Значение этого файла определяет, кто может видеть содержимое syslog от ядра. "
"Значение 0 снимает все ограничения. Если значение равно 1,то только "
"привилегированные пользователи могут читать syslog от ядра (подробности "
"смотрите B<syslog>(2) в). Начиная с Linux 3.4, только пользователи с "
"мандатом B<CAP_SYS_ADMIN> могут изменять содержимое этого файла."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/domainname> and I</proc/sys/kernel/hostname>"
msgstr "I</proc/sys/kernel/domainname> и I</proc/sys/kernel/hostname>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"can be used to set the NIS/YP domainname and the hostname of your box in "
"exactly the same way as the commands B<domainname>(1) and B<hostname>(1), "
"that is:"
msgstr ""
"могут быть использованы для установки имени домена службы NIS/YP и имени "
"узла вашей машины точно таким же образом как и командами B<domainname>(1) и "
"B<hostname>(1), т.е.:"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ""
"#B< echo \\[aq]darkstar\\[aq] E<gt> /proc/sys/kernel/hostname>\n"
"#B< echo \\[aq]mydomain\\[aq] E<gt> /proc/sys/kernel/domainname>\n"
msgstr ""
"#B< echo \\[aq]darkstar\\[aq] E<gt> /proc/sys/kernel/hostname>\n"
"#B< echo \\[aq]mydomain\\[aq] E<gt> /proc/sys/kernel/domainname>\n"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "has the same effect as"
msgstr "выполнят тоже самое, что и команды"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ""
"#B< hostname \\[aq]darkstar\\[aq]>\n"
"#B< domainname \\[aq]mydomain\\[aq]>\n"
msgstr ""
"#B< hostname \\[aq]darkstar\\[aq]>\n"
"#B< domainname \\[aq]mydomain\\[aq]>\n"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Note, however, that the classic darkstar.frop.org has the hostname \"darkstar"
"\" and DNS (Internet Domain Name Server) domainname \"frop.org\", not to be "
"confused with the NIS (Network Information Service) or YP (Yellow Pages) "
"domainname. These two domain names are in general different. For a "
"detailed discussion see the B<hostname>(1) man page."
msgstr ""
"Однако заметим, что классический darkstar.frop.org имеет имя узла \"darkstar"
"\" и доменное имя DNS (Сервера Доменных Имен) \"frop.org\", не путайте с "
"доменным именем NIS (Службы Сетевой Информации) или как она раньше "
"называлась YP (Yellow Pages). Эти два доменных имени полностью различны по "
"своей сути. Подробности об это можно найти в справочной странице "
"B<hostname>(1)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/hotplug>"
msgstr "I</proc/sys/kernel/hotplug>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file contains the pathname for the hotplug policy agent. The default "
"value in this file is I</sbin/hotplug>."
msgstr ""
"Этот файл содержит путь для агента политики устройств. По умолчанию это файл "
"I</sbin/hotplug>."
#. Removed in commit 87f504e5c78b910b0c1d6ffb89bc95e492322c84 (tglx/history.git)
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/htab-reclaim> (before Linux 2.4.9.2)"
msgstr "I</proc/sys/kernel/htab-reclaim> (до Linux 2.4.9.2)"
#. removed in commit 1b483a6a7b2998e9c98ad985d7494b9b725bd228, before Linux 2.6.28
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(PowerPC only) If this file is set to a nonzero value, the PowerPC htab (see "
"kernel file I<Documentation/powerpc/ppc_htab.txt>) is pruned each time the "
"system hits the idle loop."
msgstr ""
"(только для PowerPC) Если значение в этом файле установлено в ненулевое "
"значение, то PowerPC htab (см. файл I<Documentation/powerpc/ppc_htab.txt> в "
"исходном коде ядра) сокращается каждый раз, когда система входит в цикл "
"простоя."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/keys/>"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This directory contains various files that define parameters and limits for "
"the key-management facility. These files are described in B<keyrings>(7)."
msgstr ""
"В этом каталоге содержатся различные файлы, определяющие параметры и "
"ограничения инфраструктуры управления ключами. Эти файлы описаны в "
"B<keyrings>(7)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/kptr_restrict> (since Linux 2.6.38)"
msgstr "I</proc/sys/kernel/kptr_restrict> (начиная с Linux 2.6.38)"
#. 455cd5ab305c90ffc422dd2e0fb634730942b257
#. commit 411f05f123cbd7f8aa1edcae86970755a6e2a9d9
#. commit 620f6e8e855d6d447688a5f67a4e176944a084e8
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"The value in this file determines whether kernel addresses are exposed via "
"I</proc> files and other interfaces. A value of 0 in this file imposes no "
"restrictions. If the value is 1, kernel pointers printed using the I<%pK> "
"format specifier will be replaced with zeros unless the user has the "
"B<CAP_SYSLOG> capability. If the value is 2, kernel pointers printed using "
"the I<%pK> format specifier will be replaced with zeros regardless of the "
"user's capabilities. The initial default value for this file was 1, but the "
"default was changed to 0 in Linux 2.6.39. Since Linux 3.4, only users with "
"the B<CAP_SYS_ADMIN> capability can change the value in this file."
msgstr ""
"Значением этого файла определяется будут ли видны ядра ядра, показываемые в "
"файлах I</proc> и других интерфейсах. Значение 0 снимает все ограничения. "
"Если значение равно 1, то указатели ядра, выводимые по формату I<%pK>, будут "
"заменены на нули, если пользователь не имеет мандата B<CAP_SYSLOG>. Если "
"значение равно 2, то указатели ядра, выводимые по формату I<%pK>, будут "
"заменены на нули, независимо от наличия мандатов у пользователя. В начале "
"значение по умолчанию было равно 1, но изменилось на 0 в Linux 2.6.39. "
"Начиная с Linux 3.4, только пользователи с мандатом B<CAP_SYS_ADMIN> могут "
"изменять значение в этом файле."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/l2cr>"
msgstr "I</proc/sys/kernel/l2cr>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(PowerPC only) This file contains a flag that controls the L2 cache of G3 "
"processor boards. If 0, the cache is disabled. Enabled if nonzero."
msgstr ""
"(только для PowerPC) Этот файл содержит флаг, который управляет кэшем L2 на "
"процессорных платах G3. Если 0, кэш выключен. Если не ноль, то включён."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/modprobe>"
msgstr "I</proc/sys/kernel/modprobe>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file contains the pathname for the kernel module loader. The default "
"value is I</sbin/modprobe>. The file is present only if the kernel is built "
"with the B<CONFIG_MODULES> (B<CONFIG_KMOD> in Linux 2.6.26 and earlier) "
"option enabled. It is described by the Linux kernel source file "
"I<Documentation/kmod.txt> (present only in Linux 2.4 and earlier)."
msgstr ""
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/modules_disabled> (since Linux 2.6.31)"
msgstr "I</proc/sys/kernel/modules_disabled> (начиная с Linux 2.6.31)"
#. 3d43321b7015387cfebbe26436d0e9d299162ea1
#. From Documentation/sysctl/kernel.txt
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"A toggle value indicating if modules are allowed to be loaded in an "
"otherwise modular kernel. This toggle defaults to off (0), but can be set "
"true (1). Once true, modules can be neither loaded nor unloaded, and the "
"toggle cannot be set back to false. The file is present only if the kernel "
"is built with the B<CONFIG_MODULES> option enabled."
msgstr ""
"Значение-переключатель, показывающий, можно ли загружать модули в модульное "
"ядро. Значение по умолчанию равно 0 (можно загружать), но может быть "
"установлено в 1 (нельзя загружать). При значении 1 модули нельзя не "
"загружать не выгружать, и значение-переключатель тоже нельзя изменить. "
"Данный файл появляется только, если ядро собрано с включённым параметром "
"B<CONFIG_MODULES>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/msgmax> (since Linux 2.2)"
msgstr "I</proc/sys/kernel/msgmax> (начиная с Linux 2.2)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file defines a system-wide limit specifying the maximum number of bytes "
"in a single message written on a System V message queue."
msgstr ""
"Этот файл определяет системный лимит на максимальное число байт в одном "
"сообщении, которое пишется в очередь сообщений System\\ V."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/msgmni> (since Linux 2.4)"
msgstr "I</proc/sys/kernel/msgmni> (начиная с Linux 2.4)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file defines the system-wide limit on the number of message queue "
"identifiers. See also I</proc/sys/kernel/auto_msgmni>."
msgstr ""
"Этот файл определяет системное ограничение на количество идентификаторов в "
"очереди сообщений. Смотрите также I</proc/sys/kernel/auto_msgmni>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/msgmnb> (since Linux 2.2)"
msgstr "I</proc/sys/kernel/msgmnb> (начиная с Linux 2.2)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file defines a system-wide parameter used to initialize the "
"I<msg_qbytes> setting for subsequently created message queues. The "
"I<msg_qbytes> setting specifies the maximum number of bytes that may be "
"written to the message queue."
msgstr ""
"Этот файл определяет системный параметр, используемый при начальной "
"настройке I<msg_qbytes> для последовательно создаваемых очередей сообщений. "
"Настройка I<msg_qbytes> задаёт максимальное число байт, которые могут быть "
"записаны в очередь сообщений."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/ngroups_max> (since Linux 2.6.4)"
msgstr "I</proc/sys/kernel/ngroups_max> (начиная с Linux 2.6.4)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This is a read-only file that displays the upper limit on the number of a "
"process's group memberships."
msgstr ""
"Этот файл только для чтения, отображает верхний предел на количество членов "
"группы процесса."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/ns_last_pid> (since Linux 3.3)"
msgstr "I</proc/sys/kernel/ns_last_pid> (начиная с Linux 3.3)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "See B<pid_namespaces>(7)."
msgstr "Смотрите B<pid_namespaces>(7)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/ostype> and I</proc/sys/kernel/osrelease>"
msgstr "I</proc/sys/kernel/ostype> и I</proc/sys/kernel/osrelease>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "These files give substrings of I</proc/version>."
msgstr "Эти файлы содержат подстроки из I</proc/version>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/overflowgid> and I</proc/sys/kernel/overflowuid>"
msgstr "I</proc/sys/kernel/overflowgid> и I</proc/sys/kernel/overflowuid>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"These files duplicate the files I</proc/sys/fs/overflowgid> and I</proc/sys/"
"fs/overflowuid>."
msgstr ""
"Эти файлы дублируют файлы I</proc/sys/fs/overflowgid> и I</proc/sys/fs/"
"overflowuid>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/panic>"
msgstr "I</proc/sys/kernel/panic>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file gives read/write access to the kernel variable I<panic_timeout>. "
"If this is zero, the kernel will loop on a panic; if nonzero, it indicates "
"that the kernel should autoreboot after this number of seconds. When you "
"use the software watchdog device driver, the recommended setting is 60."
msgstr ""
"Этот файл предоставляет доступ на чтение и запись к переменной ядра "
"I<panic_timeout>. Если значение в файле равно нулю, ядро будет зацикливаться "
"при крахе системы по panic; если не ноль, то это означает, что ядро должно "
"выполнить автоматическую перезагрузку после этого количества секунд. Когда "
"вы используете программный драйвер устройства watchdog (устройство, "
"периодически делающее проверку, что система функционирует), то рекомендуется "
"установить значение 60."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/panic_on_oops> (since Linux 2.5.68)"
msgstr "I</proc/sys/kernel/panic_on_oops> (начиная с Linux 2.5.68)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file controls the kernel's behavior when an oops or BUG is "
"encountered. If this file contains 0, then the system tries to continue "
"operation. If it contains 1, then the system delays a few seconds (to give "
"klogd time to record the oops output) and then panics. If the I</proc/sys/"
"kernel/panic> file is also nonzero, then the machine will be rebooted."
msgstr ""
"Этот файл управляет поведением ядра, когда случается oops или BUG. Если файл "
"содержит 0, то система пытается продолжить работу. Если содержит 1, то "
"система выполняет задержку на несколько секунд (чтобы дать время klogd "
"записать вывод oops) и затем генерирует крах системы через panic. Если файл "
"I</proc/sys/kernel/panic> также содержит ненулевое значение, то машина будет "
"перезагружена."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/pid_max> (since Linux 2.5.34)"
msgstr "I</proc/sys/kernel/pid_max> (начиная с Linux 2.5.34)"
#. Prior to Linux 2.6.10, pid_max could also be raised above 32768 on 32-bit
#. platforms, but this broke /proc/[pid]
#. See http://marc.theaimsgroup.com/?l=linux-kernel&m=109513010926152&w=2
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file specifies the value at which PIDs wrap around (i.e., the value in "
"this file is one greater than the maximum PID). PIDs greater than this "
"value are not allocated; thus, the value in this file also acts as a system-"
"wide limit on the total number of processes and threads. The default value "
"for this file, 32768, results in the same range of PIDs as on earlier "
"kernels. On 32-bit platforms, 32768 is the maximum value for I<pid_max>. "
"On 64-bit systems, I<pid_max> can be set to any value up to 2\\[ha]22 "
"(B<PID_MAX_LIMIT>, approximately 4 million)."
msgstr ""
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/powersave-nap> (PowerPC only)"
msgstr "I</proc/sys/kernel/powersave-nap> (только на PowerPC)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file contains a flag. If set, Linux-PPC will use the \"nap\" mode of "
"powersaving, otherwise the \"doze\" mode will be used."
msgstr ""
"Этот файл содержит флаг. Если он установлен Linux-PPC будет использовать "
"режим \"nap\" для энергосбережения, в противном случае будет использоваться "
"режим \"doze\"."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/printk>"
msgstr "I</proc/sys/kernel/printk>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "See B<syslog>(2)."
msgstr "Смотрите B<syslog>(2)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/pty> (since Linux 2.6.4)"
msgstr "I</proc/sys/kernel/pty> (начиная с Linux 2.6.4)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This directory contains two files relating to the number of UNIX 98 "
"pseudoterminals (see B<pts>(4)) on the system."
msgstr ""
"В этом каталоге содержится два файла, отражающих количество псевдо-"
"терминалов UNIX 98 (см. B<pts>(4)) в системе."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/pty/max>"
msgstr "I</proc/sys/kernel/pty/max>"
#. FIXME Document /proc/sys/kernel/pty/reserve
#. New in Linux 3.3
#. commit e9aba5158a80098447ff207a452a3418ae7ee386
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "This file defines the maximum number of pseudoterminals."
msgstr "Этот файл определяет максимальное количество псевдо-терминалов."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/pty/nr>"
msgstr "I</proc/sys/kernel/pty/nr>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This read-only file indicates how many pseudoterminals are currently in use."
msgstr ""
"Файл доступен только для чтения, показывает количество используемых в данный "
"момент псевдо-терминалов."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/random/>"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This directory contains various parameters controlling the operation of the "
"file I</dev/random>. See B<random>(4) for further information."
msgstr ""
"Этот каталог содержит различные параметры, управляющие работой файла I</dev/"
"random>. Дополнительную информацию смотрите в B<random>(4)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/random/uuid> (since Linux 2.4)"
msgstr "I</proc/sys/kernel/random/uuid> (начиная с Linux 2.4)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Each read from this read-only file returns a randomly generated 128-bit "
"UUID, as a string in the standard UUID format."
msgstr ""
"При каждом чтении из этого, доступного только для чтения файла, возвращается "
"генерируемый случайным образом 128-битный UUID в виде строки в стандартном "
"формате UUID."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/randomize_va_space> (since Linux 2.6.12)"
msgstr "I</proc/sys/kernel/randomize_va_space> (начиная с Linux 2.6.12)"
#. Some further details can be found in Documentation/sysctl/kernel.txt
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Select the address space layout randomization (ASLR) policy for the system "
"(on architectures that support ASLR). Three values are supported for this "
"file:"
msgstr ""
"Выбирает политику случайного выбора адресного пространства (ASLR) в системе "
"(на архитектурах с поддержкой ASLR). Возможны три значения:"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "B<0>"
msgstr "B<0>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Turn ASLR off. This is the default for architectures that don't support "
"ASLR, and when the kernel is booted with the I<norandmaps> parameter."
msgstr ""
"Отключить ASLR. Значение по умолчанию на архитектурах без поддержки ASLR, и "
"если ядро загружено с параметром I<norandmaps>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "B<1>"
msgstr "B<1>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Make the addresses of B<mmap>(2) allocations, the stack, and the VDSO page "
"randomized. Among other things, this means that shared libraries will be "
"loaded at randomized addresses. The text segment of PIE-linked binaries "
"will also be loaded at a randomized address. This value is the default if "
"the kernel was configured with B<CONFIG_COMPAT_BRK>."
msgstr ""
"Выполнять выделение адресов B<mmap>(2), стека и страниц VDSO случайным "
"образом. Помимо прочего, это означает, что общие библиотеки будут "
"загружаться по случайным адресам. Текстовый сегмент PIE-скомпонованных "
"библиотек будет также загружен по случайному адресу. Является значением по "
"умолчанию, если ядро собрано с параметром B<CONFIG_COMPAT_BRK>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "B<2>"
msgstr "B<2>"
#. commit c1d171a002942ea2d93b4fbd0c9583c56fce0772
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(Since Linux 2.6.25) Also support heap randomization. This value is the "
"default if the kernel was not configured with B<CONFIG_COMPAT_BRK>."
msgstr ""
"(начиная с Linux 2.6.25) Также выполнять выделение кучи случайным образом. "
"Является значением по умолчанию, если ядро не собрано с параметром "
"B<CONFIG_COMPAT_BRK>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/real-root-dev>"
msgstr "I</proc/sys/kernel/real-root-dev>"
#. commit 9d85025b0418163fae079c9ba8f8445212de8568
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file is documented in the Linux kernel source file I<Documentation/"
"admin-guide/initrd.rst> (or I<Documentation/initrd.txt> before Linux 4.10)."
msgstr ""
"Этот файл описывается в файле исходного кода ядра Linux I<Documentation/"
"admin-guide/initrd.rst> (или I<Documentation/initrd.txt> до Linux 4.10)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/reboot-cmd> (Sparc only)"
msgstr "I</proc/sys/kernel/reboot-cmd> (только на Sparc)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file seems to be a way to give an argument to the SPARC ROM/Flash boot "
"loader. Maybe to tell it what to do after rebooting?"
msgstr ""
"Этот файл, вероятно, является способом задания аргументов для начального "
"загрузчика SPARC ROM/Flash. Способ сказать ему, что делать после "
"перезагрузки?"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/rtsig-max>"
msgstr "I</proc/sys/kernel/rtsig-max>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(Up to and including Linux 2.6.7; see B<setrlimit>(2)) This file can be "
"used to tune the maximum number of POSIX real-time (queued) signals that can "
"be outstanding in the system."
msgstr ""
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/rtsig-nr>"
msgstr "I</proc/sys/kernel/rtsig-nr>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(Up to and including Linux 2.6.7.) This file shows the number of POSIX real-"
"time signals currently queued."
msgstr ""
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/>pidI</sched_autogroup_enabled> (since Linux 2.6.38)"
msgstr "I</proc/>pidI</sched_autogroup_enabled> (начиная с Linux 2.6.38)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "See B<sched>(7)."
msgstr "Смотрите B<sched>(7)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/sched_child_runs_first> (since Linux 2.6.23)"
msgstr "I</proc/sys/kernel/sched_child_runs_first> (начиная с Linux 2.6.23)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"If this file contains the value zero, then, after a B<fork>(2), the parent "
"is first scheduled on the CPU. If the file contains a nonzero value, then "
"the child is scheduled first on the CPU. (Of course, on a multiprocessor "
"system, the parent and the child might both immediately be scheduled on a "
"CPU.)"
msgstr ""
"Если этот файл содержит нулевое значение, то после B<fork>(2) первым на ЦП "
"планируется выполнение родителя. Если файл содержит ненулевое значение, то "
"первым на ЦП планируется выполнение потомка (естественно, на "
"многопроцессорной системе может быть запланировано немедленное одновременное "
"выполнение и родителя и потомка)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/sched_rr_timeslice_ms> (since Linux 3.9)"
msgstr "I</proc/sys/kernel/sched_rr_timeslice_ms> (начиная с Linux 3.9)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "See B<sched_rr_get_interval>(2)."
msgstr "Смотрите B<sched_rr_get_interval>(2)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/sched_rt_period_us> (since Linux 2.6.25)"
msgstr "I</proc/sys/kernel/sched_rt_period_us> (начиная с Linux 2.6.25)"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/sched_rt_runtime_us> (since Linux 2.6.25)"
msgstr "I</proc/sys/kernel/sched_rt_runtime_us> (начиная с Linux 2.6.25)"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/seccomp/> (since Linux 4.14)"
msgstr ""
#. commit 8e5f1ad116df6b0de65eac458d5e7c318d1c05af
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This directory provides additional seccomp information and configuration. "
"See B<seccomp>(2) for further details."
msgstr ""
"Этот каталог содержит дополнительную информацию и настройки seccomp. "
"Подробней смотрите в B<seccomp>(2)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/sem> (since Linux 2.4)"
msgstr "I</proc/sys/kernel/sem> (начиная с Linux 2.4)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file contains 4 numbers defining limits for System V IPC semaphores. "
"These fields are, in order:"
msgstr ""
"Этот файл содержит 4 значения, описывающих ограничения семафоров System V "
"IPC. Вот эти значения по порядку:"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "SEMMSL"
msgstr "SEMMSL"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "The maximum semaphores per semaphore set."
msgstr "Максимальное количество семафоров в одном списке семафоров."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "SEMMNS"
msgstr "SEMMNS"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "A system-wide limit on the number of semaphores in all semaphore sets."
msgstr "Системный лимит на количество семафоров во всех списках семафоров."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "SEMOPM"
msgstr "SEMOPM"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"The maximum number of operations that may be specified in a B<semop>(2) "
"call."
msgstr ""
"Максимальное количество операций, которое может быть указано в вызове "
"B<semop>(2)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "SEMMNI"
msgstr "SEMMNI"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "A system-wide limit on the maximum number of semaphore identifiers."
msgstr "Системный лимит на максимальное количество идентификаторов семафоров."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/sg-big-buff>"
msgstr "I</proc/sys/kernel/sg-big-buff>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file shows the size of the generic SCSI device (sg) buffer. You can't "
"tune it just yet, but you could change it at compile time by editing "
"I<include/scsi/sg.h> and changing the value of B<SG_BIG_BUFF>. However, "
"there shouldn't be any reason to change this value."
msgstr ""
"Этот файл показывает размер буфера стандартного SCSI устройства (sg). Вы не "
"можете пока настраивать его, но его можно изменить при компиляции ядра, "
"исправив I<include/scsi/sg.h>, изменив в нём значение B<SG_BIG_BUFF>. "
"Однако, в этом, как правило, нет необходимости."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/shm_rmid_forced> (since Linux 3.1)"
msgstr "I</proc/sys/kernel/shm_rmid_forced> (начиная с Linux 3.1)"
#. commit b34a6b1da371ed8af1221459a18c67970f7e3d53
#. See also Documentation/sysctl/kernel.txt
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"If this file is set to 1, all System V shared memory segments will be marked "
"for destruction as soon as the number of attached processes falls to zero; "
"in other words, it is no longer possible to create shared memory segments "
"that exist independently of any attached process."
msgstr ""
"Если значение в файле равно 1, то все общие сегменты памяти System V будут "
"помечены на уничтожение сразу после сокращения присоединённых процессов до "
"нуля; другими словами становится невозможно создать сегмент общей памяти, "
"существующий независимо от присоединённого процесса."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"The effect is as though a B<shmctl>(2) B<IPC_RMID> is performed on all "
"existing segments as well as all segments created in the future (until this "
"file is reset to 0). Note that existing segments that are attached to no "
"process will be immediately destroyed when this file is set to 1. Setting "
"this option will also destroy segments that were created, but never "
"attached, upon termination of the process that created the segment with "
"B<shmget>(2)."
msgstr ""
"Это подобно тому, как если бы выполнили B<shmctl>(2) B<IPC_RMID> для всех "
"существующих сегментов, а также выполняли бы для всех сегментов, создаваемых "
"в будущем (пока значение в файле не будет сброшено в 0). Заметим, что при "
"задании в файле значения 1 существующие сегменты, не присоединённые к "
"процессу, будут немедленно уничтожены. Установка этого значения также будет "
"уничтожать сегменты, которые были созданы, но не присоединены — при "
"завершении процесса, который создал эти сегменты с помощью B<shmget>(2)."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Setting this file to 1 provides a way of ensuring that all System V shared "
"memory segments are counted against the resource usage and resource limits "
"(see the description of B<RLIMIT_AS> in B<getrlimit>(2)) of at least one "
"process."
msgstr ""
"Установка значения в 1 позволяет быть уверенным, что все общие сегменты "
"памяти System V подсчитаны и следуют заданным ограничениям ресурсов, как "
"минимум, в одном процессе (смотрите описание B<RLIMIT_AS> в B<getrlimit>(2))."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Because setting this file to 1 produces behavior that is nonstandard and "
"could also break existing applications, the default value in this file is "
"0. Set this file to 1 only if you have a good understanding of the "
"semantics of the applications using System V shared memory on your system."
msgstr ""
"Так как установка в этом файле значения 1 вызывает нестандартное поведение и "
"может привести к неработоспособности приложений, значение по умолчанию равно "
"0. Указывайте значение 1 только, если хорошо понимаете работу приложений, "
"использующих общую память System V."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/shmall> (since Linux 2.2)"
msgstr "I</proc/sys/kernel/shmall> (начиная с Linux 2.2)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file contains the system-wide limit on the total number of pages of "
"System V shared memory."
msgstr ""
"Этот файл содержит системный лимит на общее количество страниц общей памяти "
"по стандарту System\\ V."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/shmmax> (since Linux 2.2)"
msgstr "I</proc/sys/kernel/shmmax> (начиная с Linux 2.2)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file can be used to query and set the run-time limit on the maximum "
"(System V IPC) shared memory segment size that can be created. Shared "
"memory segments up to 1 GB are now supported in the kernel. This value "
"defaults to B<SHMMAX>."
msgstr ""
"Этот файл может быть использован для опроса и установки ограничения "
"максимального размера сегмента общей памяти по стандарту System\\ V во время "
"выполнения. В настоящий момент ядро поддерживает сегменты общей памяти до 1 "
"ГБ. Значение по умолчанию равно B<SHMMAX>."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/shmmni> (since Linux 2.4)"
msgstr "I</proc/sys/kernel/shmmni> (начиная с Linux 2.4)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file specifies the system-wide maximum number of System V shared memory "
"segments that can be created."
msgstr ""
"Задаёт максимальное системное ограничение на количество создаваемых общих "
"сегментов памяти по стандарту System V."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/sysctl_writes_strict> (since Linux 3.16)"
msgstr "I</proc/sys/kernel/sysctl_writes_strict> (начиная с Linux 3.16)"
#. commit f88083005ab319abba5d0b2e4e997558245493c8
#. commit 2ca9bb456ada8bcbdc8f77f8fc78207653bbaa92
#. commit f4aacea2f5d1a5f7e3154e967d70cf3f711bcd61
#. commit 24fe831c17ab8149413874f2fd4e5c8a41fcd294
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"The value in this file determines how the file offset affects the behavior "
"of updating entries in files under I</proc/sys>. The file has three "
"possible values:"
msgstr ""
"Значением в этом файле определяется как учитывать файловое смещение при "
"обновлении записей в файле I</proc/sys>. Есть три возможных значения:"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "-1"
msgstr "-1"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This provides legacy handling, with no printk warnings. Each B<write>(2) "
"must fully contain the value to be written, and multiple writes on the same "
"file descriptor will overwrite the entire value, regardless of the file "
"position."
msgstr ""
"Старый вариант работы, без предупреждения printk. Каждый B<write>(2) должен "
"записывать значение целиком, а повторная запись в тот же файловый дескриптор "
"переписывает значение целиком, независимо от смещения в файле."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "0"
msgstr "0"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"(default) This provides the same behavior as for -1, but printk warnings are "
"written for processes that perform writes when the file offset is not 0."
msgstr ""
"(по умолчанию) Такая же работа, как при -1, но выдаёт предупреждение printk "
"для процессов, которые выполняют запись, если файловое смещение не равно 0."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "1"
msgstr "1"
#. FIXME .
#. With /proc/sys/kernel/sysctl_writes_strict==1, writes at an
#. offset other than 0 do not generate an error. Instead, the
#. write() succeeds, but the file is left unmodified.
#. This is surprising. The behavior may change in the future.
#. See thread.gmane.org/gmane.linux.man/9197
#. From: Michael Kerrisk (man-pages <mtk.manpages@...>
#. Subject: sysctl_writes_strict documentation + an oddity?
#. Newsgroups: gmane.linux.man, gmane.linux.kernel
#. Date: 2015-05-09 08:54:11 GMT
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Respect the file offset when writing strings into I</proc/sys> files. "
"Multiple writes will I<append> to the value buffer. Anything written beyond "
"the maximum length of the value buffer will be ignored. Writes to numeric "
"I</proc/sys> entries must always be at file offset 0 and the value must be "
"fully contained in the buffer provided to B<write>(2)."
msgstr ""
"Учитывать файловое смещение при записи строк в файлы I</proc/sys>. Повторная "
"запись I<добавляет> значение в буфер. Всё записанное, но превышающее длину "
"буфера будет игнорироваться. Запись чисел в I</proc/sys> всегда должна "
"выполняться по файловому смещению 0 и значение должно полностью помещаться в "
"буфер, предоставленный B<write>(2)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/sysrq>"
msgstr "I</proc/sys/kernel/sysrq>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file controls the functions allowed to be invoked by the SysRq key. By "
"default, the file contains 1 meaning that every possible SysRq request is "
"allowed (in older kernel versions, SysRq was disabled by default, and you "
"were required to specifically enable it at run-time, but this is not the "
"case any more). Possible values in this file are:"
msgstr ""
"Этот файл контролирует функции, которые можно вызывать по клавише SysRq. По "
"умолчанию в нём содержится 1, которая означает, что разрешены любые "
"возможные запросы SysRq (в старых ядрах SysRq по умолчанию выключена, и её "
"требовалось явно включать при работе, но теперь этого больше не требуется.). "
"Возможные значения:"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Disable sysrq completely"
msgstr "Полностью выключить sysrq"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Enable all functions of sysrq"
msgstr "Включить все функции sysrq"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "E<gt> 1"
msgstr "E<gt> 1"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Bit mask of allowed sysrq functions, as follows:"
msgstr "Битовая маска разрешённых функций sysrq:"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "\\ \\ 2"
msgstr "\\ \\ 2"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Enable control of console logging level"
msgstr "Включить управление уровнем протоколирования консоли"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "\\ \\ 4"
msgstr "\\ \\ 4"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Enable control of keyboard (SAK, unraw)"
msgstr "Включить управление клавиатурой (SAK, unraw)"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "\\ \\ 8"
msgstr "\\ \\ 8"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Enable debugging dumps of processes etc."
msgstr "Включить отладочные дампы процессов."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "\\ 16"
msgstr "\\ 16"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Enable sync command"
msgstr "Включить команду sync"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "\\ 32"
msgstr "\\ 32"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Enable remount read-only"
msgstr "Включить перемонтирование в режим только для чтения"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "\\ 64"
msgstr "\\ 64"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Enable signaling of processes (term, kill, oom-kill)"
msgstr "Включить передачу сигналов процессам (term, kill, oom-kill)"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "128"
msgstr "128"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Allow reboot/poweroff"
msgstr "Включить выполнение перезагрузки/выключения питания"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "256"
msgstr "256"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Allow nicing of all real-time tasks"
msgstr "Разрешить изменять уступчивость всех задач реального времени"
#. commit 9d85025b0418163fae079c9ba8f8445212de8568
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file is present only if the B<CONFIG_MAGIC_SYSRQ> kernel configuration "
"option is enabled. For further details see the Linux kernel source file "
"I<Documentation/admin-guide/sysrq.rst> (or I<Documentation/sysrq.txt> before "
"Linux 4.10)."
msgstr ""
"Этот файл существует только, если включён параметр сборки ядра "
"B<CONFIG_MAGIC_SYSRQ>. Дополнительную информацию можно найти в исходном коде "
"ядра Linux в файле I<Documentation/admin-guide/sysrq.rst> (или "
"I<Documentation/sysrq.txt> до Linux 4.10)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/version>"
msgstr "I</proc/sys/kernel/version>"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "This file contains a string such as:"
msgstr "Этот файл содержит строку, такую как:"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "#5 Wed Feb 25 21:49:24 MET 1998\n"
msgstr "#5 Wed Feb 25 21:49:24 MET 1998\n"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"The \"#5\" means that this is the fifth kernel built from this source base "
"and the date following it indicates the time the kernel was built."
msgstr ""
"Часть «#5» означает, что это пятая сборка ядра от исходной базы, а далее "
"указана дата и время сборки ядра."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/threads-max> (since Linux 2.3.11)"
msgstr "I</proc/sys/kernel/threads-max> (начиная с Linux 2.3.11)"
#. The following is based on Documentation/sysctl/kernel.txt
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file specifies the system-wide limit on the number of threads (tasks) "
"that can be created on the system."
msgstr ""
"Этот файл определяет системный лимит на количество нитей (задач), которое "
"может быть создано в системе."
#. commit 230633d109e35b0a24277498e773edeb79b4a331
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Since Linux 4.1, the value that can be written to I<threads-max> is "
"bounded. The minimum value that can be written is 20. The maximum value "
"that can be written is given by the constant B<FUTEX_TID_MASK> "
"(0x3fffffff). If a value outside of this range is written to I<threads-"
"max>, the error B<EINVAL> occurs."
msgstr ""
"Начиная с Linux 4.1, значение, которое можно записать в I<threads-max> "
"ограничено. Минимальное значение равно 20. Максимальное значение "
"определяется константой B<FUTEX_TID_MASK> (0x3fffffff). Если в I<threads-"
"max> записывается значение вне этого диапазона, то возвращается ошибка "
"B<EINVAL>."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"The value written is checked against the available RAM pages. If the thread "
"structures would occupy too much (more than 1/8th) of the available RAM "
"pages, I<threads-max> is reduced accordingly."
msgstr ""
"По записываемому значению проверяется доступные страницы RAM. Если структуры "
"нити заняли бы слишком много (более 1/8й) доступных страниц RAM, то "
"I<threads-max> сокращается соответствующим образом."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/yama/ptrace_scope> (since Linux 3.5)"
msgstr "I</proc/sys/kernel/yama/ptrace_scope> (начиная с Linux 3.5)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "See B<ptrace>(2)."
msgstr "Смотрите B<ptrace>(2)."
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid "I</proc/sys/kernel/zero-paged> (PowerPC only)"
msgstr "I</proc/sys/kernel/zero-paged> (только на PowerPC)"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This file contains a flag. When enabled (nonzero), Linux-PPC will pre-zero "
"pages in the idle loop, possibly speeding up get_free_pages."
msgstr ""
"Этот файл содержит флаг. Когда он установлен (не ноль), Linux-PPC будет "
"размещать заранее обнулённые страницы в цикле простоя, что возможно увеличит "
"скорость выполнения get_free_pages."
#. 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), B<proc_sys>(5)"
msgstr "B<proc>(5), B<proc_sys>(5)"
#. type: TH
#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "2023-09-30"
msgstr "30 сентября 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"
|