huangcm
2025-09-01 53d8e046ac1bf2ebe94f671983e3d3be059df91a
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
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
Þ•Üü.ÓÜ](})}E}
U}`}o}~}“}§}$Á}*æ} ~%2~%X~U~~qÔ~F/IyŒ§NÇ(€*?€Aj€&¬€éӀJ½—ƒ› …4<†+q†?†H݆8&ˆ$_ˆ3„ˆ¸ˆ-؈&‰-‰h»‰¯$ŠdԊ 9‹8Z‹~“ŒE0Xb‰3ìC ŽdŽ„ôŽ8y?²=ò%0V vS„*ؐ‘‘*‘:‘J‘4e‘š‘·‘ʑä‘’’N ’o“x“€“–“#¨“ ̓0ٓ/
”':”2b”•”0°”á”Tñ” F•0g•8˜•!ѕó•
–"!–D–U[–J±–ü–&—+>—5j—" —$×'è—(˜29˜Al˜*®˜٘2ó˜*&™3Q™%…™3«™ߙö™+š@š'_š‡š–š¦š"¶šٚ2öš)›"A›d›&„›$«›Л<ٛœ>5œtœ,“œ#Àœäœcûœ3_“³#ӝ-÷%ž(Ažjž&€ž4§žܞ&óž&ŸAŸNYŸ¨ŸÀŸ#֟.úŸ) F     O Y i +z ,¦ Ó è ü ¡/¡ I¡$j¡-¡.½¡(ì¡¢'¢D¢ ^¢j¢l¢€¢˜¢ ©¢·¢΢4ì¢!£?£T£f£€£”‘£—&¤¾¤Ò¤å¤ö¤ ¥%¥B¥Z¥n¥¥¤¥ ¨¥¶¥º¥.Ú¥$    ¦.¦A¦a¦u¦ˆ¦$£¦Ȧ覠§ "§C§c§~§§¤§¶§ѧç§*ú§/%¨U¨'k¨“¨²¨˨+å¨:©:L©‡©¦©½©Ø©ñ©sª+yª+¥ªѪ몫.#«(R«5{«u±«5'¬u]¬VÓ¬=*­2h­5›­Ñ­)ë­ ®!6®-X®†®(š®+î8ï®0(¯.Y¯ˆ¯'œ¯!į$æ¯0 °!<°&^°-…°+³°3ß°©±:½±)ø±L"²5o²%¥²1˲%ý²1#³U³r³‹³¨³Á³4ݳ6´;I´-…´³´+Ï´1û´-µLµhµ"ƒµ¦µ?õ-¶01¶/b¶9’¶H̶n·1„·=¶·-ô·9"¸1\¸AޏиMì¸):¹Cd¹C¨¹3ì¹ º?ºZºBwº=ººKøºAD»;†»»=Ö»%¼:¼]N¼2¬¼+ß¼6 ½ B½!c½=…½4ý#ø½T¾q¾¾®¾'¾ê¾N¿=W¿4•¿1Ê¿ü¿)À9À)SÀ}À&À·À"ÈÀ!ëÀ Á-ÁMÁ)mÁ—Á¶ÁÕÁòÁ(Â$:Â_Â)z¤Â0ÄÂõÂÃ"à    6Ã@Ã'OÃ-wåà    ­Ã·Ã ½Ã ÊÃØÃõÃÄ1%ÄWÄ`Ä+zÄ8¦Ä6ßÄ6Å@MÅ#ŽÅ<²Å<ïÅ/,Æ5\Æ"’ƵÆ*¼ÆDçÆ,ÇKÇ$kÇ3ÇÄÇ%ÓÇ%ùÇÈ#?È&cÈ!ŠÈ¬È$ÌÈñÈ#É2É,BÉ(oɘɠÉ=»É:ùÉ+4Ê`ÊxÊ%—ʽÊBÕÊË
 Ë+Ë3ËEËZË=vË´ËÌËæËÌÌ8ÌNÌ6nÌ¥ÌÀÌÜÌ÷ÌIÍQ_ÍA±ÍóÍ8Î*IÎ6tÎ)«Î5ÕÎ Ï)Ï=CÏaÏ ãÏÐ%Ð=Ð$[Р€ÐX¡ÐúÐÑ:2Ñ*mÑ;˜Ñ*ÔÑ+ÿÑ+Ò1Ò:Ò LÒXÒ0aÒM’ÒàÒþÒÓ/Ó%8Ó%^Ó'„Ó¬ÓµÓ0ÕÓ/Ô6ÔEÔ[Ô4pÔ4¥Ô3ÚÔ$Õ+3Õ+_Õ‹Õ¥Õ¼Õ'ØÕ)Ö *Ö.KÖ'zÖ3¢Ö+ÖÖ2×!5×W×&p×C—×LÛ×.(Ø+WØ"ƒØ:¦Ø1áØ*Ù&>ÙeÙ&€Ù§Ù®Ù7ÉÙÚ Ú?ÚXÚxÚ’Ú ›Úä§Ú5ŒÛ7ÂÛ0úÛ+Ü)FÜApܲÜOÍÜÝ<Ý;RÝŽÝ&«ÝÒÝîÝ$Þ(Þ1Þ[JÞ+¦Þ(ÒÞûÞ2ß$Jß&oß'–ß'¾ßæß à'à.Eà,tàO¡à2ñà8$á ]á~áá³á#Òá#öáâ(3â\â$|â&¡â;Èâ9ã(>ã(gã.ã1¿ã,ñãä.;ä"jä%ä#³ä×ä#öä(åCå#cå/‡å+·å+ãå-æ/=æmætæ’æ±æÊæÜæ$úæç6>ç)uç(Ÿç-Èç.öç.%è Tèuè1èÁèÚèNëèÀ:éÆûé,Âê%ïêë1-ë_ë ~ë‹ë;‘ëÍë+êëAì'Xì)€ìªìÉìæì/í$3íXíKkí·íÕíéíîYî=qî+¯î>Ûî$ï%?ï/eï5•ïËï,àï= ðKð*hð/“ð"Ãð0æðñ0,ñ]ñ'añ‰ñAñ ßñOíñ!=ò_ò'zò2¢ò'Õò2ýò0óGó]ó[xóÔóíó ô ô>ôRô1nô ô ¨ô*¶ô(áôb
õfmõ Ôõáõêõ7ÿõ77ö9oö#©ö'Íö?õö?5÷Au÷·÷Ô÷7é÷7!ø9Yø#“ø·ø×ø òø#ù7ùQù$jù3ù+Ãùïùú#&úJúeú„ú%£úSÉú3ûeQû#·û/Ûû+ üC7ü${ü üµüÎüíü'ý**ý Uývý.Œý»ý"Ôý÷ý þ4þ Jþkþ‰þŸþ³þÉþèþÿ&ÿ@ÿVÿ#tÿ!˜ÿ5ºÿ#ðÿ=-k$†F«ò)?\8{3´'è9Jj ‰ ª'Ë
óþAMQ)ŸÉæ$<aC€Ä>ã"1;m$€¥¿Úø* !8"Z}EFÖ#7%[.°ÁÒç&ö-If…–« ¿+à-    ):    d     {
)ˆ
 ²
;Ó
 5/ 9e 5Ÿ Õ ë 1 $6 Y[ _µ $ $: K_ « %² 2Ø  (FMl!s •¶"½à(ç7 H9T&ŽRµ"U+¸&×þ'!Ic@wD¸ý. F    R4\(‘ºÒ:ç" +7'@hˆ"š"½à÷7%G4m(¢Ë çõ
 
$,A-Uƒ>š"Ù*ü'/Enu/äj&Ÿ&Æí/"5‚X&Û#9&#`„Ÿ+»5ç>+\&ˆ-¯=Ý3LOVœó$ùJ')rkœ%-.\*p›­6É6 7&X •£ºÙìÿ -:    S]u2“;Æ# D& 3k )Ÿ 'É 'ñ *!)D!:n!#©!Í!0^"1"5Á"0÷"?(#h#/‚#9²#jì#W$6v$8­$&æ$C %"Q%"t%5—%vÍ%cD&a¨&0
';'EZ'! '^Â'X!(Yz(+Ô(H)=I)g‡)2ï)2"*„U*GÚ*="+/`+#+´+Ô+)ñ+$,3@,t,
},Rˆ,Û,ä,„ú,-–-±-&Ã--ê-.'6.^.#|. .».Ø.è.ï.# ///lI//¶/æ//û/ +0ÝL09*2=d2¡¢2D3Y3!i3L‹3Ø3í3%4)4aC4©¥4¦O5%ö56 ;6I6b63|6H°6mù6<g7$¤7BÉ7E 8?R8Ò8wV92Î9':():$R:*w:>¢:%á:4;O<;KŒ;SØ;,<+J<v<<¬<È<%æ<3 =@=T=;k="§="Ê="í=">"3>"V>"y>*œ>,Ç>*ô>(?6H?2?/²?-â?5@*F@,q@)ž@-È@3ö@/*A'ZA1‚A-´A+âA+B+:B0fB0—B#ÈBnìB5[C;‘CÍCXæC?DBDJD ^D kDyD"‘D´D ÌDÚDîDEE*E<EZEyEE¥E¼EÎE7èE F'F /F <FIF#PF&tF›Fd®F+G ?G    KGUGfG4vG4«GàG8ôG-H6H
>H    IHSHgHmH!tH6–HÍHãH ýH!    I3+I_I#xI)œI"ÆI"éI  J2-J`JgJ |JŠJšJ³JÉJâJûJK0%K0VK/‡K·K8ÉKL    L %L
1L <L5HL!~L% LÆL)ÛLM"M )M6MSMmMŠM©MÁMÚMîMõM    N!N<NPNaNrN NŽN N·N ÓNŒßNlO,„O8±O6êO(!PJPZP"rP•P.¯P&ÞP%Q+Q%CQ$iQ5ŽQ ÄQåQîQ8öQ
/R :R FRTReRxR4R!ÄRæRøRS.S
1S%<SbSrS{S~S    ‚SŒS ŸS ÀSÌS
ÓSÞS#öST:T VTcTzT'ŠTD²T÷TUU01U%bUˆUU7­U
åU*ðU#V%?V eV8sV¬V*ÅV-ðVW/W%EWkW‹W'›W ÃWÏW×W.öW(%X(NXwX•X­XÆX!áX"Y&YBY\YvY&ŽY(µYÞY(÷Y Z9ZWZtZ‹Z¦ZÄZ(áZ
[$[ <[][(y[¢[¹[Õ[ï[
\$\%=\#c\%‡\ ­\3Î\] ] 3]T]j]‡]˜] ®]Ï]ê]û]^,^F^c^z^“^¯^Í^ê^0_9_Q_$j__$¥_Ê_-ä_`0`G`!c` …`¦`¹`"Ò`õ` a,a(KataŒa%¬a.Òa*b,bDb.bb‘b«bÈb"äbc#c?c]cwc*c<ºc"÷cd%4d)Zd.„d.³dâd"ûde6e%Pe've"žeÁeÜeûef .fOfgfƒf ¢f(Ãfìfg!g9gWgng‰g£g ¿gàgþgh2h-Lh3zh®hÈhÞhähi iii i $i1i#Ekik yk…k –k¤k»k#Ñkõk% l3lKl%il^lzîlim8lm¥m¸m%Òm4øm-n(DnBmn°nÅÍnH“oÜp‹js2ös')t8Qt\Štçu)vB+v5nv6¤v)ÛvwX–wªïwSšx)îx"yx;z;´z,ðzg{:…{:À{”û{r|8}D<};}&½}!ä} ~m~2‚~µ~Ë~Þ~ñ~ $*Ep'…+­'Ù
€j €w
€‹ %µہ)î"‚;‚(V‚‚8“‚̂5߂ƒ%ƒ>ƒZƒmƒƒƒ“ƒ¦ƒ)¶ƒ)àƒ
„#„18„<j„§„!ń'ç„6…+F…Or…8…û….†-D†7r†*ª†Նî†    ‡7(‡`‡‡Ÿ‡²‡Çׇ÷‡%ˆ7ˆ&Wˆ~ˆ—ˆ´ˆ ψAۈ'‰9E‰‰>ž‰'݉Šu!Š,—ŠĊ݊-öŠ$‹C‹0[‹Œ‹¥‹JċŒ,#Œ"PŒsŒNŒŒیîŒ133 gˆ    ‘ › ©·!֍ø Ž&ŽAŽ_Ž0}Ž5®Ž.äŽ/7C    {!…§ď׏ۏ÷( <])uŸ·ϐᐑ•‘˜§‘@’U’i’x’‡’™’­’¾’͒è’ü’ “ ““<.“6k“!¢“%ēê“!
”,,”0Y”'Š”$²”'ה,ÿ”.,•"[•!~•, • Í•#î•–!(–8J–2ƒ–¶–!Ֆ÷–!—"9—%\—E‚—Mȗ#˜:˜U˜r˜‹˜d¡˜(™,/™!\™~™›™1»™$í™AšhTšA½šhÿš\h›ZśD œ@eœ¦œ*œ$íœ!(4 ])~2¨>۝1ž.Lž{ž,ž%ºžàž>ÿž">Ÿ*aŸ3ŒŸ.ÀŸ9) 9¾ *ø U#¡8y¡(²¡5Û¡(¢5:¢p¢‰¢©¢¢ â¢8£;<£Ex£!¾£à£+ÿ£9+¤&e¤#Œ¤"°¤'Ó¤%û¤B!¥)d¥3Ž¥<Â¥Aÿ¥AA¦jƒ¦<î¦G+§9s§D­§Bò§S5¨‰¨Q¦¨.ø¨K'©Is©;½© ù©ª#7ªW[ª=³ªLñªC>«=‚«À«4Ó«/¬8¬dJ¬8¯¬?è¬6(­)_­‰­M¥­<ó­0®ZO®$ª®"Ï®ò®-¯"2¯^U¯7´¯2ì¯/°O°)a°‹°¥°İ$×°ü°)±5;±2q±2¤±2×±5
²8@²8y²²².β,ý²)*³T³)h³'’³Dº³ÿ³&´<´ P´^´m´*‹´    ¶´    À´Ê´Ñ´â´&ó´µ :µ2Hµ{µ‚µ,™µ(Ƶ3ïµ5#¶0Y¶ж0©¶+Ú¶$·C+· o··)—·?Á·¸,¸&L¸<s¸°¸'¿¸$ç¸ ¹!(¹%J¹ p¹‘¹#°¹Ô¹'ð¹º1.º'`ºˆº"º0³º3äº'»@»S»f»‚»<œ»    Ù»ã»    ê»ô» ¼%¼@D¼…¼›¼±¼ɼÞ¼÷¼½;+½g½}½•½ª½EýJ    ¾;T¾¾/­¾;ݾC¿;]¿C™¿Ý¿ü¿@Àd\ÀÁÀÞÀóÀ'Á*:ÁeÁB„Á"ÇÁ"êÁ1 Â"?Â1b”´ÂÔÂÛÂä ö Ã3ÃOCÓãýÃÓÃ#ÚÃ#þÃ0"Ä SÄaÄ1}Ä0¯Ä àÄíÄýÄ*Å,;Å)hÅ(’Å"»Å$ÞÅÆÆ/ÆJÆ.dÆ"“Æ5¶Æ"ìÆ+Ç%;Ç6aÇ!˜ÇºÇ!ÓÇ7õÇ7-È$eÈ+ŠÈ$¶È8ÛÈ1É+FÉ!rÉ”É'­ÉÕÉÜÉGôÉ<Ê[ÊwÊ Ê®ÊÅÊ ÍÊÄÚÊ2ŸË*ÒË0ýË.Ì*BÌ7mÌ¥Ì;¹ÌõÌ-ÍM<ÍŠÍ'¨ÍÐÍçÍ'Î    -Î7ÎtHÎ)½Î*çÎÏ1(Ï.ZÏ"‰Ï¬ÏÌÏ"ìÏ"Р2Ð!SÐ$uÐRšÐ>íÐ6,ÑcÑ}Ñ™Ñ$¯Ñ#ÔÑ'øÑ Ò,8Ò eÒ0†Ò(·Ò9àÒ:Ó(UÓ#~Ó%¢Ó*ÈÓ#óÓÔ&4Ô[Ô#{ÔŸÔ$¾Ô'ãÔ- Õ9Õ'WÕ4Õ"´Õ$×Õ&üÕ)#ÖMÖTÖkÖ‚Ö–Ö§Ö%¾ÖäÖ0×5×!T×vו×'±×Ù×õ×*
Ø5ØHØRXØÝ«Øï‰Ù$yÚžÚ¶Ú8ÈÚ!Û#Û    3Û-=ÛkÛ'…ÛH­Û"öÛ#Ü%=ÜcÜzÜ&“Ü6ºÜñÜK
ÝVÝqݍݣÝSºÝJÞ'YÞ0Þ²Þ$ÑÞ*öÞ:!ß\ß0sßC¤ßèß-à//à&_à8†à¿à0Öàá(á7á<Má ŠáH—á$àáâ("â7Kâ(ƒâ7¬âäâøâã/.ã^ãxã—ã!§ãÉãÞã&õã    ä&ä+6äKbäs®äz"å å
ªåµå6Åå6üå83æ!læŽæAªæAìæC.çrç‹ç6ç6Ôç8 èDèZèsèŠè©èÈèäè,é:-é)hé’é§é"¼éßéôéê#,êiPê-ºêmèê&Vë.}ë%¬ëOÒë!"ìDì]ìwì“ìªì!Êììì íí=í*\í‡í(¡íÊíÝí$ùíî8îRîdî"€î!£î'Åîíîïï8ï!Wï&yï ïBºïýïð>3ðrð‚ð"“ð¶ðÏð2ìð)ñ!Iñ0kñ"œñ&¿ñ%æñ% ò2òLò]òPlò?½ò'ýò!%ó!Góió&ó!¦óÈó8Ûó ô35ôiô5|ô²ô.Ìôûôõ6õOõ$iõ'Žõ&¶õÝõAòõD4ö0yöªö)Êö*ôö÷>÷]÷|÷%›÷Á÷!×÷*ù÷$ø@øVørø-‹ø9¹ø6óø-*ùÈXù!ú!5ú.Wú8†ú¿ú3Øú4 û&Aûhûwû/ˆû#¸ûaÜûP>ü#ü#³ü=×ü    ý#ý)Cýmý†ý     ýªý    Êý"Ôý÷ý    þþ    <þ!FþDhþ ­þ9ºþ'ôþEÿ#bÿN†ÿÕÿ#ñÿ02cg!}Ÿµ:ÆRT*r ­0º)ë/9F€‡    0š)Ëõ*3P#n:’.ÍBü?\y‚    ›¥¬³ºÏ9âN,{)›Å.âe3wK«$÷,,I"v!™»!Ûý;7s‘¥%¹UßQ5    E‡    Í    4é    5
?T
]”
ò
r $y     ž X¨  n  ( +¸ ä $÷  %, <R > Î $í (8Nm€“© ¿Ìâéÿ09L†)¥/Ï#ÿ*#*N-y#§)Ëõg|!›*½ è5    ?'W"s¢/*1ZŒN©&ø&?F`†`ç^H(§Ð<ê'C@7„M¼%
=0@nH¯3ø=,j:êH%/nž'»ãü!-=k rDÄԍçuŠª/½@í".,Q$~£½Ö ò ÿ %%KVc:ºõ,#=ÔaG6 ?~ ›¾ Z!q!$‰!g®!"-"'C"k"{‰"Ò#xØ#*Q$|$ ›$¨$Å$=â$` %w%2ù%*,&@W&H˜&Pá&Ã2'yö'5p(!¦((È( ñ(()>;)%z)- )@Î)@*>P*#*3³*ç*þ*+,+D+:c+ž+·+4Ð+#,#),#M,#q,#•,#¹,#Ý,&-#(-(L-u-0•-,Æ-)ó-'.*E.%p.&–.#½.&á.'/)0/!Z/+|/'¨/%Ð/%ö/%0+B0*n0$™0s¾0?21+r1ž1l¾1+2    .2 82F2 W2d2#|2 2 ¹2Æ2à2õ2 3$373R3m3ƒ3›3·3Ê3Lç34494    ?4    I4S4W4v4–4„©4).5 X5f5 n5{5050À5ñ5>
6I6M6T6    \6f6x6 €6#Œ6;°6ì6ü67((71Q7ƒ7$ž7$Ã7!è7#
8&.8+U88†8 œ8 ©8¶8Ó8ï899.9*E9*p9-›9É93Û9: *: 7: E: R:1_:%‘:3·:ë:*;'-;U;
Z;+e;)‘;,»;.è;'<'?<g<y<€<•<%ª<Ð<é<ÿ<    = !=.=F=\=t=©}='>2C>/v>3¦>Ú>ö>?(?H?-`?.Ž?1½?ï?!    @ +@-L@z@š@¢@O©@ù@    AA (A5AHAF`A§AÄAÕAåAõA øA'B-B
@BKBNB
SB^BrB ŽBœB ¤B±B!ÇBéBC C%C    =C"GCEjC°CÊCÑC7áC:D    TD^D)wD¡D)©D6ÓD2
E =EKJE–E/²E>âE    !F+F';F#cF‡F*ŸF
ÊFÕFÝF)ýF('G-PG~G‘G­GÀG"ÜGÿGH6HEHTHdH}H“H £HÄHÖHíHII1III!aIƒIœI¯IÍIëIJJ8JHJ^JqJ!‰J«JÈJäJ*K+KDK VKwK‰K¤KÄKÜKûK L"L9LKLaLyLL¢L·LÖLïL*M0MBMRMqM!M£MºM!ÙMûMN$N=N VNcNxNN¦N½N!ÛNýNO"#O$FO&kO’O©O.¾OíOP P7PVPjPPžP³PÍP9ìP&Q@QTQ!pQ!’Q!´QÖQêQRR1R MRnR‹R¥RÃRÞRöRS2SFS[S$ySžS±SÄS!ÜSþST'T9TNTgT…TœT¯T*ÍT2øT+U@UYU`UxU€UƒU‡UŒU
£UÃØ£QÌäàQŸ§ˆÈI³þ,#»^å¾TN¥E+ü/¶3ÄH˜Eã„÷º _­’›[˜²þö%ô¾¦XoÍÛt×6ÒÕ½    Ì5!ÜŸüÍ><
ÅZ ñ…8Y}Çã馧…÷;œ±G)ÞDeÆ¡9u¥†Å.•=wmž+æŽ×Êù-™˜×`?=‹|4¸"¥Å„ØchÒmo//DZÖ´‘­hv“Š"ª_U’3‡ÆCÆì:«cIH3wuPWɶvÒk«ãج‹úHfPì¸Î݆nœV .(™ý@ùbˆ¯Ïö2Mk¥zٝ>§V¨ Oæáï¦y€t H,\½‚_Š#VY`ЏÏ6¬×ªšü'¼æJH¼…U9Ž® ÆMÅX¯€o5Ó{-ç˺,asÔ%Ÿ”i„Ö“â´×=œ7Ý›údY®(p¨ýÓDߩɠìPÔ¬@÷m¼÷€®j$ø^¹³œe&q^¨†$±ªt9(Ç?ƒ¸ˆËôseäFµA* é„©D±ø¥Mp·|Ñþ›²WŒÀA—aÉ{âZÓlÓel‡ªr›£µÌõ£åÍm')ŽÙ‚w¾02èXy6Ê8Ru    ÐÁÁxäyоg|h²*2kžÞú1EK(&Zµ{Uè|-sT
°Ÿ<˜‘! 8Cb6jÁSIE¤àrÈÇÇBCnát4šwÛcÐ)5ñÔrx7äƒê£%W=9ìNûçW–ÿˆv
zîkŽ ÐÚïô¢•ó}
}(c¡£À¬â]oue.šÚ¡‰ò´…%2 œŠ“ SŒ    €Ž™¤Ë­?÷+n”é׉ÛbŒ‡SyêqKø¹õEŠÙ$\±ÜëÚÿiKÿ”ÎÊ~KÞÊÒ8¢_ÈBLK¤®9¦Íî$âG‘¾g'R{ÀL4ÜêTüR’pï .»´Ø¤vÅÑO9Õª¹³I}#ÏfV<ff,y¿0‡šï
E|‘+¸À+q7ç¿Õ[“#<&MG:dUj˜qÉs̰‰®•†ŸÕž³#Ö©ƒ° 1ÂÞù ^L¢µ}s’@%ÂÑ.þ¨¡‚‚–l/À+¸´]3 ©ۑ³þ|FÏö©žJ½ӓ—Œî4r©P¤¢ÏP¿    ð1á›[ …ò lwԆXa‚BõTóFSD\—!Àd*,= ¶³›Â4~;‰¿ØßS… ·b:ÚF¬Š_ÜëQG¯àIåßg¤õ0G)¾²ª‚ñõ@æéO–—æ~1ƒ‘-ËÿJéÊ`° ø“ù‹ad!ÚM`àn2SUÑLüѧˆnðWðö°:XÏÙ¶íÚkËÔBêÉN*F<”)ÝP[7™_”Ö¸DQûƒ´R[îÕxš:Lí>ÈY
«úˆë‰5ŠŒšŽs^*«­CAíø6l˜«\ 3Áå‰Z¯1bd–Ì­¢Î™N6–;¦¼H‡7Yç·‹†¹!»0åTi§i£»Ù)èÎ:ÄJ0ì®R”û·Ä •ÁÄÄÉÆfÛ^Íp8g{ÃãÛö{Ãÿ½ÜB²F’ß'4QrA~ ¿%    "5VÔhÆ·<5Ãı ðtK‹Që]ûqÊև òçý’."ñÇ¿ €²jklV0]J&éïÅäp";‹«ÒY?•$°?¯NuêÞzÂov1'µócµý¼ÈãjíOj¥}¡a·tî¡aôè™7x±¶Ì2ôq#ÎI&c„`R    U¶ëGTúiCWØá\,ß];BíÒyÕ ¹@"Í€8òf g­Ð½ŸOÝvLdh-ó@zwð/áO>N—Z¢A>ºM'žCmºz~ûÝÙ•iâžhm\nA„J»eË/rxÓƒ–3ýºÇgœ¬&Ã!—(X]Ãzp½óŒè[¨º-Ñ Ö¨à§ÈxÜ>oñ?Á*¦$¯òu¼~=»`;bù    %Q (@i #%i, mod time %IM)
   <@f metadata>
   Using %s
   Using %s, %s
   created on %s    last modified on %s    last mounted on %s    last mounted on %s on %s
   while converting subcluster bitmap
   while trying to add journal to device %s
   while trying to create journal
   while trying to create journal file
   while trying to open journal on %s
 
 
%s: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
   (i.e., without -a or -p options)
 
 
WARNING!!!  The filesystem is mounted.   If you continue you ***WILL***
cause ***SEVERE*** filesystem damage.
 
 
 
  %u free %s, %u free inodes, %u directories%s
  Inode table at 
  Reserved GDT blocks at 
%11Lu: finished with errno %d
 
%12u inode used (%2.2f%%, out of %u)
 
%12u inodes used (%2.2f%%, out of %u)
 
%12u regular file
 
%12u regular files
 
%s: ***** FILE SYSTEM WAS MODIFIED *****
 
%s: ********** WARNING: Filesystem still has errors **********
 
 
*** journal has been regenerated ***
 
Bad extended option(s) specified: %s
 
Extended options are separated by commas, and may take an argument which
   is set off by an equals ('=') sign.
 
Valid extended options are:
   superblock=<superblock number>
   blocksize=<blocksize>
 
Bad journal options specified.
 
Journal options are separated by commas, and may take an argument which
   is set off by an equals ('=') sign.
 
Valid journal options are:
   size=<journal size in megabytes>
   device=<journal device>
   location=<journal location>
 
The journal size must be between 1024 and 10240000 filesystem blocks.
 
 
Bad option(s) specified: %s
 
Extended options are separated by commas, and may take an argument which
   is set off by an equals ('=') sign.
 
Valid extended options are:
   mmp_update_interval=<interval>
   num_backup_sb=<0|1|2>
   stride=<RAID per-disk data chunk in blocks>
   stripe-width=<RAID stride * data disks in blocks>
   offset=<offset to create the file system>
   resize=<resize maximum size in blocks>
   packed_meta_blocks=<0 to disable, 1 to enable>
   lazy_itable_init=<0 to disable, 1 to enable>
   lazy_journal_init=<0 to disable, 1 to enable>
   root_owner=<uid of root dir>:<gid of root dir>
   test_fs
   discard
   nodiscard
   quotatype=<quota type(s) to be enabled>
 
 
Bad quota options specified.
 
Following valid quota options are available (pass by separating with comma):
   [^]usr[quota]
   [^]grp[quota]
   [^]prj[quota]
 
 
 
Clearing the sparse superblock flag not supported.
 
Could not find journal device matching %s
 
Could not write %d blocks in inode table starting at %llu: %s
 
Emergency help:
 -p                   Automatic repair (no questions)
 -n                   Make no changes to the filesystem
 -y                   Assume "yes" to all questions
 -c                   Check for bad blocks and add them to the badblock list
 -f                   Force checking even if filesystem is marked clean
 
Error while enabling multiple mount protection feature.
Filesystem too small for a journal
 
If the @b is really bad, the @f can not be fixed.
 
Interrupt caught, cleaning up
 
Invalid non-numeric argument to -%c ("%s")
 
 
Journal size too big for filesystem.
 
Resizing bigalloc file systems has not been fully tested.  Proceed at
your own risk!  Use the force option if you want to go ahead anyway.
 
 
Running additional passes to resolve @bs claimed by more than one @i...
Pass 1B: Rescanning for @m @bs
 
Running e2image on a R/W mounted filesystem can result in an
inconsistent image which will not be useful for debugging purposes.
Use -f option if you really want to do that.
 
Setting the sparse superblock flag not supported
for filesystems with the meta_bg feature enabled.
 
Sparse superblock flag set.  %s
The @S could not be read or does not describe a valid ext2/ext3/ext4
@f.  If the @v is valid and it really contains an ext2/ext3/ext4
@f (and not swap or ufs or something else), then the @S
is corrupt, and you might try running e2fsck with an alternate @S:
    e2fsck -b 8193 <@v>
 or
    e2fsck -b 32768 <@v>
 
 
The bad @b @i has probably been corrupted.  You probably
should stop now and run e2fsck -c to scan for bad blocks
in the @f.
 
The device apparently does not exist; did you specify it correctly?
 
The filesystem already has sparse superblocks.
 
The requested journal size is %d blocks; it must be
between 1024 and 10240000 blocks.  Aborting.
 
Warning: '^quota' option overrides '-Q'arguments.
 
Warning: RAID stripe-width %u not an even multiple of stride %u.
 
 
Warning: offset specified without an explicit file system size.
Creating a file system with %llu blocks but this might
not be what you want.
 
 
Warning: the bigalloc feature is still under development
See https://ext4.wiki.kernel.org/index.php/Bigalloc for more information
 
 
Warning: the fs_type %s is not defined in mke2fs.conf
 
 
Your mke2fs.conf file does not define the %s filesystem type.
             # of inodes with ind/dind/tind blocks: %u/%u/%u
             Extent depth histogram:        %s -I device image-file
       %s -k
       %s -ra  [  -cfnp  ] [ -o src_offset ] [ -O dest_offset ] src_fs [ dest_fs ]
       %s [-r|t] [-n num] [-s socketpath]
  %s superblock at   Block bitmap at   Free blocks:   Free inodes:  %s remaining at %.2f MB/s (%u fast symbolic link)
 (%u fast symbolic links)
 ('a' enables 'yes' to all)  (EXPECTED 0x%04x) (check after next mount) (check deferred; on battery) (check in %ld mounts) (y/n) -v                   Be verbose
 -b superblock        Use alternative superblock
 -B blocksize         Force blocksize when looking for superblock
 -j external_journal  Set location of the external journal
 -l bad_blocks_file   Add to badblocks list
 -L bad_blocks_file   Set badblocks list
 -z undo_file         Create an undo file
 -z "%s" Done.
 Group descriptor at  Inode bitmap at  contains a file system with errors csum 0x%04x has been mounted %u times without being checked has filesystem last checked time in the future has gone %u days without being checked primary superblock features different from backup was not cleanly unmounted#    Num=%llu, Size=%llu, Cursor=%llu, Sorted=%llu
# Extent dump:
%12llu block used (%2.2f%%, out of %llu)
%12llu blocks used (%2.2f%%, out of %llu)
%12u bad block
%12u bad blocks
%12u block device file
%12u block device files
%12u character device file
%12u character device files
%12u directory
%12u directories
%12u fifo
%12u fifos
%12u file
%12u files
%12u large file
%12u large files
%12u link
%12u links
%12u non-contiguous directory (%0d.%d%%)
%12u non-contiguous directories (%0d.%d%%)
%12u non-contiguous file (%0d.%d%%)
%12u non-contiguous files (%0d.%d%%)
%12u socket
%12u sockets
%12u symbolic link%12u symbolic links%6.2f%% done, %s elapsed. (%d/%d/%d errors)%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)
%B (%b) causes @d to be too big.  %B (%b) causes file to be too big.  %B (%b) causes symlink to be too big.  %B (%b) overlaps @f metadata in @i %i.  %d blocks already contained the data to be copied
%d byte inodes are too small for inline data; specify larger size%d-byte blocks too big for system (max %d)%llu / %llu blocks (%d%%)%llu blocks (%2.2f%%) reserved for the super user
%s %s: status is %x, should never happen.
%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)
%s alignment is offset by %lu bytes.
%s and subsequent UUID
%s and subsequent %d UUIDs
%s contains `%s' data
%s contains a %s file system
%s contains a %s file system labelled '%s'
%s has unsupported feature(s):%s is apparently in use by the system; %s is in use.
%s is mounted.
%s is mounted; %s is not a block special device.
%s is not a journal device.
%s may be further corrupted by superblock rewrite
%s requires '-O 64bit'
%s: %s filename nblocks blocksize
%s: %s trying backup blocks...
%s: %s while reading bad blocks inode
%s: %s while using the backup blocks%s: %s.
%s: %u/%u files (%0d.%d%% non-contiguous), %llu/%llu blocks
%s: ***** REBOOT SYSTEM *****
%s: Allowing users to allocate all blocks. This is dangerous!
%s: Corrupt undo file header.
%s: Error %d while executing fsck.%s for %s
%s: Header checksum doesn't match.
%s: Not an undo file.
%s: Size of device (0x%llx blocks) %s too big to be expressed
   in 32 bits using a blocksize of %d.
%s: The -n and -w options are mutually exclusive.
 
%s: Undo block size too large.
%s: Undo block size too small.
%s: Unknown undo file feature set.
%s: Writing to the journal is not supported.
%s: block %llu is too long.%s: clean, %u/%u files, %llu/%llu blocks%s: e2fsck canceled.
%s: going back to original superblock
%s: h=%3d s=%3d c=%4d   start=%8d size=%8lu end=%8d
%s: journal too short
%s: key block checksum error at %llu.
%s: no valid journal superblock found
%s: recovering journal
%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass number
%s: too many arguments
%s: too many devices
%s: wait: No more child process?!?
%s: won't do journal recovery while read-only
%s: wrong key magic at %llu
%s? no
 
%s? yes
 
%u block group
%u block groups
%u blocks per group, %u clusters per group
%u blocks per group, %u fragments per group
%u inodes per group
%u inodes scanned.
%u inodes, %llu blocks
' to disable 64-bit mode.
' to enable 64-bit mode.
'%s' must be before 'resize=%u'
'-R' is deprecated, use '-E' instead'.' @d @e in @d @i %i is not NULL terminated
'..' @d @e in @d @i %i is not NULL terminated
'..' in %Q (%i) is %P (%j), @s %q (%d).
(NONE)(There are %N @is containing @m @bs.)
 
(and reboot afterwards!)
(no prompt),, %u unused inodes
, Group descriptors at , check forced.
, csum 0x%08x--waiting-- (pass %d)
-O may only be specified once-a option can only be used with raw or QCOW2 images.-o may only be specified once/@l has inline data
/@l is encrypted
/@l is not a @d (ino=%i)
/@l not found.  64-bit filesystem support is not enabled.  The larger fields afforded by this feature enable full-strength checksumming.  Pass -O 64bit to rectify.
64-bit filesystem support is not enabled.  The larger fields afforded by this feature enable full-strength checksumming.  Run resize2fs -b to rectify.
<Reserved inode 10><Reserved inode 9><The NULL inode><The bad blocks inode><The boot loader inode><The group descriptor inode><The group quota inode><The journal inode><The undelete directory inode><The user quota inode><n><proceeding>
<y>= is incompatible with - and +
@A %N contiguous @b(s) in @b @g %g for %s: %m
@A @a region allocation structure.  @A @b @B (%N): %m
@A @b buffer for relocating %s
@A @d @b array: %m
@A @i @B (%N): %m
@A @i @B (@i_dup_map): %m
@A @x region allocation structure.  @A icount link information: %m
@A icount structure: %m
@A memory for encrypted @d list
@A new @d @b for @i %i (%s): %m
@A refcount structure (%N): %m
@D @i %i has zero dtime.  @E @L to '.'  @E @L to @d %P (%Di).
@E @L to the @r.
@E has @D/unused @i %Di.  @E has @n @i #: %Di.
@E has a @z name.
@E has a non-unique filename.
Rename to %s@E has an incorrect filetype (was %Dt, @s %N).
@E has filetype set.
@E has illegal characters in its name.
@E has rec_len of %Dr, @s %N.
@E is duplicate '.' @e.
@E is duplicate '..' @e.
@E points to @i (%Di) located in a bad @b.
@E references @i %Di found in @g %g's unused inodes area.
@E references @i %Di in @g %g where _INODE_UNINIT is set.
@I %B (%b) found in @o @i %i.
@I %B (%b) in @i %i.  @I %B (%b) in bad @b @i.  @I @i %i in @o @i list.
@I @o @i %i in @S.
@S @b_size = %b, fragsize = %c.
This version of e2fsck does not support fragment sizes different
from the @b size.
@S @bs_per_group = %b, should have been %c
@S first_data_@b = %b, should have been %c
@S has an @n @j (@i %i).
@S has invalid MMP block.  @S has invalid MMP magic.  @S has_@j flag is clear, but a @j is present.
@S hint for external superblock @s %X.  @S last mount time (%t,
   now = %T) is in the future.
@S last mount time is in the future.
   (by less than a day, probably due to the hardware clock being incorrectly set)
@S last write time (%t,
   now = %T) is in the future.
@S last write time is in the future.
   (by less than a day, probably due to the hardware clock being incorrectly set)
@S metadata_csum supersedes uninit_bg; both feature bits cannot be set simultaneously.@S metadata_csum_seed is not necessary without metadata_csum.@S needs_recovery flag is clear, but @j has data.
@S needs_recovery flag is set, but no @j is present.
@a @b %b has h_@bs > 1.  @a @b %b has reference count %r, @s %N.  @a @b %b is corrupt (@n name).  @a @b %b is corrupt (@n value).  @a @b %b is corrupt (allocation collision).  @a @b @F @n (%If).
@a in @i %i has a hash (%N) which is @n
@a in @i %i has a namelen (%N) which is @n
@a in @i %i has a value @b (%N) which is @n (must be 0)
@a in @i %i has a value offset (%N) which is @n
@a in @i %i has a value size (%N) which is @n
@b @B differences: @b @B for @g %g is not in @g.  (@b %b)
@d @e for '.' in %p (%i) is big.
@d @i %i @b %b should be at @b %c.  @d @i %i has @x marked uninitialized at @b %c.  @d @i %i has an unallocated %B.  @d @i %i, %B, offset %N: @d corrupted
@d @i %i, %B, offset %N: @d has no checksum.
@d @i %i, %B, offset %N: filename too long
@d @i %i, %B: @d passes checks but fails checksum.
@f @j @S is unknown type %N (unsupported).
It is likely that your copy of e2fsck is old and/or doesn't support this @j format.
It is also possible the @j @S is corrupt.
@f contains large files, but lacks LARGE_FILE flag in @S.
@f did not have a UUID; generating one.
 
@f does not have resize_@i enabled, but s_reserved_gdt_@bs
is %N; @s zero.  @f has feature flag(s) set, but is a revision 0 @f.  @g %g @b @B does not match checksum.
@g %g @b(s) in use but @g is marked BLOCK_UNINIT
@g %g @i @B does not match checksum.
@g %g @i(s) in use but @g is marked INODE_UNINIT
@g %g's @b @B (%b) is bad.  @g %g's @b @B at %b @C.
@g %g's @i @B (%b) is bad.  @g %g's @i @B at %b @C.
@g %g's @i table at %b @C.
@g descriptor %g checksum is %04x, should be %04y.  @g descriptor %g has invalid unused inodes count %b.  @g descriptor %g marked uninitialized without feature set.
@h %i has a tree depth (%N) which is too big
@h %i has an @n root node.
@h %i has an unsupported hash version (%N)
@h %i uses an incompatible htree root node flag.
@i %i (%Q) has @n mode (%Im).
@i %i (%Q) is an @I @b @v.
@i %i (%Q) is an @I FIFO.
@i %i (%Q) is an @I character @v.
@i %i (%Q) is an @I socket.
@i %i @a @b %b passes checks, but checksum does not match @b.  @i %i @a is corrupt (allocation collision).  @i %i @x tree (at level %b) could be narrower.  @i %i @x tree (at level %b) could be shorter.  @i %i @x tree could be more shallow (%b; could be <= %c)
@i %i block %b conflicts with critical metadata, skipping block checks.
@i %i extent block passes checks, but checksum does not match extent
   (logical @b %c, physical @b %b, len %N)
@i %i has @x header but inline data flag is set.
@i %i has EXTENTS_FL flag set on @f without extents support.
@i %i has INDEX_FL flag set but is not a @d.
@i %i has INDEX_FL flag set on @f without htree support.
@i %i has INLINE_DATA_FL flag but @a not found.  @i %i has INLINE_DATA_FL flag on @f without inline data support.
@i %i has a bad @a @b %b.  @i %i has a duplicate @x mapping
   (logical @b %c, @n physical @b %b, len %N)
@i %i has a extra size (%IS) which is @n
@i %i has an @n extent
   (logical @b %c, @n physical @b %b, len %N)
@i %i has an @n extent
   (logical @b %c, physical @b %b, @n len %N)
@i %i has an invalid extent node (blk %b, lblk %c)
@i %i has corrupt @x header.  @i %i has illegal @b(s).  @i %i has imagic flag set.  @i %i has inline data and @x flags set but i_block contains junk.
@i %i has inline data, but @S is missing INLINE_DATA feature
@i %i has out of order extents
   (@n logical @b %c, physical @b %b, len %N)
@i %i has zero length extent
   (@n logical @b %c, physical @b %b)
@i %i is a %It but it looks like it is really a directory.
@i %i is a @z @d.  @i %i is in extent format, but @S is missing EXTENTS feature
@i %i is in use, but has dtime set.  @i %i is too big.  @i %i logical @b %b (physical @b %c) violates cluster allocation rules.
Will fix in pass 1B.
@i %i missing EXTENT_FL, but is in extents format
@i %i on bigalloc @f cannot be @b mapped.  @i %i passes checks, but checksum does not match @i.  @i %i ref count is %Il, @s %N.  @i %i seems to contain garbage.  @i %i seems to have @b map but inline data and @x flags set.
@i %i seems to have inline data but @x flag is set.
@i %i was part of the @o @i list.  @i %i, end of extent exceeds allowed value
   (logical @b %c, physical @b %b, len %N)
@i %i, i_@bs is %Ib, @s %N.  @i %i, i_size is %Is, @s %N.  @i @B differences: @i @B for @g %g is not in @g.  (@b %b)
@i count in @S is %i, @s %j.
@i table for @g %g is not in @g.  (@b %b)
WARNING: SEVERE DATA LOSS POSSIBLE.
@is that were part of a corrupted orphan linked list found.  @j @S has an unknown incompatible feature flag set.
@j @S has an unknown read-only feature flag set.
@j @S is corrupt.
@j @i is not in use, but contains data.  @j is not regular file.  @j version not supported by this e2fsck.
@m @b(s) in @i %i:@m @bs already reassigned or cloned.
 
@n @h %d (%q).  @n @i number for '.' in @d @i %i.
@p @h %d (%q): bad @b number %b.
@p @h %d: %B has @n count (%N)
@p @h %d: %B has @n depth (%N)
@p @h %d: %B has @n limit (%N)
@p @h %d: %B has an unordered hash table
@p @h %d: %B has bad max hash
@p @h %d: %B has bad min hash
@p @h %d: %B not referenced
@p @h %d: %B referenced twice
@p @h %d: internal node fails checksum.
@p @h %d: root node fails checksum.
@p @h %d: root node is @n
@q @i is not in use, but contains data.  @q @i is visible to the user.  @r has dtime set (probably due to old mke2fs).  @r is not a @d.  @r is not a @d; aborting.
@r not allocated.  @u @i %i
@u @z @i %i.  A block group is missing an inode tableA profile section header has a non-zero valueABORTEDALLOCATEDAbortAborting...
Aborting....
Adding dirhash hint to @f.
 
Adding journal to device %s: Aerror allocatingAfter running e2fsck, please run `resize2fs %s %sAllocateAllocating group tables: Already cleared %B (%b) found in @o @i %i.
Attempt to add a relation to node which is not a sectionAttempt to fudge end of block bitmap past the real endAttempt to fudge end of inode bitmap past the real endAttempt to modify a block mapping via a read-only block iteratorAttempt to modify read-only profileAttempt to read block from filesystem resulted in short readAttempt to write block to filesystem resulted in short writeAttempt to write to filesystem opened read-onlyBLKFLSBUF ioctl not supported!  Can't flush buffers.
Backing up @j @i @b information.
 
BackupBad @b %b used as bad @b @i indirect @b.  Bad @b @i has an indirect @b (%b) that conflicts with
@f metadata.  Bad @b @i has illegal @b(s).  Bad CRC detected in file systemBad block %u out of range; ignored.
Bad block list says the bad block list @i is bad.  Bad blocks: %uBad group level in profile structuresBad linked list in profile structuresBad magic number in super-blockBad magic value in profile iteratorBad magic value in profile_file_data_tBad magic value in profile_file_tBad magic value in profile_nodeBad magic value in profile_section_tBad magic value in profile_tBad nameset passed to query routineBad number: %s
Bad or non-existent /@l.  Cannot reconnect.
Bad parent pointer in profile structuresBbitmapBegin pass %d (max = %lu)
Block %b in the primary @g descriptors is on the bad @b list
Block %d in primary superblock/group descriptor area bad.
Block bitmap checksum does not match bitmapBlock bitmap not loadedBlock bitmaps are not the sameBlock group descriptor size incorrectBlock size=%u (log=%u)
Blocks %u through %u must be good in order to build a filesystem.
CLEAREDCONTINUINGCREATEDCan not continue.Can not stat output
Can't allocate block bufferCan't check if filesystem is mounted due to missing mtab fileCan't find external @j
Can't read a block bitmapCan't read an inode bitmapCan't read an inode tableCan't read group descriptorsCan't read next inodeCan't set value on section nodeCan't support bigalloc feature without extents featureCan't write a block bitmapCan't write an inode bitmapCan't write an inode tableCan't write group descriptorsCannot allocate space for /@l.
Place lost files in root directory insteadCannot change the 64bit feature on a filesystem that is larger than 2^32 blocks.
Cannot change the 64bit feature while the filesystem is mounted.
Cannot continue, aborting.
 
Cannot create filesystem with requested number of inodesCannot disable 64-bit mode while mounted!
Cannot disable metadata_csum on a mounted filesystem!
Cannot enable 64-bit mode while mounted!
Cannot enable metadata_csum on a mounted filesystem!
Cannot get geometry of %s: %sCannot get size of %s: %sCannot iterate data blocks of an inode containing inline dataCannot locate journal device. It was NOT removed
Use -f option to remove missing journal device.
Cannot modify a journal device.
Cannot open %s: %sCannot proceed with file system checkCannot proceed without a @r.
Cannot set and unset 64bit feature.
Cconflicts with some other fs @bChanging the inode size not supported for filesystems with the flex_bg
feature enabled.
Checking all file systems.
Checking blocks %lu to %lu
Checking for bad blocks (non-destructive read-write test)
Checking for bad blocks (read-only test): Checking for bad blocks in non-destructive read-write mode
Checking for bad blocks in read-only mode
Checking for bad blocks in read-write mode
ClearClear @jClear HTree indexClear inodeClearingClearing filesystem feature '%s' not supported.
Clearing the flex_bg flag would cause the the filesystem to be
inconsistent.
Clone multiply-claimed blocksCluster size=%u (log=%u)
Connect to /lost+foundContinueConverting the filesystem to 32-bit.
Converting the filesystem to 64-bit.
Copied %llu / %llu blocks (%d%%) in %s Copying Copying files into the device: Corrupt directory block %llu: bad name_len (%d)
Corrupt directory block %llu: bad rec_len (%d)
Corrupt extentCorrupt extent headerCorrupt extent indexCorrupt group descriptor: bad block for block bitmapCorrupt group descriptor: bad block for inode bitmapCorrupt group descriptor: bad block for inode tableCorruption found in @S.  (%s = %N).
Could not allocate block in ext2 filesystemCould not allocate inode in ext2 filesystemCould not expand /@l: %m
Could not open %s: %s
Could not reconnect %i: %m
Could this be a zero-length partition?
Couldn't allocate block buffer (size=%d)
Couldn't allocate header buffer
Couldn't allocate memory for filesystem types
Couldn't allocate memory for new PATH.
Couldn't allocate memory to parse journal options!
Couldn't allocate memory to parse options!
Couldn't allocate path variable in chattr_dir_procCouldn't bind unix socket %s: %s
Couldn't clone file: %m
Couldn't create unix stream socket: %sCouldn't determine device size; you must specify
the size manually
Couldn't determine device size; you must specify
the size of the filesystem
Couldn't find journal superblock magic numbersCouldn't find valid filesystem superblock.
Couldn't fix parent of @i %i: %m
 
Couldn't fix parent of @i %i: Couldn't find parent @d @e
 
Couldn't init profile successfully (error: %ld).
Couldn't kill uuidd running at pid %d: %s
Couldn't listen on unix socket %s: %s
Couldn't open profile fileCouldn't parse date/time specifier: %sCreateCreating %lu huge file(s) Creating filesystem with %llu %dk blocks and %u inodes
Creating journal (%d blocks): Creating journal (%u blocks): Creating journal inode: Creating journal on device %s: Creating regular file %s
DdeletedDelete fileDevice size reported to be zero.  Invalid partition specified, or
   partition table wasn't reread after running fdisk, due to
   a modified partition being busy and in use.  You may need to reboot
   to re-read your partition table.
Directories count wrong for @g #%g (%i, counted=%j).
Directory block checksum does not match directory blockDirectory block does not have space for checksumDirectory hash unsupportedDisabling checksums could take some time.Discard succeeded and will return 0s - skipping inode table wipe
Discarding device blocks: Disk write-protected; use the -n option to do a read-only
check of the device.
Do you really want to continueDuplicate @E found.  Duplicate @e '%Dn' found.
   Marking %p (%i) to be rebuilt.
 
Duplicate or bad @b in use!
E2FSCK_JBD_DEBUG "%s" not an integer
 
E2image snapshot not in useE@e '%Dn' in %p (%i)ERROR: Couldn't open /dev/null (%s)
EXPANDEDEXT2 directory corruptedEither all or none of the filesystem types passed to -t must be prefixed
with 'no' or '!'.
Empty directory block %u (#%d) in inode %u
Enabling checksums could take some time.Encrypted @E is too short.
Error adjusting refcount for @a @b %b (@i %i): %m
Error calling uuidd daemon (%s): %s
Error converting subcluster @b @B: %m
Error copying in replacement @b @B: %m
Error copying in replacement @i @B: %m
Error creating /@l @d (%s): %m
Error creating root @d (%s): %m
Error deallocating @i %i: %m
Error determining size of the physical @v: %m
Error flushing writes to storage device: %m
Error in resizing the inode size.
Run e2undo to undo the file system changes. 
Error in using clear_mmp. It must be used with -f
Error initializing quota context in support library: %m
Error iterating over @d @bs: %m
Error loading external journalError moving @j: %m
 
Error reading @a @b %b (%m).  Error reading @a @b %b for @i %i.  Error reading @d @b %b (@i %i): %m
Error reading @i %i: %m
Error reading block %lu (%s) while %s.  Error reading block %lu (%s).  Error reading from client, len = %d
Error setting @b @g checksum info: %m
Error storing @d @b information (@i=%i, @b=%b, num=%N): %m
Error storing @i count information (@i=%i, count=%N): %m
Error validating file descriptor %d: %s
Error while adjusting @i count on @i %i
Error while determining whether %s is mounted.Error while iterating over @bs in @i %i (%s): %m
Error while iterating over @bs in @i %i: %m
Error while reading bitmaps
Error while reading over @x tree in @i %i: %m
Error while scanning @is (%i): %m
Error while scanning inodes (%i): %m
Error while trying to find /@l: %m
Error writing @a @b %b (%m).  Error writing @d @b %b (@i %i): %m
Error writing block %lu (%s) while %s.  Error writing block %lu (%s).  Error writing file system info: %m
Error writing quota info for quota type %N: %m
Error: ext2fs library version out of date!
Error: header size is bigger than wrt_size
Errors detected; running e2fsck is required.
Estimated minimum size of the filesystem: %llu
ExpandExt2 directory already existsExt2 directory block not foundExt2 file already existsExt2 file too bigExt2 inode is not a directoryExt2fs directory block list is emptyExt2fs operation not supportedExtended attribute block checksum does not match blockExtended attribute block has a bad headerExtended attribute has an incorrect hashExtended attribute has an invalid name lengthExtended attribute has an invalid value lengthExtended attribute has an invalid value offsetExtended attribute key not foundExtending the inode tableExtent block checksum does not match extent blockExtent length is invalidExtent not foundExtents MUST be enabled for a 64-bit filesystem.  Pass -O extents to rectify.
Extents are not enabled.  The file extent tree can be checksummed, whereas block maps cannot.  Not enabling extents reduces the coverage of metadata checksumming.  Pass -O extents to rectify.
Extents are not enabled.  The file extent tree can be checksummed, whereas block maps cannot.  Not enabling extents reduces the coverage of metadata checksumming.  Re-run with -O extent to rectify.
External @j @S checksum does not match @S.  External @j does not support this @f
External @j has bad @S
External @j has multiple @f users (unsupported).
Extra closing brace in profileFILE DELETEDFIXEDFailed to allocate block bitmap when increasing inode size
Failed to change inode size
Failed to create dirs_to_hash iterator: %m
Failed to iterate extents in @i %i
   (op %s, blk %b, lblk %c): %m
Failed to optimize @x tree %p (%i): %m
Failed to optimize directory %q (%d): %m
Failed to parse fs types list
Failed to read block bitmap
Failed to read inode bitmap
Failed to relocate blocks during inode resize 
Fast symlink %i has EXTENT_FL set.  Ffor @i %i (%Q) isFile %Q (@i #%i, mod time %IM) 
  has %r @m @b(s), shared with %N file(s):
File not found by ext2_lookupFile open read-onlyFile system is corruptedFilesystem UUID: %s
Filesystem at %s is mounted on %s, and on-line resizing is not supported on this system.
Filesystem at %s is mounted on %s; on-line resizing required
Filesystem does not support online resizingFilesystem features not supported with revision 0 filesystems
Filesystem has unexpected block sizeFilesystem has unsupported feature(s)Filesystem has unsupported read-only feature(s)Filesystem is missing ext_attr or inline_data featureFilesystem label=%s
Filesystem larger than apparent device size.Filesystem mounted or opened exclusively by another program?
Filesystem revision too highFilesystem too large to use legacy bitmapsFilesystem's UUID not found on journal device.
Finished with %s (exit status %d)
First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'
First data block=%u
First_meta_bg is too big.  (%N, max value %g).  FixFixing size of inline @d @i %i failed.
Flags of %s set as Flex_bg feature not enabled, so flex_bg size may not be specifiedForce rewriteFound @n V2 @j @S fields (from V1 @j).
Clearing fields beyond the V1 @j @S...
 
Found a %s partition table in %s
Fragment size=%u (log=%u)
Free @bs count wrong (%b, counted=%c).
Free @bs count wrong for @g #%g (%b, counted=%c).
Free @is count wrong (%i, counted=%j).
Free @is count wrong for @g #%g (%i, counted=%j).
From block %lu to %lu
Generated %d UUID's:
Generated random UUID: %s
Generated time UUID %s and subsequent UUID
Generated time UUID %s and %d subsequent UUIDs
Generated time UUID: %s
Get a newer version of e2fsck!Group %lu: (Blocks Group descriptors look bad...HTREE INDEX CLEAREDHuge files will be zero'ed
I/O Channel does not support 64-bit block numbersIGNOREDINODE CLEAREDIO Channel failed to seek on read or writeIO error during replay; run e2fsck NOW!
If you are sure the filesystem is not in use on any node, run:
'tune2fs -f -E clear_mmp {device}'
If you only use kernels newer than v4.4, run 'tune2fs -O metadata_csum_seed' and re-run this command.
Ignore errorIillegalIllegal block numberIllegal block number passed to ext2fs_mark_block_bitmapIllegal block number passed to ext2fs_test_block_bitmapIllegal block number passed to ext2fs_unmark_block_bitmapIllegal doubly indirect block foundIllegal extended attribute block numberIllegal generic bit number passed to ext2fs_mark_generic_bitmapIllegal generic bit number passed to ext2fs_test_generic_bitmapIllegal generic bit number passed to ext2fs_unmark_generic_bitmapIllegal indirect block foundIllegal inode numberIllegal inode number passed to ext2fs_mark_inode_bitmapIllegal inode number passed to ext2fs_test_inode_bitmapIllegal inode number passed to ext2fs_unmark_inode_bitmapIllegal number for blocks per groupIllegal number for flex_bg sizeIllegal number of blocks!
Illegal or malformed device nameIllegal triply indirect block foundImage (%s) is compressed
Image (%s) is encrypted
Incomplete undo record; run e2fsck.
Inline @d @i %i size (%N) must be a multiple of 4.
Inode bitmap checksum does not match bitmapInode bitmap not loadedInode bitmaps are not the sameInode checksum does not match inodeInode does not use extentsInode doesn't have inline dataInode seems to contain garbageInode size must be a power of two- %sInsufficient space to recover lost files!
Move data off the @f and re-run e2fsck.
 
Insufficient space to store extended attribute dataInterior @x node level %N of @i %i:
Logical start %b does not match logical start %c at next level.  Internal error in ext2fs_expand_dirInternal error: couldn't find dir_info for %i.
Internal error: fudging end of bitmap (%N)
Internal error: max extent tree depth too large (%b; expected=%c).
Invalid # of backup superblocks: %s
Invalid EA version.
Invalid RAID stride: %s
Invalid RAID stripe-width: %s
Invalid UUID format
Invalid argument passed to ext2 libraryInvalid argument passed to profile libraryInvalid blocksize parameter: %s
Invalid boolean valueInvalid completion information file descriptorInvalid desc_size: '%s'
Invalid filesystem option set: %s
Invalid hash algorithm: %s
Invalid inode size %lu (max %d)
Invalid integer valueInvalid mmp_update_interval: %s
Invalid mount option set: %s
Invalid new size: %s
Invalid offset: %s
Invalid operation %d
Invalid profile_section objectInvalid readahead buffer size.
Invalid resize parameter: %s
Invalid root_owner: '%s'
Invalid stride lengthInvalid stride parameter: %s
Invalid stripe-width parameter: %s
Invalid superblock parameter: %s
Iteration through all top level section not supportedJournal checksum error found in %s
Journal corrupted in %s
Journal dev blocksize (%d) smaller than minimum blocksize %d
Journal flags inconsistentJournal must be at least 1024 blocksJournal needs recovery; running `e2fsck -E journal_only' is required.
Journal not foundJournal removed
Journal superblock magic number invalid!
Journal superblock not foundJournal superblock not found!
Journal transaction %i was corrupt, replay was aborted.
Journals not supported with revision 0 filesystems
Kernel does not support online resizingKernel does not support resizing a file system this largeKilled uuidd running at pid %d
Last @g @b @B uninitialized.  Last mount time does not match.
Last write time does not match.
Lifetime write counter does not match.
Lis a linkList of UUID's:
MMP block magic is bad. Try to fix it by running:
'e2fsck -f %s'
MMP interval is %u seconds and total wait time is %u seconds. Please wait...
MMP: block number beyond filesystem rangeMMP: device currently activeMMP: filesystem still in useMMP: invalid magic numberMMP: open with O_DIRECT failedMMP: undergoing an unknown operationMULTIPLY-CLAIMED BLOCKS CLONEDMagic number in MMP block does not match. expected: %x, actual: %x
Maximum filesystem blocks=%lu
Maximum of one test_pattern may be specified in read-only modeMemory allocation failedMemory used: %d, elapsed time: %6.3f/%6.3f/%6.3f
Memory used: %lu, Memory used: %luk/%luk (%luk/%luk), Missing '.' in @d @i %i.
Missing '..' in @d @i %i.
Missing open brace in profileMounting read-only.
Move mode is only allowed with raw images.Move mode requires all data mode.Moving @j from /%s to hidden @i.
 
Moving inode tableMultiple mount protection has been enabled with update interval %ds.
Multiple mount protection is enabled with update interval %d seconds.
Must use '-v', =, - or +
Need to update journal superblock.
New size smaller than minimum (%llu)
New size too large to be expressed in 32 bits
No 'down' extentNo 'next' extentNo 'previous' extentNo 'up' extentNo block for an inode with inline dataNo current nodeNo free space in extent mapNo free space in inline dataNo free space in the directoryNo more sectionsNo profile file openNo room in @l @d.  No room to insert extent in nodeNot enough reserved gdt blocks for resizingNot enough space to build proposed filesystemNot enough space to increase inode size 
Note: if several inode or block bitmap blocks or part
of the inode table require relocation, you may wish to try
running e2fsck with the '-b %S' option first.  The problem
may lie only with the primary block group descriptors, and
the backup block group descriptors may be OK.
 
OS type: %s
Offsets are only allowed with raw images.Old resize interface requested.
On-line resizing not supported with revision 0 filesystems
On-line shrinking not supportedOne or more @b @g descriptor checksums are invalid.  Only one of the options -p/-a, -n or -y may be specified.Operation not supported for inodes containing extentsOptimizing @x trees: Optimizing directories: Orphans detected; running e2fsck is recommended.
Out of memory erasing sectors %d-%d
Overwriting existing filesystem; this can be undone using the command:
    e2undo %s %s
 
PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B endpoints (%i, %j)
Padding at end of @b @B is not set. Padding at end of @i @B is not set. Partition offset of %llu (%uk) blocks not compatible with cluster size %u.
Pass 1Pass 1: Checking @is, @bs, and sizes
Pass 1C: Scanning directories for @is with @m @bs
Pass 1D: Reconciling @m @bs
Pass 1E: Optimizing @x trees
Pass 2Pass 2: Checking @d structure
Pass 3Pass 3: Checking @d connectivity
Pass 3A: Optimizing directories
Pass 4Pass 4: Checking reference counts
Pass 5Pass 5: Checking @g summary information
Pass completed, %u bad blocks found. (%d/%d/%d errors)
Peak memoryPerforming an on-line resize of %s to %llu (%dk) blocks.
Permission denied to resize filesystemPlease enable the extents feature with tune2fs before enabling the 64bit feature.
Please run 'e2fsck -f %s' first.
 
Please run 'e2fsck -fy %s' to fix the filesystem
after the aborted resize operation.
Please run `resize2fs %s %sPlease run e2fsck -fy %s.
Possibly non-existent device?
Possibly non-existent or swap device?
PrimaryProfile relation not foundProfile section header not at top levelProfile section not foundProfile version 0.0Programming error: multiple sequential refcount blocks created!
Programming error?  @b #%b claimed for no reason in process_bad_@b.
Project of %s set as %lu
QCOW2 image can not be written to the stdout!
RECONNECTEDRELOCATEDRandom test_pattern is not allowed in read-only modeRaw and qcow2 images cannot be installedReading and comparing: Recovering journal.
Recovery flag not set in backup @S, so running @j anyway.
RecreateRecreate @jRelocateRelocating @g %g's %s from %b to %c...
Relocating @g %g's %s to %c...
Relocating blocksReserved @i %i (%Q) has @n mode.  Resize @i (re)creation failed: %m.Resize @i not valid.  Resize inode is corruptResize_@i not enabled, but the resize @i is non-zero.  Resizing inodes could take some time.Resizing the filesystem on %s to %llu (%dk) blocks.
Restarting e2fsck from the beginning...
Root directory owner=%u:%u
Run @j anywayRunning command: %s
SALVAGEDSPLITSUPPRESSEDSalvageScanning inode tableScanning inodes...
Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'
Section already existsSetting UUID on a checksummed filesystem could take some time.Setting current mount count to %d
Setting default hash algorithm to %s (%d)
Setting error behavior to %d
Setting extended default mount options to '%s'
Setting feature 'metadata_csum_seed' is only supported
on filesystems with the metadata_csum feature enabled.
Setting filesystem feature '%s' not supported.
Setting filesystem feature 'sparse_super' not supported
for filesystems with the meta_bg feature enabled.
Setting filetype for @E to %N.
Setting free @bs count to %c (was %b)
Setting free @is count to %j (was %i)
Setting inode size %lu
Setting interval between checks to %lu seconds
Setting maximal mount count to %d
Setting multiple mount protection update interval to %lu second
Setting multiple mount protection update interval to %lu seconds
Setting reserved blocks count to %llu
Setting reserved blocks gid to %lu
Setting reserved blocks percentage to %g%% (%llu blocks)
Setting reserved blocks uid to %lu
Setting stride size to %d
Setting stripe width to %d
Setting time filesystem last checked to %s
Should never happen!  No sb in last super_sparse bg?
Should never happen!  Unexpected old_desc in super_sparse bg?
Should never happen: resize inode corrupt!
Shrinking inode size is not supported
Skipping journal creation in super-only mode
Sparse superblocks not supported with revision 0 filesystems
Special (@v/socket/fifo) @i %i has non-zero size.  Special (@v/socket/fifo) file (@i %i) has extents
or inline-data flag set.  Special (@v/socket/fifo/symlink) file (@i %i) has immutable
or append-only flag set.  SplitSplitting would result in empty nodeSsuper@bStopping now will destroy the filesystem, interrupt again if you are sure
Stride=%u blocks, Stripe width=%u blocks
Suggestion: Use Linux kernel >= 3.18 for improved stability of the metadata and journal checksum features.
Superblock backups stored on blocks: Superblock checksum does not match superblockSuperblock invalid,Supplied journal device not a block deviceSuppress messagesSymlink %Q (@i #%i) is @n.
Syntax error in e2fsck config file (%s, line #%d)
   %s
Syntax error in mke2fs config file (%s, line #%d)
   %s
Syntax error in profile relationSyntax error in profile section headerTDB: Corrupt databaseTDB: IO ErrorTDB: Invalid parameterTDB: Lock exists on other keysTDB: Locking errorTDB: Out of memoryTDB: Record does not existTDB: Record existsTDB: SuccessTDB: Write not permittedTRUNCATEDTesting with pattern 0xTesting with random pattern: The -D and -E fixes_only options are incompatible.The -E bmap2extent and fixes_only options are incompatible.The -T option may only be used onceThe -c and the -l/-L options may not be both used at the same time.
The -c option not supported when writing to stdout
The -c option only supported in raw mode
The -n and -D options are incompatible.The -n and -c options are incompatible.The -n and -l/-L options are incompatible.The -p option only supported in raw mode
The -t option is not supported on this version of e2fsck.
The -t option may only be used onceThe @f size (according to the @S) is %b @bs
The physical size of the @v is %c @bs
Either the @S or the partition table is likely to be corrupt!
The HURD does not support the filetype feature.
The HURD does not support the huge_file feature.
The HURD does not support the metadata_csum feature.
The Hurd does not support the filetype feature.
The UUID may only be changed when the filesystem is unmounted.
The bad @b @i looks @n.  The callback function will not handle this caseThe cluster size may not be smaller than the block size.
The containing partition (or device) is only %llu (%dk) blocks.
You requested a new size of %llu blocks.
 
The ext2 superblock is corruptThe file %s does not exist and no size was specified.
The file system superblock doesn't match the undo file.
The filesystem already has a journal.
The filesystem is already %llu (%dk) blocks long.  Nothing to do!
 
The filesystem is already 32-bit.
The filesystem is already 64-bit.
The filesystem on %s is now %llu (%dk) blocks long.
 
The filesystem revision is apparently too high for this version of e2fsck.
(Or the filesystem superblock is corrupt)
 
The has_journal feature may only be cleared when the filesystem is
unmounted or mounted read-only.
The huge_file feature may only be cleared when the filesystem is
unmounted or mounted read-only.
The inode is from a bad block in the inode tableThe inode size is already %lu
The inode size may only be changed when the filesystem is unmounted.
The journal superblock is corruptThe multiple mount protection feature can't
be set if the filesystem is mounted or
read-only.
The multiple mount protection feature cannot
be disabled if the filesystem is readonly.
The needs_recovery flag is set.  Please run e2fsck before clearing
the has_journal flag.
The primary @S (%b) is on the bad @b list.
The quota feature may only be changed when the filesystem is unmounted.
The resize maximum must be greater than the filesystem size.
The resize_inode and meta_bg features are not compatible.
They can not be both enabled simultaneously.
The test_fs flag is set (and ext4 is available).  This doesn't bode well, but we'll try to go on...
This filesystem will be automatically checked every %d mounts or
%g days, whichever comes first.  Use tune2fs -c or -i to override.
This may result in very poor performance, (re)-partitioning suggested.
Timestamp(s) on @i %i beyond 2310-04-04 are likely pre-1970.
Too big max bad blocks count %u - maximum is %uToo many bad blocks, aborting test
Too many illegal @bs in @i %i.
Too many references in tableToo many reserved group descriptor blocksToo many symbolic links encountered.Tried to set block bmap with missing indirect blockTruncateTruncatingUNEXPECTED INCONSISTENCY: the filesystem is being modified while fsck is running.
UNLINKEDUUID does not match.
UUID has changed since enabling metadata_csum.  Filesystem must be unmounted 
to safely rewrite all metadata to match the new UUID.
Unable to resolve '%s'Unconnected @d @i %i (%p)
Undo file corruptUndo file corruption; run e2fsck NOW!
Undo file superblock checksum doesn't match.
Unexpected @b in @h %d (%q).
Unexpected reply length from server %d
Unhandled error code (0x%x)!
Unimplemented ext2 library functionUnknown checksum algorithmUnknown extended option: %s
Unknown pass?!?UnlinkUnsupported journal versionUpdate quota info for quota type %NUpdating inode referencesUsage:  %s device...
 
Prints out the partition information for each given device.
For example: %s /dev/hda
 
Usage:  findsuper device [skipbytes [startkb]]
Usage: %s -r device
Usage: %s [-F] [-I inode_buffer_blocks] device
Usage: %s [-RVadlpv] [files...]
Usage: %s [-c|-l filename] [-b block-size] [-C cluster-size]
   [-i bytes-per-inode] [-I inode-size] [-J journal-options]
   [-G flex-group-size] [-N number-of-inodes] [-d root-directory]
   [-m reserved-blocks-percentage] [-o creator-os]
   [-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]
   [-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]
   [-t fs-type] [-T usage-type ] [-U UUID] [-e errors_behavior][-z undo_file]
   [-jnqvDFSV] device [blocks-count]
Usage: %s [-d] [-p pidfile] [-s socketpath] [-T timeout]
Usage: %s [-pRVf] [-+=aAcCdDeijPsStTu] [-v version] files...
Usage: %s [-panyrcdfktvDFV] [-b superblock] [-B blocksize]
       [-l|-L bad_blocks_file] [-C fd] [-j external_journal]
       [-E extended-options] [-z undo_file] device
Usage: %s [-r] [-t]
Usage: %s disk
Usage: e2label device [newlabel]
Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]
Usage: mklost+found
User cancel requestedUsing journal device's blocksize: %d
Version of %s set as %lu
WARNING: Could not confirm kernel support for metadata_csum_seed.
  This requires Linux >= v4.4.
WARNING: PROGRAMMING BUG IN E2FSCK!
   OR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.
@i_link_info[%i] is %N, @i.i_links_count is %Il.  They @s the same!
WARNING: Your /etc/fstab does not contain the fsck passno
   field.  I will kludge around things for you, but you
   should fix your /etc/fstab file as soon as you can.
 
WARNING: bad format on line %d of %s
WARNING: couldn't open %s: %s
WILL RECREATEWarning!  %s is in use.
Warning!  %s is mounted.
Warning... %s for device %s exited with signal %d.
Warning: %d-byte blocks too big for system (max %d), forced to continue
Warning: -K option is deprecated and should not be used anymore. Use '-E nodiscard' extended option instead!
Warning: Check time reached; running e2fsck is recommended.
Warning: Group %g's @S (%b) is bad.
Warning: Group %g's copy of the @g descriptors has a bad @b (%b).
Warning: Maximal mount count reached, running e2fsck is recommended.
Warning: Mounting unchecked fs, running e2fsck is recommended.
Warning: The journal is dirty. You may wish to replay the journal like:
 
   e2fsck -E journal_only %s
 
then rerun this command.  Otherwise, any changes made may be overwritten
by journal recovery.
Warning: There are still tables in the cache while putting the cache, data will be lost so the image may not be valid.
Warning: blocksize %d not usable on most systems.
Warning: could not erase sector %d: %s
Warning: could not read @b %b of %s: %m
Warning: could not read block 0: %s
Warning: could not write @b %b for %s: %m
Warning: illegal block %u found in bad block inode.  Cleared.
Warning: label too long, truncating.
Warning: label too long; will be truncated to '%s'
 
Warning: skipping journal recovery because doing a read-only filesystem check.
Warning: specified blocksize %d is less than device physical sectorsize %d
Warning: the backup superblock/group descriptors at block %u contain
   bad blocks.
 
Weird value (%ld) in do_read
While checking for on-line resizing supportWhile reading flags on %sWhile reading project on %sWhile reading version on %sWhile trying to add group #%dWhile trying to extend the last groupWill not write to an undo file while replaying it.
Writing block %llu
Writing inode tables: Writing superblocks and filesystem accounting information: Wrong magic number --- RESERVED_13Wrong magic number --- RESERVED_14Wrong magic number --- RESERVED_15Wrong magic number --- RESERVED_16Wrong magic number --- RESERVED_17Wrong magic number --- RESERVED_18Wrong magic number --- RESERVED_19Wrong magic number for 64-bit block bitmapWrong magic number for 64-bit generic bitmapWrong magic number for 64-bit inode bitmapWrong magic number for Ext2 Image HeaderWrong magic number for Powerquest io_channel structureWrong magic number for badblocks_iterate structureWrong magic number for badblocks_list structureWrong magic number for block_bitmap structureWrong magic number for directory block list structureWrong magic number for ext2 file structureWrong magic number for ext2_filsys structureWrong magic number for ext4 extent handleWrong magic number for ext4 extent saved pathWrong magic number for extended attribute structureWrong magic number for generic_bitmap structureWrong magic number for icount structureWrong magic number for inode io_channel structureWrong magic number for inode_bitmap structureWrong magic number for inode_scan structureWrong magic number for io_channel structureWrong magic number for io_manager structureWrong magic number for test io_channel structureWrong magic number for unix io_channel structureWrong undo file for this filesystemYou can remove this @b from the bad @b list and hope
that the @b is really OK.  But there are no guarantees.
 
You must have %s access to the filesystem or be root
You probably need to install an updated mke2fs.conf file.
 
Zeroing journal device: [*] probably superblock written in the ext3 journal superblock,
   so start/end/grp wrong
aAabortedaextended attributeat %.2f MB/sbad argumentsbad error behavior - %sbad error behavior in profile - %sbad gid/group name - %sbad inode mapbad inode size - %sbad interval - %sbad mounts count - %sbad num inodes - %sbad project - %s
bad reserved block ratio - %sbad reserved blocks count - %sbad response lengthbad revision level - %sbad uid/user name - %sbad version - %s
badblocks forced anyway.
badblocks forced anyway.  Hope /etc/mtab is incorrect.
bblockblock #block bitmapblock deviceblocksblocks per group count out of rangeblocks per group must be multiple of 8blocks to be movedbyte_offset  byte_start     byte_end  fs_blocks blksz  grp  mkfs/mount_time           sb_uuid label
can't allocate memory for test_pattern - %scancelled!
ccompresscharacter devicecheck aborted.
check_block_bitmap_checksum: Memory allocation errorcheck_inode_bitmap_checksum: Memory allocation errorchecking if mountedchecksum error in filesystem block %llu (undo blk %llu)
clustersconnectddirectorydirectorydirectory inode mapdone
done
 
done                            
done                                                 
double indirect blockduring ext2fs_sync_deviceduring seekduring test data write, block %lue2fsck_read_bitmaps: illegal bitmap block(s) for %se2label: cannot open %s
e2label: cannot seek to superblock
e2label: cannot seek to superblock again
e2label: error reading superblock
e2label: error writing superblock
e2label: not an ext2 filesystem
e2undo should only be run on unmounted filesystemseentryelapsed time: %6.3f
empty dir mapempty dirblockserror in generic_write()error reading bitmapserror reading block %lluerror writing block %lluext attr block mapext2fs_check_desc: %m
ext2fs_new_@b: %m while trying to create /@l @d
ext2fs_new_@i: %m while trying to create /@l @d
ext2fs_new_dir_@b: %m while creating new @d @b
ext2fs_open2: %m
ext2fs_write_dir_@b: %m while writing the @d @b for /@l
extent rebuild inode mapfailed - ffilesystemfilesystemfirst blockflex_bg size (%lu) must be less than or equal to 2^31flex_bg size must be a power of 2fs_types for mke2fs.conf resolution: fsck: %s: not found
fsck: cannot check %s: fsck.%s not found
getting next inode from scanggrouphHTREE @d @ii_blocks_hi @F %N, @s zero.
i_faddr @F %IF, @s zero.
i_file_acl @F %If, @s zero.
i_file_acl_hi @F %N, @s zero.
i_frag @F %N, @s zero.
i_fsize @F %N, @s zero.
ignoring entry "%s"iinodeillegal offset - %simagic inode mapin malloc for bad_blocks_filenamein move_quota_inodein-use block mapin-use inode mapindirect blockinode bitmapinode done bitmapinode in bad block mapinode loop detection bitmapinode tableinode_size (%u) * inodes_count (%u) too big for a
   filesystem with %llu blocks, specify higher inode_ratio (-i)
   or lower inode count (-N).
input file - bad formatinternal error: can't find dup_blk for %llu
internal error: couldn't lookup EA block record for %lluinternal error: couldn't lookup EA inode record for %uinterval between checks is too big (%lu)invalid %s - %sinvalid block size - %sinvalid blocks '%s' on device '%s'invalid cluster size - %sinvalid end block (%llu): must be 32-bit valueinvalid inode ratio %s (min %d/max %d)invalid inode size %d (min %d/max %d)invalid inode size - %sinvalid reserved blocks percent - %lfinvalid reserved blocks percent - %sinvalid starting block (%llu): must be less than %lluit's not safe to run badblocks!
jjournaljournalkernel does not support online resize with sparse_super2last blockllost+foundmalloc failedmeta-data blocksmetadata block mapmke2fs forced anyway.
mke2fs forced anyway.  Hope /etc/mtab is incorrect.
mmp_update_interval too big: %lu
mmultiply-claimedmultiply claimed block mapmultiply claimed inode mapnNnamed pipeneed terminal for interactive repairsnew meta blocksninvalidnono
oorphanedopening inode scanoperation %d, incoming num = %d
pproblem inqquotaread countreading directory blockreading indirect blocks of inode %ureading inode and block bitmapsreading journal superblock
regular fileregular file inode mapreserved blocksreserved blocks count is too big (%llu)reserved online resize blocks not supported on non-sparse filesystemreturned from clone_file_blockrroot @isize of inode=%d
skipbytes must be a multiple of the sector size
skipbytes should be a number, not %s
socketspecified offset is too largespecifying a cluster size requires the bigalloc featuresshould bestarting at %llu, with %u byte increments
startkb should be a number, not %s
startkb should be positive, not %llu
symbolic linksymlink increased in size between lstat() and readlink()time: %5.2f/%5.2f/%5.2f
too many inodes (%llu), raise inode ratio?too many inodes (%llu), specify < 2^32 inodestranslator blocktriple indirect blockunable to set superblock flags on %s
unknown file type with mode 0%ounknown os - %suuidd daemon already running at pid %s
uunattachedvdevicewarning: %llu blocks unused.
 
warning: Unable to get device geometry for %s
while adding filesystem to journal on %swhile adding to in-memory bad block listwhile allocating block bitmapwhile allocating bufferwhile allocating bufferswhile allocating check_bufwhile allocating ext2_qcow2_imagewhile allocating fs_feature stringwhile allocating inode "%s"while allocating l1 tablewhile allocating l2 cachewhile allocating memorywhile allocating scramble block bitmapwhile beginning bad block list iterationwhile changing directorywhile changing working directory to "%s"while checking MMP blockwhile checking journal for %swhile clearing journal inodewhile closing inode %uwhile creating /lost+foundwhile creating directory "%s"while creating huge file %luwhile creating in-memory bad blocks listwhile creating inode "%s"while creating root dirwhile creating special file "%s"while creating symlink "%s"while determining whether %s is mounted.while doing inode scanwhile expanding /lost+foundwhile expanding directorywhile fetching block %llu.while fetching superblockwhile getting next inodewhile getting stat information for %swhile initializing ext2_qcow2_imagewhile initializing journal superblockwhile initializing quota contextwhile initializing quota context in support librarywhile iterating over inode %uwhile linking "%s"while listing attributes of "%s"while looking up "%s"while looking up /lost+foundwhile lstat "%s"while making dir "%s"while marking bad blocks as usedwhile opening "%s" to copywhile opening %swhile opening %s for flushingwhile opening `%s'while opening device filewhile opening directory "%s"while opening inode %uwhile opening inode scanwhile opening journal inodewhile opening undo file `%s'
while populating file systemwhile printing bad block listwhile processing list of bad blocks from programwhile reading MMP blockwhile reading MMP block.while reading attribute "%s" of "%s"while reading bitmapswhile reading filesystem superblock.while reading flags on %swhile reading in list of bad blocks from filewhile reading inode %lu in %swhile reading inode %uwhile reading journal inodewhile reading journal super blockwhile reading journal superblockwhile reading keyswhile reading root inodewhile reading the bad blocks inodewhile reading undo filewhile recovering journal of %swhile removing quota file (%d)while reserving blocks for online resizewhile resetting contextwhile restoring the image tablewhile retrying to read bitmaps for %swhile rewriting block and inode bitmaps for %swhile sanity checking the bad blocks inodewhile saving inode datawhile setting bad block inodewhile setting blocksize; too small for device
while setting flags on %swhile setting inode for "%s"while setting project on %swhile setting root inode ownershipwhile setting up superblockwhile setting version on %swhile setting xattrs for "%s"while starting inode scanwhile trying popen '%s'while trying to allocate filesystem tableswhile trying to convert qcow2 image (%s) into raw image (%s)while trying to create revision %dwhile trying to delete %swhile trying to determine device sizewhile trying to determine filesystem sizewhile trying to determine hardware sector sizewhile trying to determine physical sector sizewhile trying to flush %swhile trying to initialize programwhile trying to open %swhile trying to open '%s'while trying to open external journalwhile trying to open journal device %s
while trying to open mountpoint %swhile trying to re-open %swhile trying to read link "%s"while trying to resize %swhile trying to run '%s'while trying to setup undo file
while trying to stat %swhile trying to truncate %swhile updating bad block inodewhile updating quota limits (%d)while writing attribute "%s" to inode %uwhile writing block %llu.while writing block bitmapwhile writing file "%s"while writing inode %lu in %swhile writing inode %uwhile writing inode bitmapwhile writing inode tablewhile writing journal inodewhile writing journal superblockwhile writing quota file (%d)while writing quota inodeswhile writing superblockwhile writing symlink"%s"while zeroing block %llu at end of filesystemwhile zeroing journal device (block %llu, count %d)will not make a %s here!
with %llu blocks eachwritewriting block and inode bitmapsxextentyYyesyes
yes to all
zzero-lengthProject-Id-Version: e2fsprogs-1.43.1
Report-Msgid-Bugs-To: tytso@alum.mit.edu
PO-Revision-Date: 2016-11-24 23:49-0500
Last-Translator: Mingye Wang (Arthur2e5) <arthur200126@gmail.com>
Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>
Language: zh_CN
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Bugs: Report translation errors to the Language-Team address.
X-Generator: Poedit 1.8.11
X-Poedit-Bookmarks: -1,591,-1,-1,-1,-1,-1,-1,-1,-1
Plural-Forms: nplurals=1; plural=0;
   %Q(@i #%i,修改时间 %IM)
   <@f元数据>
   ä½¿ç”¨ %s
   ä½¿ç”¨ %s,%s
   åˆ›å»ºäºŽ %s    ä¸Šä¸€æ¬¡ä¿®æ”¹äºŽ %s    ä¸Šä¸€æ¬¡æŒ‚载于%s    ä¸Šä¸€æ¬¡æŒ‚载于 %s, æ—¶é—´ %s
   è½¬æ¢å­ç°‡ä½å›¾æ—¶
尝试将日志添加到设备 %s时
   å°è¯•创建日志时
   å°è¯•创建日志文件时
   å°è¯•打开位于 %s çš„æ—¥å¿—æ—¶
 
 
%s:未预期的不一致性;请手动运行fsck
   ï¼ˆå³ä¸ä½¿ç”¨ -a æˆ– -p é€‰é¡¹ï¼‰ã€‚
 
 
警告!!!该文件系统已被挂载。如果你继续操作将会
使文件系统遭受 *** ä¸¥é‡æŸå ***!
 
 
 
  %u ä¸ªå¯ç”¨ %s,%u ä¸ªå¯ç”¨inode,%u ä¸ªç›®å½• %s
  Inode表位于 
  ä¿ç•™çš„GDT块位于 
%11Lu:已结束,错误号为 %d
 
%12u ä¸ªå·²ä½¿ç”¨çš„inode(%2.2f%%,总共 %u)
 
%12u ä¸ªæ™®é€šæ–‡ä»¶
 
%s:***** æ–‡ä»¶ç³»ç»Ÿå·²ä¿®æ”¹ *****
 
%s:********** è­¦å‘Šï¼šæ–‡ä»¶ç³»ç»Ÿä¸Šä»æœ‰é”™è¯¯ **********
 
 
*** æ—¥å¿—已被重建 ***
 
指定了错误的扩展属性:%s
 
扩展属性由逗号分隔,有些需要通过等号(“=”)传递参数。
 
有效的参数有:
   superblock=<超级块编号>
   blocksize=<块大小>
 
给定的日志选项有误。
 
日志选项由逗号分隔,有些还需要通过等号(“=”)传递参数。
 
有效的日志选项为:
   size=<日志大小(MB)>
   device=<日志设备>
   location=<日志所在位置>
 
 
日志尺寸必须介于1024至10240000个块之间(块的大小由文件系统决定)。
 
 
指定了错误的选项:%s
 
扩展属性由逗号分隔,有些需要通过等号(“=”)传递参数。
 
有效的扩展选项有:
   mmp_update_interval=<间隔>
   num_backup_sb=<0|1|2>
   stride=<RAID æ¯ä¸ªç£ç›˜çš„æ•°æ®å—数(步长)>
   stripe-width=<步长 Ã— RAID ç£ç›˜æ•°ï¼ˆå¸¦å®½ï¼‰>
   offset=<文件系统的偏移量>
   resize=<调整块大小时的最大值>
   packed_meta_blocks=<0(禁用)或 1(启用)>
   lazy_itable_init=<0(禁用)或 1(启用)>
   lazy_journal_init=<0(禁用)或 1(启用)>
   root_owner=<根目录的uid>:<根目录的gid>
   test_fs
   discard
   nodiscard
   quotatype=<要启用的配额类型>
 
 
指定了错误的配额选项。
 
可以使用下列配额选项(通过逗号分割):
   [^]usr[quota
   [^]grp[quota
   [^]prj[quota]
 
 
 
移除不被支持的分散式超级块标志。
 
无法找到匹配 %s çš„æ—¥å¿—设备
 
无法写入 %d ä¸ªå—到起始于%llu的inode表:%s
 
重要提示:
 -p                   è‡ªåŠ¨ä¿®å¤ï¼ˆä¸è¯¢é—®ï¼‰
 -n                   ä¸å¯¹æ–‡ä»¶ç³»ç»Ÿåšä»»ä½•更改
 -y                   å¯¹æ‰€æœ‰è¯¢é—®éƒ½å›žç­”“是”
 -c                   æ£€æŸ¥å¯èƒ½çš„坏块,并将它们加入坏块列表
 -f                   å¼ºåˆ¶è¿›è¡Œæ£€æŸ¥ï¼Œå³ä½¿æ–‡ä»¶ç³»ç»Ÿè¢«æ ‡è®°ä¸ºâ€œæ²¡æœ‰é—®é¢˜â€
 
启用MMP特性失败。
文件系统太小,无法容纳日志
 
如果该@b确实为坏@b,则文件系统将无法被修复。
 
收到中断通知,正在进行后续清理工作
 
-%c æŽ¥æ”¶åˆ°æ— æ•ˆçš„非数值参数(“%s”)
 
 
日志大小超过文件系统自身。
 
改变bigalloc文件系统的大小尚未被充分测试。你需要承担可能的风险!
如果你希望继续,请使用强制选项。
 
 
执行额外的步骤来处理被多个@i引用的@b...
第 1B æ­¥ï¼šé‡æ–°æ‰«æ@m @b
 
对可读写的文件系统上运行e2image可能导致镜像不连续,
这样的镜像也无法用于调试。如果你确实需要这样做,请使用 -f é€‰é¡¹ã€‚
 
启用了meta_bg特性的文件系统不支持设置分散式
超级块标志。
 
 
已设置分散式超级块标志。  %s
@S无法被读取,或它未能正确地描述一个有效的ext2/ext3/ext4@f。
如果@v有效并确实为ext2/ext3/ext4@f ï¼ˆè€Œéžswap或ufs等格式),
这说明@S已经损坏,你可能需要指定备选@S来运行e2fsck:
    e2fsck -b 8193 <@v>
 æˆ–
    e2fsck -b 32768 <@v>
 
 
坏@b@i可能已经损坏。你可能需要立刻停止执行此任务,
并运行e2fsck -c来扫描@f中的坏块。
 
设备不存在。请确认所给设备名是否正确。
 
文件系统已经含有分散式超级块
 
给定的日志大小为 %d ä¸ªå—;但该值必须
介于1024至10240000块之间。终止执行。
 
警告:“^quota”选项将覆盖“-Q”的参数。
 
警告:RAID带宽 %u ä¸æ˜¯æ­¥é•¿ %u çš„偶数倍。
 
 
 
警告:指定了偏移量,但没有指定文件系统大小。
将创建含有 %llu ä¸ªå—的文件系统,这可能与您的预期不服。
 
 
警告:bigalloc特性仍然在开发中
更多详情请参见 https://ext4.wiki.kernel.org/index.php/Bigalloc
 
 
警告:mke2fs.conf中未定义文件系统类型 %s
 
 
你的mke2fs.conf文件中没有定义类型 %s çš„æ–‡ä»¶ç³»ç»Ÿã€‚
             # ä¸€æ¬¡/二次/三次链接块数:%u/%u/%u
             Extent深度直方图:        %s -I è®¾å¤‡ é•œåƒæ–‡ä»¶
       %s -k
       %s -ra  [  -cfnp  ] [ -o æºåç§»é‡ ] [ -O ç›®æ ‡åç§»é‡ ] æºæ–‡ä»¶ç³»ç»Ÿ [ ç›®æ ‡æ–‡ä»¶ç³»ç»Ÿ ]
       %s [-r|t] [-n æ•°é‡] [-s å¥—接字路径]
  %s è¶…级块位于   å—位图位于   å¯ç”¨å—数:   å¯ç”¨inode数:  å‰©ä½™ %s,速度 %.2f MB/s ï¼ˆ%u ä¸ªç›´æŽ¥ç¬¦å·é“¾æŽ¥ï¼‰
(“a” è¡¨ç¤ºå…¨éƒ¨å›žç­”“yes”)  ï¼ˆåº”为 0x%04x)(将于下次挂载时进行检查) ï¼ˆæ­£åœ¨ä½¿ç”¨ç”µæ± ï¼›å·²æŽ¨è¿Ÿæ£€æŸ¥ï¼‰ ï¼ˆæ¯æŒ‚è½½ %ld æ¬¡å°±è¿›è¡Œæ£€æŸ¥ï¼‰ ï¼ˆy/n) -v                   æ˜¾ç¤ºæ›´å¤šä¿¡æ¯
 -b superblock        ä½¿ç”¨å¤‡é€‰è¶…级块
 -B blocksize         ä½¿ç”¨æŒ‡å®šå—大小来查找超级块
 -j external_journal  æŒ‡å®šå¤–部日志的位置
 -l bad_blocks_file   æ·»åŠ åˆ°æŒ‡å®šçš„åå—åˆ—è¡¨ï¼ˆæ–‡ä»¶ï¼‰
 -L bad_blocks_file   æŒ‡å®šåå—列表(文件)
 -z undo_file         åˆ›å»ºä¸€ä¸ªæ’¤é”€æ–‡ä»¶
 -z "%s"完毕。
 ç»„描述符位于  Inode ä½å›¾ä½äºŽ  æœ‰ä¸€ä¸ªå«æœ‰é”™è¯¯çš„æ–‡ä»¶ç³»ç»Ÿ  æ ¡éªŒå€¼ 0x%04x å·²è¢«æŒ‚è½½ %u æ¬¡ï¼Œä½†å°šæœªè¢«æ£€æŸ¥ ä¸Šä¸€æ¬¡æ£€æŸ¥çš„æ—¶é—´åœ¨æœªæ¥ å·²è¶…过 %u æœªè¢«æ£€æŸ¥ ä¸»è¶…级块与备份超级块有差异 æœªè¢«å½»åº•卸载#    æ•°é‡=%llu,大小=%llu,指针=%llu,按序=%llu
# Extent转储:
%12llu ä¸ªå·²ä½¿ç”¨çš„块(%2.2f%%,总共 %llu)
%12u ä¸ªåå—
%12u ä¸ªå—设备文件
%12u ä¸ªå­—符设备文件
%12u ä¸ªæ–‡ä»¶å¤¹
%12u ä¸ªé˜Ÿåˆ—文件
%12u ä¸ªæ–‡ä»¶
%12u ä¸ªå¤§æ–‡ä»¶
%12u ä¸ªé“¾æŽ¥
%12u ä¸ªä¸è¿žç»­çš„目录(%0d.%d%%)
%12u ä¸ªä¸è¿žç»­çš„æ–‡ä»¶ï¼ˆ%0d.%d%%)
%12u ä¸ªå¥—接字文件
%12u ä¸ªç¬¦å·é“¾æŽ¥è¿›åº¦ %6.2f%%,用时 %s。(%d/%d/%d ä¸ªé”™è¯¯)%6lu(%c):应为 %6lu ä½†å®žé™…为 %6lu ï¼ˆå— %lld)
%B(%b)造成@d过大。  %B(%b)造成文件过大。  %B(%b)造成符号链接过大。  %B(%b)与@i %i è®°å½•元数据的位置重叠。  %d ä¸ªå—已包含需要被拷贝的数据
%d å­—节的 inode å¯¹äºŽå†…联数据来说太小;请指定一个更大的值%d字节的块对于系统来说太大(最大为 %d)%llu / %llu å—(%d%%)%llu ä¸ªå—(%2.2f%%)为超级用户保留
%s %s:状态为 %x,这不应当发生。
@s@o@i %i(uid=%lu,gid=%lg,mode=%lm,size=%ls)
%s æœªå¯¹é½ï¼Œåç§»äº† %lu ä¸ªå­—节。
%s å’ŒåŽç»­ %d ä¸ªUUID
 %s å«æœ‰â€œ%s”数据
 
 %s æœ‰ä¸€ä¸ª %s æ–‡ä»¶ç³»ç»Ÿ
%1$s æœ‰ä¸€ä¸ªæ ‡ç­¾ä¸ºâ€œ%3$s”的 %2$s æ–‡ä»¶ç³»ç»Ÿ
%s æœ‰ä¸è¢«æ”¯æŒçš„特性:%s æ˜¾ç„¶æ­£è¢«ç³»ç»Ÿä½¿ç”¨ï¼› %s正被使用。
%s å·²æŒ‚载。
%s å·²ç»æŒ‚载; é”™è¯¯ï¼š%s ä¸æ˜¯å—设备。
%s ä¸æ˜¯æ—¥å¿—设备。
%s å¯èƒ½å› è¶…级块被改写而损
%s éœ€è¦â€œ-O 64bit”选项
 
%s:%s  æ–‡ä»¶å  å—æ•°  å—大小
%s:%s å°è¯•备份块
%s:读取坏块inode时%s
%s:尝试备份块时 %s%s:%s。
%s:%u/%u æ–‡ä»¶ï¼ˆ%0d.%d%% ä¸ºéžè¿žç»­çš„), %llu/%llu å—
%s:***** è¯·é‡æ–°å¯åŠ¨ç³»ç»Ÿ *****
%s:允许用户分配所有块。这样做很危险!
%s:撤销文件头损坏。
%1$s:执行fsck.%3$s %4$s æ—¶å‡ºé”™ï¼Œ é€€å‡ºçŠ¶æ€ç  %2$d
%s:头部校验值与自身不符。
%s:不是撤销文件。
%1$s:设备 %3$s çš„尺寸(0x%2$llx ä¸ªå—)太大,无法用32位数表示
   æ”¹ä¸ºä½¿ç”¨ %4$d çš„块大小。
%s:-n å’Œ -w é€‰é¡¹æ˜¯ç›¸äº’排斥的。
 
%s:撤销块过小。
%s:撤销块过大。
%s:设置了未知的撤销文件属性。
%s:不支持写入日志。
%s:块 %llu å¤ªé•¿ã€‚%s:没有问题,%u/%u æ–‡ä»¶ï¼Œ%llu/%llu å—%s:e2fsck被取消。
%s:回到原先的超级块
%s:磁头=%3d æ‰‡åŒº=%3d æŸ±é¢=%4d   èµ·å§‹=%8d å¤§å°=%8lu ç»ˆæ­¢=%8d
%s: æ—¥å¿—过短
%s:%llu ä¸­çš„键块的校验值有错。
%s: æ²¡æœ‰å‘现日志超级块
%s:正在修复日志
%s:跳过/etc/fstab中的错误行:传递给fsck非零值的bind挂载项
%s:参数过多
%s:设备过多
%s:等待中:没有子进程了吗?!?
 
%s:使用只读模式时不会进行日志修复
%s:%llu ä¸­çš„键幻数有错
%s? no
 
%s? yes
 
%u ä¸ªå—组
%u ä¸ªå—组
每组 %u ä¸ªå—,%u ä¸ªç°‡
 
每组 %u ä¸ªå—,%u ä¸ªç¢Žç‰‡
 
每组 %u ä¸ªinode
已扫描 %u ä¸ªinode。
%u ä¸ªinode,%llu ä¸ªå—
”来禁用 64 ä½æ¨¡å¼ã€‚
”来启用 64 ä½æ¨¡å¼ã€‚
“%s”选项必须位于“resize=%u”之前
“-R” é€‰é¡¹å·²è¢«åºŸå¼ƒï¼Œè¯·ä½¿ç”¨â€œ-E”选项@d@i %i ä¸­çš„“.”@d@e æ²¡æœ‰ä»¥NULL终止
@d@i %i ä¸­çš„“..”@d@e æ²¡æœ‰ä»¥NULL终止
%Q(%i)中的“..”为 %P(%j),@s %q(%d)
(空)(共有 %N å«æœ‰@m@b的@i)
 
(并且过后重启!)
(没有提示),,%u个未使用的inodes
,组描述符位于 ï¼Œå¼ºåˆ¶è¿›è¡Œæ£€æŸ¥ã€‚
,校验值 0x%08x--请稍候-- ï¼ˆç¬¬ %d æ­¥ï¼‰n
-O只能被指定一次-a é€‰é¡¹åªèƒ½ç”¨äºŽåŽŸå§‹æˆ–qcow2镜像-o只能被指定一次/@l å«æœ‰å†…联数据
/@l å·²è¢«åР坆
/@l ä¸æ˜¯ä¸€ä¸ª@d(ino=%i)
/@l未找到。未启用 64 ä½æ–‡ä»¶ç³»ç»Ÿæ”¯æŒï¼Œå°†æ— æ³•使用更大的字段来进行更完整的校验。可以使用参数“-O 64bit”来进行纠正。
 
未启用 64 ä½æ–‡ä»¶ç³»ç»Ÿæ”¯æŒï¼Œå°†æ— æ³•使用更大的字段来进行更完整的校验。可以运行“resize2fs -b”来纠正这一问题。
<保留的 inode 10><保留的 inode 9><空的 inode><坏块 inode><启动器 inode><组描述符inode><组配额inode><日志 inode><未删除的目录 inode><用户配额inode><n><处理中>
<y>= ä¸Ž - / + é€‰é¡¹ä¸ç›¸å®¹
在@b@g %g ä¸­ä¸º %s åˆ†é… %N ä¸ªè¿žç»­çš„@b时出错:%m
构建外部属性区域的分配结构体时出错。分配@b@B(%N)时出错:%m
重定位 %s æ—¶åˆ†é…@b缓存出错
分配@d@b数组时出错:%m
分配@i@B(%N)时出错:%m
分配@i@B时出错(inode_dup_map):%m
构建extent区域的分配结构体时出错。分配icount链接信息时出错:%m
分配icount结构体时出错:%m
为加密@d列表分配内存时出错
为@i %i(%s)分配新@d@b时出错:%m
分配refcount结构体(%N)时出错:%m
@D@i %i çš„删除时间为零。  @E是一个指向“.”的链接@E是一个指向@d %P(%Di)的链接。
@E是一个指向@r的链接。
@E含有@D或未使用的@ %Di。  @E含有@n@i #:%Di
@E含有长度为零的名称。
@E含有一个非唯一的文件名。
已重命名为%s@E含有错误的文件类型(%Dt,@s %N)。
@E被设置了文件类型。
@E的名称中有无效字符。
@E的rec_len为 %Dr,@s %N。
@E为重复的“.”目录@e。
@E为重复的“..”目录@e。
@E指向位于坏@b的@i(%Di)。
@E引用了@g %g ä¸­çš„@i %Di,但该@i位于未使用inode区。  
@E引用了@g %g ä¸­çš„@i %Di,但该@g被设置了_INODE_UNINIT标志。  
@o@i %i ä¸­å‘现 @I %B(%b)。
@I %B(%b)于@i %i。  @I %B(%b)于坏@b@i。  @o@i中发现@I@i %i。
@S中有@I@o@i %i。
@S@b大小 = %b,碎片大小 = %c。
此版本的e2fsck不允许碎片大小与
@b大小不同。
每组的@S@b数 = %b,应当为 %c。
@S的第一个数据块 = %b,应当为 %c
@S含有一个@n@j(@i %i)。
@S含有无效的MMP块。  @S含有无效的MMP幻数。  @S不具有has_journal标志,但发现了@j。
外部超级块的@S标记@s %X。  @S上一次的挂载时间(%t,
   å½“前:%T)在未来。  
@S上一次挂载时间在未来。
   ï¼ˆç›¸å·®ä¸åˆ°ä¸€å¤©ï¼Œå¯èƒ½æ˜¯ç¡¬ä»¶æ—¶é’Ÿè®¾å®šé”™è¯¯æ‰€è‡´ï¼‰
@S上一次的写入时间(%t,
   å½“前:%T)在未来。  
@S上一次写入时间在未来。
   ï¼ˆç›¸å·®ä¸åˆ°ä¸€å¤©ï¼Œå¯èƒ½æ˜¯ç¡¬ä»¶æ—¶é’Ÿè®¾å®šé”™è¯¯æ‰€è‡´ï¼‰
@S çš„ metadata_csum ç‰¹æ€§å°†å–代 uninit_bg ç‰¹æ€§ï¼Œå› æ­¤ä¸èƒ½åŒæ—¶å°†äºŒè€…开启。只有同时开启了@S的 metadata_csum ç‰¹æ€§ï¼Œmetadata_csum_seed ç‰¹æ€§æ‰æœ‰æ„ä¹‰ã€‚@S不具有的恢复标志,然而在@j中找到了恢复数据。
@S被设置了needs_recovery标志,但找不到相应的@j。
@a@b %b çš„h_blocks >1。  @a@b %b çš„引用计数为 %r,@s %N。  @a@b %b å·²æŸåï¼ˆ@n名称)。  @a@b %b å·²æŸåï¼ˆ@n值)。  @a@b %b å·²æŸåï¼ˆåˆ†é…å†²çªï¼‰ã€‚  @i %i çš„@a@b无效(%lf)。
@i %i ä¸­çš„@a有一个@nhash值(%N)
@i %i ä¸­çš„@a有一个名称长度%lS(@n值)
@i %i ä¸­çš„@a含有一个@n的数值块(%N),应当为0
@i %i ä¸­çš„@a含有一个@n的偏移量(%N)
@i %i ä¸­çš„@a含有一个@n的大小(%N)
@b@B的差异: @g %g çš„@b@B并不在 @g ä¸­ã€‚(@b %b)
%p(%i)中“.”的@d@e太大。
@d@i %i @b %b åº”为@b %c。  @d@i %i å«æœ‰è¢«æ ‡è®°ä¸ºæœªåˆå§‹åŒ–çš„@x,位于@b %c。  @d@i %i å«æœ‰æœªåˆ†é…çš„ %B。  @d@i %i,%B,偏移量 %N:@d已损坏
@d@i %i,%B,偏移量 %N:@d缺少校验值。
@d@i %i,%B,偏移量 %N:文件名过长
@d@i %i,%B:@d通过了检验,但校验值错误。
@f@j@S为未知类型 %N(不支持此特性)。
可能你的e2fsck版本太低,不支持这种@j的格式。
也有可能@j@S已经损坏。
 
@f含有大文件,但@S中未设置LARGE_FILE标志。
@f没有UUID;正在创建新的UUID。
 
@f不支持更改@i大小,故s_reserved_gdt_blocks应为0
(但实际为%N)。  @f被设置了特性标志,但特性版本号为0。  @g %g @b @B ä¸Žè‡ªèº«æ ¡éªŒå€¼ä¸ç¬¦ã€‚
@g %g @b已被使用,但@g被标记为BLOCK_UNINIT
@g %g @i @B ä¸Žè‡ªèº«æ ¡éªŒå€¼ä¸ç¬¦ã€‚
@g %g @i已被使用,但@g被标记为INODE_UNINIT
@g %g çš„@b@B无效。  ä½äºŽ %b çš„@g %g的@b@B@C。
@g %g çš„@i@B无效。  ä½äºŽ %b çš„@g %g的@i@B@C。
位于 %b çš„@g %g的@i表@C。
@g描述符 %g çš„æ ¡éªŒå€¼ä¸º%04x,应当为 %04y。  @g描述符 %g ä¸­çš„æœªä½¿ç”¨inode数 %b ä¸ºæ— æ•ˆå€¼ã€‚  @g描述符 %g被标记为未初始化,并且没有设定特性。
@h %i æ ‘的深度过大(%N)
@h %i æœ‰ä¸€ä¸ª@n根节点。
@h %i æœ‰ä¸€ä¸ªæ— æ•ˆçš„hash版本(%N)
@h %i ä½¿ç”¨äº†ä¸€ä¸ªä¸å…¼å®¹çš„htree根节点标志。
@i %i(%Q)有@n模式 ï¼ˆ%Im)。
@i %i(%Q)是一个@I的@b@v。
@i %i(%Q)是一个@I队列。
@i %i(%Q)是一个@I的字符@v。
@i %i(%Q)是一个@I套接字。
@i %i çš„@a @b %b é€šè¿‡æ£€éªŒï¼Œä½†å…¶æ ¡éªŒå€¼ä¸Žè‡ªèº«ä¸ç¬¦ã€‚@i %i @a å·²æŸåï¼ˆåˆ†é…å†²çªï¼‰ã€‚  @i %i çš„@x树(位于第 %b å±‚)可以更窄。@i %i çš„@x树(位于第 %b å±‚)的深度可以更小。@i %i @x树的深度可以更小(当前为%b;可以 <= %c)
@i %i å— %b ä¸Žå…³é”®å…ƒæ•°æ®å†²çªï¼Œè·³è¿‡å¯¹å—的检查。
@i %i å¤–部块通过检验,但其校验值与自身不符
   ï¼ˆé€»è¾‘@b %c,物理@b %b,长度 %N)
@i %i å«æœ‰@x头部,但被设置了内联数据标志。
@i %i è¢«è®¾ç½®äº†EXTENTS_FL标志,但文件系统不支持extent。
@i %i è¢«è®¾ç½®äº†INDEX_FL标志,但它并非目录。
@i %i è¢«è®¾ç½®äº†INDEX_FL标志,但文件系统不支持htree。
@i %i è¢«è®¾ç½®äº†INDEX_DATA_FL标志,但找不到相应的@a。@i %i è¢«è®¾ç½®äº† INLINE_DATA_FL æ ‡å¿—,但文件系统不支持内联数据。
@i %i æœ‰ä¸€ä¸ª @a@b %b。  @i %i å«æœ‰é‡å¤çš„@x映射
   ï¼ˆé€»è¾‘块 %c,@n物理块@b %b,长度 %N)
@i %i æœ‰ä¸€ä¸ªé¢å¤–的大小 %lS(@n值)
@i %i æœ‰ä¸€ä¸ª@nextent
   ï¼ˆé€»è¾‘块 %c,@n物理块@b %b,长度 %N)
@i %i æœ‰ä¸€ä¸ª@nextent
   ï¼ˆé€»è¾‘块 %c,物理块@b %b,长度 %N)
@i %i æ˜¯ä¸€ä¸ªæ— æ•ˆçš„extent节点(块 %b,lblk %c)
@i %i å«æœ‰æŸåçš„@x头部。@i %i ä¸­åŒ…含非法@b。  @i %i è¢«è®¾ç½®äº†imagic标志。  @i %i å«æœ‰å†…联数据且被设置了@x标志,但 i_block ä¸­å«æœ‰æ— æ•ˆæ•°æ®ã€‚
@i %i å«æœ‰å†…联数据,但@S不具有 INLINE_DATA ç‰¹æ€§
@i %i å«æœ‰ä¹±åºçš„extent
   ï¼ˆ@n é€»è¾‘@b %c,物理@b %b,长度 %N)
@i %i å«æœ‰é›¶é•¿åº¦çš„extent
   ï¼ˆ@n é€»è¾‘@b %c,物理@b %b)
@i %i æ˜¯ä¸€ä¸ª@lt,但它实际上可能是一个目录。
@i %i ä¸º@z@d。  @i %i ä¸ºextent格式,但@S不具有EXTENTS特性
使用中的@i %i è¢«è®¾ç½®äº†åˆ é™¤æ—¶é—´ã€‚  @i %i è¿‡å¤§ã€‚  @i %i é€»è¾‘@b %b(物理@b %c)违反了块分配原则。
将会在第 1B æ­¥ä¸­è¿›è¡Œä¿®å¤ã€‚
@i %i ä¸å…·æœ‰EXTENT_FL标志,但却为EXTENTS格式
位于 bigalloc @f çš„@i %i on bigalloc @f æ— æ³•被@b映射。@i %i é€šè¿‡æ£€éªŒï¼Œä½†å…¶æ ¡éªŒå€¼ä¸Žè‡ªèº«ä¸ç¬¦ã€‚@i %i çš„引用计数为 %Il,@s %N。  @i %i å«æœ‰æ— æ•ˆæ•°æ®ã€‚@i %i ä¼¼ä¹Žå«æœ‰@b位图,但被设置了内联数据标志和@x标志。
@i %i ä¼¼ä¹Žå«æœ‰å†…联数据,但被设置了@x标志。
@i %i ä½äºŽ@o@i列表中。  @i %i,extent结尾超过了允许范围
   ï¼ˆé€»è¾‘@b %c,物理块@b %b,长度 %N)
@i %i的i_blocks为 %ls,@s %N。  @i %i的大小为 %ls,@s %N。  @i@B的差异: @g %g çš„@i@B å¹¶ä¸åœ¨ @g ä¸­ã€‚(@b %b)
@S中的@i个数为 %i,@s %j。
@g %g çš„@i表并不在 @g ä¸­ã€‚(@b %b)
警告:这可能导致严重的数据丢失。
发现了可能属于损坏的孤立链接表的@i。  @j@S被设置了未知的不兼容属性标签。
@j@S被设置了未知的只读属性标签。
@j@S被损坏。
@j @i æœªè¢«ä½¿ç”¨ï¼Œä½†å«æœ‰æ•°æ®ã€‚  @j不是普通文件。  e2fsck不支持此@j版本。
@m@b位于@i %i:@m@b已被重新分配或克隆。
 
@n@h %d(%q)。  @d@i %i ä¸­â€œ.”的@n@i编号无效。
@h %d(%q)中发现问题:@b编号 %b æ— æ•ˆã€‚
@h %d ä¸­å‘现问题:%B å«æœ‰@n计数(%N)
@h %d ä¸­å‘现问题:%B å«æœ‰@n深度(%N)
@h %d ä¸­å‘现问题:%B å«æœ‰@n限制(%N)
@h %d ä¸­å‘现问题:%B å«æœ‰æœªæŽ’序的hash表
@h %d ä¸­å‘现问题:%B å«æœ‰é”™è¯¯çš„æœ€å¤§hash值
@h %d ä¸­å‘现问题:%B å«æœ‰é”™è¯¯çš„æœ€å°hash值
@h %d ä¸­å‘现问题:%B
@h %d ä¸­å‘现问题:%B è¢«å¼•用了两次
@p@h %d:内部结点的校验值错误。
@p@h %d:根结点的校验值错误。
@p@h %d:结点@n
@q @i æœªè¢«ä½¿ç”¨ï¼Œä½†å«æœ‰æ•°æ®ã€‚  ä½¿ç”¨ä¸­çš„@q@i被对用户可见。  @r被设置了删除时间(可能由老版本的mke2fs导致)。@r不是一个@d。  @r不是一个@d;已终止执行。
@r未被分配。  @u@i %i。  
@u@z@i %i。  Inode表中缺少一个块组某个配置区段的头部含有非零值已中断已分配中断正在终止...
正在终止...
正在将dirhash标记添加到@f。
 
将日志添加到设备 %s: A分配出错在运行 e2fsck åŽï¼Œè¯·è¿è¡Œâ€œresize2fs %s %s分配正在分配组表: @o@i %i ä¸­å‘现已清除的 %B(%b)。
企图将关联添加到非区段的node尝试填充块位图尾部时超过了真实边界尝试填充inode位图尾部时超过了真实边界企图通过只读的块迭代器修改块映射企图修改该只读的配置尝试读取文件系统块的操作过早结束尝试x文件系统块的操作过早结束尝试写入到只读的文件系统不支持对BLKFLSBUF进行 ioctl è°ƒç”¨ï¼  æ— æ³•刷新缓存。
正在备份@j@i@b的信息。
 
备份坏@b %b è¢«ç”¨ä½œå@b@i的链接@b。  å@b@i含有一个与@f元数据冲突的连接@b(%b)。  å@b@i含有无效的@b。  åœ¨æ–‡ä»¶ç³»ç»Ÿä¸­æ£€æµ‹åˆ°é”™è¯¯çš„ CRC å€¼åå— %u è¶…出范围;已忽略。
坏块列表中的数据表明,坏块列表@i å·²æŸåã€‚坏块数:%u配置结构体中有错误的组级别配置结构体中有错误的链表超级块中的幻数有错配置迭代器中的幻数有错profile_file_data_t中的幻数有误profile_file_t中的幻数有错profile_node中的幻数有错profile_section_t中的幻数有错profile_t中的幻数有错传给了查询程序错误的名称集错误的数量:%s
错误或不存在的/@l。无法重新连接。
配置结构体中有错误的父指针B位图开始第 %d æ­¥ï¼ˆå…± %lu æ­¥ï¼‰
主@g描述符中的块 %b ä½äºŽå@b列表中
主超级块/组描述符中的块 %d ä¸ºåå—。
块位图校验值与位图自身不符未加载块位图块位图不相同块组描述符大小错误块大小=%u(log=%u)
若要创建文件系统,块 %u è‡³ %u å¿…须为好块。
已清除继续已创建无法继续。无法对输出进行stat操作
无法为块缓存分配内存由于mtab文件缺失,无法检验文件系统是否已挂载无法找到外部@j
无法读取块位图无法读取inode位图无法读取inode表无法读取组描述符无法读取下一个inode无法设置区段节点无法在缺乏extent特性的情况下支持bigalloc特性无法写入块位图无法写入inode位图无法写入inode表无法写入组描述符无法为 /@l åˆ†é…ç©ºé—´ã€‚
请将丢失的文件置于根目录下无法在含有超过 2^32 ä¸ªå—的文件系统上改变 64 ä½ç‰¹æ€§ã€‚
无法在已挂载的文件系统上改变 64 ä½ç‰¹æ€§ã€‚
无法继续,已中止。
无法创建含有指定inode数的文件系统无法在已挂载的文件系统上禁用 64 ä½æ¨¡å¼ï¼
无法在已挂载的文件系统上禁用元数据校验特性!
无法在已挂载的文件系统上启用 64 ä½æ¨¡å¼ï¼
无法在已挂载的文件系统上启用元数据校验特性!
无法获取 %s çš„布局:%s无法获得 %s çš„大小:%s无法对含有内联数据的 inode ä¸­çš„æ•°æ®å—进行迭代无法定位日志设备。设备未被移除
请使用 -f é€‰é¡¹æ¥ç§»é™¤ä¸¢å¤±çš„æ—¥å¿—设备。
 
无法修改日志设备。
无法打开 %s:%s无法在系统检查时进行无法在没有@r的情况下继续。
无法设置/取消设置 64 ä½ç‰¹æ€§ã€‚
C与其他文件系统@b冲突启用了弹性组特性的文件系统不支持改变inode大小
正在检查所有文件系统。
正在检查从 %lu åˆ° %lu的块
正在检验坏块(非破坏性读写测试)
检查坏块(只读测试): ä½¿ç”¨éžç ´åæ€§è¯»å†™æ¨¡å¼è¿›è¡Œåå—检验
在只读模式中检查坏块
在读写模式中检查坏块
清除清除@j清除HTree索引清除inode正在清除移除不被支持的文件系统特性“%s”。
清除弹性组标志将会导致文件系统出现前后不一致的情况。
克隆重叠块簇大小=%u(log=%u)
连接到 /lost+found继续将文件系统转换为 32 ä½ã€‚
将文件系统转换为 64 ä½ã€‚
已复制 %llu / %llu å—(%d%%),用时 %s æ­£åœ¨æ‹·è´ å°†æ–‡ä»¶å¤åˆ¶åˆ°è®¾å¤‡ï¼šæŸåçš„目录块 %llu:name_len(%d)错误
损坏的目录块 %llu:rec_len(%d)错误
extent损坏extent头损坏extent索引损坏组描述符损坏:块位图中有坏块组描述符损坏:inode位图中有坏块组描述符损坏:inode表中有坏块在@S中发现错误。(%s = %N)。
无法为ext2文件系统分配块无法为ext2文件系统分配inode无法扩充/@l:%m
无法打开 %s:%s
无法重新连接%i:%m
分区长度为零吗?
无法为块缓存分配内存(大小=%d)
无法为头缓冲区分配内存
无法为创建指定文件系统类型分配内存
 
无法为新路径分配内存。
无法为解析日志选项获取内存!
无法为解析选项获取内存!
无法在chattr_dir_proc中为路径变量分配内存无法绑定unix套接字%s:%s
无法克隆文件:%m
无法创建unix流套接字:%s无法确定设备大小;你必须手动指定大小
无法确定设备大小;你必须手动指定大小
无法找到日志超级块的幻数找不到有效的文件系统超级块。
无法修改@i %i的父节点:%m
 
无法修改@i %i的父节点:无法找到其父@d@e
 
无法成功初始化配置(错误:%ld)。
无法杀死pid为 %d çš„uuidd进程:%s
 
无法监听unix套接字%s:%s
无法打开配置文件无法解析日期/时间描述符:%s创建创建 %lu ä¸ªå¤§æ–‡ä»¶åˆ›å»ºå«æœ‰ %llu ä¸ªå—(每块 %dk)和 %u ä¸ªinode的文件系统
创建日志(%d ä¸ªå—):创建日志(%u ä¸ªå—)创建日志inode: åœ¨è®¾å¤‡ %s ä¸Šåˆ›å»ºæ—¥å¿—: åˆ›å»ºä¸€èˆ¬æ–‡ä»¶ %s
D删除删除文件设备大小为零。可能是指定了无效的设备,或是分区表在
   æ‰§è¡Œfdisk后未被重新加载(分区正被占用)导致的。
   ä½ å¯èƒ½éœ€è¦é‡å¯åŽé‡æ–°è¯»å–分区表。
@g #%g的目录计数错误(%i,实际为%j)
目录块校验值与目录块自身不符目录块中没有用于存储校验值的空间不支持目录hash禁用校验值需要花费一段时间。舍弃成功,将会返回0值 - è·³è¿‡æ“¦é™¤inode表
丢弃设备块: ç£ç›˜å†™ä¿æŠ¤ï¼›è¯·ä½¿ç”¨ -n é€‰é¡¹è¿›è¡Œåªè¯»æ£€æŸ¥ã€‚
你真的想要继续吗发现%p(%i)中有重复项“%Dn”。  å‘现了重复的@e”@Dn“。
   å°† %p(%i)标记为需要重建的。
 
使用了重复@b或坏@b!
E2FSCK_JBD_DEBUG â€œ%s”不是整数
 
未使用e2image快照E%p(%i)中的@e â€œ%Dn”错误:无法打开/dev/null(%s)
已扩充EXT2目录损坏所有通过 -t é€‰é¡¹æŒ‡å®šçš„æ–‡ä»¶ç³»ç»Ÿç±»åž‹å¿…须都含有(或都不含有)
“no”或“!”前缀。
空目录块 %u(#%d)于 inode %u ä¸­
启用校验值需要花费一段时间。加密的@E太短。
为@aB %b(@i %i)调整refcount时出错:%m
调用uuidd守护进程(%s)时出错:%s
转换子簇的@d@b时出错:%m
替换@b@B时拷贝错误:%m
替换@i@B时拷贝错误:%m
创建/@l@d(%s)时出错:%m
创建根@d(%s)时出错:%m
取消分配@i %i时出错:%m
决定物理@v的大小出错 %m
将缓冲写入到存储设备:%m
改变inode大小时出错。
请运行e2undo来撤销对文件系统的更改。
clear_mmp选项使用错误,必须和 -f é€‰é¡¹ä¸€èµ·ä½¿ç”¨
初始化支持库中的引用上下文时出错:%m
迭代@d@b时出错:%m
尝试打开外部日志时移动@j出错:%m
 
读取@a@b %b æ—¶å‡ºé”™ï¼ˆ%m)。  è¯»å–@i %i çš„@a@b %b æ—¶å‡ºé”™ã€‚读取@d@b %b(@i %i)时出错:%m
读取@i %i出错:%m
%3$s æ—¶è¯»å–块 %1$lu(%2$s)错误。  è¯»å–块 %lu(%s)错误。  è¯»å–客户端内容出错,内容长度 = %d
设置@b@g的校验信息时出错:%m
写入@d@b信息时出错(@i %i,@b %b,数量=%N)
写入@i计数信息时出错(@i %i,计数=%N):%m
验证文件描述符 %d æ—¶å‡ºé”™ï¼š%s
调整@i %i的inode计数时出错
确定 %s æ˜¯å¦å·²æŒ‚载时出错。迭代@i %i中的@b时出错(%s):%m
迭代@i %i ä¸­çš„@b时出错:%m
读取位图时发生错误
读取@i %i ä¸­çš„@x树时出错:%m
扫描@i(%i)时出错:%m
扫描Inode(%i\)时出错:%m
尝试查找/@l时出错:%m
写入@a@b %b æ—¶å‡ºé”™ï¼ˆ%m)。  å†™å…¥@d@b %b(@i %i)时出错:%m
%3$s æ—¶å†™å…¥å— %1$lu ï¼ˆ%2$s)出错。  å†™å— %lu(%s)出错。  å†™å…¥æ–‡ä»¶ç³»ç»Ÿä¿¡æ¯æ—¶å‡ºé”™ï¼š%m
写入配额类型 %N çš„配额信息时出错:%m
错误:ext2fs库版本过旧!
错误:头部大小超过wrt_size
检测到错误;请运行 e2fsck。
预计文件系统的最小尺寸:%llu
扩充ext2目录块已存在未找到ext2目录块ext2文件已存在ext2文件太大ext2 inode不为目录ext2文件系统目录块列表为空ext2文件系统操作不支持扩展属性块校验值与属性块自身不符扩展属性块的头部有误扩展属性块的校验值错误扩展属性名的长度无效扩展属性名的值无效扩增属性中含有无效的偏移量找不到扩展属性的键正在扩充inode表extent块校验值与extent块自身不符extent长度无效未找到extent64位系统必须启用extent特性。请使用“-O extents”选项来修正。
未启用 extent ç‰¹æ€§ï¼Œæ‰€ä»¥ä»…对文件 extent æ ‘进行校验,而不会对块位图进行校验。不启用 extent å°†é™ä½Žå…ƒæ•°æ®æ ¡éªŒå€¼çš„覆盖范围。可以使用参数“-O extents”来进行纠正。
未启用 extent ç‰¹æ€§ï¼Œæ‰€ä»¥ä»…对文件 extent æ ‘进行校验,而不会对块位图进行校验。不启用 extent å°†é™ä½Žå…ƒæ•°æ®æ ¡éªŒå€¼çš„覆盖范围。可以加上参数“-O extents”重新运行来纠正这一问题。
外部@j@S校验值与@S自身不符外部@j不支持此@f
外部@j有坏@S
外部@j含有多个@f用户(不支持此特性)。
配置中发现额外的右括号文件已删除已处理增加inode大小时为分配块位图失败
改变inode大小失败 
创建dirs_to_hash迭代器出错:%m
递归@i %i ä¸­çš„extent失败
   ï¼ˆé€‰é¡¹ %s,块 %b,lblk %c):%m
优化@x树 %p(%i)失败:%m
优化目录 %q(%d)失败:%m
解析文件系统类型列表失败
读取块位图失败
读取inode位图失败
改变块大小时重定位块失败 
直接符号链接 %i è¢«è®¾ç½®äº†EXTENT_FL标志。  F关于@i %i ï¼ˆ%Q)为文件 %Q(@i #%i,修改时间 %IM)
与 %N ä¸ªæ–‡ä»¶å…±äº« %r ä¸ª@m@b
ext2_lookup未发现文件文件以只读模式打开文件系统已损坏文件系统UUID:%s
文件系统 %s è¢«æŒ‚载在 %s,并且这个系统不支持在线调整大小。
%s ä¸Šçš„æ–‡ä»¶ç³»ç»Ÿå·²è¢«æŒ‚载于 %s;需要进行在线调整大小
 
文件系统不支持在线调整大小版本为0的文件系统不支持这些特性
 
文件系统的块大小异常文件系统有不被支持的特性文件系统有不被支持的只读特性文件系统缺少 ext_attr æˆ– inline_data feature ç‰¹æ€§æ–‡ä»¶ç³»ç»Ÿæ ‡ç­¾=%s
文件系统大小超过设备的实际大小。文件系统可能已挂载,或正被其他程序独占使用?
文件系统版本太高文件系统太大,无法使用传统位图日志设备中未找到文件系统的UUID。
已完成 %s ï¼ˆé€€å‡ºçŠ¶æ€ç  %d)
@d@i %i ä¸­çš„第一个@e“%Dn”(@i=%Di)@s“.”
第一个数据块=%u
第一个meta_bg太大。(%N,最大值 %g)处理修复内联@d @i %i çš„大小失败。
%s的标志被设为 å¼¹æ€§ç»„特性未启用,所以无法指定弹性组尺寸强制覆盖在V1@j中发现@nV2@j@S区域。
正在清除V1@j@S以外的区域...
 
在 %s ä¸­å‘现一个 %s åˆ†åŒºè¡¨
分块大小=%u(log=%u)
可用@b数错误(%i,实际为%j)
@g #%g的可用@b计数错误(%i,实际为%j)。
可用@i数错误(%i,实际为%j)
@g #%g的可用@i计数错误(%i,实际为%j)。
从块 %lu è‡³ %lu
已生成 %d ä¸ªUUID:
已生成随机数UUID:%s
已生成时间UUID %s å’Œ %d ä¸ªåŽç»­çš„UUID
已生成时间UUID:%s
请获取新版本的e2fsck!组 %lu:(块 ç»„描述符似乎是错误的...HTree索引已清除将对大文件填零
I/O通道不支持64位表示的块数已忽略INODE å·²æ¸…除I/O通道定位读取/写入位置时失败执行重做操作时出现输入/输出错误;请立即运行 e2fsck!
如果你确定文件系统并没有挂载到任何节点上,请运行:
“tune2fs -f -E clear_mmp {设备}”
若您仅使用 Linux 4.4 ä»¥ä¸Šçš„内核,请运行“tune2fs -O metadata_csum_seed”,然后重新运行此命了。
忽略错误I非法的非法的块数传递给ext2fs_mark_block_bitmap的块数为非法值传递给ext2fs_test_block_bitmap的块数为非法值传递给ext2fs_unmark_block_bitmap的块数为非法值发现了非法的二次链接块非法的扩展属性块号传递给ext2fs_mark_generic_bitmap的通用位数为为非法值传递给ext2fs_test_generic_bitmap的通用位数为为非法值传递给ext2fs_unmark_generic_bitmap的通用位数为为非法值发现非法的链接块非法的inode数传递给ext2fs_mark_inode_bitmap的块数为非法值传递给ext2fs_test_inode_bitmap的块数为非法值传递给ext2fs_unmark_inode_bitmap的块数为非法值非法的每组块数非法的弹性组大小非法的块数量!
设备名非法或格式错误发现非法的三次链接块镜像(%s)已被压缩
镜像(%s)已被加密
撤销记录不完整;请运行 e2fsck。
内联@d @i %i çš„大小(%N)必须为4的整数倍。
inode位图校验值与位图自身不符未加载inode位图inode位图不相同inode校验值与inode自身不符inode未使用extentInode ä¸­ä¸å«å†…联数据Inode ä¸­å«æœ‰æ— æ•ˆæ•°æ®Inode å¤§å°å¿…须是2的次方- %s没有足够的空间来回复丢失文件!
请将数据从@f中移出,然后重新运行 e2fsck。
 
用于存储扩增属性数据的空间不足@i %i çš„子@x节点等级 %N:
逻辑起始位点 %b ä¸Žä¸‹ä¸€ç­‰çº§çš„逻辑起始位点 %c ä¸åŒ¹é…ã€‚  ext2fs_expand_dir中出现内部错误内部错误:无法找到 %i çš„dir_info。
内部错误:虚构的位图端点
内部错误:extent树的最大深度过大(当前为 %b;应为 %c)。
备份超级块编号无效:%s
无效的EA版本号。
无效的RAID带宽:%s
无效的带宽参数:%s
无效的 UUID æ ¼å¼
传给了ext2库无效的参数传给了配置库无效的参数无效的块大小参数:%s
无效的布尔值无效的文件描述符信息desc_size值无效:“%s”
设置了无效的文件系统选项:%s
无效的hash算法:%s
无效的inode大小 %lu(最大 %d)
无效的整数值无效mmp更新间隔:%s
设置了无效的挂载选项:%s
无效的新大小: %s
无效的偏移量: %s
操作 %d æ— æ•ˆ
无效的配置区段对象预读取缓冲区大小无效。
无效的改变大小参数:%s
无效的根目录所有者:“%s”
无效的步长度无效的步长参数:%s
无效的带宽参数:%s
无效的超级块参数:%s
不支持迭代所有顶级区段在 %s ä¸­å‘现日志校验值错误
%s ä¸­çš„æ—¥å¿—已损坏
日志设备的块大小(%d)不能低于最小的块大小 %d
日志标志不一致日志大小至少为1024个块日志需要恢复;请运行“e2fsck -E journal_only”。
日志未找到日志已删除
日志超级块的幻数有错!
日志超级块未找到日志超级块未找到!
日志事务 %i æŸåï¼Œæ’¤é”€è¿‡ç¨‹å·²ç»ˆæ­¢ã€‚
版本为0的文件系统不支持日志
内核不支持在线调整大小内核不支持调整如此之大的文件系统已杀死pid为 %d çš„uuidd进程
最后一个@g的@b@B未初始化。  ä¸Šä¸€æ¬¡çš„æŒ‚载时间不匹配。
上一次的写入时间不匹配。
写入计数不匹配。
L是一个链接UUID列表:
MMP块幻数错误。请尝试运行一下命令来修复:
“e2fsck -f %s”
MMP间隔为 %u ç§’,总等候时间为 %u ç§’。请稍候...
MMP:块编号超出文件系统边界MMP:设备当前为活动状态MMP:文件系统正在被使用MMP:无效的幻数MMP:使用O_DIRECT标志打开失败MMP:正在进行未知的操作重叠块已克隆MMP块的幻数不匹配。期望值:%x,实际:%x
文件系统块的最大值=%lu
只读测试中最多只能指定一种测试模式内存分配出错内存用量:%d,持续时间:%6.3f/%6.3f/%6.3f
已使用内存:%lu, å†…存使用量:%luk/%luk(%luk/%luk), @d@i %i ä¸­ç¼ºå°‘“.”。
@d@i %i ä¸­ç¼ºå°‘“..”。
配置中缺少左括号以只读模式挂载。
移动模式只能用于原始镜像原始镜像需要完全数据模式。将@j从 /%s ç§»åŠ¨åˆ°éšè—çš„@i。
 
正在移动inode表MMP(多重挂载保护)已被启用,更新间隔为 %ds。
MMP(多重挂载保护)已被启用,更新间隔为 %d ç§’。
必须使用“-v”、=、- æˆ– + å…¶ä¸­ä¹‹ä¸€
需要更新日志超级块。
新大小不能低于此最小值:%llu
新大小太大,无法用32位数表示
找不到“下一个”extent找不到“后一个”extent找不到“前一个”extent找不到“上一个”extent含有内联数据的 inode ä¸å«å—当前节点不存在extent映射中没有可用空间没有足够空间用于存储内联数据目录中没有可用空间没有更多的区段未打开任何配置文件@l@d中没有空间。  æ²¡æœ‰è¶³å¤Ÿç©ºé—´ç”¨äºŽæ’å…¥extent到节点没有足够的保留gdt块用于改变文件系统大小没有足够的空间用于建立指定的文件系统没有足够的空间用于增加inode大小
注意:如果有数个inode、块位图或inode表
需要重定位,你可以用“-b %S”选项运行
e2fsck。如果问题出在组描述符的主块,
那么可以尝试它们的备份块。
 
操作系统: %s
偏移量只能用于原始镜像使用旧版本的改变大小操作接口。
版本为0的文件系统不支持在线改变大小。
不支持在线缩小块一个或多个@b@g描述符的校验值无效。  åªèƒ½ä½¿ç”¨é€‰é¡¹ -p/-a、-n æˆ– -y å…¶ä¸­ä¹‹ä¸€ã€‚含有extent的inode不支持此操作优化@x树:优化目录: æ£€æµ‹åˆ°å­¤ç«‹å—;建议您运行 e2fsck。
擦除扇区 %d-%d æ—¶å†…存耗尽
正在覆盖现有的文件系统;可以用下列命令来撤销该操作:
    e2undo %s %s
 
程序错误:@f(# %n)@B端点(%b,%c)与计算值(%i,%j)不符
@b@B末尾的填充值未设置。 @i@B末尾的填充值未设置。 åˆ†åŒºåç§»é‡ %llu(%uk)块与簇大小 %u ä¸ç›¸å®¹ã€‚
第 1 æ­¥ç¬¬ 1 æ­¥ï¼šæ£€æŸ¥@i、@b和大小
第 1C æ­¥ï¼šæ‰«æå«æœ‰@m@b的目录@i
第 1C æ­¥ï¼šè°ƒæ•´@m@b
第 1E æ­¥ï¼šä¼˜åŒ–@x树
第 2 æ­¥ç¬¬ 2 æ­¥ï¼šæ£€æŸ¥ç›®å½•结构
第 3 æ­¥ç¬¬ 3 æ­¥ï¼šæ£€æŸ¥ç›®å½•连接性
第 3A æ­¥ï¼šä¼˜åŒ–目录
第 4 æ­¥ç¬¬ 4 æ­¥ï¼šæ£€æŸ¥å¼•用计数
第 5 æ­¥ç¬¬ 5 æ­¥ï¼šæ£€æŸ¥@g概要信息
此步已完成,发现了 %u ä¸ªåå—。(%d/%d/%d ä¸ªé”™è¯¯ï¼‰
内存峰值在线调整 %s çš„大小为 %llu å—(每块为 %dk)
没有调整文件系统大小的权限在启用 64 ä½ç‰¹æ€§å‰ï¼Œè¯·å…ˆæ‰§è¡Œ tune2fs æ¥å¯ç”¨ extent。
请先运行“e2fsck -f %s”。
 
请在终止调整操作后运行“e2fsck -fy %s”
来修复文件系统。
请运行“resize2fs %s %s请先运行“e2fsck -fy %s”。
可能该设备不存在?
可能为swap分区,或该设备不存在?
 
主未找到配置关系配置区段头部不处于顶级未找到配置区段配置版本 0.0程序错误:创建了多重序列的引用计数块!
检测到@b #%b ä¸ºå@b,但原因未知(可能是程序错误导致的)。
%s çš„项目被设置为 %lu
无法写入qcow2镜像到标准输出!
已重新连接已重定位只读测试中不允许使用随机测试模式原始镜像和qcow2镜像无法被安装正在读取并比较: æ­£åœ¨ä¿®å¤æ—¥å¿—。
备份@S中未设置恢复标志,继续处理日志。
重建重建@j重定位正在将@g %g çš„ %s ä»Ž %b é‡å®šä½è‡³ %c...
正在将@g %g çš„ %s é‡å®šä½è‡³ %c...
正在重定位块保留的@i %i(%Q)的模式无效。  æ”¹å˜@i大小失败:%m。改变@i大小的值无效。改变inode大小时有数据损坏不支持更改@i大小,但所给的变更值非零。  æ”¹å˜ inode å¤§å°éœ€è¦èŠ±è´¹ä¸€æ®µæ—¶é—´ã€‚å°† %s ä¸Šçš„æ–‡ä»¶ç³»ç»Ÿè°ƒæ•´ä¸º %llu ä¸ªå—(每块 %dk)。
正在从头开始e2fsck...
根目录的所有者=%u:%u
强制@j正在执行命令:%s
已修复分割禁止修复正在扫描inode表扫描inode中...
@d@i %i ä¸­çš„第二个@e“%Dn”(@i=%Di)@s“..”
区段已存在在启用了校验值的文件系统上设置 UUID éœ€è¦èŠ±è´¹ä¸€æ®µæ—¶é—´ã€‚è®¾ç½®å½“å‰æŒ‚è½½æ¬¡æ•°ä¸º %d
将默认hash算法设置为 %s ï¼ˆ%d)
将出错行为设置为 %d
设置默认挂载的扩展选项为 â€œ%s”
只有在启用了元数据校验值特性的文件系统才支持
“metadata_csum_seed”特性。
设置不被支持的文件系统特性“%s”。
启用了meta_bg特性的文件系统不支持“sparse_super”
特性。
将@E的文件类型设置为 %N。
设置未使用的@b数为 %c(曾为%b)
设置未使用的@i数为 %j(曾为%i)
正在将inode大小设置为 %lu
将检查间隔设置为 %lu ç§’
设置最大挂载次数为 %d
设置MMP更新间隔为 %lu ç§’
设置保留块数为 %llu
设置保留块的gid为 %lu
将保留块所占百分比设置为 %g%%(%llu ä¸ªå—)
设置保留块的uid为 %lu
设置步长为 %d
设置带宽为 %d
设置上一次检查的时间为 %s
不应当出现的情况:最后一个分散式超级块块组中没有超级块!
不应当出现的情况:分散式超级块块组中有未预期的old_desc!
不应出现的错误:改变inode大小时发现有数据损坏!
不支持缩小inode大小
跳过创建日志的步骤(唯超级块模式)
版本为0的文件系统不支持分散式超级块
特殊文件(@v/套接字/队列)@i %i ä¸ºéžé›¶å¤§å°ã€‚  ç‰¹æ®Šæ–‡ä»¶ï¼ˆ@v/套接字/队列)(@i %i)被设置了
extents æˆ–内联数据标志。特殊文件(@v/套接字/队列/ ç¬¦å·é“¾æŽ¥ï¼‰ï¼ˆ@i %i)由chattr设置了 i
(保护)或 a(仅追加) æ ‡å¿—。  åˆ†å‰²åˆ†å‰²æ“ä½œå°†å¯¼è‡´ç©ºèŠ‚ç‚¹äº§ç”ŸS超级@b现在终止将会损坏文件系统;如果你确定要终止,请再次进行打断
步长=%u å—,带宽=%u å—
建议:使用 3.18 ä»¥ä¸Šçš„ Linux å†…核以提高元数据稳定性,以及使用日志校验值特性。
超级块的备份存储于下列块: i超级块校验值与超级块自身不符超级块无效,指定的日志设备不是块设备不显示消息符号链接 %Q(@i #%i)无效。
e2fsck é…ç½®æ–‡ä»¶ä¸­è¯­æ³•错误(%s,第 %d è¡Œï¼‰
   %s
mke2fs配置文件中有语法错误(%s,第 %d è¡Œï¼‰
   %s
配置关系中有语法错误配置区段头部中有语法错误TDB:数据库损坏TDB:I/O错误TDB:无效的参数TDB:锁已存在于其他键TDB:锁定错误TDB:内存耗尽TDB:记录不存在TDB:记录已存在TDB:成功TDB:不允许写入截断现在测试模式 0x现在测试随机模式:-D å’Œ -E fixes_only é€‰é¡¹æ˜¯äº’相排斥的。-E bmap2extent å’Œ fixes_only é€‰é¡¹æ˜¯äº’相排斥的。-T é€‰é¡¹åªèƒ½è¢«æŒ‡å®šä¸€æ¬¡-c å’Œ -l/-L é€‰é¡¹ä¸èƒ½åŒæ—¶ä½¿ç”¨ã€‚
写入到标准输出时无法使用 -c é€‰é¡¹
只有原始模式支持 -c é€‰é¡¹
%s:-n å’Œ -D é€‰é¡¹æ˜¯äº’相排斥的。%s:-n å’Œ -c é€‰é¡¹æ˜¯äº’相排斥的。%s:-n å’Œ -l/-L é€‰é¡¹æ˜¯ç›¸äº’排斥的。只有原始模式支持 -p é€‰é¡¹
此版本的e2fsck不支持 -t é€‰é¡¹ã€‚
-t é€‰é¡¹åªèƒ½è¢«æŒ‡å®šä¸€æ¬¡æ ¹æ®@S,@f的大小应为 %b @bs
但@v的实际大小是 %c @bs
@S或分区表可能已经损坏!
HURD ä¸æ”¯æŒæ–‡ä»¶ç±»åž‹ã€‚
HURD ä¸æ”¯æŒå¤§æ–‡ä»¶ç‰¹æ€§ã€‚
HURD ä¸æ”¯æŒå…ƒæ•°æ®æ ¡éªŒå€¼ç‰¹æ€§ã€‚
Hurd内核不支持文件类型
只有当文件系统被卸载时才能改变UUID。
坏@b@i似乎是@n。  å›žè°ƒå‡½æ•°å°†ä¸ä¼šå¤„理这个情况簇大小不能小于块大小。
指定的分区(或设备)仅有 %llu ä¸ªå—(每块为 %dk),
但你却指定新大小为 %llu ä¸ªå—。
 
ext2超级块损坏文件 %s ä¸å­˜åœ¨ï¼Œä¹Ÿæ²¡æœ‰æŒ‡å®šå¤§å°ã€‚
文件系统的超级块与撤销文件不匹配
文件系统已有日志。
文件系统已经为 %llu ä¸ªå—(每块 %dk)。无需进一步处理!
 
文件系统已经为 32 ä½æ¨¡å¼ã€‚
文件系统已经为 64 ä½æ¨¡å¼ã€‚
%s ä¸Šçš„æ–‡ä»¶ç³»ç»ŸçŽ°åœ¨ä¸º %llu ä¸ªå—(每块 %dk)。
 
文件系统的版本高于此e2fsck所支持的版本。
(也有可能超级块已损坏)
 
只有当文件系统被卸载,或以只读模式挂载时才能移除其has_journal特性。
只有当文件系统被卸载,或以只读模式挂载时才能移除其huge_file特性。
该inode来自inode表中的一个坏块inode大小已经为 %lu
只有当文件系统被卸载时才能改变inode大小。
日志超级块已损坏文件系统被挂载或为只读属性时无法设置MMP特性。
文件系统为只读状态时无法禁用MMP特性。
发现needs_recovery标志。请在移除has_journal特性前运行e2fsck。
主@S(%b)位于坏@b列表中。
只有当文件系统被卸载时才能修改配额特性。
所需改变的大小必须大于当前文件系统的大小。
resize_inode å’Œ meta_bg ç‰¹æ€§ä¸å…¼å®¹ã€‚
无法同时启用它们。
设置了 test_fs æ ‡å¿—(并且ext4可用)。  è¿™å¹¶ä¸æ˜¯ä¸€ä¸ªå¥½é¢„兆,然而我们将继续进行...
该文件系统在每挂载%d次或每隔%g天都会进行自动检查。
使用tune2fs -c æˆ–-i选项来覆盖这一特性。
这可能导致性能下降,建议重新进行分区。
@i %i çš„æ—¶é—´æˆ³è¶…过了 2310-04-04,可能应为 1970 å¹´ä¹‹å‰ã€‚
最大坏块数(%u)过大 - æœ€å¤§å€¼ä¸º %u坏块太多,终止测试
@i %i ä¸­åŒ…含了过多的非法@b。
表中有太多的引用组描述符的保留块太多发现了过多的符号链接。尝试在块位图中设置丢失的链接块截断正在截断未预期的不连续性:文件系统在运行fsck时被修改。
已解除链接UUID ä¸åŒ¹é…ã€‚
启用元数据校验值特性后UUID被改变。必须卸载文件系统并安全改写所有元数据,以便
与新的 UUID ç›¸åŒ¹é…ã€‚
无法解析“%s”未被连接的@d@i %i(%p)
撤销文件损坏撤销文件损坏;请立即运行 e2fsck!
撤销文件的超级块的校验值与超级块自身不符。
@h %d(%q)中有额外的@b。
服务器 %d è¿”回了长度异常的内容
未处理的错误码 ï¼ˆ0x%x)!
未实现的ext2库函数位置的校验值算法未知的扩展属性:%s
其他步骤解除链接不支持的日志版本更新配额类型 %N çš„配额信息正在更新inode引用用法:%s è®¾å¤‡...
 
输出每个给定设备的分区信息.
例如:%s /dev/hda
 
用法:findsuper è®¾å¤‡ [跳过字节数 [起始kb数]]
用法:%s  -r ç£ç›˜å
用法:%s [-F] [-I inode缓冲块] è®¾å¤‡
用法:%s [-RVadlpv] [文件...]
用法:%s [-c|-l æ–‡ä»¶å] [-b å—大小] [-C ç°‡å¤§å°]
   [-i æ¯inode的字节数] [-I inode大小] [-J æ—¥å¿—选项]
   [-G å¼¹æ€§ç»„大小] [-N inode数] [-d æ ¹ç›®å½•]
   [-m ä¿ç•™å—所占百分比] [-o åˆ›å§‹ç³»ç»Ÿå]
   [-g æ¯ç»„的块数] [-L å·æ ‡] [-M ä¸Šä¸€æ¬¡æŒ‚载点]
   [-O ç‰¹æ€§[,...]] [-r æ–‡ä»¶ç³»ç»Ÿç‰ˆæœ¬] [-E æ‰©å±•选项[,...]]
   [-t æ–‡ä»¶ç³»ç»Ÿç±»åž‹] [-T ç”¨æ³•类型] [-U UUID] [-e é”™è¯¯è¡Œä¸º][-z æ’¤é”€æ–‡ä»¶]
   [-jnqvDFKSV] è®¾å¤‡ [块数]
用法:%s [-d] [-p pid文件] [-s å¥—接字路径] [-T è¶…æ—¶æ—¶é•¿]
用法:%s [-pRVf] [-+=aAcCdDeijPsStTu] [-v ç‰ˆæœ¬] æ–‡ä»¶...
用法:%s [-panyrcdfktvDFV] [-b è¶…级块] [-B å—大小]
       [-l|-L åå—文件] [-C fd] [-j å¤–部日志]
       [-E æ‰©å±•选项]  [-z æ’¤é”€æ–‡ä»¶] è®¾å¤‡
用法:%s [-r] [-t]
用法:%s  ç£ç›˜å
用法:e2label è®¾å¤‡ [新卷标]
用法:fsck [-AMNPRTV] [ -C [ fd ] ] [-t æ–‡ä»¶ç³»ç»Ÿç±»åž‹] [文件系统选项] [文件系统 ...]
用法:mklost+found
用户取消了操作根据日志设备确定块大小:%d
%s çš„版本被设置为 %lu
警告:无法确定内核是否支持 metadata_csum_seed ç‰¹æ€§ã€‚
  è¯¥ç‰¹æ€§ä»…被 4.4 ä»¥ä¸Šçš„ Linux å†…核支持。
警告:e2fsck中出现程序错误!
   æˆ–者是(粗心大意的)你正在检查一个被挂载的(活动的)文件系统。
@i_link_info[%i] ä¸º %N,@i.i_links_count ä¸º %Il。它们应当相同!
警告:你的/etc/fstab中缺少passno字段。
   æˆ‘将会设法完成任务,但你应当尽快修复/etc/fstab。
 
警告:%2$s çš„第 %1$d ä¸­æ ¼å¼é”™è¯¯
警告:无法打开 %s:%s
将会重建警告! %s正被使用。
警告! %s已被挂载。
警告... è®¾å¤‡%s çš„ %s æ“ä½œæ”¶åˆ° %d ä¿¡å·åŽé€€å‡ºã€‚
警告:%d字节的块对于系统来说太大(最大为 %d),但仍然强制进行操作
警告:-K é€‰é¡¹å·²è¢«åºŸå¼ƒï¼Œä»ŠåŽä¹Ÿä¸åº”当被使用。请使用扩展选项
“-E nodiscard”作为替代!
警告:检查超时,建议您运行 e2fsck。
警告:组 %g çš„@S(%b)为坏块。
警告:组 %g æè¿°ç¬¦çš„备份含有一个坏@b(%b)。
 
警告:尝试挂载次数超过最大值,建议您运行 e2fsck。
 
警告:正在挂载未经检查的文件系统,建议您先运行 e2fsck。
警告:日志存在错误。您可能需要重做日志,如:
 
e2fsck -E journal_only %s
 
然后重新运行本命令。否则,任何所做更改都可能被日志恢复操作所覆盖。
警告:当put缓存时,这些表仍然储存在缓存中,这将导致数据丢失,镜像文件也可能无效。
警告:块大小 %d åœ¨å¾ˆå¤šç³»ç»Ÿä¸­ä¸å¯ç”¨ã€‚
警告:无法擦除块 %d:%s
警告:无法从%s中读取@b %b:%m
警告:无法读取块 0:%s
警告:无法向%s中写入@b %b:%m
警告:在坏块inode中发现非法的块%u。已清除。
警告:卷标太长,已截短。
警告:卷标太长,已截短为“%s”
警告:由于只读系统检查,跳过日志恢复流程。
警告:指定的块大小 %d å°äºŽè®¾å¤‡ç‰©ç†æ‰‡åŒºå¤§å°%d
警告:备份超级块/组描述符中发现坏块(%u)
 
do_read中遇到异常值(%ld)
检查是否支持在线调整文件系统大小时读取 %s çš„æ ‡å¿—时读取 %s çš„项目时设置 %s çš„版本时尝试添加组 #%d æ—¶å°è¯•扩展最后一个组时在进行重做操作时,不会写入到撤销文件。
正在写入到块 %llu
正在写入inode表: å†™å…¥è¶…级块和文件系统账户统计信息: å¹»æ•°é”™è¯¯ï¼ˆä¿ç•™ç¼–号:13)幻数错误(保留编号:14)幻数错误(保留编号:15)幻数错误(保留编号:16)幻数错误(保留编号:17)幻数错误(保留编号:18)幻数错误(保留编号:19)64位块通用位图中的幻数有错64位通用位图中的幻数有错64位inode通用位图中的幻数有错ext2镜像头中的幻数有错Powerquest io_channel结构体中的幻数有错badblocks_iterate结构体中的幻数有错badblocks_list结构体中的幻数有错block_bitmap结构体中的幻数有错目录块列表结构体中的幻数有错ext2文件结构体中的幻数有错ext2_filsys结构体中的幻数有错ext4 extent句柄中的幻数有错ext4 extent保存路径的幻数有错扩增属性结构体中的幻数有错generic_bitmap结构体中的幻数有错icount结构体中的幻数有错inode io_channel结构体中的幻数有错inode_bitmap结构体中的幻数有错inode_scan结构体中的幻数有错io_channel结构体中的幻数有错io_manager结构体中的幻数有错测试io_channel结构体中的幻数有错unix io_channel结构体中的幻数有错此文件系统的撤销文件有误你可以将该@b从坏@b列表中移除,并期望
它能够正常表现。但我们并不提供任何保证。
 
你必须具有对该文件系统的 %s æƒé™ï¼Œæˆ–者为root
你可能需要升级mke2fs.conf文件。
 
正在对日志设备填零: [*] ext3 æ—¥å¿—中的超级块中可能被写入了文件系统的超级块,
   å› æ­¤ start/end/grp å‡ºé”™
aA已中止a扩展属性速度 %.2f MB/s参数错误出错行为有误 - %s配置中的出错行为有误 - %s错误的gid/组名 - %s坏块映射无效的inode大小 - %s错误的间隔 - %s错误挂载计数 - %s错误的inode数 - %s项目错误 - %s
错误的保留块比 - %s错误的保留块数 - %s错误的响应长度错误的版本号 - %s错误的uid/用户名 - %s版本错误 - %s
强制进行坏块检验。
强制进行坏块处理。期望/etc/mtab中反映的并非真实情况。
b块块 #块位图块设备块每组块数超过允许范围每组块数必须是8的倍数需要移动的块偏移字节     èµ·å§‹å­—节      ç»“束字节   å—æ•°      å—大小  grp  åˆ›å»º/挂载时间             è¶…级块 UUID æ ‡ç­¾
无法使用测试模式分配内存 - %s已取消!
c压缩字符设备检查被中止。
check_block_bitmap_checksum:内存分配出错check_inode_bitmap_checksum:内存分配出错检测其是否已挂载文件系统块 %llu ä¸­çš„æ ¡éªŒå€¼æœ‰è¯¯ï¼ˆundo blk %llu)
簇连接d目录文件夹目录inode映射完成
已完成
 
完成                            
已完成                                                 
二次链接块执行ext2fs_sync_device时定位过程中正在测试数据写入,位于块 %lue2fsck_read_bitmaps:%s å«æœ‰éžæ³•的位图块e2label:无法打开 %s
e2label:无法定位到superblock
e2label:无法定位到superblock
e2label:读取superblock出错
e2label:写入超级块时出错
e2label:不是一个ex2文件系统
e2undo åªèƒ½ç”¨äºŽæœªæŒ‚载的文件系统e项持续时间:%6.3f
空ACL映射空目录块generic_write() å‡½æ•°å‡ºé”™è¯»å–位图时发生错误读取块 %llu é”™è¯¯å†™å— %llu å‡ºé”™æ‰©å±•属性块映射ext2fs_check_desc: %m
ext2fs_new_block:尝试创建/@l@d时%m
ext2fs_new_inode:尝试创建/@l@d时%m
ext2fs_new_dir_block:创建新的@d@b时%m
ext2fs_open2: %m
ext2fs_new_dir_block:为/@l创建新的@d@b时%m
extent é‡å»º inode æ˜ å°„已失败 - f文件系统文件系统第一个块弹性组的大小(%lu)必须小于等于2^31弹性组的大小必须是2的次方mke2fs.conf中有关文件系统类型的解释: fsck:%s:未找到
fsck:无法检查 %s:找不到fsck.%s
从扫描进度中获取下一个 inodeg组hHTREE@d@i@i %i(%Q)的i_blocks_hi为 %N,@s0。
@i %i ï¼ˆ%Q)的i_faddr为 %IF,@s0。
@i %i ï¼ˆ%Q)的i_file_acl为 %IF,@s0。
@i %i ï¼ˆ%Q)的i_file_acl_hi为 %N,@s0。
@i %i ï¼ˆ%Q)的i_frag为 %N,@s0。
@i %i ï¼ˆ%Q)的i_size为 %N,@s0。
忽略项“%s”iinode偏移量无效 - %sinode的imagic映射为bad_blocks_filename分配内存时于 move_quota_inode ä¸­ä½¿ç”¨ä¸­çš„块映射使用中的inode映射链接块inode ä½å›¾å·²å®Œæˆçš„inode位图更新坏块映射时循环inode检测位图inode表inode大小(%u)×inode数(%u)对于含有 %llu ä¸ªå—
   çš„系统来说太大,请指定更高的inode比(使用 -i é€‰é¡¹ï¼‰
   æˆ–æ›´å°‘çš„inode数(-N)。
输入文件 - æ ¼å¼é”™è¯¯å†…部错误:无法找到 %llu çš„dup_blk信息
内部错误:无法查找 %llu çš„EA块记录内部错误:无法查找 %u çš„EA inode块记录检查间隔太长(%lu)无效的%s - %s无效的块大小 - %s无效的块数“%s”于设备“%s”无效的簇大小 - %s起始块(%llu)无效:必须为32位数无效的inode比 %s(最小 %d /最大 %d)无效的inode大小 %d(最小 %d /最大 %d)无效的inode大小 - %s无效的保留块百分比 - %lf无效的保留块百分比 - %s起始块(%llu)无效:必须小于 %llu进行坏块处理有风险!
j日志日志内核不支持在线调整启用了sparse_super2特性的文件系统的大小最后一个块llost+found内存分配失败元数据块元数据块映射mke2fs å¼ºåˆ¶æ‰§è¡Œã€‚
强制执行mke2fs。期望/etc/mtab中反映的并非真实情况。
MMP更新间隔太长:%lu
m重复引用的重叠块映射重叠块映射nN命名管道需要在终端中进行交互式修复新的元数据块n无效的no否
o孤立的开始 inode æ‰«ææ“ä½œ %d,传入值 = %d
p问题出于q配额读取计数正在读取目录块读取inode为 %u çš„链接块时读取inode和块位图读取日志超级块
一般文件普通文件inode映射保留块保留块的数量太大(%llu)非分散式文件系统不支持为在线调整大小设置保留块从clone_file_block返回r根@iinode大小=%d
“跳过字节数”应当是扇区大小的整数倍
“跳过字节数”应当为一个数字,而不是 %s
套接字指定的偏移量太大指定簇大小需要启用bigalloc特性s应为在 %llu å¤„开始,增量为 %u å­—节
“起始kb数”应当为一个数字,而不是 %s
“起始kb数”应当为正数,而不是 %llu
符号链接在执行 lstat() å’Œ readlink() æœŸé—´ï¼Œç¬¦å·é“¾æŽ¥çš„大小发生改变时间:%5.2f/%5.2f/%5.2f
inode太多(%llu),是否提高inode比?inode数量太多(%llu),请指定小于 2^32 çš„inode数翻译块三次链接块无法设置 %s çš„超级块标志。
 
模式为 0%o çš„æœªçŸ¥æ–‡ä»¶ç±»åž‹æœªçŸ¥æ“ä½œç³»ç»Ÿ - %suuidd守护进程已经在运行,pid %s
u独立的v设备警告:%llu å—未使用。
 
警告:无法获取 %s çš„设备布局
将文件系统添加到 %s ä¸Šçš„æ—¥å¿—向内存中的坏块列表中添加记录时写入块位图时为缓冲区分配内存时分配缓冲区时为check_buf分配内存时为ext2_qcow2_image分配内存时分配 fs_feature å­—符串时分配 inode“%s”时分配l1表时分配l2表时分配内存时写入加扰块位图时迭代坏块列表时改变目录时改变工作目录为“%s”时检测 MMP å—时检查 %s çš„æ—¥å¿—时读取坏块inode时关闭 inode %u æ—¶åˆ›å»º/lost+found目录时创建目录“%s”时创建大文件 %lu æ—¶åœ¨å†…存中创建坏块列表时创建 inode â€œ%s”时创建根目录时创建特殊文件“%s”时创建符号链接“%s”时确定 %s æ˜¯å¦å·²æŒ‚载时进行inode扫描时扩充/lost+found目录时扩充目录时获取块 %llu æ—¶ã€‚获取超级块时获取下一个inode时获取%s的stat信息时出错。初始化ext2_qcow2_image时初始化日志超级块时初始化配额上下文时初始化支持库中的引用上下文时获取遍历inode %u æ—¶é“¾æŽ¥â€œ%s”时尝试列出“%s”的属性时查找“%s”时查找/lost+found目录时对“%s”进行lstat调用时创建目录“%s”时将坏块标记为已使用的打开“%s”并拷贝时打开%s时打开并刷新 %s æ—¶æ‰“开“%s”时打开设备文件时打开目录“%s”时打开 inode %u æ—¶è¿›è¡Œinode扫描时打开日志inode时打开撤销文件“%s”时
于填充文件系统时输出坏块列表时处理从badblocks获取的坏块列表时读取 MMP å—时读取MMP块时读取 %s çš„“%s”标志时读取位图时读取文件系统的超级块时读取 %s çš„æ ‡å¿—时从文件中读取坏块表时读取 %2$s ä¸­çš„inode %1$lu æ—¶è¯»å– inode %u æ—¶è¯»å–日志inode时读取日志超级块时读取日志超级块时读取键时读取坏块inode时读取坏块inode时读取坏撤销文件时恢复 %s çš„æ—¥å¿—时移除配额文件(%d)时为在线改变大小保留块时重置上下文时存储镜像表时重新尝试读取 %s çš„位图时重写 %s  çš„block和inode位图时进行坏块inode的健全性检查时保存 inode æ•°æ®æ—¶è®¾ç½®åå—inode时设置块大小时;对于设备来说太小
设置 %s çš„æ ‡å¿—时为“%s”设置 inode æ—¶è®¾ç½® %s çš„项目时设置根目录的所有者时设置superblock时设置 %s çš„版本时设置“%s”的 xattrs æ—¶å¼€å§‹inode扫描时尝试管道执行 %s æ—¶å°è¯•分配文件系统表时尝试将qcow2镜像(%s)转换为raw镜像(%s)时尝试创建版本 %d æ—¶å°è¯•删除 %s æ—¶å°è¯•确定设备大小时尝试确定文件系统大小时尝试确定硬件扇区大小时尝试确定物理扇区大小时尝试刷新 %s æ—¶å°è¯•初始化程序时尝试打开 %s æ—¶å°è¯•打开 â€œ%s” æ—¶å°è¯•打开外部日志时尝试打开日志设备 %s æ—¶
尝试打开挂载点 %s æ—¶å°è¯•重新打开 %s æ—¶å°è¯•读取链接“%s”时尝试调整%s的大小时尝试运行“%s”时尝试创建撤销记录时
尝试对%s进行stat调用时尝试截断 %s æ—¶æ›´æ–°åå—inode时更新配额限制(%d)时写入标志“%s”到 inode %u æ—¶å†™å— %llu æ—¶ã€‚写入块位图时写入文件“%s”时写入 %2$s ä¸­çš„inode %1$lu æ—¶å†™å…¥ inode %u æ—¶å†™å…¥inode位图时写入inode表时写入日志inode时写入日志超级块时写入配额文件(%d)时写入配额 inode æ—¶å†™å…¥è¶…级块时写入符号链接“%s”时对文件系统末尾的块 %llu å¡«é›¶æ—¶å¯¹æ—¥å¿—设备填零时(块 %llu,计数 %d)取消建立 %s ï¼
每个使用 %llu ä¸ªå—写入写入块和inode位图xextentyYyes是
全部回答“yes”
z零长度