File: 06_apt.po

package info (click to toggle)
debian-handbook 10.20200619
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 135,632 kB
  • sloc: xml: 29,579; sh: 227; makefile: 62; perl: 54
file content (2906 lines) | stat: -rw-r--r-- 325,972 bytes parent folder | download
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
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
msgid ""
msgstr ""
"Project-Id-Version: 0\n"
"POT-Creation-Date: 2020-05-17 17:54+0200\n"
"PO-Revision-Date: 2018-04-27 11:50+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/debian-handbook/06_apt/nb_NO/>\n"
"Language: nb-NO\n"
"MIME-Version: 1.0\n"
"Content-Type: application/x-publican; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.0-dev\n"

msgid "apt"
msgstr "apt"

msgid "apt-get"
msgstr "apt-get"

msgid "apt-cache"
msgstr "apt-cache"

msgid "aptitude"
msgstr "aptitude"

msgid "synaptic"
msgstr "synaptic"

msgid "sources.list"
msgstr "sources.list"

msgid "apt-cdrom"
msgstr "apt-cdrom"

msgid "Maintenance and Updates: The APT Tools"
msgstr "Vedlikehold og oppdateringer; APT-verktøyene"

#, fuzzy
#| msgid "What makes Debian so popular with administrators is how easily software can be installed and how easily the whole system can be updated. This unique advantage is largely due to the <emphasis>APT</emphasis> program, that Falcot Corp administrators studied with enthusiasm."
msgid "What makes Debian so popular with administrators is how easily software can be installed and how easily the whole system can be updated. This unique advantage is largely due to the <emphasis>APT</emphasis> program, which Falcot Corp administrators studied with enthusiasm."
msgstr "Hva som gjør Debian så populært hos administratorer er hvor lett programvaren kan installeres, og hvor lett hele systemet kan oppdateres. Denne unike fordelen er hovedsakelig på grunn av <emphasis>APT</emphasis>-programmet, som Falcot Corp administratorene studerte med entusiasme."

#, fuzzy
#| msgid "<primary>tag</primary>"
msgid "<primary>APT</primary>"
msgstr "<primary>tagg</primary>"

#, fuzzy
#| msgid "<primary>package</primary><secondary>seal</secondary>"
msgid "<primary>Advanced Package Tool</primary><seealso>APT</seealso>"
msgstr "<primary>pakke</primary><secondary>forsegling</secondary>"

#, fuzzy
#| msgid "<indexterm><primary>APT</primary></indexterm> <indexterm><primary>Advanced Package Tool</primary></indexterm> APT is the abbreviation for Advanced Package Tool. What makes this program “advanced” is its approach to packages. It doesn't simply evaluate them individually, but it considers them as a whole and produces the best possible combination of packages depending on what is available and compatible (according to dependencies)."
msgid "<acronym>APT</acronym> is the abbreviation for Advanced Package Tool. What makes this program “advanced” is its approach to packages. It doesn't simply evaluate them individually, but it considers them as a whole and produces the best possible combination of packages depending on what is available and compatible according to dependencies."
msgstr "<indexterm><primary>APT</primary></indexterm> <indexterm><primary>Advanced Package Tool</primary></indexterm> APT er forkortelse for Advanced Package Tool. Hva som gjør dette programmet «avansert» er tilnærmingen til pakker. Det betyr ikke bare å vurdere dem hver for seg, men det anser dem som en helhet, og gir den best mulige kombinasjon av pakker, avhengig av hva som er tilgjengelig og kompatibelt (ut fra avhengigheter)."

msgid "<emphasis>VOCABULARY</emphasis> Package source and source package"
msgstr "<emphasis>ORDFORRÅD</emphasis> Pakkekilde og kildepakke"

#, fuzzy
#| msgid "<primary>package</primary><secondary>source of</secondary>"
msgid "<primary>package</primary><secondary>source package</secondary>"
msgstr "<primary>pakke</primary><secondary>kildekode til</secondary>"

#, fuzzy
#| msgid "<primary>package</primary><secondary>priority</secondary>"
msgid "<primary>package source</primary><seealso>repository</seealso>"
msgstr "<primary>pakke</primary><secondary>prioritet</secondary>"

#, fuzzy
#| msgid "The word <emphasis>source</emphasis> can be ambiguous. A source package — a package containing the source code of a program — should not be confused with a package source — a repository (website, FTP server, CD-ROM, local directory, etc.) which contains packages."
msgid "The word <emphasis>source</emphasis> can be ambiguous. A \"source package\" — a package containing the source code of a program — should not be confused with a \"package source\" — a repository (website, FTP server, CD-ROM, local directory, etc.) which contains packages."
msgstr "Ordet <emphasis>kilde</emphasis> kan være uklart. En kildepakke - en pakke som inneholder kildekoden til et program - må ikke forveksles med en pakkekilde - en pakkebrønn (nettsted, FTP-tjener, CD-ROM, lokal katalog, etc.) som inneholder pakker."

#, fuzzy
#| msgid "APT needs to be given a “list of package sources”: the file <filename>/etc/apt/sources.list</filename> will list the different repositories (or “sources”) that publish Debian packages. APT will then import the list of packages published by each of these sources. This operation is achieved by downloading <filename>Packages.xz</filename> or a variant using a different compression method (such as <filename>Packages.gz</filename> or <filename>.bz2</filename>) files (in case of a source of binary packages) and <filename>Sources.xz</filename> or a variant (in case of a source of source packages) and by analyzing their contents. When an old copy of these files is already present, APT can update it by only downloading the differences (see sidebar <xref linkend=\"sidebar.apt-pdiff\" />)."
msgid "APT needs to be given a “list of package sources (repositories)”: the file <filename>/etc/apt/sources.list</filename> will list the different repositories that publish Debian packages. APT will then import the list of packages published by each of these sources. This operation is achieved by downloading <filename>Packages.xz</filename> files or a variant such as <filename>Packages.gz</filename> or <filename>.bz2</filename> (using a different compression method) in case of a source of binary packages and by analyzing their contents. In case of a source of source packages, APT downloads <filename>Sources.xz</filename> files or a variant using a different compression method. When an old copy of these files is already present, APT can update it by only downloading the differences (see sidebar <xref linkend=\"sidebar.apt-pdiff\" />)."
msgstr "APT trenger å bli gitt en «liste over pakkekilder»: filen <filename>/etc/apt/sources.list</filename> vil liste de ulike pakkebrønner (eller «kilder») som publiserer Debian-pakker. APT vil deretter importere listen over pakker utgitt av hver av disse kildene. Denne operasjonen oppnås ved å laste ned <filename>Packages.xz</filename>, eller en variant som bruker en annen pakkemetode (slik som <filename>Packages.gz</filename>, eller <filename>.bz2</filename>)-filer (i tilfelle fra en kilde med binærpakker) og <filename>Sources.xz</filename>, eller en variant (i tilfelle av en kilde med kildepakker), og ved å analysere innholdet. Når en gammel kopi av disse filene allerede er til stede, kan APT oppdatere den ved bare å laste ned forskjellene (se sidestolpe <xref linkend=\"sidebar.apt-pdiff\" />)."

msgid "<primary><filename>Packages.xz</filename></primary>"
msgstr "<primary><filename>Packages.xz</filename></primary>"

#, fuzzy
#| msgid "<primary><filename>Packages.xz</filename></primary>"
msgid "<primary><filename>Packages.gz</filename></primary>"
msgstr "<primary><filename>Packages.xz</filename></primary>"

#, fuzzy
#| msgid "<primary><filename>Packages.xz</filename></primary>"
msgid "<primary><filename>Packages.bz2</filename></primary>"
msgstr "<primary><filename>Packages.xz</filename></primary>"

msgid "<primary><filename>Sources.xz</filename></primary>"
msgstr "<primary><filename>Sources.xz</filename></primary>"

#, fuzzy
#| msgid "<primary><filename>Sources.xz</filename></primary>"
msgid "<primary><filename>Sources.gz</filename></primary>"
msgstr "<primary><filename>Sources.xz</filename></primary>"

#, fuzzy
#| msgid "<primary><filename>Sources.xz</filename></primary>"
msgid "<primary><filename>Sources.bz2</filename></primary>"
msgstr "<primary><filename>Sources.xz</filename></primary>"

msgid "<emphasis>BACK TO BASICS</emphasis> <command>gzip</command>, <command>bzip2</command>, <command>LZMA</command> and <command>XZ</command> Compression"
msgstr "<emphasis>DET GRUNNLEGGENDE</emphasis> <command>gzip</command>, <command>bzip2</command>, <command>LZMA</command> og <command>XZ</command> komprimering"

msgid "<primary><command>gzip</command></primary>"
msgstr "<primary><command>gzip</command></primary>"

msgid "<primary><command>bzip2</command></primary>"
msgstr "<primary><command>bzip2</command></primary>"

msgid "<primary><command>lzma</command></primary>"
msgstr "<primary><command>lzma</command></primary>"

msgid "<primary><command>xz</command></primary>"
msgstr "<primary><command>xz</command></primary>"

msgid "A <filename>.gz</filename> extension refers to a file compressed with the <command>gzip</command> utility. <command>gzip</command> is the fast and efficient traditional Unix utility to compress files. Newer tools achieve better rates of compression but require more resources (computation time and memory) to compress and uncompress a file. Among them, and by order of appearance, there are <command>bzip2</command> (generating files with a <filename>.bz2</filename> extension), <command>lzma</command> (generating <filename>.lzma</filename> files) and <command>xz</command> (generating <filename>.xz</filename> files)."
msgstr "En <filename>.gz</filename>-utvidelse refererer til en fil komprimert med <command>gzip</command>-verktøyet. <command>gzip</command> er det raske og effektive, tradisjonelle Unix-verktøyet for å komprimere filer. Nyere verktøy oppnår bedre komprimeringshastigheter, men krever mer ressurser (beregning av tid og minne) for å komprimere og dekomprimere en fil. Blant dem, og rekkefølge etter fremtreden, er det <command>bzip2</command> (som genererer filer med en <filename>.bz2</filename>-utvidelse), <command>lzma</command> (genererer <filename>.lzma</filename>-filer) og <command>xz</command> (genererer <filename>.xz</filename>-filer)."

msgid "Filling in the <filename>sources.list</filename> File"
msgstr "Å fylle inn <filename>sources.list</filename>-filen"

msgid "<primary><filename>sources.list</filename></primary>"
msgstr "<primary><filename>sources.list</filename></primary>"

msgid "<primary>source</primary><secondary>of packages</secondary>"
msgstr "<primary>kildekode</primary><secondary>til pakker</secondary>"

msgid "<primary>package</primary><secondary>source of</secondary>"
msgstr "<primary>pakke</primary><secondary>kildekode til</secondary>"

msgid "<primary><filename>/etc/apt/sources.list</filename></primary>"
msgstr "<primary><filename>/etc/apt/sources.list</filename></primary>"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/sources.list</filename></primary>"
msgid "<primary>APT</primary><secondary><filename>/etc/apt/sources.list</filename></secondary>"
msgstr "<primary><filename>/etc/apt/sources.list</filename></primary>"

msgid "Syntax"
msgstr "Syntaks"

msgid "Each active line in the <filename>/etc/apt/sources.list</filename> file represents a package source (repository) and is made of at least three parts separated by spaces. For a complete description of the file format and the accepted entry compositions see <citerefentry><refentrytitle>sources.list</refentrytitle><manvolnum>5</manvolnum></citerefentry>."
msgstr ""

#, fuzzy
#| msgid "<primary><filename>/etc/apt/sources.list</filename></primary>"
msgid "Example entry format in <filename>/etc/apt/sources.list</filename>"
msgstr "<primary><filename>/etc/apt/sources.list</filename></primary>"

msgid ""
"deb url distribution component1 component2 component3 [..] componentX\n"
"deb-src url distribution component1 component2 component3 [..] componentX\n"
"        "
msgstr ""

msgid "The first field indicates the source type:"
msgstr "Det første feltet indikerer kildetype:"

#, fuzzy
#| msgid "“<literal>deb</literal>” for binary packages,"
msgid "<literal>deb</literal>"
msgstr "«<literal>deb</literal>» for binærpakker,"

msgid "package source (repository) of binary packages"
msgstr ""

#, fuzzy
#| msgid "“<literal>deb-src</literal>” for source packages."
msgid "<literal>deb-src</literal>"
msgstr "«<literal>deb-src</literal>» for kildepakker."

msgid "package source (repository) of source packages"
msgstr ""

#, fuzzy
#| msgid "The second field gives the base URL of the source (combined with the filenames present in the <filename>Packages.gz</filename> files, it must give a full and valid URL): this can consist in a Debian mirror or in any other package archive set up by a third party. The URL can start with <literal>file://</literal> to indicate a local source installed in the system's file hierarchy, with <literal>http://</literal> to indicate a source accessible from a web server, or with <literal>ftp://</literal> for a source available on an FTP server. The URL can also start with <literal>cdrom:</literal> for CD-ROM/DVD-ROM/Blu-ray disc based installations, although this is less frequent, since network-based installation methods are more and more common."
msgid "The second field gives the base URL of the source. Combined with the filenames listed in the <filename>Packages.xz</filename> files, it must give a full and valid URL. This can consist in a Debian mirror or in any other package archive set up by a third party. The URL can start with <literal>file://</literal> to indicate a local source installed in the system's file hierarchy, with <literal>http://</literal> or <literal>https://</literal> to indicate a source accessible from a web server server, or with <literal>ftp://</literal> or <literal>ftps://</literal> for a source available on an FTP server. The URL can also start with <literal>cdrom:</literal> for CD-ROM/DVD/Blu-ray disc based installations, although this is less frequent, since network-based installation methods are eventually more common."
msgstr "Det andre feltet gir kildens base-URL (kombinert med filnavnene liggende i <filename>Packages.gz</filename>-filene, må det gi en fullstendig og gyldig URL): Dette kan komme fra et Debian-speil, eller fra en annen pakkebrønn satt opp av en tredjepart. Nettadressen kan starte med <literal>file://</literal> for å indikere at en lokal kilde er installert i systemets filhierarki, med <literal>http://</literal> for å indikere at en kilde er tilgjengelig fra en netttjener, eller med<literal>ftp://</literal> for en kilde som er tilgjengelig på en FTP-tjener. URL-en kan også starte med <literal>cdrom:</literal> for CD-ROM/DVD-ROM/Blu-ray-baserte installasjoner fra disk, selv om dette er sjeldnere når nett-baserte installasjoner er mer og mer vanlige."

#, fuzzy
#| msgid "The syntax of the last field depends on the structure of the repository. In the simplest cases, you can simply indicate a subdirectory (with a required trailing slash) of the desired source (this is often a simple “<filename>./</filename>” which refers to the absence of a subdirectory — the packages are then directly at the specified URL). But in the most common case, the repositories will be structured like a Debian mirror, with multiple distributions each having multiple components. In those cases, name the chosen distribution (by its “codename” — see the list in sidebar <xref linkend=\"sidebar.bruce-perens\" /> — or by the corresponding “suites” — <literal>stable</literal>, <literal>testing</literal>, <literal>unstable</literal>), then the components (or sections) to enable (chosen between <literal>main</literal>, <literal>contrib</literal>, and <literal>non-free</literal> in a typical Debian mirror)."
msgid "The syntax of the last field depends on the structure of the repository. In the simplest case, you can simply indicate a subdirectory (with a required trailing slash) of the desired source. This is often a simple “<filename>./</filename>” which refers to the absence of a subdirectory. The packages are then directly at the specified URL. But in the most common case, the repositories will be structured like a Debian mirror, with multiple distributions, each having multiple components. In those cases, name the chosen distribution by its “codename” — see the list in sidebar <xref linkend=\"sidebar.bruce-perens\" /> — or by the corresponding “suite” <literal>oldstable</literal>, <literal>stable</literal>, <literal>testing</literal>, <literal>unstable</literal>) and then the components to enable. A typical Debian mirror provides the components <literal>main</literal>, <literal>contrib</literal>, and <literal>non-free</literal>."
msgstr "Syntaksen i det siste feltet avhenger av strukturen i pakkebrønnen. I de enkleste tilfellene kan du bare indikere en undermappe (med en obligatorisk skråstrek) for ønsket kilde (dette er ofte et enkelt «<filename>./</filename>» som refererer til fraværet av en underkatalog — pakkene er så direkte på den angitte URL). Men i de vanligste tilfellene vil kildebrønnene være strukturert som et Debian-speil, med flere distribusjoner som hver har flere komponenter. I de tilfellene, gi navnet på den valgte distribusjonen (ved sitt «kodenavn» - se listen i sidefeltet <xref linkend=\"sidebar.bruce-perens\" /> — eller i de «suites» som svarer til — <literal>stable</literal>, <literal>testing</literal>, <literal>unstable</literal>), så komponentene (eller seksjonene) for å aktivere (valgt mellom <literal>main</literal>, <literal>contrib</literal>, og <literal>non-free</literal> i et typisk Debian-speil)."

msgid "<emphasis>VOCABULARY</emphasis> The <literal>main</literal>, <literal>contrib</literal> and <literal>non-free</literal> archives"
msgstr "<emphasis>ORDFORRÅD</emphasis> Arkivene <literal>main</literal>, <literal>contrib</literal> og <literal>non-free</literal>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary>component</primary><secondary><literal>main</literal></secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

#, fuzzy
#| msgid "<primary><literal>main</literal>, section</primary>"
msgid "<primary><literal>main</literal>, component</primary>"
msgstr "<primary><literal>main</literal>, seksjon</primary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>contrib</literal></secondary>"
msgid "<primary>component</primary><secondary><literal>contrib</literal></secondary>"
msgstr "<primary>arkiv</primary><secondary><literal>contrib</literal></secondary>"

#, fuzzy
#| msgid "<primary><literal>contrib</literal>, section</primary>"
msgid "<primary><literal>contrib</literal>, component</primary>"
msgstr "<primary><literal>contrib</literal>, arkiv</primary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>non-free</literal></secondary>"
msgid "<primary>component</primary><secondary><literal>non-free</literal></secondary>"
msgstr "<primary>seksjon</primary><secondary><literal>non-free</literal></secondary>"

#, fuzzy
#| msgid "<primary><literal>non-free</literal>, section</primary>"
msgid "<primary><literal>non-free</literal>, component</primary>"
msgstr "<primary><literal>non-free</literal>, seksjon</primary>"

msgid "<primary>component (of a repository)</primary>"
msgstr "<primary>komponent (av en pakkebrønn)</primary>"

#, fuzzy
#| msgid "Debian uses three sections to differentiate packages according to the licenses chosen by the authors of each work. <literal>Main</literal> gathers all packages which fully comply with the Debian Free Software Guidelines."
msgid "Debian uses three components to differentiate packages according to the licenses chosen by the authors of each work. <literal>Main</literal> gathers all packages which fully comply with the <ulink url=\"https://www.debian.org/social_contract.html#guidelines\">Debian Free Software Guidelines</ulink>."
msgstr "Debian bruker tre seksjoner for å differensiere pakker i henhold til lisensene forfatterne har valgt for hvert arbeid <literal>Main</literal>  samler alle pakker som fullt ut oppfyller de Debian Free-retningslinjer for programvare."

#, fuzzy
#| msgid "The <literal>non-free</literal> archive is different because it contains software which does not (entirely) conform to these principles but which can nevertheless be distributed without restrictions. This archive, which is not officially part of Debian, is a service for users who could need some of those programs — however Debian always recommends giving priority to free software. The existence of this section represents a considerable problem for Richard M. Stallman and keeps the Free Software Foundation from recommending Debian to users."
msgid "The <literal>non-free</literal> component is different because it contains software which does not (entirely) conform to these principles but which can, nevertheless, be distributed without restrictions. This archive, which is not officially part of Debian, is a service for users who could need some of those programs and, nowadays, also require the firmware for their hardware. However, Debian always recommends giving priority to free software. The existence of this component represents a considerable problem for Richard M. Stallman and keeps the Free Software Foundation from recommending Debian to users."
msgstr "<literal>non-free</literal>-arkivet er forskjellig fordi det inneholder programvare som ikke (helt) er i samsvar med disse prinsippene, men som likevel kan distribueres uten restriksjoner. Dette arkivet, som ikke offisielt er en del av Debian, er en tjeneste til brukere som kan trenge noen av disse programmene - men Debian anbefaler alltid å prioritere fri programvare. Eksistensen av denne seksjonen representerer et betydelig problem for Richard M. Stallman, og holder Free Software Foundation tilbake fra å anbefale Debian til brukerne."

#, fuzzy
#| msgid "<literal>Contrib</literal> (contributions) is a set of open source software which cannot function without some non-free elements. These elements can be software from the <literal>non-free</literal> section, or non-free files such as game ROMs, BIOS of consoles, etc. <literal>Contrib</literal> also includes free software whose compilation requires proprietary elements. This was initially the case for the OpenOffice.org office suite, which used to require a proprietary Java environment."
msgid "<literal>Contrib</literal> (contributions) is a set of open source software which cannot function without some non-free elements — these elements can be software from the <literal>non-free</literal> section, or non-free files such as game ROMs, BIOS of consoles, etc. — or some elements, not available from the Debian <literal>main</literal> archive at all. The <literal>contrib</literal> component also includes free software whose compilation requires proprietary elements. This was initially the case for the OpenOffice.org office suite, which used to require a proprietary Java environment."
msgstr "<literal>Contrib</literal> (bidrag) er et sett programvare med åpen kildekode som ikke kan fungere uten noen ikke-frie elementer. Disse elementene kan være programvare fra <literal>non-free</literal> seksjonen, eller ikke-frie filer slike som i spille-ROM-er, konsoll-BIOS, etc. <literal>Contrib</literal> inkluderer også fri programvare der kompileringen krever proprietære elementer. Dette var i utgangspunktet tilfellet for kontorpakken OpenOffice.org, som behøvde et proprietært Java-miljø."

msgid "<emphasis>TIP</emphasis> <filename>/etc/apt/sources.list.d/*.list</filename> files"
msgstr "<emphasis>TIPS</emphasis> <filename>/etc/apt/sources.list.d/*.list</filename> filer"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/sources.list</filename></primary>"
msgid "<primary><filename>/etc/apt/sources.list.d</filename></primary>"
msgstr "<primary><filename>/etc/apt/sources.list</filename></primary>"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/sources.list</filename></primary>"
msgid "<primary>APT</primary><secondary><filename>/etc/apt/sources.list.d</filename></secondary>"
msgstr "<primary><filename>/etc/apt/sources.list</filename></primary>"

msgid "If many package sources are referenced, it can be useful to split them in multiple files. Each part is then stored in <filename>/etc/apt/sources.list.d/<replaceable>filename</replaceable>.list</filename> (see sidebar <xref linkend=\"sidebar.directory.d\" />)."
msgstr "Hvis det er vises til mange pakkekilder, kan det være nyttig å dele dem i flere filer. Hver del blir deretter lagret i <filename>/etc/apt/sources.list.d/<replaceable>filnavn</replaceable>.list</filename> (se sidefelt <xref linkend=\"sidebar.directory.d\" />)."

msgid "<primary><command>apt-cdrom</command></primary>"
msgstr "<primary><command>apt-cdrom</command></primary>"

msgid "The <literal>cdrom</literal> entries describe the CD/DVD-ROMs you have. Contrary to other entries, a CD-ROM is not always available since it has to be inserted into the drive and since only one disc can be read at a time. For those reasons, these sources are managed in a slightly different way, and need to be added with the <command>apt-cdrom</command> program, usually executed with the <literal>add</literal> parameter. The latter will then request the disc to be inserted in the drive and will browse its contents looking for <filename>Packages</filename> files. It will use these files to update its database of available packages (this operation is usually done by the <command>apt update</command> command). From then on, APT can require the disc to be inserted if it needs one of its packages."
msgstr "<literal>cdrom</literal>-innganger beskriver den CD/DVD-ROM du har. I motsetning til andre innganger, er en CD-ROM ikke alltid tilgjengelig fordi den må settes inn i stasjonen, og fordi bare én disk kan leses om gangen. Av disse grunnene brukes disse kildene på en litt annen måte, og <command>apt-cdrom</command>-programmet må legges til, vanligvis utløst med <literal>add</literal>-parameteret. Dette siste vil be om at disken settes inn i stasjonen, og vil bla gjennom innholdet på jakt etter <filename>pakke</filename>-filer. Det vil bruke disse filene til å oppdatere sin database med tilgjengelige pakker (denne operasjonen gjøres vanligvis ved <command>apt update</command>-kommandoen). Fra da av kan APT kreve at disken settes inn om det behov for en av pakkene derfra."

msgid "Repositories for <emphasis role=\"distribution\">Stable</emphasis> Users"
msgstr "Pakkebrønnen for <emphasis role=\"distribution\">Stable</emphasis> brukere"

msgid "Here is a standard <filename>sources.list</filename> for a system running the <emphasis role=\"distribution\">Stable</emphasis> version of Debian:"
msgstr "Her er en standard <filename>sources.list</filename> for et system som kjører <emphasis role=\"distribution\">Stable</emphasis> versjonen av Debian:"

msgid "<filename>/etc/apt/sources.list</filename> file for users of Debian Stable"
msgstr "<filename>/etc/apt/sources.list</filename>-fil for brukere av Debian Stable"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/sources.list</filename></primary>"
msgid "<primary><filename>/etc/apt/sources.list</filename></primary><secondary>Example</secondary><tertiary><literal>stable</literal></tertiary>"
msgstr "<primary><filename>/etc/apt/sources.list</filename></primary>"

#, fuzzy
#| msgid ""
#| "# Security updates\n"
#| "deb http://security.debian.org/ jessie/updates main contrib non-free\n"
#| "deb-src http://security.debian.org/ jessie/updates main contrib non-free\n"
#| "\n"
#| "## Debian mirror\n"
#| "\n"
#| "# Base repository\n"
#| "deb http://ftp.debian.org/debian jessie main contrib non-free\n"
#| "deb-src http://ftp.debian.org/debian jessie main contrib non-free\n"
#| "\n"
#| "# Stable updates\n"
#| "deb http://ftp.debian.org/debian jessie-updates main contrib non-free\n"
#| "deb-src http://ftp.debian.org/debian jessie-updates main contrib non-free\n"
#| "\n"
#| "# Stable backports\n"
#| "deb http://ftp.debian.org/debian jessie-backports main contrib non-free\n"
#| "deb-src http://ftp.debian.org/debian jessie-backports main contrib non-free"
msgid ""
"# Security updates\n"
"deb http://security.debian.org/ buster/updates main contrib non-free\n"
"deb-src http://security.debian.org/ buster/updates main contrib non-free\n"
"\n"
"## Debian mirror\n"
"\n"
"# Base repository\n"
"deb https://deb.debian.org/debian buster main contrib non-free\n"
"deb-src https://deb.debian.org/debian buster main contrib non-free\n"
"\n"
"# Stable updates\n"
"deb https://deb.debian.org/debian buster-updates main contrib non-free\n"
"deb-src https://deb.debian.org/debian buster-updates main contrib non-free\n"
"\n"
"# Stable backports\n"
"deb https://deb.debian.org/debian buster-backports main contrib non-free\n"
"deb-src https://deb.debian.org/debian buster-backports main contrib non-free"
msgstr ""
"# Sikkerhetsoppdateringer\n"
"deb http://security.debian.org/ jessie/updates main contrib non-free\n"
"deb-src http://security.debian.org/ jessie/updates main contrib non-free\n"
"\n"
"## Debian-speil\n"
"\n"
"# Grunnlagspakkelager\n"
"deb http://ftp.debian.org/debian jessie main contrib non-free\n"
"deb-src http://ftp.debian.org/debian jessie main contrib non-free\n"
"\n"
"# Oppdateringer for stable\n"
"deb http://ftp.debian.org/debian jessie-updates main contrib non-free\n"
"deb-src http://ftp.debian.org/debian jessie-updates main contrib non-free\n"
"\n"
"# Tilbakeførte versjoner for stable\n"
"deb http://ftp.debian.org/debian jessie-backports main contrib non-free\n"
"deb-src http://ftp.debian.org/debian jessie-backports main contrib non-free"

#, fuzzy
#| msgid "This file lists all sources of packages associated with the <emphasis role=\"distribution\">Jessie</emphasis> version of Debian (the current <emphasis role=\"distribution\">Stable</emphasis> as of this writing). We opted to name “jessie” explicitly instead of using the corresponding “stable“ alias (<literal>stable</literal>, <literal>stable-updates</literal>, <literal>stable-backports</literal>) because we don't want to have the underlying distribution changed outside of our control when the next stable release comes out."
msgid "This file lists all sources of packages associated with the <emphasis role=\"distribution\">Buster</emphasis> version of Debian (the current <emphasis role=\"distribution\">Stable</emphasis> suite as of this writing). In the example above, we opted to name “buster” explicitly instead of using the corresponding “stable“ aliases (<literal>stable</literal>, <literal>stable-updates</literal>, <literal>stable-backports</literal>) because we don't want to have the underlying distribution changed outside of our control when the next stable release comes out."
msgstr "Denne filen inneholder alle kilder til pakker assosiert med <emphasis role=\"distribution\">Jessie</emphasis>-versjonen av Debian (som i skrivende stund er <emphasis role=\"distribution\">Stable</emphasis>. Vi valgte å nevne «Jessie» eksplisitt istedenfor å bruke det samsvarende «stable» aliaset (<literal>stable</literal>, <literal>stable-updates</literal>, <literal>stable-backports</literal>) fordi vi ikke ønsker at den underliggende distribusjonen endres utenfor vår kontroll når den neste stabile utgaven kommer ut."

msgid "Most packages will come from the “base repository” which contains all packages but is seldom updated (about once every 2 months for a “point release”). The other repositories are partial (they do not contain all packages) and can host updates (packages with newer version) that APT might install. The following sections will explain the purpose and the rules governing each of those repositories."
msgstr "De fleste pakker vil komme fra «basispakkebrønnen» som inneholder alle pakkene, men sjelden blir oppdatert (omtrent en gang hver 2. måned for en «point release»). De andre pakkebrønnene inneholder ikke alle pakkene, og kan være vert for oppdateringer (pakker med en nyere versjon) som APT kan installere. Følgende avsnitt vil forklare hensikten og reglene om hver av disse pakkebrønnene."

msgid "Note that when the desired version of a package is available on several repositories, the first one listed in the <filename>sources.list</filename> file will be used. For this reason, non-official sources are usually added at the end of the file."
msgstr "Merk at når den ønskede versjonen av en pakke er tilgjengelig fra flere kodelagre, vil den første oppførte <filename>sources.list</filename>-filen bli benyttet. Av denne grunn blir ikke-offentlige kilder vanligvis lagt til ved slutten av filen."

msgid "As a side note, most of what this section says about <emphasis role=\"distribution\">Stable</emphasis> applies equally well to <emphasis role=\"distribution\">Oldstable</emphasis> since the latter is just an older <emphasis role=\"distribution\">Stable</emphasis> that is maintained in parallel."
msgstr "Som en sidekommmentar, det meste av hva denne seksjonen sier om <emphasis role=\"distribution\">Stable</emphasis> gjelder like meget <emphasis role=\"distribution\">Oldstable</emphasis>, ettersom den siste bare er en eldre <emphasis role=\"distribution\">Stable</emphasis> som er vedlikeholdt parallelt."

msgid "Security Updates"
msgstr "Sikkerhetsoppdateringer"

msgid "<primary><literal>security.debian.org</literal></primary>"
msgstr "<primary><literal>security.debian.org</literal></primary>"

msgid "<primary>security updates</primary>"
msgstr "<primary>sikkerhetsoppdateringer</primary>"

msgid "<primary>updates</primary><secondary>security updates</secondary>"
msgstr "<primary>oppdateringer</primary><secondary>sikkerhetsoppdateringer</secondary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary>configuration</secondary>"
msgid "<primary>CVE</primary><secondary>Common Vulnerabilities and Exposures</secondary>"
msgstr "<primary>APT</primary><secondary>oppsett</secondary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary>header display</secondary>"
msgid "<primary>DSA</primary><secondary>Debian Security Advisory</secondary>"
msgstr "<primary>APT</primary><secondary>vise overskrifter</secondary>"

msgid "<primary>Common Vulnerabilities and Exposures</primary><seealso>CVE</seealso>"
msgstr ""

msgid "<primary>Debian Security Advisory</primary><seealso>DSA</seealso>"
msgstr ""

#, fuzzy
#| msgid "<primary>security updates</primary>"
msgid "<primary>debian-security-announce</primary>"
msgstr "<primary>sikkerhetsoppdateringer</primary>"

#, fuzzy
#| msgid "The security updates are not hosted on the usual network of Debian mirrors but on <literal>security.debian.org</literal> (on a small set of machines maintained by the <link linkend=\"dsa-team\">Debian System Administrators</link>). This archive contains security updates (prepared by the Debian Security Team and/or by package maintainers) for the <emphasis role=\"distribution\">Stable</emphasis> distribution."
msgid "Debian takes security seriously. Known software vulnerabilities in Debian are tracked in the <ulink url=\"https://security-tracker.debian.org\">Security Bug Tracker</ulink> and usually get fixed in a reasonable timeframe. The security updates are not hosted on the usual network of Debian mirrors but on <literal>security.debian.org</literal>, a small set of machines maintained by the <link linkend=\"dsa-team\">Debian System Administrators</link>. This archive contains security updates prepared by the Debian Security Team and/or by package maintainers for the <emphasis role=\"distribution\">Stable</emphasis> and <emphasis role=\"distribution\">Oldstable</emphasis> distribution."
msgstr "Sikkerhetsoppdateringene ligger ikke i det vanlige Debian nettarkivet, men på <literal>security.debian.org</literal> (på et lite sett med maskiner vedlikeholdt av <link linkend=\"dsa-team\">Debian System Administrators</link>). Dette arkivet inneholder sikkerhetsoppdateringer (utarbeidet av Debian Security Team og/eller av pakkevedlikeholdere) for <emphasis role=\"distribution\">Stable</emphasis>-distribusjonen."

#, fuzzy
#| msgid "The server can also host security updates for <emphasis role=\"distribution\">Testing</emphasis> but this doesn't happen very often since those updates tend to reach <emphasis role=\"distribution\">Testing</emphasis> via the regular flow of updates coming from <emphasis role=\"distribution\">Unstable</emphasis>."
msgid "The server can also host security updates for <emphasis role=\"distribution\">Testing</emphasis> but this doesn't happen very often since those updates tend to reach the <emphasis role=\"distribution\">Testing</emphasis> suite via the regular flow of updates coming from <emphasis role=\"distribution\">Unstable</emphasis>."
msgstr "Tjeneren kan også ha sikkerhetsoppdateringer for <emphasis role=\"distribution\">Testing</emphasis>, men det skjer ikke svært ofte siden disse oppdateringer tenderer til å nå <emphasis role=\"distribution\">Testing</emphasis> via den regulære flyten av oppdateringer fra <emphasis role=\"distribution\">Unstable</emphasis>."

msgid "For serious issues, the security team issues a <literal>Debian Security Advisory</literal> (<acronym>DSA</acronym>) and announces it together with the security update on the <email>debian-security-announce@lists.debian.org</email> mailing list (<ulink url=\"https://lists.debian.org/debian-security-announce/\">archive</ulink>)."
msgstr ""

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>non-free</literal></secondary>"
msgid "<primary>mailing lists</primary><secondary><email>debian-security-announce@lists.debian.org</email></secondary>"
msgstr "<primary>seksjon</primary><secondary><literal>non-free</literal></secondary>"

msgid "Stable Updates"
msgstr "Stabile oppdateringer"

msgid "<primary>stable updates</primary>"
msgstr "<primary>stabile oppdateringer</primary>"

msgid "<primary><literal>stable-updates</literal></primary>"
msgstr "<primary><literal>stable-updates</literal></primary>"

#, fuzzy
#| msgid "<primary><literal>stable-updates</literal></primary>"
msgid "<primary><literal>buster-updates</literal></primary>"
msgstr "<primary><literal>stable-updates</literal></primary>"

#, fuzzy
#| msgid "<primary>updates</primary><secondary>backports</secondary>"
msgid "<primary>updates</primary><secondary>buster</secondary>"
msgstr "<primary>oppdateringer</primary><secondary>backports</secondary>"

#, fuzzy
#| msgid "<primary>updates</primary><secondary>stable updates</secondary>"
msgid "<primary>updates</primary><secondary>stable</secondary>"
msgstr "<primary>oppdateringer</primary><secondary>stabile oppdateringer</secondary>"

msgid "Stable updates are not security sensitive but are deemed important enough to be pushed to users before the next stable point release."
msgstr "Stabile oppdateringer er ikke sikkerhetssensitive, men anses viktige nok til å leveres til brukere før neste stabile utgivelse."

#, fuzzy
#| msgid "This repository will typically contain fixes for critical bugs which could not be fixed before release or which have been introduced by subsequent updates. Depending on the urgency, it can also contain updates for packages that have to evolve over time… like <emphasis role=\"pkg\">spamassassin</emphasis>'s spam detection rules, <emphasis role=\"pkg\">clamav</emphasis>'s virus database, or the daylight-saving time rules of all timezones (<emphasis role=\"pkg\">tzdata</emphasis>)."
msgid "This repository will typically contain fixes for critical and serious bugs which could not be fixed before release or which have been introduced by subsequent updates. Depending on the urgency, it can also contain updates for packages that have to evolve over time, like <emphasis role=\"pkg\">spamassassin</emphasis>'s spam detection rules, <emphasis role=\"pkg\">clamav</emphasis>'s virus database, the daylight-saving time rules of all timezones (<emphasis role=\"pkg\">tzdata</emphasis>), the <acronym>ESR</acronym> version of Firefox (<emphasis role=\"pkg\">firefox-esr</emphasis>) or cryptographic keyrings like <emphasis role=\"pkg\">debian-archive-keyring</emphasis>."
msgstr "Dette pakkearkivet vil normalt inneholde feilrettinger for kritiske feil som ikke kunne bli ordnet før utgivelse, eller som har blitt lagt inn ved påfølgende oppdateringer. Avhengig av om det haster, kan det også inneholde oppdateringer for pakker som må utvikles over tid ... som <emphasis role=\"pkg\">spamassassin</emphasis>s deteksjonsregler for spam, <emphasis role=\"pkg\">clamav</emphasis>s virus database, eller sommertidsregler for alle tidssoner (<emphasis role=\"pkg\">tzdata</emphasis>)."

msgid "In practice, this repository is a subset of the <literal>proposed-updates</literal> repository, carefully selected by the <link linkend=\"srm-team\">Stable Release Managers</link>. All updates are announced on the <email>debian-stable-announce@lists.debian.org</email> mailing list (<ulink url=\"https://lists.debian.org/debian-stable-announce/\">archive</ulink>) and will be included in the next <emphasis role=\"distribution\">Stable</emphasis> point release anyway."
msgstr ""

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>non-free</literal></secondary>"
msgid "<primary>mailing lists</primary><secondary><email>debian-stable-announce@lists.debian.org</email></secondary>"
msgstr "<primary>seksjon</primary><secondary><literal>non-free</literal></secondary>"

#, fuzzy
#| msgid "deb http://ftp.debian.org/debian jessie-proposed-updates main contrib non-free"
msgid "deb https://deb.debian.org/debian buster-updates main contrib non-free"
msgstr "deb http://ftp.debian.org/debian jessie-proposed-updates main contrib non-free"

msgid "Proposed Updates"
msgstr "Foreslåtte oppdateringer"

msgid "<primary><literal>proposed-updates</literal></primary>"
msgstr "<primary><literal>proposed-updates</literal></primary>"

msgid "<primary><literal>stable-proposed-updates</literal></primary>"
msgstr "<primary><literal>stable-proposed-updates</literal></primary>"

#, fuzzy
#| msgid "<primary>updates</primary><secondary>backports</secondary>"
msgid "<primary>updates</primary><secondary>proposed</secondary>"
msgstr "<primary>oppdateringer</primary><secondary>backports</secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>non-free</literal></secondary>"
msgid "<primary>updates</primary><secondary><literal>stable-proposed</literal></secondary>"
msgstr "<primary>seksjon</primary><secondary><literal>non-free</literal></secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary>updates</primary><secondary><literal>stable</literal>, proposed</secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

msgid "Once published, the <emphasis role=\"distribution\">Stable</emphasis> distribution is only updated about once every 2 months. The <literal>proposed-updates</literal> repository is where the expected updates are prepared (under the supervision of the Stable Release Managers)."
msgstr "Etter utgivelsen blir <emphasis role=\"distribution\">Stable</emphasis>-distribusjonen bare oppdatert en gang hver annen måned. <literal>proposed-updates</literal>-pakkebrønnen er der de forventede oppdateringer forberedes (under tilsyn av administratorene for «Stable»-utgivelsen)."

msgid "The security and stable updates documented in the former sections are always included in this repository, but there is more too, because package maintainers also have the opportunity to fix important bugs that do not deserve an immediate release."
msgstr "Sikkerheten og stabile oppdateringer som er dokumentert i de foregående avsnittene, er alltid med i denne pakkebrønnen, men det er mer også, fordi pakkens vedlikeholdere har også mulighet til å fikse viktige feil som ikke fortjener å bli gitt ut med en gang."

#, fuzzy
#| msgid "Anyone can use this repository to test those updates before their official publication. The extract below uses the <literal>jessie-proposed-updates</literal> alias which is both more explicit and more consistent since <literal>wheezy-proposed-updates</literal> also exists (for the <emphasis role=\"distribution\">Oldstable</emphasis> updates):"
msgid "Anyone can use this repository to test those updates before their official publication. The extract below uses the <literal>buster-proposed-updates</literal> alias which is both more explicit and more consistent since <literal>stretch-proposed-updates</literal> also exists (for the <emphasis role=\"distribution\">Oldstable</emphasis> updates):"
msgstr "Alle kan bruke denne pakkebrønnen for å teste disse oppdateringene før den offentlige publiseringen. Utdraget nedenfor bruker <literal>jessie-proposed-updates</literal>-aliaset som både er mer eksplisitt og mer konsekvent, <literal>wheezy-proposed-updates</literal> er også der  (for oppdateringene av <emphasis role=\"distribution\">Oldstable</emphasis>):"

#, fuzzy
#| msgid "deb http://ftp.debian.org/debian jessie-proposed-updates main contrib non-free"
msgid "deb https://deb.debian.org/debian buster-proposed-updates main contrib non-free"
msgstr "deb http://ftp.debian.org/debian jessie-proposed-updates main contrib non-free"

msgid "Stable Backports"
msgstr "Stabile tilbakeføringer"

msgid "<primary><literal>stable-backports</literal></primary>"
msgstr "<primary><literal>stable-backports</literal></primary>"

msgid "<primary>backport</primary>"
msgstr "<primary>backport</primary>"

msgid "<primary>updates</primary><secondary>backports</secondary>"
msgstr "<primary>oppdateringer</primary><secondary>backports</secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>contrib</literal></secondary>"
msgid "<primary>updates</primary><secondary><literal>stable-backports</literal></secondary>"
msgstr "<primary>arkiv</primary><secondary><literal>contrib</literal></secondary>"

#, fuzzy
#| msgid "<primary>updates</primary><secondary>backports</secondary>"
msgid "<primary>updates</primary><secondary><literal>stable</literal>, backports</secondary>"
msgstr "<primary>oppdateringer</primary><secondary>backports</secondary>"

msgid "The <literal>stable-backports</literal> repository hosts “package backports”. The term refers to a package of some recent software which has been recompiled for an older distribution, generally for <emphasis role=\"distribution\">Stable</emphasis>."
msgstr "Pakkebrønnen <literal>stable-backports</literal> har «pakketilbakeføringer». Begrepet refererer til en pakke med noen nyere programmer som har blitt kompilert for en eldre distribusjon, vanligvis for <emphasis role=\"distribution\">Stable</emphasis>."

#, fuzzy
#| msgid "When the distribution becomes a little dated, numerous software projects have released new versions that are not integrated into the current <emphasis role=\"distribution\">Stable</emphasis> (which is only modified to address the most critical problems, such as security problems). Since the <emphasis role=\"distribution\">Testing</emphasis> and <emphasis role=\"distribution\">Unstable</emphasis> distributions can be more risky, package maintainers sometimes offer recompilations of recent software applications for <emphasis role=\"distribution\">Stable</emphasis>, which has the advantage to limit potential instability to a small number of chosen packages. <ulink type=\"block\" url=\"http://backports.debian.org\" />"
msgid "When the distribution becomes a little dated, numerous software projects have released new versions that are not integrated into the current <emphasis role=\"distribution\">Stable</emphasis> suite, which is only modified to address the most critical problems, such as security issues. Since the <emphasis role=\"distribution\">Testing</emphasis> and <emphasis role=\"distribution\">Unstable</emphasis> suites can be more risky, package maintainers sometimes voluntarily offer recompilations of recent software applications for <emphasis role=\"distribution\">Stable</emphasis>, which has the advantage to users and system administrators to limit potential instability to a small number of chosen packages. The page <ulink url=\"https://backports.debian.org\" /> provides more information."
msgstr "Når distribusjonen blir litt utdatert, har mange programvareprosjekter lansert nye versjoner som ikke er integrert i den nåværende <emphasis role=\"distribution\">Stable</emphasis> (som bare er modifisert for å løse de mest kritiske problemer, slik som sikkerhetsproblemer). Ettersom <emphasis role=\"distribution\">Testing</emphasis> og <emphasis role=\"distribution\">Unstable</emphasis>-distribusjoner kan være mer risikable, tilbyr pakkevedlikeholderne noen ganger rekompileringer av nyere programmer for <emphasis role=\"distribution\">Stable</emphasis>, som har fordelen å begrense mulig ustabilitet til et lite antall valgte pakker. <ulink type=\"block\" url=\"http://backports.debian.org\" />"

#, fuzzy
#| msgid "<primary><literal>backports.debian.org</literal></primary>"
msgid "<primary><literal>backports.debian.org</literal></primary><seealso>backports</seealso>"
msgstr "<primary><literal>backports.debian.org</literal></primary>"

#, fuzzy
#| msgid "Backports from <literal>stable-backports</literal> are always created from packages available in <emphasis role=\"distribution\">Testing</emphasis>. This ensures that all installed backports will be upgradable to the corresponding stable version once the next stable release of Debian is available."
msgid "Backports from <literal>stable-backports</literal> are only created from packages available in <emphasis role=\"distribution\">Testing</emphasis>. This ensures that all installed backports will be upgradable to the corresponding stable version once the next stable release of Debian is available."
msgstr "Tilbakeføringer fra <literal>stable-backports</literal> er alltid laget fra pakker som er tilgjengelig i <emphasis role=\"distribution\">Testing</emphasis>. Det sikrer at alle installerte tilbakeføringer kan oppgraderes til den samsvarende stabile versjonen så snart den neste stabile utgivelsen av Debian er tilgjengelig."

#, fuzzy
#| msgid "Even though this repository provides newer versions of packages, APT will not install them unless you give explicit instructions to do so (or unless you have already done so with a former version of the given backport):"
msgid "Even though this repository provides newer versions of packages, <literal>APT</literal> will not install them unless you give explicit instructions to do so (or unless you have already done so with a former version of the given backport):"
msgstr "Selv om dette arkivet gir nyere versjoner av pakker, vil ikke APT installere dem med mindre du gir klare instruksjoner om å gjøre det (eller hvis du ikke allerede har gjort det med en tidligere versjon av den gitte tilbakeføringen):"

#, fuzzy
#| msgid ""
#| "<computeroutput>$ </computeroutput><userinput>sudo apt-get install <replaceable>package</replaceable>/jessie-backports\n"
#| "</userinput><computeroutput>$ </computeroutput><userinput>sudo apt-get install -t jessie-backports <replaceable>package</replaceable>\n"
#| "</userinput>"
msgid ""
"<computeroutput>$ </computeroutput><userinput>sudo apt-get install <replaceable>package</replaceable>/buster-backports\n"
"</userinput><computeroutput>$ </computeroutput><userinput>sudo apt-get install -t buster-backports <replaceable>package</replaceable>\n"
"</userinput>"
msgstr ""
"<computeroutput>$ </computeroutput><userinput>sudo apt-get install <replaceable>package</replaceable>/jessie-backports\n"
"</userinput><computeroutput>$ </computeroutput><userinput>sudo apt-get install -t jessie-backports <replaceable>package</replaceable>\n"
"</userinput>"

msgid "Repositories for <emphasis role=\"distribution\">Testing</emphasis>/<emphasis role=\"distribution\">Unstable</emphasis> Users"
msgstr "Pakkebrønner for brukere av <emphasis role=\"distribution\">Testing</emphasis>/<emphasis role=\"distribution\">Unstable</emphasis>"

msgid "Here is a standard <filename>sources.list</filename> for a system running the <emphasis role=\"distribution\">Testing</emphasis> or <emphasis role=\"distribution\">Unstable</emphasis> version of Debian:"
msgstr "Her er en standard <filename>sources.list</filename> for et system som kjører <emphasis role=\"distribution\">Testing</emphasis>, eller <emphasis role=\"distribution\">Unstable</emphasis>-versjonen av Debian:"

msgid "<filename>/etc/apt/sources.list</filename> file for users of Debian <emphasis role=\"distribution\">Testing</emphasis>/<emphasis role=\"distribution\">Unstable</emphasis>"
msgstr "<filename>/etc/apt/sources.list</filename>-fil for brukere av Debian <emphasis role=\"distribution\">Testing</emphasis>/<emphasis role=\"distribution\">Unstable</emphasis>"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/sources.list</filename></primary>"
msgid "<primary><filename>/etc/apt/sources.list</filename></primary><secondary>Example</secondary><tertiary><literal>unstable</literal></tertiary>"
msgstr "<primary><filename>/etc/apt/sources.list</filename></primary>"

#, fuzzy
#| msgid ""
#| "\n"
#| "# Unstable\n"
#| "deb http://ftp.debian.org/debian unstable main contrib non-free\n"
#| "deb-src http://ftp.debian.org/debian unstable main contrib non-free\n"
#| "\n"
#| "# Testing\n"
#| "deb http://ftp.debian.org/debian testing main contrib non-free\n"
#| "deb-src http://ftp.debian.org/debian testing main contrib non-free\n"
#| "\n"
#| "# Stable\n"
#| "deb http://ftp.debian.org/debian stable main contrib non-free\n"
#| "deb-src http://ftp.debian.org/debian stable main contrib non-free\n"
#| "\n"
#| "# Security updates\n"
#| "deb http://security.debian.org/ stable/updates main contrib non-free\n"
#| "deb http://security.debian.org/ testing/updates main contrib non-free\n"
#| "deb-src http://security.debian.org/ stable/updates main contrib non-free\n"
#| "deb-src http://security.debian.org/ testing/updates main contrib non-free"
msgid ""
"\n"
"# Unstable\n"
"deb https://deb.debian.org/debian unstable main contrib non-free\n"
"deb-src https://deb.debian.org/debian unstable main contrib non-free\n"
"\n"
"# Testing\n"
"deb https://deb.debian.org/debian testing main contrib non-free\n"
"deb-src https://deb.debian.org/debian testing main contrib non-free\n"
"\n"
"# Testing security updates\n"
"deb http://security.debian.org/ testing-security main contrib non-free\n"
"deb-src http://security.debian.org/ testing-security main contrib non-free\n"
"\n"
"# Stable\n"
"deb https://deb.debian.org/debian stable main contrib non-free\n"
"deb-src https://deb.debian.org/debian stable main contrib non-free\n"
"\n"
"# Stable security updates\n"
"deb http://security.debian.org/ stable/updates main contrib non-free\n"
"deb-src http://security.debian.org/ stable/updates main contrib non-free"
msgstr ""
"\n"
"# Unstable\n"
"deb http://ftp.debian.org/debian unstable main contrib non-free\n"
"deb-src http://ftp.debian.org/debian unstable main contrib non-free\n"
"\n"
"# Testing\n"
"deb http://ftp.debian.org/debian testing main contrib non-free\n"
"deb-src http://ftp.debian.org/debian testing main contrib non-free\n"
"\n"
"# Stable\n"
"deb http://ftp.debian.org/debian stable main contrib non-free\n"
"deb-src http://ftp.debian.org/debian stable main contrib non-free\n"
"\n"
"# Sikkerhetsoppdateringer\n"
"deb http://security.debian.org/ stable/updates main contrib non-free\n"
"deb http://security.debian.org/ testing/updates main contrib non-free\n"
"deb-src http://security.debian.org/ stable/updates main contrib non-free\n"
"deb-src http://security.debian.org/ testing/updates main contrib non-free"

#, fuzzy
#| msgid "<emphasis>IN PRACTICE</emphasis> The Falcot Corp case"
msgid "<emphasis>NOTE</emphasis> Layout of security repositories"
msgstr "<emphasis>I PRAKSIS</emphasis> Situasjonen hos Falcot Corp"

msgid "Starting with Debian 11 <emphasis role=\"distribution\">Bullseye</emphasis>, the codename of the repository providing security updates has been renamed from <literal><replaceable>codename</replaceable>/updates</literal> into <literal><replaceable>codename</replaceable>-security</literal> to avoid the confusion with <literal><replaceable>codename</replaceable>-updates</literal> (see <xref linkend=\"sect.apt-sources.list.stable.updates\" />)."
msgstr ""

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>non-free</literal></secondary>"
msgid "<primary>APT</primary><secondary><literal>APT::Default-Release</literal></secondary>"
msgstr "<primary>seksjon</primary><secondary><literal>non-free</literal></secondary>"

#, fuzzy
#| msgid "With this <filename>sources.list</filename> file APT will install packages from <emphasis role=\"distribution\">Unstable</emphasis>. If that is not desired, use the <literal>APT::Default-Release</literal> setting (see <xref linkend=\"sect.apt-upgrade\" />) to instruct APT to pick packages from another distribution (most likely <emphasis role=\"distribution\">Testing</emphasis> in this case)."
msgid "With this <filename>sources.list</filename> file APT will install packages from the <emphasis role=\"distribution\">Unstable</emphasis> suite. If that is not desired, use the <literal>APT::Default-Release</literal> setting (see <xref linkend=\"sect.apt-upgrade\" />) to instruct APT to pick packages from another suite (most likely <emphasis role=\"distribution\">Testing</emphasis> in this case)."
msgstr "Med denne <filename>sources.list</filename> fil vil APT installere pakker fra <emphasis role=\"distribution\">Unstable</emphasis>. Hvis det ikke er ønsket, bruk <literal>APT::Default-Release</literal>-settingen (se <xref linkend=\"sect.apt-upgrade\" />) for å instruere APT til å velge pakker fra en annen distribusjon (mest sannsynlig <emphasis role=\"distribution\">Testing</emphasis> i dette tilfellet)."

msgid "There are good reasons to include all those repositories, even though a single one should be enough. <emphasis role=\"distribution\">Testing</emphasis> users will appreciate the possibility to cherry-pick a fixed package from <emphasis role=\"distribution\">Unstable</emphasis> when the version in <emphasis role=\"distribution\">Testing</emphasis> is affected by an annoying bug. On the opposite, <emphasis role=\"distribution\">Unstable</emphasis> users bitten by unexpected regressions have the possibility to downgrade packages to their (supposedly working) <emphasis role=\"distribution\">Testing</emphasis> version."
msgstr "Det er gode grunner til å inkludere alle disse kodelagrene, selv om en eneste en skulle være nok. <emphasis role=\"distribution\">Testing</emphasis> ville brukere sette pris på muligheten til å velge seg ut en fast pakke fra <emphasis role=\"distribution\">Unstable</emphasis> når versjonen i <emphasis role=\"distribution\">Testing</emphasis> berøres av en irriterende feil. På den andre siden, <emphasis role=\"distribution\">Unstable</emphasis>-brukere som treffer på  uventede regresjoner, har muligheten til å nedgradere pakkene til <emphasis role=\"distribution\">Testing</emphasis>-versjonen (som forutsettes å virke)."

#, fuzzy
#| msgid "The inclusion of <emphasis role=\"distribution\">Stable</emphasis> is more debatable but it often gives access to some packages which have been removed from the development versions. It also ensures that you get the latest updates for packages which have not been modified since the last stable release."
msgid "The inclusion of <emphasis role=\"distribution\">Stable</emphasis> is more debatable but it often gives access to some packages, which have been removed from the development versions. It also ensures that you get the latest updates for packages, which have not been modified since the last stable release."
msgstr "Å ta med <emphasis role=\"distribution\">Stable</emphasis> er mer diskutabelt, men det gir ofte tilgang til pakker som har blitt fjernet i utviklingsversjoner. Det sikrer også at du får de siste oppdateringene for pakker som ikke har blitt endret siden den siste stabile utgaven."

msgid "The <emphasis role=\"distribution\">Experimental</emphasis> Repository"
msgstr "Pakkebrønnen <emphasis role=\"distribution\">Experimental</emphasis>"

#, fuzzy
#| msgid "<primary><emphasis role=\"distribution\">Experimental</emphasis></primary>"
msgid "<primary><emphasis role=\"distribution\">experimental</emphasis></primary>"
msgstr "<primary><emphasis role=\"distribution\">Experimental</emphasis></primary>"

msgid "The archive of <emphasis role=\"distribution\">Experimental</emphasis> packages is present on all Debian mirrors, and contains packages which are not in the <emphasis role=\"distribution\">Unstable</emphasis> version yet because of their substandard quality — they are often software development versions or pre-versions (alpha, beta, release candidate…). A package can also be sent there after undergoing subsequent changes which can generate problems. The maintainer then tries to uncover them with help from advanced users who can handle important issues. After this first stage, the package is moved into <emphasis role=\"distribution\">Unstable</emphasis>, where it reaches a much larger audience and where it will be tested in much more detail."
msgstr "Arkivet med <emphasis role=\"distribution\">Experimental</emphasis>-pakker er med i alle Debian-speil, og inneholder paker som ikke er med i <emphasis role=\"distribution\">Unstable</emphasis>-versjonen ennå, på grunn av at kvaliteten er dårligere. De er ofte utviklingsversjoner eller pre-versjoner (alpha, beta, utgivelseskandidater ...) av programmer. En pakke kan også bli sendt dit etter å ha fått endringer som kan skape problemer. Utvikleren prøver derfor å avdekke problemer med hjelp av avanserte brukere som kan håndtere alvorlige problemer. Etter dette første trinnet, blir pakken flyttet til <emphasis role=\"distribution\">Unstable</emphasis>, der den når et mye større publikum, og hvor den vil bli testet i mer detalj."

msgid "<emphasis role=\"distribution\">Experimental</emphasis> is generally used by users who do not mind breaking their system and then repairing it. This distribution gives the possibility to import a package which a user wants to try or use as the need arises. That is exactly how Debian approaches it, since adding it in APT's <filename>sources.list</filename> file does not lead to the systematic use of its packages. The line to be added is:"
msgstr "<emphasis role=\"distribution\">Experimental</emphasis> brukes vanligvis av dem som ikke har noe imot at systemet deres svikter, og deretter må reparere det. Denne distribusjonen gir mulighet til å importere en pakke som en bruker ønsker å prøve eller bruke om behovet oppstår. Det er akkurat Debians tilnærming, når det legges i APTs <filename>sources.list</filename>-fil fører det ikke til den systematiske bruken av akkurat disse pakkene. Linjen som må legges til er:"

#, fuzzy
#| msgid "deb http://ftp.debian.org/debian experimental main contrib non-free"
msgid "deb https://deb.debian.org/debian experimental main contrib non-free"
msgstr "deb http://ftp.debian.org/debian experimental main contrib non-free"

msgid "Using Alternate Mirrors"
msgstr ""

#, fuzzy
#| msgid "<primary><literal>security.debian.org</literal></primary>"
msgid "<primary><literal>deb.debian.org</literal></primary><see>mirrors</see>"
msgstr "<primary><literal>security.debian.org</literal></primary>"

#, fuzzy
#| msgid "<primary>backport</primary>"
msgid "<primary>mirrors</primary>"
msgstr "<primary>backport</primary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary>interfaces</secondary>"
msgid "<primary>CDN</primary><see>Content Delivery Networks</see>"
msgstr "<primary>APT</primary><secondary>grensesnitt</secondary>"

#, fuzzy
#| msgid "<primary>component (of a repository)</primary>"
msgid "<primary>Content Delivery Networks</primary>"
msgstr "<primary>komponent (av en pakkebrønn)</primary>"

msgid "The <filename>sources.list</filename> examples in this chapter refer to package repositories hosted on <ulink url=\"https://deb.debian.org/\"><literal>deb.debian.org</literal></ulink>. Those URLs will redirect you to servers which are close to you and which are managed by Content Delivery Networks (<acronym>CDN</acronym>) whose main role is to store multiple copies of the files across the world, and to deliver them as fast as possible to users. The CDN companies that Debian is working with are Debian partners who are offering their services freely to Debian. While none of those servers are under direct control of Debian, the fact that the whole archive is sealed by GPG signatures makes it a non-issue."
msgstr ""

#, fuzzy
#| msgid "<primary>priority</primary><secondary>package priority</secondary>"
msgid "<primary>mirror list</primary><seealso>mirrors</seealso>"
msgstr "<primary>prioritet</primary><secondary>pakkeprioritet</secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary>list of mirrors</primary><seealso>mirrors</seealso>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

msgid "Picky users who are not satisfied with the performance of <literal>deb.debian.org</literal> can try to find a better mirror in the official mirror list: <ulink type=\"block\" url=\"https://www.debian.org/mirror/list\" />"
msgstr ""

msgid "But when you don't know which mirror is best for you, this list is of not much use. Fortunately for you, Debian maintains DNS entries of the form <literal>ftp.<replaceable>country-code</replaceable>.debian.org</literal> (e.g. <literal>ftp.us.debian.org</literal> for the USA, <literal>ftp.fr.debian.org</literal> for France, etc.) which are covering many countries and which are pointing to one (or more) of the best mirrors available within that country."
msgstr ""

#, fuzzy
#| msgid "<primary><literal>security.debian.org</literal></primary>"
msgid "<primary><literal>httpredir.debian.org</literal></primary><see>mirrors</see>"
msgstr "<primary><literal>security.debian.org</literal></primary>"

msgid "As an alternative to <literal>deb.debian.org</literal>, there used to be <literal>httpredir.debian.org</literal>. This service would identify a mirror close to you (among the list of official mirrors, using GeoIP mainly) and would redirect APT's requests to that mirror. This service has been deprecated due to reliability concerns and now <literal>httpredir.debian.org</literal> provides the same CDN-based service as <literal>deb.debian.org</literal>."
msgstr ""

msgid "Non-Official Resources: <literal>mentors.debian.net</literal>"
msgstr "Uoffisielle ressurser: <literal>mentors.debian.net</literal>"

msgid "<primary><literal>mentors.debian.net</literal></primary>"
msgstr "<primary><literal>mentors.debian.net</literal></primary>"

#, fuzzy
#| msgid "There are numerous non-official sources of Debian packages set up by advanced users who have recompiled some software (Ubuntu made this popular with their Personal Package Archive service), by programmers who make their creation available to all, and even by Debian developers who offer pre-versions of their package online."
msgid "There are numerous non-official sources of Debian packages set up by advanced users who have recompiled some software (Ubuntu made this popular with their Personal Package Archive (<acronym>PPA</acronym>) service, by programmers who make their creation available to all, and even by Debian developers who offer pre-versions of their package online."
msgstr "Det er mange ikke-offisielle kilder til Debian-pakker lagt ut av avanserte brukere som har rekompilert noen programmer (Ubuntu gjorde dette populært med sin personlige Package Archive service), laget av programmerere som gjør det de har laget tilgjengelig for alle. Selv Debians utviklere tilbyr pre-versjoner av pakken sin på nettet."

#, fuzzy
#| msgid "The <literal>mentors.debian.net</literal> site is interesting (although it only provides source packages), since it gathers packages created by candidates to the status of official Debian developer or by volunteers who wish to create Debian packages without going through that process of integration. These packages are made available without any guarantee regarding their quality; make sure that you check their origin and integrity and then test them before you consider using them in production."
msgid "The <ulink url=\"https://mentors.debian.net\"><literal>mentors.debian.net</literal></ulink> site is interesting (although it only provides source packages), since it gathers packages created by candidates to the status of official Debian developer or by volunteers who wish to create Debian packages without going through that process of integration. These packages are made available without any guarantee regarding their quality; make sure that you check their origin and integrity and then test them before you consider using them in production."
msgstr "<literal>mentors.debian.net</literal>-området er interessant (selv om det bare gir kildepakkene), fordi det samler pakker opprettet av kandidater til status som offisielle Debian-utviklere, eller av frivillige som ønsker å lage Debian-pakker uten å gå gjennom denne integreringsprosessen. Disse pakkene er gjort tilgjengelige uten kvalitetsgaranti. Sørg for at du sjekker opprinnelsen og integriteten deres, og test dem deretter ut før du vurderer å bruke dem i produksjonen."

msgid "<emphasis>COMMUNITY</emphasis> The <literal>debian.net</literal> sites"
msgstr "<emphasis>FELLESSKAP</emphasis> The <literal>debian.net</literal> sites"

msgid "<primary><emphasis>debian.net</emphasis></primary>"
msgstr "<primary><emphasis>debian.net</emphasis></primary>"

msgid "The <emphasis>debian.net</emphasis> domain is not an official resource of the Debian project. Each Debian developer may use that domain name for their own use. These websites can contain unofficial services (sometimes personal sites) hosted on a machine which does not belong to the project and set up by Debian developers, or even prototypes about to be moved on to <emphasis>debian.org</emphasis>. Two reasons can explain why some of these prototypes remain on <emphasis>debian.net</emphasis>: either no one has made the necessary effort to transform it into an official service (hosted on the <emphasis>debian.org</emphasis> domain, and with a certain guarantee of maintenance), or the service is too controversial to be officialized."
msgstr "<emphasis>debian.net</emphasis>-domenet er ikke en offisiell ressurs i Debian-prosjektet. Hver Debian-utvikler kan bruke dette domenenavnet til eget bruk. Disse nettstedene kan inneholde uoffisielle tjenester (noen ganger personlige nettsteder) som ligger på en maskin som ikke hører til prosjektet, og er satt opp av Debians utviklere, eller til og med prototyper som er i ferd med å bli flyttet til <emphasis>debian.org</emphasis>. To grunner kan forklare hvorfor noen av disse prototypene forblir på <emphasis>debian.net</emphasis>: Fordi enten har ingen gjort det nødvendige arbeidet med å gjøre det til en offisiell tjeneste (lagret på <emphasis>debian.org</emphasis>-domenet, og med en viss garanti for vedlikehold), eller tjenesten er for kontroversiell til å bli gjort offisiell."

msgid "Installing a package means giving root rights to its creator, because they decide on the contents of the initialization scripts which are run under that identity. Official Debian packages are created by volunteers who have been co-opted and reviewed and who can seal their packages so that their origin and integrity can be checked."
msgstr "Å installere en pakke betyr å gi rotrettigheter til den som har laget den, fordi de fastsetter innholdet i initialiseringsskriptet som kjøres under denne identiteten. Offisielle Debian-pakker er laget av frivillige som er valgt inn og vurdert, og kan forsegle sine pakker, slik at opprinnelsen og integriteten kan kontrolleres."

#, fuzzy
#| msgid "In general, be wary of a package whose origin you don't know and which isn't hosted on one of the official Debian servers: evaluate the degree to which you can trust the creator, and check the integrity of the package. <ulink type=\"block\" url=\"http://mentors.debian.net/\" />"
msgid "In general, be wary of a package whose origin you don't know and which isn't hosted on one of the official Debian servers: evaluate the degree to which you can trust the creator, and check the integrity of the package."
msgstr "Generelt, vær skeptisk til en pakke med en opprinnelse du ikke kjenner, og som ikke ligger på en av de offisielle Debian-serverne; vurder i hvilken grad du kan stole på den som har laget den, og sjekk integriteten til pakken. <ulink type=\"block\" url=\"http://mentors.debian.net/\" />"

msgid "<emphasis>GOING FURTHER</emphasis> Old package versions: <literal>snapshot.debian.org</literal>"
msgstr "<emphasis>FOR VIDEREKOMMENDE</emphasis> Gamle pakkeversjoner: <literal>snapshot.debian.org</literal>"

msgid "<primary><literal>snapshot.debian.org</literal></primary>"
msgstr "<primary><literal>snapshot.debian.org</literal></primary>"

#, fuzzy
#| msgid "The <literal>snapshot.debian.org</literal> service, introduced in April 2010, can be used to “go backwards in time” and to find an old version of a package. It can be used for example to identify which version of a package introduced a regression, and more concretely, to come back to the former version while waiting for the regression fix."
msgid "The <ulink url=\"https://snapshot.debian.org\"><literal>snapshot.debian.org</literal></ulink> service, introduced in April 2010, can be used to “go backwards in time” and to find an old version of a package not longer contained in the Debian archives. It can be used, for example, to identify which version of a package introduced a regression, and more concretely, to come back to the former version while waiting for the regression fix."
msgstr "Tjenesten <literal>snapshot.debian.org</literal>, introdusert i april 2010, kan brukes til å «gå bakover i tid», og finne en gammel versjon av en pakke. Den kan for eksempel brukes til å identifisere hvilken versjon av en pakke som innførte en regresjon, og mer konkret, å komme tilbake til den tidligere versjonen mens du venter på regresjonfixen."

msgid "Caching Proxy for Debian Packages"
msgstr "Mellomlagringstjener for Debian-pakker"

msgid "<primary>proxy cache</primary>"
msgstr "<primary>mellomtjener lager</primary>"

msgid "<primary>cache, proxy</primary>"
msgstr "<primary>lager, mellomtjener</primary>"

msgid "When an entire network of machines is configured to use the same remote server to download the same updated packages, any administrator knows that it would be beneficial to have an intermediate proxy acting as a network-local cache (see sidebar <xref linkend=\"sidebar.cache\" />)."
msgstr "Når et helt nettverk av maskiner er satt opp til å bruke samme eksterne tjenermaskin for å laste ned de samme oppdaterte pakker, vet enhver administrator at det vil være fordelaktig å ha en mellomtjener som virker som et lokalt hurtiglager på nettverket (se sidefelt <xref linkend=\"sidebar.cache\" />)."

msgid "You can configure APT to use a \"standard\" proxy (see <xref linkend=\"sect.apt-config\" /> for the APT side, and <xref linkend=\"sect.http-ftp-proxy\" /> for the proxy side), but the Debian ecosystem offers better options to solve this problem. The dedicated software presented in this section are smarter than a plain proxy cache because they can rely on the specific structure of APT repositories (for instance they know when individual files are obsolete or not, and thus adjust the time during which they are kept)."
msgstr "Du kan sette opp APT til å bruke en «standard» mellomtjener (se <xref linkend=\"sect.apt-config\" /> etter APT-siden, og <xref linkend=\"sect.http-ftp-proxy\" /> etter mellomtjener-siden). Debian økosystem tilbyr imidlertid bedre alternativer for å løse dette problemet. Den egne programvaren som presenteres i dette avsnittet er smartere enn et vanlig mellomtjener hurtiglager fordi de kan stole på den spesifikke strukturen i APTs kodelagre (for eksempel at de vet når enkeltfiler er foreldet eller ikke, og dermed kan justere den tiden de skal beholdes)."

msgid "<primary><emphasis role=\"pkg\">apt-cacher</emphasis></primary>"
msgstr "<primary><emphasis role=\"pkg\">apt-cacher</emphasis></primary>"

msgid "<primary><emphasis role=\"pkg\">apt-cacher-ng</emphasis></primary>"
msgstr "<primary><emphasis role=\"pkg\">apt-cacher-ng</emphasis></primary>"

msgid "<emphasis role=\"pkg\">apt-cacher</emphasis> and <emphasis role=\"pkg\">apt-cacher-ng</emphasis> work like usual proxy cache servers. APT's <filename>sources.list</filename> is left unchanged, but APT is configured to use them as proxy for outgoing requests."
msgstr "<emphasis role=\"pkg\">apt-cacher</emphasis> og <emphasis role=\"pkg\">apt-cacher-ng</emphasis> virker som vanlige mellomlager hurtiglager-tjenere. APTs <filename>sources.list</filename> holdes uendret, mens APT settes opp til å bruke dem som mellomlager for utgående forespørsler."

msgid "<primary><emphasis role=\"pkg\">approx</emphasis></primary>"
msgstr "<primary><emphasis role=\"pkg\">approx</emphasis></primary>"

msgid "<emphasis role=\"pkg\">approx</emphasis>, on the other hand, acts like an HTTP server that “mirrors” any number of remote repositories in its top-level URLs. The mapping between those top-level directories and the remote URLs of the repositories is stored in <filename>/etc/approx/approx.conf</filename>:"
msgstr "<emphasis role=\"pkg\">approx</emphasis>, på den andre siden, fungerer som en HTTP-tjener som «speiler» et ubegrenset antall eksterne kodelagre i sitt øverste nettadresse-nivå. Tilknytningen  mellom disse toppnivå-nettlagrene og de eksterne nettadressene til kodelagrene er lagret i <filename>/etc/approx/approx.conf</filename>:"

#, fuzzy
#| msgid ""
#| "\n"
#| "# &lt;name&gt; &lt;repository-base-url&gt;\n"
#| "debian   http://ftp.debian.org/debian\n"
#| "security http://security.debian.org"
msgid ""
"# &lt;name&gt; &lt;repository-base-url&gt;\n"
"debian   https://deb.debian.org/debian\n"
"security http://security.debian.org\n"
"        "
msgstr ""
"\n"
"# &lt;navn&gt; &lt;url-base-for-pakkelager&gt;\n"
"debian   http://ftp.debian.org/debian\n"
"security http://security.debian.org"

#, fuzzy
#| msgid "<emphasis role=\"pkg\">approx</emphasis> runs by default on port 9999 via inetd (see <xref linkend=\"sect.inetd\" />) and requires the users to adjust their <filename>sources.list</filename> file to point to the approx server:"
msgid "<emphasis role=\"pkg\">approx</emphasis> runs by default on port 9999 via a systemd socket and requires the users to adjust their <filename>sources.list</filename> file to point to the approx server:"
msgstr "<emphasis role=\"pkg\">approx</emphasis> kjører som standard på port 9999 via inetd (se <xref linkend=\"sect.inetd\" />), og krever at brukerne justerer sine <filename>sources.list</filename>-filer til å peke mot approx-tjeneren:"

#, fuzzy
#| msgid ""
#| "# Sample sources.list pointing to a local approx server\n"
#| "deb http://apt.falcot.com:9999/security jessie/updates main contrib non-free\n"
#| "deb http://apt.falcot.com:9999/debian jessie main contrib non-free\n"
#| "      "
msgid ""
"# Sample sources.list pointing to a local approx server\n"
"deb http://localhost:9999/security buster/updates main contrib non-free\n"
"deb http://localhost:9999/debian buster main contrib non-free\n"
"        "
msgstr ""
"# Eksempel på sources.list som peker til en lokal approx-tjener\n"
"deb http://apt.falcot.com:9999/security jessie/updates main contrib non-free\n"
"deb http://apt.falcot.com:9999/debian jessie main contrib non-free\n"
"      "

msgid "<command>aptitude</command>, <command>apt-get</command>, and <command>apt</command> Commands"
msgstr "<command>aptitude</command>, <command>apt-get</command>, og <command>apt</command>-kommandoer"

msgid "<primary><command>apt</command></primary>"
msgstr "<primary><command>apt</command></primary>"

msgid "<primary><command>apt-get</command></primary>"
msgstr "<primary><command>apt-get</command></primary>"

msgid "<primary><command>aptitude</command></primary>"
msgstr "<primary><command>aptitude</command></primary>"

#, fuzzy
#| msgid "APT is a vast project, whose original plans included a graphical interface. It is based on a library which contains the core application, and <command>apt-get</command> is the first front end — command-line based — which was developed within the project. <command>apt</command> is a second command-line based front end provided by APT which overcomes some design mistakes of <command>apt-get</command>."
msgid "<acronym>APT</acronym> is a vast project, whose original plans included a graphical interface. It is based on a library which contains the core application, and <command>apt-get</command> is the first front end — command-line based — which was developed within the project. <command>apt</command> is a second command-line based front end provided by APT which overcomes some design mistakes of <command>apt-get</command>."
msgstr "APT er et stort prosjekt, der et grafisk grensesnitt inngår i de opprinnelige planene. Det er basert på et bibliotek med kjernen programmet (the core application), og <command>apt-get</command> er den første grenseflaten - kommandolinjebasert - som ble utviklet i prosjektet. <command>apt</command> er en andre kommandolinjebaserte grenseflate, levert fra APT, som overkommer noen designfeil i <command>apt-get</command>."

msgid "Both tools are built on top of the same library and are thus very close, but the default behavior of <command>apt</command> has been improved for interactive use and to actually do what most users expect. The APT developers reserve the right to change the public interface of this tool to further improve it. On the opposite, the public interface of <command>apt-get</command> is well defined and will not change in any backwards incompatible way. It is thus the tool that you want to use when you need to script package installation requests."
msgstr ""

#, fuzzy
#| msgid "Numerous other graphical interfaces then appeared as external projects: <command>synaptic</command>, <command>aptitude</command> (which includes both a text mode interface and a graphical one — even if not complete yet), <command>wajig</command>, etc. The most recommended interface, <command>apt</command>, is the one that we will use in the examples given in this section. Note however that <command>apt-get</command> and <command>aptitude</command> have a very similar command line syntax. When there are major differences between <command>apt</command>, <command>apt-get</command> and <command>aptitude</command>, these differences will be detailed."
msgid "Numerous other graphical interfaces then appeared as external projects: <command>synaptic</command>, <command>aptitude</command> (which includes both a text mode interface and a graphical one — even if not complete yet), <command>wajig</command>, etc. The most recommended interface, <command>apt</command>, is the one that we will use in the examples given in this section. Note, however, that <command>apt-get</command> and <command>aptitude</command> have a very similar command line syntax. When there are major differences between these three commands, these will be detailed."
msgstr "Tallrike andre grafiske grensesnitt dukket opp som eksterne prosjekter: <command>synaptic</command>, <command>aptitude</command> (som inkluderer både et tekstmodus grensesnitt og et grafisk - selv om det ikke er fullført ennå), <command>wajig</command>, etc. Det mest anbefalte grensesnittet, <command>apt</command>, er det vi vil bruke i eksemplene vi gir i denne seksjonen. Noter gjerne at <command>apt-get</command> og  <command>aptitude</command> har en veldig lik kommandolinje-syntaks. Når det er store forskjeller mellom <command>apt</command>, <command>apt-get</command> og <command>aptitude</command>, vil disse forskjellene være detaljerte."

msgid "Initialization"
msgstr "Initialisering"

#, fuzzy
#| msgid "For any work with APT, the list of available packages needs to be updated; this can be done simply through <command>apt update</command>. Depending on the speed of your connection, the operation can take a while since it involves downloading a certain number of <filename>Packages</filename>/<filename>Sources</filename>/<filename>Translation-<replaceable>language-code</replaceable></filename> files, which have gradually become bigger and bigger as Debian has developed (at least 10 MB of data for the <literal>main</literal> section). Of course, installing from a CD-ROM set does not require any downloading — in this case, the operation is very fast."
msgid "For any work with APT, the list of available packages needs to be updated; this can be done simply through <command>apt update</command>. Depending on the speed of your connection and configuration, the operation can take a while, since it involves downloading a certain number of (usually compressed) files (<filename>Packages</filename>, <filename>Sources</filename>, <filename>Translation-<replaceable>language-code</replaceable></filename>), which have gradually become bigger and bigger as Debian has developed (at least 10 MB of data for the <literal>main</literal> section). Of course, installing from a CD-ROM/DVD set does not require any downloading — in this case, the operation is very fast."
msgstr "For alt arbeid med APT, trenger listen over tilgjengelige pakker å oppdateres; dette kan enkelt gjøres med <command>apt update</command>. Denne operasjonen kan, avhengig av hastigheten på nettilkoblingen, ta en stund siden det innebærer nedlasting et visst antall <filename>Packages</filename>/<filename>Sources</filename>/<filename>Translation-<replaceable>language-code</replaceable></filename>-filer, som sakte har blitt større og større etter hvert som Debian har utviklet seg (minst 10 MB med data for <literal>main</literal>-seksjonen). Installering fra en CD-ROM krever, selvfølgelig, ingen nedlasting - i det tilfellet er operasjonen meget rask."

msgid "<primary><command>apt update</command></primary>"
msgstr "<primary><command>apt update</command></primary>"

msgid "<primary><command>apt-get update</command></primary>"
msgstr "<primary><command>apt-get update</command></primary>"

msgid "<primary><command>aptitude update</command></primary>"
msgstr "<primary><command>aptitude update</command></primary>"

#, fuzzy
#| msgid "<emphasis>TIP</emphasis> Incremental upgrade"
msgid "<emphasis>TIP</emphasis> Incremental updates"
msgstr "<emphasis>TIPS</emphasis> Trinnvis oppgradering"

#, fuzzy
#| msgid "As we explained earlier, the aim of the <command>apt update</command> command is to download for each package source the corresponding <filename>Packages</filename> (or <filename>Sources</filename>) file. However, even after a <command>bzip2</command> compression, these files can remain rather large (the <filename>Packages.xz</filename> for the <foreignphrase>main</foreignphrase> section of <emphasis role=\"distribution\">Jessie</emphasis> takes more than 6 MB). If you wish to upgrade regularly, these downloads can take up a lot of time."
msgid "The aim of the <command>apt update</command> command is to download for each package source the corresponding <filename>Packages</filename> (or <filename>Sources</filename>) file. However, even after a <command>xz</command> compression, these files can remain rather large (the <filename>Packages.xz</filename> for the <foreignphrase>main</foreignphrase> section of <emphasis role=\"distribution\">Buster</emphasis> takes more than 7 MB). If you wish to update regularly, these downloads can take up a lot of time."
msgstr "Som vi forklarte tidligere er målet med  <command>apt update</command>-kommandoen å laste ned den samsvarende <filename>Packages</filename> (eller <filename>Sources</filename>)-filen for hver kildepakke. Imidlertid, selv etter en <command>bzip2</command>-komprimering, kan disse filene forbli ganske store (<filename>Packages.xz</filename> for <foreignphrase>main</foreignphrase>-seksjonen til <emphasis role=\"distribution\">Jessie</emphasis> kreves mer enn 6 MB). Dersom du ønsker å oppgradere regelmessig, kan disse nedlastingene bruke mye tid."

#, fuzzy
#| msgid "To speed up the process APT can download “diff” files containing the changes since the previous update, as opposed to the entire file. To achieve this, official Debian mirrors distribute different files which list the differences between one version of the <filename>Packages</filename> file and the following version. They are generated at each update of the archives and a history of one week is kept. Each of these “diff” files only takes a few dozen kilobytes for <emphasis role=\"distribution\">Unstable</emphasis>, so that the amount of data downloaded by a weekly <command>apt update</command> is often divided by 10. For distributions like <emphasis role=\"distribution\">Stable</emphasis> and <emphasis role=\"distribution\">Testing</emphasis>, which change less, the gain is even more noticeable."
msgid "To speed up the process APT can download “diff” files containing the changes since the previous update, as opposed to the entire file. To achieve this, official Debian mirrors distribute different files which list the differences between one version of the <filename>Packages</filename> file and the following version. They are generated at each update of the archives and a history of one week is kept. Each of these “diff” files only takes a few dozen kilobytes for <emphasis role=\"distribution\">Unstable</emphasis>, so that the amount of data downloaded by a weekly <command>apt update</command> is often divided by 10. For <emphasis role=\"distribution\">Stable</emphasis> and <emphasis role=\"distribution\">Testing</emphasis>, which change less, the gain is even more noticeable."
msgstr "For å fremskynde prosessen kan APT laste ned «diff»-filer med endringene siden forrige oppdatering, og ikke filen i sin helhet. For å oppnå dette distribuerer offisielle Debian-speil forskjellige filer som lister forskjellene mellom en versjon av <filename>Packages</filename>-filen og den følgende versjonen. De er generert ved hver mappeoppdatering, og en ukes historie er lagret. Hver av disse «diff»-filene har bare et par dusin kilobyte for <emphasis role=\"distribution\">Unstable</emphasis>, slik at mengden data som lastes ned ved en ukentlig <command>apt update</command> blir ofte en tiendedel. For distribusjoner som <emphasis role=\"distribution\">Stable</emphasis> og  <emphasis role=\"distribution\">Testing</emphasis>, som endrer mindre, er gevinsten enda mer merkbar."

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>contrib</literal></secondary>"
msgid "<primary>APT</primary><secondary><literal>Acquire::PDiffs</literal></secondary>"
msgstr "<primary>arkiv</primary><secondary><literal>contrib</literal></secondary>"

#, fuzzy
#| msgid "However, it can sometimes be of interest to force the download of the entire <filename>Packages</filename> file, especially when the last upgrade is very old and when the mechanism of incremental differences would not contribute much. This can also be interesting when network access is very fast but when the processor of the machine to upgrade is rather slow, since the time saved on the download is more than lost when the computer calculates the new versions of these files (starting with the older versions and applying the downloaded differences). To do that, you can use the configuration parameter <literal>Acquire::Pdiffs</literal> and set it to <literal>false</literal>."
msgid "However, it can sometimes be of interest to force the download of the entire <filename>Packages</filename> file, especially when the last upgrade is very old and when the mechanism of incremental differences would not contribute much. This can also be interesting when network access is very fast but when the processor of the machine to upgrade is rather slow, since the time saved on the download is more than lost when the computer calculates the new versions of these files (starting with the older versions and applying the downloaded differences). To do that, you can use the APT configuration parameter <literal>Acquire::PDiffs</literal> and set it to <literal>false</literal>."
msgstr "Men det kan noen ganger være av interesse å tvinge nedlasting av hele <filename>Packages</filename>-filen, spesielt når den siste oppgraderingen er svært gammel, og når mekanismen med gradvis økende forskjeller ikke bidrar mye. Dette kan også være interessant når nettverkstilgang er veldig rask, men prosessoren på maskinen som skal oppgraderes er ganske treg, slik at tiden spart på nedlasting blir mer enn tapt når datamaskinen beregner de nye versjonene av disse filene (starter med de eldre versjonene og anvender de nedlastede forskjellene). For å gjøre det kan du bruke oppsettsparameteret <literal>Acquire::Pdiffs</literal>, og sette det til <literal>false</literal>."

#, fuzzy
#| msgid "<computeroutput># </computeroutput><userinput>apt --reinstall install postfix</userinput>"
msgid "<computeroutput>$ </computeroutput><userinput>sudo apt -o \"Acquire::PDiffs=false\" update</userinput>"
msgstr "<computeroutput># </computeroutput><userinput>apt --reinstall install postfix</userinput>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary>APT</primary><secondary><literal>Acquire::Languages</literal></secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

msgid "The <literal>Acquire::*</literal> options also control other aspects of the download, and even the download methods. <literal>Acquire::Languages</literal> can limit or disable the download of <filename>Translation-<replaceable>language-code</replaceable></filename> files and save even more time. For a complete reference see <citerefentry><refentrytitle>apt.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>."
msgstr ""

msgid "Installing and Removing"
msgstr "Installere og fjerne"

msgid "<primary>package</primary><secondary>installation</secondary>"
msgstr "<primary>pakke</primary><secondary>installasjon</secondary>"

msgid "<primary>package</primary><secondary>removal</secondary>"
msgstr "<primary>pakke</primary><secondary>fjerne</secondary>"

msgid "<primary>installation</primary><secondary>package installation</secondary>"
msgstr "<primary>installasjon</primary><secondary>pakkeinstallasjon</secondary>"

msgid "<primary>removal of a package</primary>"
msgstr "<primary>fjerning av en pakke</primary>"

#, fuzzy
#| msgid "With APT, packages can be added or removed from the system, respectively with <command>apt install <replaceable>package</replaceable></command> and <command>apt remove <replaceable>package</replaceable></command>. In both cases, APT will automatically install the necessary dependencies or delete the packages which depend on the package that is being removed. The <command>apt purge <replaceable>package</replaceable></command> command involves a complete uninstallation — the configuration files are also deleted."
msgid "With APT, packages can be added or removed from the system, respectively with <command>apt install <replaceable>package</replaceable></command> and <command>apt remove <replaceable>package</replaceable></command>. In both cases, APT will automatically install the necessary dependencies or delete the packages which depend on the package that is being removed. The <command>apt purge <replaceable>package</replaceable></command> command involves a complete uninstallation by deleting the configuration files as well."
msgstr "Med APTs, kan pakker legges til eller fjernes fra systemet, med henholdsvis <command>apt install <replaceable>package</replaceable></command> og <command>apt remove <replaceable>pakke</replaceable></command>. I begge tilfeller, vil APT automatisk installere de nødvendige avhengighetene eller slette pakker som er avhengig av pakken som blir fjernet. <command>apt purge <replaceable>pakke</replaceable></command>-pakken involverer en komplett avinstallisering — oppsettsfilene slettes også."

msgid "<primary><command>apt install</command></primary>"
msgstr "<primary><command>apt install</command></primary>"

msgid "<primary><command>apt remove</command></primary>"
msgstr "<primary><command>apt remove</command></primary>"

msgid "<primary><command>apt purge</command></primary>"
msgstr "<primary><command>apt purge</command></primary>"

msgid "<primary><command>apt-get install</command></primary>"
msgstr "<primary><command>apt-get install</command></primary>"

msgid "<primary><command>apt-get remove</command></primary>"
msgstr "<primary><command>apt-get remove</command></primary>"

msgid "<primary><command>apt-get purge</command></primary>"
msgstr "<primary><command>apt-get purge</command></primary>"

msgid "<primary><command>aptitude install</command></primary>"
msgstr "<primary><command>aptitude install</command></primary>"

msgid "<primary><command>aptitude remove</command></primary>"
msgstr "<primary><command>aptitude remove</command></primary>"

msgid "<primary><command>aptitude purge</command></primary>"
msgstr "<primary><command>aptitude purge</command></primary>"

msgid "<emphasis>TIP</emphasis> Installing the same selection of packages several times"
msgstr "<emphasis>TIPS</emphasis> Installere samme utvalg av pakker flere ganger"

msgid "It can be useful to systematically install the same list of packages on several computers. This can be done quite easily."
msgstr "Det kan være nyttig å automatisk installere den samme listen med pakker på flere datamaskiner. Dette kan gjøres ganske enkelt."

msgid "First, retrieve the list of packages installed on the computer which will serve as the “model” to copy."
msgstr "Først, hent listen over pakker installert på datamaskinen som skal fungere som «modell» for kopiering."

msgid "<computeroutput>$ </computeroutput><userinput>dpkg --get-selections &gt;pkg-list</userinput>"
msgstr "<computeroutput>$ </computeroutput><userinput>dpkg --get-selections &gt;pkg-list</userinput>"

msgid "The <filename>pkg-list</filename> file then contains the list of installed packages. Next, transfer the <filename>pkg-list</filename> file onto the computers you want to update and use the following commands:"
msgstr "<filename>pkg-list</filename>-filen inneholder nå listen med installerte pakker. Deretter overføres <filename>pkg-list</filename>-filen på datamaskinene du vil oppdatere, og bruker følgende kommandoer::"

msgid ""
"## Update dpkg's database of known packages\n"
"# <userinput>avail=`mktemp`</userinput>\n"
"# <userinput>apt-cache dumpavail &gt; \"$avail\"</userinput>\n"
"# <userinput>dpkg --merge-avail \"$avail\"</userinput>\n"
"# <userinput>rm -f \"$avail\"</userinput>\n"
"## Update dpkg's selections\n"
"# <userinput>dpkg --set-selections &lt; pkg-list</userinput>\n"
"## Ask apt-get to install the selected packages\n"
"# <userinput>apt-get dselect-upgrade</userinput>"
msgstr ""
"## Oppdater databasen til dpkg over kjente pakker\n"
"# <userinput>avail=`mktemp`</userinput>\n"
"# <userinput>apt-cache dumpavail &gt; \"$avail\"</userinput>\n"
"# <userinput>dpkg --merge-avail \"$avail\"</userinput>\n"
"# <userinput>rm -f \"$avail\"</userinput>\n"
"## Oppdater utvalg i dpkg\n"
"# <userinput>dpkg --set-selections &lt; pkg-list</userinput>\n"
"## Be apt-get om å installere de valgte pakkene\n"
"# <userinput>apt-get dselect-upgrade</userinput>"

#, fuzzy
#| msgid "The first commands records the list of available packages in the dpkg database, then <command>dpkg --set-selections</command> restores the selection of packages that you wish to install, and the <command>apt-get</command> invocation executes the required operations! <command>aptitude</command> does not have this command."
msgid "The first commands record the list of available packages in the dpkg database. Then <command>dpkg --set-selections</command> restores the selection of packages that you wish to install, and the <command>apt-get</command> invocation executes the required operations! <command>aptitude</command> does not have this command."
msgstr "De første kommandoene registrerer listen over tilgjengelige pakker i dpkg-databasen, deretter gjenoppretter <command>dpkg --set-selections</command> valget av pakker du ønsker å installere, og <command>apt-get</command> kjører de nødvendige operasjonene! <command>aptitude</command> har ikke denne kommandoen."

msgid "<emphasis>TIP</emphasis> Removing and installing at the same time"
msgstr "<emphasis>TIPS</emphasis> Fjerne og installere samtidig"

msgid "It is possible to ask <command>apt</command> (or <command>apt-get</command>, or <command>aptitude</command>) to install certain packages and remove others on the same command line by adding a suffix. With an <command>apt install</command> command, add “<literal>-</literal>” to the names of the packages you wish to remove. With an <command>apt remove</command> command, add “<literal>+</literal>” to the names of the packages you wish to install."
msgstr "Det er mulig å spørre <command>apt</command> (eller <command>apt-get</command>, eller <command>aptitude</command>) til å installere enkelte pakker, og fjerne andre på samme kommandolinje ved å legge til et suffiks. Med en <command>apt install</command>-kommando, legg til «<literal>-</literal>» til navnene på de pakkene du ønsker å fjerne. Med en <command>apt remove</command>-kommando, legg «<literal>+</literal>» til navnene på de pakkene du vil installere."

msgid "The next example shows two different ways to install <replaceable>package1</replaceable> and to remove <replaceable>package2</replaceable>."
msgstr "Det neste eksempelet viser to forskjellige måter å installere <replaceable>pakke1</replaceable> og for å fjerne <replaceable>pakke2</replaceable>."

#, fuzzy
#| msgid "The next example shows two different ways to install <replaceable>package1</replaceable> and to remove <replaceable>package2</replaceable>."
msgid "# <userinput>apt install <replaceable>package1</replaceable> <replaceable>package2</replaceable>-</userinput>"
msgstr "Det neste eksempelet viser to forskjellige måter å installere <replaceable>pakke1</replaceable> og for å fjerne <replaceable>pakke2</replaceable>."

#, fuzzy
#| msgid "The next example shows two different ways to install <replaceable>package1</replaceable> and to remove <replaceable>package2</replaceable>."
msgid "# <userinput>apt remove <replaceable>package1</replaceable>+ <replaceable>package2</replaceable></userinput>"
msgstr "Det neste eksempelet viser to forskjellige måter å installere <replaceable>pakke1</replaceable> og for å fjerne <replaceable>pakke2</replaceable>."

#, fuzzy
#| msgid "This can also be used to exclude packages which would otherwise be installed, for example due to a <literal>Recommends</literal>. In general, the dependency solver will use that information as a hint to look for alternative solutions."
msgid "This can also be used to exclude packages which would otherwise be installed, for example, due to an automatic installation of <literal>Recommends</literal>. In general, the dependency solver will use that information as a hint to look for alternative solutions."
msgstr "Dette kan også brukes til å ekskludere pakker som ellers ville blitt installert, for eksempel på grunn av en <literal>Recommends</literal>. Generelt vil avhengighetsløseren bruke denne informasjonen som et hint for å lete etter alternative løsninger."

msgid "<emphasis>TIP</emphasis> <command>apt --reinstall</command> and <command>aptitude reinstall</command>"
msgstr "<emphasis>TIPS</emphasis> <command>apt --reinstall</command> og <command>aptitude reinstall</command>"

msgid "<primary>reinstallation</primary>"
msgstr "<primary>reinstallasjon</primary>"

#, fuzzy
#| msgid "<primary><command>apt install</command></primary>"
msgid "<primary><command>apt install --reinstall</command></primary>"
msgstr "<primary><command>apt install</command></primary>"

#, fuzzy
#| msgid "<primary><command>apt-get install</command></primary>"
msgid "<primary><command>apt-get install --reinstall</command></primary>"
msgstr "<primary><command>apt-get install</command></primary>"

#, fuzzy
#| msgid "<primary><command>aptitude install</command></primary>"
msgid "<primary><command>aptitude install --reinstall</command></primary>"
msgstr "<primary><command>aptitude install</command></primary>"

msgid "The system can sometimes be damaged after the removal or modification of files in a package. The easiest way to retrieve these files is to reinstall the affected package. Unfortunately, the packaging system finds that the latter is already installed and politely refuses to reinstall it; to avoid this, use the <literal>--reinstall</literal> option of the <command>apt</command> and <command>apt-get</command> commands. The following command reinstalls <emphasis role=\"pkg\">postfix</emphasis> even if it is already present:"
msgstr "Systemet kan noen ganger bli skadet etter fjerning eller endring av filer i en pakke. Den enkleste måten å hente frem disse filene er å installere den berørte pakken. Dessverre finner pakkesystemet at sistnevnte allerede er installert, og høflig nekter å installere det på nytt; for å unngå dette, kan du bruke <literal>--reinstall</literal> muligheten av <command>apt</command> og <command>apt-get</command>-kommandoer. De følgende kommandoer reinstallerer <emphasis role=\"pkg\">postfix</emphasis > selv om den allerede er tilstede:"

msgid "<computeroutput># </computeroutput><userinput>apt --reinstall install postfix</userinput>"
msgstr "<computeroutput># </computeroutput><userinput>apt --reinstall install postfix</userinput>"

msgid "The <command>aptitude</command> command line is slightly different, but achieves the same result with <command>aptitude reinstall postfix</command>."
msgstr "<command>aptitude</command>-kommandolinjen er litt ulik, men oppnår det samme resultat med <command>aptitude reinstall postfix</command>."

msgid "The problem does not arise with <command>dpkg</command>, but the administrator rarely uses it directly."
msgstr "Problemet oppstår ikke med <command>dpkg</command>, men administratoren bruker den sjelden direkte."

msgid "Be careful! Using <command>apt --reinstall</command> to restore packages modified during an attack will certainly not recover the system as it was. <xref linkend=\"sect.dealing-with-compromised-machine\" /> details the necessary steps to take with a compromised system."
msgstr "Vær forsiktig. Å bruke <command>apt --reinstall</command> for å gjenopprette pakker modifisert under et angrep, vil ganske sikkert ikke gjenopprette systemet slik det var. <xref linkend=\"sect.dealing-with-compromised-machine\" /> gir detaljer om nødvendige steg som bør tas med et kompromittert system."

#, fuzzy
#| msgid "<primary>package</primary><secondary>source of</secondary>"
msgid "<primary><command>dpkg</command></primary><secondary><command>--force-confask</command></secondary>"
msgstr "<primary>pakke</primary><secondary>kildekode til</secondary>"

#, fuzzy
#| msgid "<primary>package</primary><secondary>source of</secondary>"
msgid "<primary><command>dpkg</command></primary><secondary><command>--force-confmiss</command></secondary>"
msgstr "<primary>pakke</primary><secondary>kildekode til</secondary>"

msgid "These commands will not restore the configuration files. But as you have learned in <xref linkend=\"sect.conffiles\" /> (see also sidebar <xref linkend=\"sidebar.questions-conffiles-bis\" />), you can use the following command to be asked to install the unmodified version and even restore any deleted configuration file as well."
msgstr ""

#, fuzzy
#| msgid "<computeroutput># </computeroutput><userinput>apt --reinstall install postfix</userinput>"
msgid "<computeroutput># </computeroutput><userinput>apt --reinstall -o Dpkg::Options::=\"--force-confask,confmiss\" install <replaceable>package</replaceable></userinput>"
msgstr "<computeroutput># </computeroutput><userinput>apt --reinstall install postfix</userinput>"

msgid "Some packages don't ship the configuration file found in <filename>/etc</filename> with the package. Instead they create it during installation by either copying a skeleton or writing it by a script. The file <filename>/etc/inputrc</filename>, for example, is a copy of <filename>/usr/share/readline/inputrc</filename>. In such cases the commands shown above won't work."
msgstr ""

#, fuzzy
#| msgid "If the file <filename>sources.list</filename> mentions several distributions, it is possible to give the version of the package to install. A specific version number can be requested with <command>apt install <replaceable>package</replaceable>=<replaceable>version</replaceable></command>, but indicating its distribution of origin (<emphasis role=\"distribution\">Stable</emphasis>, <emphasis role=\"distribution\">Testing</emphasis> or <emphasis role=\"distribution\">Unstable</emphasis>) — with <command>apt install <replaceable>package</replaceable>/<replaceable>distribution</replaceable></command> — is usually preferred. With this command, it is possible to go back to an older version of a package (if for instance you know that it works well), provided that it is still available in one of the sources referenced by the <filename>sources.list</filename> file. Otherwise the <literal>snapshot.debian.org</literal> archive can come to the rescue (see sidebar <xref linkend=\"sidebar.snapshot.debian.org\" />)."
msgid "If the file <filename>sources.list</filename> mentions several distributions, it is possible to give the version of the package to install. A specific version number can be requested with <command>apt install <replaceable>package</replaceable>=<replaceable>version</replaceable></command>, but indicating its distribution of origin (<emphasis role=\"distribution\">Stable</emphasis>, <emphasis role=\"distribution\">Testing</emphasis> or <emphasis role=\"distribution\">Unstable</emphasis>) — with <command>apt install <replaceable>package</replaceable>/<replaceable>distribution</replaceable></command> — is usually preferred. With this command, it is possible to go back to an older version of a package (if, for instance, you know that it works well), provided that it is still available in one of the sources referenced by the <filename>sources.list</filename> file. Otherwise the <literal>snapshot.debian.org</literal> archive can come to the rescue (see sidebar <xref linkend=\"sidebar.snapshot.debian.org\" />)."
msgstr "Hvis filen <filename>sources.list</filename> nevner flere distibusjoner, er det mulig å gi den versjonen av pakken som skal installeres. Et spesifikt versjonsnummer kan hentes med <command>apt install <replaceable>pakke</replaceable>=<replaceable>versjon</replaceable></command>, men å indikere distribusjonens opprinnelse (<emphasis role=\"distribution\">Stable</emphasis>, <emphasis role=\"distribution\">Testing</emphasis> eller <emphasis role=\"distribution\">Unstable</emphasis>) - med <command>apt install <replaceable>pakke</replaceable>/<replaceable>distribusjon</replaceable></command> - er vanligvis foretrukket. Med denne kommandoen er det mulig å gå tilbake til en eldre versjon av en pakke (hvis for eksempel du vet at den fungerer godt), forutsatt at den er tilgjengelig i en av kildene refererert til av <filename>sources.list</filename>-filen. Ellers kan <literal>snapshot.debian.org</literal>-arkivet komme til hjelp (se sidefelt <xref linkend=\"sidebar.snapshot.debian.org\" />)."

#, fuzzy
#| msgid "Installation of the <emphasis role=\"distribution\">unstable</emphasis> version of <emphasis role=\"pkg\">spamassassin</emphasis>"
msgid "Installation of the <emphasis role=\"distribution\">Unstable</emphasis> version of <emphasis role=\"pkg\">spamassassin</emphasis>"
msgstr "Installasjon av <emphasis role=\"distribution\">unstable</emphasis>-versjonen av <emphasis role=\"pkg\">spamassassin</emphasis>"

msgid "<computeroutput># </computeroutput><userinput>apt install spamassassin/unstable</userinput>"
msgstr "<computeroutput># </computeroutput><userinput>apt install spamassassin/unstable</userinput>"

msgid "If the package to install has been made available to you under the form of a simple <filename>.deb</filename> file without any associated package repository, it is still possible to use APT to install it together with its dependencies (provided that the dependencies are available in the configured repositories) with a simple command: <command>apt install ./<replaceable>path-to-the-package.deb</replaceable></command>. The leading <literal>./</literal> is important to make it clear that we are referring to a filename and not to the name of a package available in one of the repositories."
msgstr ""

msgid "<emphasis>GOING FURTHER</emphasis> The cache of <filename>.deb</filename> files"
msgstr "<emphasis>FOR VIDEREKOMMENDE</emphasis>Hurtiglageret med <filename>.deb</filename>-filer"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/preferences</filename></primary>"
msgid "<primary><filename>/var/cache/apt/archives/</filename></primary>"
msgstr "<primary><filename>/etc/apt/preferences</filename></primary>"

#, fuzzy
#| msgid "<primary><command>apt-get</command></primary>"
msgid "<primary><command>apt-get clean</command></primary>"
msgstr "<primary><command>apt-get</command></primary>"

#, fuzzy
#| msgid "<primary><command>apt-get update</command></primary>"
msgid "<primary><command>apt-get autoclean</command></primary>"
msgstr "<primary><command>apt-get update</command></primary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary>interfaces</secondary>"
msgid "<primary>APT</primary><secondary><filename>/var/cache/apt/archives/</filename></secondary>"
msgstr "<primary>APT</primary><secondary>grensesnitt</secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary>APT</primary><secondary><literal>APT::Clean-Installed</literal></secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

#, fuzzy
#| msgid "APT keeps a copy of each downloaded <filename>.deb</filename> file in the directory <filename>/var/cache/apt/archives/</filename>. In case of frequent updates, this directory can quickly take a lot of disk space with several versions of each package; you should regularly sort through them. Two commands can be used: <command>apt-get clean</command> entirely empties the directory; <command>apt-get autoclean</command> only removes packages which can no longer be downloaded (because they have disappeared from the Debian mirror) and are therefore clearly useless (the configuration parameter <literal>APT::Clean-Installed</literal> can prevent the removal of <filename>.deb</filename> files that are currently installed). Note that <command>apt</command> does not support those commands."
msgid "APT keeps a copy of each downloaded <filename>.deb</filename> file in the directory <filename>/var/cache/apt/archives/</filename>. In case of frequent updates, this directory can quickly take a lot of disk space with several versions of each package; you should regularly sort through them. Two commands can be used: <command>apt-get clean</command> entirely empties the directory; <command>apt-get autoclean</command> only removes packages which can no longer be downloaded (because they have disappeared from the Debian mirror) and are therefore clearly useless (the configuration parameter <literal>APT::Clean-Installed</literal> can prevent the removal of <filename>.deb</filename> files that are currently installed)."
msgstr "APT tar vare på en kopi av hver nedlastede <filename>.deb</filename>-fil i mappen <filename>/var/cache/apt/archives/</filename>. Ved hyppige oppdateringer, kan denne mappen raskt ta mye diskplass med flere versjoner av hver pakke: Du bør regelmessig gå i gjennom dem. To kommandoer kan brukes: <command>apt-get clean</command> tømmer mappen helt; <command>apt-get autoclean</command> fjerner kun pakker som ikke lenger kan lastes ned (fordi de har forsvunnet fra Debian-speilet) og er derfor klart ubrukelig (oppsettsparameteret <literal>APT::Clean-Installed</literal> kan hindre fjerning av <filename>.deb</filename>-filer som nå er installert). Merk at <command>apt</command> ikke støtter disse kommandoene."

msgid "System Upgrade"
msgstr "Oppgradering av systemet"

msgid "<primary>upgrade</primary><secondary>system upgrade</secondary>"
msgstr "<primary>oppgradere</primary><secondary>system oppgradere</secondary>"

msgid "<primary><command>apt upgrade</command></primary>"
msgstr "<primary><command>apt upgrade</command></primary>"

msgid "<primary><command>apt-get upgrade</command></primary>"
msgstr "<primary><command>apt-get upgrade</command></primary>"

msgid "<primary><command>aptitude safe-upgrade</command></primary>"
msgstr "<primary><command>aptitude safe-upgrade</command></primary>"

msgid "Regular upgrades are recommended, because they include the latest security updates. To upgrade, use <command>apt upgrade</command>, <command>apt-get upgrade</command> or <command>aptitude safe-upgrade</command> (of course after <command>apt update</command>). This command looks for installed packages which can be upgraded without removing any packages. In other words, the goal is to ensure the least intrusive upgrade possible. <command>apt-get</command> is slightly more demanding than <command>aptitude</command> or <command>apt</command> because it will refuse to install packages which were not installed beforehand."
msgstr "Regelmessige oppgraderinger anbefales fordi de inneholder de nyeste sikkerhetsoppdateringene. For å oppgradere bruk <command>apt upgrade</command>, <command>apt-get upgrade</command>, eller <command>aptitude safe-upgrade</command> (selvfølgelig etter <command>apt update</command>). Denne kommandoen ser etter installerte pakker som kan oppgraderes uten at pakker fjernes. Med andre ord er målet å sikre den minst mulig påtrengende oppgraderingen. <command>apt-get</command> er litt mer krevende enn <command>aptitude</command>, eller <command>apt</command> fordi den vil avslå å installere pakker som ikke var installert på forhånd."

msgid "<command>apt</command> will generally select the most recent version number (except for packages from <emphasis role=\"distribution\">Experimental</emphasis> and <emphasis role=\"distribution\">stable-backports</emphasis>, which are ignored by default whatever their version number). If you specified <emphasis role=\"distribution\">Testing</emphasis> or <emphasis role=\"distribution\">Unstable</emphasis> in your <filename>sources.list</filename>, <command>apt upgrade</command> will switch most of your <emphasis role=\"distribution\">Stable</emphasis> system to <emphasis role=\"distribution\">Testing</emphasis> or <emphasis role=\"distribution\">Unstable</emphasis>, which might not be what you intended."
msgstr "<command>apt</command> vil vanligvis velge det seneste versjonsnummeret (unntatt for pakker fra <emphasis role=\"distribution\">Experimental</emphasis> og <emphasis role=\"distribution\">stable-backports</emphasis>, som ignoreres uansett versjonsnummer). Hvis du spesifiserer <emphasis role=\"distribution\">Testing</emphasis>, eller <emphasis role=\"distribution\">Unstable</emphasis> i din <filename>sources.list</filename>, vil <command>apt upgrade</command> skifte til det meste av ditt <emphasis role=\"distribution\">Stable</emphasis>-system til <emphasis role=\"distribution\">Testing</emphasis> eller <emphasis role=\"distribution\">Unstable</emphasis>, som kanskje ikke var det du ville."

#, fuzzy
#| msgid "To tell <command>apt</command> to use a specific distribution when searching for upgraded packages, you need to use the <literal>-t</literal> or <literal>--target-release</literal> option, followed by the name of the distribution you want (for example: <command>apt -t stable upgrade</command>). To avoid specifying this option every time you use <command>apt</command>, you can add <literal>APT::Default-Release \"stable\";</literal> in the file <filename>/etc/apt/apt.conf.d/local</filename>."
msgid "To tell <command>apt</command> to use a specific distribution when searching for upgraded packages, you need to use the <literal>-t</literal> or <literal>--target-release</literal> option, followed by the name of the distribution you want (for example, <command>apt -t stable upgrade</command>). To avoid specifying this option every time you use <command>apt</command>, you can add <literal>APT::Default-Release \"stable\";</literal> in the file <filename>/etc/apt/apt.conf.d/local</filename>."
msgstr "Å be  <command>apt</command> om å bruke en bestemt distribusjon når du søker etter oppgraderte pakker, må du bruke <literal>-t</literal> or <literal>--target-release</literal>-valget, etterfulgt av navnet på distribusjonen du ønsker (for eksempel: <command>apt -t stable upgrade</command>). For å slippe å spesifisere dette alternativet hver gang du bruker <command>apt</command>, kan du legge til <literal>APT::Default-Release \"stable\";</literal> i filen <filename>/etc/apt/apt.conf.d/local</filename>."

msgid "<primary><command>apt full-upgrade</command></primary>"
msgstr "<primary><command>apt full-upgrade</command></primary>"

msgid "<primary><command>apt dist-upgrade</command></primary>"
msgstr "<primary><command>apt dist-upgrade</command></primary>"

msgid "<primary><command>apt-get dist-upgrade</command></primary>"
msgstr "<primary><command>apt-get dist-upgrade</command></primary>"

msgid "<primary><command>aptitude dist-upgrade</command></primary>"
msgstr "<primary><command>aptitude dist-upgrade</command></primary>"

msgid "<primary><command>aptitude full-upgrade</command></primary>"
msgstr "<primary><command>aptitude full-upgrade</command></primary>"

msgid "For more important upgrades, such as the change from one major Debian version to the next, you need to use <command>apt full-upgrade</command>. With this instruction, <command>apt</command> will complete the upgrade even if it has to remove some obsolete packages or install new dependencies. This is also the command used by users who work daily with the Debian <emphasis role=\"distribution\">Unstable</emphasis> release and follow its evolution day by day. It is so simple that it hardly needs explanation: APT's reputation is based on this great functionality."
msgstr "For viktigere oppgraderinger, som for eksempel overgang fra en stor Debian versjon til den neste, må du bruke <command>apt full-upgrade</command>. Med denne instruksjonen vil <command>apt</command> fullføre oppgraderingen selv om den må fjerne noen utdaterte pakker, eller installere nye avhengigheter. Dette er også kommandoen som benyttes av brukere som jobber daglig med Debian <emphasis role=\"distribution\">Unstable</emphasis>-utgaven, og følger dens utvikling dag for dag. Det er så enkelt at det nesten ikke trenger forklaring: APTs omdømme er basert på denne store funksjonaliten."

msgid "Unlike <command>apt</command> and <command>aptitude</command>, <command>apt-get</command> doesn't know the <command>full-upgrade</command> command. Instead, you should use <command>apt-get dist-upgrade</command> (”distribution upgrade”), the historical and well-known command that <command>apt</command> and <command>aptitude</command> also accept for the convenience of users who got used to it."
msgstr "Til forskjell fra <command>apt</command> og <command>aptitude</command>, kjenner ikke <command>apt-get</command> til <command>full-upgrade</command>-kommandoen. I stedet skal du bruke <command>apt-get dist-upgrade</command> («distribution upgrade»), den historiske og velkjente kommandoen <command>apt</command> og <command>aptitude</command> godtas også, til lettelse for de brukerne som ble vant med den."

#, fuzzy
#| msgid "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"
msgid "<primary>APT</primary><secondary><filename>/var/log/apt/history.log</filename></secondary>"
msgstr "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary>interfaces</secondary>"
msgid "<primary>APT</primary><secondary><filename>/var/log/apt/term.log</filename></secondary>"
msgstr "<primary>APT</primary><secondary>grensesnitt</secondary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"
msgid "<primary>APT</primary><secondary><filename>/var/log/apt/eipp.log.xz</filename></secondary>"
msgstr "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"

#, fuzzy
#| msgid "<primary>package</primary><secondary>installation</secondary>"
msgid "<primary>dpkg</primary><secondary><filename>/var/log/dpkg.log</filename></secondary>"
msgstr "<primary>pakke</primary><secondary>installasjon</secondary>"

msgid "The results of these operations are logged into <filename>/var/log/apt/history.log</filename> and <filename>/var/log/apt/term.log</filename>, whereas <command>dpkg</command> keeps its log in a file called <filename>/var/log/dpkg.log</filename>."
msgstr ""

msgid "Configuration Options"
msgstr "Oppsettsvalg"

msgid "<primary>APT</primary><secondary>configuration</secondary>"
msgstr "<primary>APT</primary><secondary>oppsett</secondary>"

#, fuzzy
#| msgid "<primary><filename>apt.conf.d/</filename></primary>"
msgid "<primary><filename>apt.conf</filename></primary>"
msgstr "<primary><filename>apt.conf.d/</filename></primary>"

msgid "<primary><filename>apt.conf.d/</filename></primary>"
msgstr "<primary><filename>apt.conf.d/</filename></primary>"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/apt.conf.d/</filename></primary>"
msgid "<primary><filename>/etc/apt/apt.conf</filename></primary>"
msgstr "<primary><filename>/etc/apt/apt.conf.d/</filename></primary>"

msgid "<primary><filename>/etc/apt/apt.conf.d/</filename></primary>"
msgstr "<primary><filename>/etc/apt/apt.conf.d/</filename></primary>"

msgid "<primary><citerefentry><refentrytitle>apt.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry></primary>"
msgstr ""

#, fuzzy
#| msgid "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"
msgid "<primary>APT</primary><secondary><filename>/etc/apt/apt.conf</filename></secondary>"
msgstr "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/apt.conf.d/</filename></primary>"
msgid "<primary>APT</primary><secondary><filename>/etc/apt/apt.conf.d/</filename></secondary>"
msgstr "<primary><filename>/etc/apt/apt.conf.d/</filename></primary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary>APT</primary><secondary><literal>DPkg::options</literal></secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>contrib</literal></secondary>"
msgid "<primary>APT</primary><secondary><literal>Acquire::http::proxy</literal></secondary>"
msgstr "<primary>arkiv</primary><secondary><literal>contrib</literal></secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>contrib</literal></secondary>"
msgid "<primary>APT</primary><secondary><literal>Acquire::ftp::proxy</literal></secondary>"
msgstr "<primary>arkiv</primary><secondary><literal>contrib</literal></secondary>"

#, fuzzy
#| msgid "Besides the configuration elements already mentioned, it is possible to configure certain aspects of APT by adding directives in a file of the <filename>/etc/apt/apt.conf.d/</filename> directory. Remember for instance that it is possible for APT to tell <command>dpkg</command> to ignore file conflict errors by specifying <literal>DPkg::options { \"--force-overwrite\"; }</literal>."
msgid "Besides the configuration elements already mentioned, it is possible to configure certain aspects of APT by adding directives in a file of the <filename>/etc/apt/apt.conf.d/</filename> directory or <filename>/etc/apt/apt.conf</filename> itself. Remember, for instance, that it is possible for APT to tell <command>dpkg</command> to ignore file conflict errors by specifying <literal>DPkg::options { \"--force-overwrite\"; }</literal>."
msgstr "Foruten de oppsettselementene som allerede er nevnt, er det mulig å sette opp visse egenskaper ved APT ved å legge til direktiver i en fil i <filename>/etc/apt/apt.conf.d/</filename>-mappen. Husk for eksempel at det er mulig for APT å be <command>dpkg</command> om å ignorere filkonfliktfeil ved å spesifisere <literal>DPkg::options { \"--force-overwrite\"; }</literal>."

msgid "If the Web can only be accessed through a proxy, add a line like <literal>Acquire::http::proxy \"http://<replaceable>yourproxy</replaceable>:3128\"</literal>. For an FTP proxy, write <literal>Acquire::ftp::proxy \"ftp://<replaceable>yourproxy</replaceable>\"</literal>. To discover more configuration options, read the <citerefentry><refentrytitle>apt.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry> manual page with the <command>man apt.conf</command> command (for details on manual pages, see <xref linkend=\"sect.manual-pages\" />)."
msgstr "Hvis Internettet bare kan nås via en mellomtjener, legg til en linje som <literal>Acquire::http::proxy \"http://<replaceable>yourproxy</replaceable>:3128\"</literal>. For en FTP-mellomtjener, skriv <literal>Acquire::ftp::proxy \"ftp://<replaceable>yourproxy</replaceable>\"</literal>. For å finne flere oppsettsvalg, les manualsiden <citerefentry><refentrytitle>apt.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry> med kommandoen <command>man apt.conf</command> (for detaljer om manualsider, se <xref linkend=\"sect.manual-pages\" />)."

msgid "<emphasis>BACK TO BASICS</emphasis> Directories ending in <filename>.d</filename>"
msgstr "<emphasis>DET GRUNNLEGGENDE</emphasis> Kataloger som slutter på <filename>.d</filename>"

msgid "<primary><filename>.d</filename></primary>"
msgstr "<primary><filename>.d</filename></primary>"

msgid "Directories with a <filename>.d</filename> suffix are used more and more often. Each directory represents a configuration file which is split over multiple files. In this sense, all of the files in <filename>/etc/apt/apt.conf.d/</filename> are instructions for the configuration of APT. APT includes them in alphabetical order, so that the last ones can modify a configuration element defined in one of the first ones."
msgstr "Mapper med et <filename>.d</filename>-suffiks blir brukt oftere og oftere. Hver mappe  representerer en oppsettsfil som er fordelt over flere filer. I denne forstand er alle filene i <filename>/etc/apt/apt.conf.d/</filename> instruksjoner av APT-oppsett. APT inkluderer dem i alfabetisk rekkefølge, slik at de siste kan endre et oppsettselement definert i en av de første."

msgid "This structure brings some flexibility to the machine administrator and to the package maintainers. Indeed, the administrator can easily modify the configuration of the software by adding a ready-made file in the directory in question without having to change an existing file. Package maintainers use the same approach when they need to adapt the configuration of another software to ensure that it perfectly co-exists with theirs. The Debian policy explicitly forbids modifying configuration files of other packages — only users are allowed to do this. Remember that during a package upgrade, the user gets to choose the version of the configuration file that should be kept when a modification has been detected. Any external modification of the file would trigger that request, which would disturb the administrator, who is sure not to have changed anything."
msgstr "Denne strukturen gir en viss fleksibilitet til maskinens administrator og til pakkens vedlikeholdere. Faktisk kan administratoren enkelt endre oppsettet av programvaren ved å legge til en ferdig fil i katalogen det gjelder uten å måtte endre en eksisterende fil. Pakkevedlikeholdere bruker samme tilnærming når de må tilpasse oppsettet av annen programvare for å sikre at den fullt ut virker sammen med deres. Debians politikk forbyr eksplisitt endring av oppsettsfiler fra andre pakker - bare brukere får lov til å gjøre dette. Husk at under en pakkeoppgradering, får brukeren velge den versjonen av oppsettsfilen som skal beholdes når en endring er påvist. Enhver ekstern endring av filen vil utløse den forespørselen, noe som ville forstyrre administratoren, som er sikker på å ikke ha endret noe."

msgid "Without a <filename>.d</filename> directory, it is impossible for an external package to change the settings of a program without modifying its configuration file. Instead it must invite the user to do it themselves and lists the operations to be done in the file <filename>/usr/share/doc/<replaceable>package</replaceable>/README.Debian</filename>."
msgstr "Uten en <filename>.d</filename>-katalog er det umulig for en ekstern pakke å endre på oppsettet til et program uten å endre programmets oppsettsfiler. I stedet må den eksterne pakken spørre brukeren om å gjøre endringen selv, og beskrive operasjonene som skal utføres i filen <filename>/usr/share/doc/<replaceable>pakke</replaceable>/README.Debian</filename>."

msgid "Depending on the application, the <filename>.d</filename> directory is used directly or managed by an external script which will concatenate all the files to create the configuration file itself. It is important to execute the script after any change in that directory so that the most recent modifications are taken into account. In the same way, it is important not to work directly in the configuration file created automatically, since everything would be lost at the next execution of the script. The chosen method (<filename>.d</filename> directory used directly or a file generated from that directory) is usually dictated by implementation constraints, but in both cases the gains in terms of configuration flexibility more than make up for the small complications that they entail. The Exim 4 mail server is an example of the generated file method: it can be configured through several files (<filename>/etc/exim4/conf.d/*</filename>) which are concatenated into <filename>/var/lib/exim4/config.autogenerated</filename> by the <command>update-exim4.conf</command> command."
msgstr "Avhengig av programmet, brukes <filename>.d</filename>-mappen direkte, eller styrt av et eksternt skript som vil koble sammen alle filene for å opprette selve oppsettsfilen. Det er viktig å kjøre skriptet etter alle endringer i denne katalogen, slik at de seneste endringene blir tatt hensyn til. På samme måte er det viktig å ikke arbeide direkte i oppsettsfilen som er opprettet automatisk, siden alt ville gå tapt ved neste kjøring av skriptet. Den valgte metoden (<filename>.d</filename>-mappen brukes direkte, eller en fil generert fra denne mappen) er vanligvis diktert av implementeringsbegrensninger, men i begge tilfeller kompenserer gevinstene i form av oppsettsfleksibilitet for de små komplikasjonene de medfører. Exim 4-posttjeneren er et eksempel på den genererte filmetoden: Den kan settes opp gjennom flere filer (<filename>/etc/exim4/conf.d/*</filename>) som er  koblet sammen til <filename>/var/lib/exim4/config.autogenerated</filename> av  <command>update-exim4.conf</command>-kommandoen."

msgid "Managing Package Priorities"
msgstr "Styring av pakkeprioriteter"

msgid "One of the most important aspects in the configuration of APT is the management of the priorities associated with each package source. For instance, you might want to extend one distribution with one or two newer packages from <emphasis role=\"distribution\">Testing</emphasis>, <emphasis role=\"distribution\">Unstable</emphasis> or <emphasis role=\"distribution\">Experimental</emphasis>. It is possible to assign a priority to each available package (the same package can have several priorities depending on its version or the distribution providing it). These priorities will influence APT's behavior: for each package, it will always select the version with the highest priority (except if this version is older than the installed one and if its priority is less than 1000)."
msgstr "En av de viktigste aspektene i oppsettet av APT er behandlingen av prioriteringene knyttet til hver pakkekilde. For eksempel kan du ønske å forlenge en fordeling med en eller to nyere pakker fra <emphasis role=\"distribution\">Testing</emphasis>, <emphasis role=\"distribution\">Unstable</emphasis>, eller <emphasis role=\"distribution\">Experimental</emphasis>. Det er mulig å tildele en prioritet til hver tilgjengelig pakke (samme pakke kan ha flere prioriteringer, avhengig av hvilken versjon eller distribusjon den kommer fra). Disse prioriteringene vil påvirke APTs oppførsel: For hver pakke vil det alltid velge versjonen med høyest prioritet (unntatt hvis denne versjonen er eldre enn den installerte, og hvis prioriteten er mindre enn 1000)."

msgid "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"
msgstr "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"

msgid "<primary>pinning, APT pinning</primary>"
msgstr "<primary>pinning, APT pinning</primary>"

msgid "<primary>package</primary><secondary>priority</secondary>"
msgstr "<primary>pakke</primary><secondary>prioritet</secondary>"

msgid "<primary>priority</primary><secondary>package priority</secondary>"
msgstr "<primary>prioritet</primary><secondary>pakkeprioritet</secondary>"

msgid "<primary>APT</primary><secondary>preferences</secondary>"
msgstr "<primary>APT</primary><secondary>preferanser</secondary>"

msgid "<primary><filename>preferences</filename></primary>"
msgstr "<primary><filename>preferanser</filename></primary>"

msgid "<primary><filename>/etc/apt/preferences</filename></primary>"
msgstr "<primary><filename>/etc/apt/preferences</filename></primary>"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/preferences</filename></primary>"
msgid "<primary><filename>/etc/apt/preferences.d/</filename></primary>"
msgstr "<primary><filename>/etc/apt/preferences</filename></primary>"

msgid "<primary><citerefentry><refentrytitle>apt_preferences</refentrytitle><manvolnum>5</manvolnum></citerefentry></primary>"
msgstr ""

msgid "APT defines several default priorities. Each installed package version has a priority of 100. A non-installed version has a priority of 500 by default, but it can jump to 990 if it is part of the target release (defined with the <literal>-t</literal> command-line option or the <literal>APT::Default-Release</literal> configuration directive)."
msgstr "APT definerer flere standard prioriteringer. Hver installert pakkeversjon har en prioritet på 100. En ikke-installert versjon har en prioritet på 500 som standard, men det kan hoppe til 990 hvis det er en del av målrettet utgivelse (definert med <literal>-t</literal> kommandolinjevalg, eller <literal>APT::Default-Release</literal> oppsettsdirektiv)."

#, fuzzy
#| msgid "You can modify the priorities by adding entries in the <filename>/etc/apt/preferences</filename> file with the names of the affected packages, their version, their origin and their new priority."
msgid "You can modify the priorities by adding entries in a file in <filename>/etc/apt/preferences.d/</filename> or the <filename>/etc/apt/preferences</filename> file with the names of the affected packages, their version, their origin and their new priority."
msgstr "Du kan endre prioriteringer ved å legge til oppføringer i <filename>/etc/apt/preferences</filename>-filen med navnene på de berørte pakker, versjonen, opprinnelsen og den nye prioriteten deres."

#, fuzzy
#| msgid "APT will never install an older version of a package (that is, a package whose version number is lower than the one of the currently installed package) except if its priority is higher than 1000. APT will always install the highest priority package which follows this constraint. If two packages have the same priority, APT installs the newest one (whose version number is the highest). If two packages of same version have the same priority but differ in their content, APT installs the version that is not installed (this rule has been created to cover the case of a package update without the increment of the revision number, which is usually required)."
msgid "APT will never install an older version of a package (that is, a package whose version number is lower than the one of the currently installed package) except if its priority is higher than 1000 (or it is explicitely requested by the user, see <xref linkend=\"sect.apt.install\" />). APT will always install the highest priority package which follows this constraint. If two packages have the same priority, APT installs the newest one (whose version number is the highest). If two packages of same version have the same priority but differ in their content, APT installs the version that is not installed (this rule has been created to cover the case of a package update without the increment of the revision number, which is usually required)."
msgstr "APT vil aldri installere en eldre distribusjon av en pakke (som er en pakke med et versjonsnummer som er lavere enn det som den allerede installerte pakken har), unntatt hvis prioriteten dens er over 1000. APT vil alltid installere pakken med høyeste prioritet som følger denne begrensningen. Hvis to pakker har samme prioritet, installerer APT den nyeste (hvis versjonsnummer er høyest). Hvis to pakker av samme versjon har samme prioritet, men varierer i innhold, installerer APT versjonen som ikke er installert (denne regelen har blitt opprettet for å dekke tilfelle av en pakkeoppdatering uten økning av revisjonsnummeret, noe som vanligvis er nødvendig)."

msgid "In more concrete terms, a package whose priority is"
msgstr ""

msgid "&lt; 0"
msgstr ""

msgid "will never be installed,"
msgstr ""

msgid "1..99"
msgstr ""

msgid "will only be installed if no other version of the package is already installed,"
msgstr ""

msgid "100..499"
msgstr ""

msgid "will only be installed if there is no other newer version installed or available in another distribution,"
msgstr ""

msgid "500....989"
msgstr ""

msgid "will only be installed if there is no newer version installed or available in the target distribution,"
msgstr ""

msgid "990..1000"
msgstr ""

msgid "will be installed except if the installed version is newer,"
msgstr ""

msgid "&gt; 1000"
msgstr ""

msgid "will always be installed, even if it forces APT to downgrade to an older version."
msgstr ""

#, fuzzy
#| msgid "When APT checks <filename>/etc/apt/preferences</filename>, it first takes into account the most specific entries (often those specifying the concerned package), then the more generic ones (including for example all the packages of a distribution). If several generic entries exist, the first match is used. The available selection criteria include the package's name and the source providing it. Every package source is identified by the information contained in a <filename>Release</filename> file that APT downloads together with the <filename>Packages</filename> files. It specifies the origin (usually “Debian” for the packages of official mirrors, but it can also be a person's or an organization's name for third-party repositories). It also gives the name of the distribution (usually <emphasis role=\"distribution\">Stable</emphasis>, <emphasis role=\"distribution\">Testing</emphasis>, <emphasis role=\"distribution\">Unstable</emphasis> or <emphasis role=\"distribution\">Experimental</emphasis> for the standard distributions provided by Debian) together with its version (for example 8 for Debian <emphasis role=\"distribution\">Jessie</emphasis>). Let's have a look at its syntax through some realistic case studies of this mechanism."
msgid "When APT checks <filename>/etc/apt/preferences</filename> and <filename>/etc/apt/preferences.d/</filename>, it first takes into account the most specific entries (often those specifying the concerned package), then the more generic ones (including, for example, all the packages of a distribution). If several generic entries exist, the first match is used. The available selection criteria include the package's name and the source providing it. Every package source is identified by the information contained in a <filename>Release</filename> file that APT downloads together with the <filename>Packages</filename> files. It specifies the origin (usually “Debian” for the packages of official mirrors, but it can also be a person's or an organization's name for third-party repositories). It also gives the name of the distribution (usually <emphasis role=\"distribution\">Stable</emphasis>, <emphasis role=\"distribution\">Testing</emphasis>, <emphasis role=\"distribution\">Unstable</emphasis> or <emphasis role=\"distribution\">Experimental</emphasis> for the standard distributions provided by Debian) together with its version (for example, 10 for Debian <emphasis role=\"distribution\">Buster</emphasis>). Let's have a look at its syntax through some realistic case studies of this mechanism."
msgstr "Når APT sjekker <filename>/etc/apt/preferences</filename>, tar den først hensyn til de bestemte oppføringer (ofte de som spesifiserer den aktuelle pakken), deretter de mer generiske (inkludert for eksempel alle pakkene i en distribusjon). Hvis flere generiske oppføringer finnes, brukes det første treffet. De tilgjengelige utvalgskriteriene inkluderer pakkens navn og kilden den kommer fra. Hver pakkekilde identifiseres av informasjonen i <filename>Release</filename>-filen som APT laster ned sammen med <filename>Packages</filename>-filene. Den angir opprinnelsen (vanligvis «Debian» for pakker fra offisielle speil, men det kan også være en persons eller en organisasjons navn for tredjeparts kodelagre). Den gir også navnet på distribusjonen (vanligvis <emphasis role=\"distribution\">Stable</emphasis>, <emphasis role=\"distribution\">Testing</emphasis>, <emphasis role=\"distribution\">Unstable</emphasis>, eller <emphasis role=\"distribution\">Experimental</emphasis> for standard distribusjoner levert av Debian) sammen med versjonen (for eksempel 8 for Debian <emphasis role=\"distribution\">Jessie</emphasis>). La oss se på syntaksen i noen realistiske casestudier med denne mekanismen."

msgid "<emphasis>SPECIFIC CASE</emphasis> Priority of <emphasis role=\"distribution\">experimental</emphasis>"
msgstr "<emphasis>KONKRET SAK</emphasis> Prioritering av <emphasis role=\"distribution\">experimental</emphasis>"

msgid "<primary><emphasis role=\"distribution\">Experimental</emphasis></primary>"
msgstr "<primary><emphasis role=\"distribution\">Experimental</emphasis></primary>"

msgid "If you listed <emphasis role=\"distribution\">Experimental</emphasis> in your <filename>sources.list</filename> file, the corresponding packages will almost never be installed because their default APT priority is 1. This is of course a specific case, designed to keep users from installing <emphasis role=\"distribution\">Experimental</emphasis> packages by mistake. The packages can only be installed by typing <command>aptitude install <replaceable>package</replaceable>/experimental</command> — users typing this command can only be aware of the risks that they take. It is still possible (though <emphasis>not</emphasis> recommended) to treat packages of <emphasis role=\"distribution\">Experimental</emphasis> like those of other distributions by giving them a priority of 500. This is done with a specific entry in <filename>/etc/apt/preferences</filename>:"
msgstr "Hvis du listet <emphasis role=\"distribution\">Experimental</emphasis> i din <filename>sources.list</filename>-fil, vil de tilsvarende pakker nesten aldri bli installert fordi prioritert standard APT er 1. Dette er selvfølgelig et eget tilfelle, designet for å holde brukerne fra feilaktig å installere <emphasis role=\"distribution\">Experimental</emphasis>-pakker. Pakkene kan bare bli installert ved å skrive <command>aptitude install <replaceable>pakke</replaceable>/experimental</command> - Brukere som skriver denne kommandoen må bare være klar over risikoene de tar. Det er fremdeles mulig (selv om det <emphasis>ikke</emphasis> er anbefalt) å behandle pakker i <emphasis role=\"distribution\">Experimental</emphasis> på samme måte som de i andre distribusjoner ved å gi dem en prioritering på 500. Dette gjøres med en egen oppføring i <filename>/etc/apt/preferences</filename>:"

msgid ""
"Package: *\n"
"Pin: release a=experimental\n"
"Pin-Priority: 500"
msgstr ""
"Package: *\n"
"Pin: release a=experimental\n"
"Pin-Priority: 500"

msgid "Let's suppose that you only want to use packages from the stable version of Debian. Those provided in other versions should not be installed except if explicitly requested. You could write the following entries in the <filename>/etc/apt/preferences</filename> file:"
msgstr "La oss anta at du bare vil bruke pakker fra den stabile versjonen av Debian. De som leveres i andre versjoner bør ikke installeres med mindre det eksplisitt blir bedt om det. Du kan skrive inn følgende i <filename>/etc/apt/preferences</filename>-filen:"

msgid ""
"Package: *\n"
"Pin: release a=stable\n"
"Pin-Priority: 900\n"
"\n"
"Package: *\n"
"Pin: release o=Debian\n"
"Pin-Priority: -10"
msgstr ""
"Package: *\n"
"Pin: release a=stable\n"
"Pin-Priority: 900\n"
"\n"
"Package: *\n"
"Pin: release o=Debian\n"
"Pin-Priority: -10"

msgid "<literal>a=stable</literal> defines the name of the selected distribution. <literal>o=Debian</literal> limits the scope to packages whose origin is “Debian”."
msgstr "<literal>a=stable</literal> definerer navnet på den valgte distribusjonen. <literal>o=Debian</literal> begrenser utvalget til pakker som kommer fra «Debian»."

#, fuzzy
#| msgid "Let's now assume that you have a server with several local programs depending on the version 5.14 of Perl and that you want to ensure that upgrades will not install another version of it. You could use this entry:"
msgid "Let's now assume that you have a server with several local programs depending on the version 5.24 of Perl and that you want to ensure that upgrades will not install another version of it. You could use this entry:"
msgstr "La oss nå anta at du har en tjener med flere lokale programmer som støtter seg på versjon 5.14 av Perl, og at du ønsker å sikre at oppgraderinger ikke vil installere en annen versjon av den. Da kan du skrive inn det følgende:"

#, fuzzy
#| msgid ""
#| "Package: perl\n"
#| "Pin: version 5.14*\n"
#| "Pin-Priority: 1001"
msgid ""
"Package: perl\n"
"Pin: version 5.24*\n"
"Pin-Priority: 1001"
msgstr ""
"Package: perl\n"
"Pin: version 5.14*\n"
"Pin-Priority: 1001"

#, fuzzy
#| msgid "To gain a better understanding of the mechanism of priority, do not hesitate to execute <command>apt-cache policy</command> to display the default priority associated with each package source. You can also use <command>apt-cache policy <replaceable>package</replaceable></command> to display the priorities of all available versions of a given package."
msgid "To gain a better understanding of the mechanisms of priority and distribution or repository properties to pin do not hesitate to execute <command>apt-cache policy</command> to display the default priority associated with each package source, or <command>apt-cache policy <replaceable>package</replaceable></command> to display the default priority for each available version and source of a package as explained in <xref linkend=\"sidebar.apt-cache-policy\" />."
msgstr "For å få en bedre forståelse av prioritetsmekanismen nøl ikke med å kjøre <command>apt-cache policy</command> for å vise standardprioriteten for hver pakkekilde. Du kan også bruke <command>apt-cache policy <replaceable>pakke</replaceable></command> for å vise prioriteringen for alle tilgjengelige versjoner av en gitt pakke."

#, fuzzy
#| msgid "The reference documentation for this configuration file is available in the manual page <citerefentry><refentrytitle>apt_preferences</refentrytitle><manvolnum>5</manvolnum></citerefentry>, which you can display with <command>man apt_preferences</command>."
msgid "The reference documentation for the files <filename>/etc/apt/preferences</filename> and <filename>/etc/apt/preferences.d/</filename> is available in the manual page <citerefentry><refentrytitle>apt_preferences</refentrytitle><manvolnum>5</manvolnum></citerefentry>, which you can display with <command>man apt_preferences</command>."
msgstr "Referansedokumentasjonen for denne oppsettsfilen er tilgjengelig på manualsiden <citerefentry><refentrytitle>apt_preferences</refentrytitle><manvolnum>5</manvolnum></citerefentry>, som du kan vise med <command>man apt_preferences</command>."

msgid "<emphasis>TIP</emphasis> Comments in <filename>/etc/apt/preferences</filename>"
msgstr "<emphasis>TIPS</emphasis> Kommentarer i <filename>/etc/apt/preferences</filename>"

msgid "<primary><literal>Explanation</literal></primary>"
msgstr "<primary><literal>Explanation</literal></primary>"

msgid "<primary><literal>Pin</literal></primary>"
msgstr "<primary><literal>Pin</literal></primary>"

msgid "<primary><literal>Pin-Priority</literal></primary>"
msgstr "<primary><literal>Pin-Priority</literal></primary>"

msgid "There is no official syntax to put comments in the <filename>/etc/apt/preferences</filename> file, but some textual descriptions can be provided by putting one or more “<literal>Explanation</literal>” fields at the start of each entry:"
msgstr "Det er ingen offisiell syntaks for å sette kommentarer i <filename>/etc/apt/preferences</filename>-filen, men enkelte tekstbeskrivelser kan ordnes ved å sette en eller flere «<literal>Explanation</literal>»-felter ved starten av hver oppføring:"

msgid ""
"Explanation: The package xserver-xorg-video-intel provided\n"
"Explanation: in experimental can be used safely\n"
"Package: xserver-xorg-video-intel\n"
"Pin: release a=experimental\n"
"Pin-Priority: 500"
msgstr ""
"Explanation: Pakken xserver-xorg-video-intel tilgjengelig fra\n"
"Explanation: experimental kan trygt brukes\n"
"Package: xserver-xorg-video-intel\n"
"Pin: release a=experimental\n"
"Pin-Priority: 500"

msgid "Working with Several Distributions"
msgstr "Å arbeide med flere distribusjoner"

msgid "<command>apt</command> being such a marvelous tool, it is tempting to pick packages coming from other distributions. For example, after having installed a <emphasis role=\"distribution\">Stable</emphasis> system, you might want to try out a software package available in <emphasis role=\"distribution\">Testing</emphasis> or <emphasis role=\"distribution\">Unstable</emphasis> without diverging too much from the system's initial state."
msgstr "Når <command>apt</command> er et så fantastisk verktøy, er det fristende å plukke pakker som kommer fra andre distribusjoner. For eksempel, etter å ha installert et <emphasis role=\"distribution\">Stable</emphasis>-system, ønsker du kanskje å prøve ut en programvarepakke som finnes i <emphasis role=\"distribution\">Testing</emphasis>, eller <emphasis role=\"distribution\">Unstable</emphasis> uten å avvike for mye fra systemets opprinnelige tilstand."

msgid "Even if you will occasionally encounter problems while mixing packages from different distributions, <command>apt</command> manages such coexistence very well and limits risks very effectively. The best way to proceed is to list all distributions used in <filename>/etc/apt/sources.list</filename> (some people always put the three distributions, but remember that <emphasis role=\"distribution\">Unstable</emphasis> is reserved for experienced users) and to define your reference distribution with the <literal>APT::Default-Release</literal> parameter (see <xref linkend=\"sect.apt-upgrade\" />)."
msgstr "Selv om du noen ganger vil støte på problemer mens du mikser pakker fra forskjellige distribusjoner, håndterer <command>apt</command> slik sameksistens veldig godt, og begrenser risiko svært effektivt. Den beste måten for å fortsette er å liste opp alle distribusjoner som brukes i <filename>/etc/apt/sources.list</filename> (noen vil alltid sette inn de tre distribusjonene, men husk at <emphasis role=\"distribution\">Unstable</emphasis> er reservert for erfarne brukere), og for å definere din referansedistribusjon med <literal>APT::Default-Release</literal>-parameter (se <xref linkend=\"sect.apt-upgrade\" />)."

msgid "Let's suppose that <emphasis role=\"distribution\">Stable</emphasis> is your reference distribution but that <emphasis role=\"distribution\">Testing</emphasis> and <emphasis role=\"distribution\">Unstable</emphasis> are also listed in your <filename>sources.list</filename> file. In this case, you can use <command>apt install <replaceable>package</replaceable>/testing</command> to install a package from <emphasis role=\"distribution\">Testing</emphasis>. If the installation fails due to some unsatisfiable dependencies, let it solve those dependencies within <emphasis role=\"distribution\">Testing</emphasis> by adding the <literal>-t testing</literal> parameter. The same obviously applies to <emphasis role=\"distribution\">Unstable</emphasis>."
msgstr "La oss anta at <emphasis role=\"distribution\">Stable</emphasis> er din referansedistribusjon med at <emphasis role=\"distribution\">Testing</emphasis> og <emphasis role=\"distribution\">Unstable</emphasis> også er listet i din <filename>sources.list</filename>-fil. I dette tilfellet kan du bruke <command>apt install <replaceable>pakke</replaceable>/testing</command> til å installere en pakke fra <emphasis role=\"distribution\">Testing</emphasis>. Hvis installasjonen mislykkes på grunn av noen ikke-tilfredsstilte avhengigheter, la den løse disse avhengighetene innenfor <emphasis role=\"distribution\">Testing</emphasis> ved å legge til <literal>-t testing</literal>-parameteret. Det samme gjelder selvsagt <emphasis role=\"distribution\">Unstable</emphasis>."

msgid "In this situation, upgrades (<command>upgrade</command> and <command>full-upgrade</command>) are done within <emphasis role=\"distribution\">Stable</emphasis> except for packages already upgraded to another distribution: those will follow updates available in the other distributions. We will explain this behavior with the help of the default priorities set by APT below. Do not hesitate to use <command>apt-cache policy</command> (see sidebar <xref linkend=\"sidebar.apt-cache-policy\" />) to verify the given priorities."
msgstr "I denne situasjonen blir oppgraderingene (<command>upgrade</command> og <command>full-upgrade</command>) gjort innenfor <emphasis role=\"distribution\">Stable</emphasis>, bortsett fra for pakker som allerede er oppgradert til en annen distribusjon: De vil følge oppdateringene som er tilgjengelige i andre distribusjoner. Vi forklarer denne virkemåten ved hjelp av standardprioriteringene satt av APT nedenfor. Ikke nøl med å bruke <command>apt-cache policy</command> (se sidefelt <xref linkend=\"sidebar.apt-cache-policy\" />) for å verifisere de gitte prioriteringene."

msgid "Everything centers around the fact that APT only considers packages of higher or equal version than the installed one (assuming that <filename>/etc/apt/preferences</filename> has not been used to force priorities higher than 1000 for some packages)."
msgstr "Alt er basert på det faktum at APT bare vurderer pakker med høyere eller lik versjon enn den installerte (forutsatt at <filename>/etc/apt/preferences</filename> ikke har vært brukt til å tvinge prioriteter høyere enn 1000 for noen pakker)."

msgid "Let's assume that you have installed version 1 of a first package from <emphasis role=\"distribution\">Stable</emphasis> and that version 2 and 3 are available respectively in <emphasis role=\"distribution\">Testing</emphasis> and <emphasis role=\"distribution\">Unstable</emphasis>. The installed version has a priority of 100 but the version available in <emphasis role=\"distribution\">Stable</emphasis> (the very same) has a priority of 990 (because it is part of the target release). Packages in <emphasis role=\"distribution\">Testing</emphasis> and <emphasis role=\"distribution\">Unstable</emphasis> have a priority of 500 (the default priority of a non-installed version). The winner is thus version 1 with a priority of 990. The package “stays in <emphasis role=\"distribution\">Stable</emphasis>”."
msgstr "La oss anta at du har installert versjon 1 av en første pakke fra <emphasis role=\"distribution\">Stable</emphasis>, og at versjon 2 og 3 respektivt er tilgjengelig i <emphasis role=\"distribution\">Testing</emphasis> og <emphasis role=\"distribution\">Unstable</emphasis>. Den installerte versjonen har en prioritet på 100 mens versjonen som ligger i <emphasis role=\"distribution\">Stable</emphasis> (akkurat den samme) har en prioritet på 990 (fordi den er en del av målet utgivelse (target release)). Pakker i <emphasis role=\"distribution\">Testing</emphasis>, og <emphasis role=\"distribution\">Unstable</emphasis> har en prioritet på 500 (standardprioriteten til en ikke-installert versjon). Vinneren er da versjon 1 med en prioritet på 990. Pakken «står i <emphasis role=\"distribution\">Stable</emphasis>»."

#, fuzzy
#| msgid "Let's take the example of another package whose version 2 has been installed from <emphasis role=\"distribution\">Testing</emphasis>. Version 1 is available in <emphasis role=\"distribution\">Stable</emphasis> and version 3 in <emphasis role=\"distribution\">Unstable</emphasis>. Version 1 (of priority 990 — thus lower than 1000) is discarded because it is lower than the installed version. This only leaves version 2 and 3, both of priority 500. Faced with this alternative, APT selects the newest version, the one from <emphasis role=\"distribution\">Unstable</emphasis>.If you don't want a package installed from <emphasis role=\"distribution\">Testing</emphasis> to migrate to <emphasis role=\"distribution\">Unstable</emphasis>, you have to assign a priority lower than 500 (490 for example) to packages coming from <emphasis role=\"distribution\">Unstable</emphasis>. You can modify <filename>/etc/apt/preferences</filename> to this effect:"
msgid "Let's take the example of another package whose version 2 has been installed from <emphasis role=\"distribution\">Testing</emphasis>. Version 1 is available in <emphasis role=\"distribution\">Stable</emphasis> and version 3 in <emphasis role=\"distribution\">Unstable</emphasis>. Version 1 (of priority 990 — thus lower than 1000) is discarded because it is lower than the installed version. This only leaves version 2 and 3, both of priority 500. Faced with this alternative, APT selects the newest version, the one from <emphasis role=\"distribution\">Unstable</emphasis>. If you don't want a package installed from <emphasis role=\"distribution\">Testing</emphasis> to migrate to <emphasis role=\"distribution\">Unstable</emphasis>, you have to assign a priority lower than 500 (490 for example) to packages coming from <emphasis role=\"distribution\">Unstable</emphasis>. You can modify <filename>/etc/apt/preferences</filename> to this effect:"
msgstr "La oss ta et eksempel fra en annen pakke som versjon 2 er installert fra <emphasis role=\"distribution\">Testing</emphasis>. Version 1 er tilgjengelig i <emphasis role=\"distribution\">Stable</emphasis>, og versjon 3 i <emphasis role=\"distribution\">Unstable</emphasis>. Versjon 1 (med prioritet 990 - altså lavere enn 1000) forkastes fordi det er lavere enn den installerte versjonen. Bare versjon 2 og 3 står igjen, begge med prioritet 500. Konfrontert med dette alternativet, velger APT den nyeste versjonen, den ene fra <emphasis role=\"distribution\">Unstable</emphasis>. Hvis du ikke ønsker en pakke installert fra <emphasis role=\"distribution\">Testing</emphasis> til å flytte til <emphasis role=\"distribution\">Unstable</emphasis>, må du tildele en prioritet lavere enn 500 (490 for eksempel) til pakker som kommer fra <emphasis role=\"distribution\">Unstable</emphasis>. Du kan endre <filename>/etc/apt/preferences</filename> med denne effekten:"

msgid ""
"Package: *\n"
"Pin: release a=unstable\n"
"Pin-Priority: 490"
msgstr ""
"Package: *\n"
"Pin: release a=unstable\n"
"Pin-Priority: 490"

msgid "Tracking Automatically Installed Packages"
msgstr "Å finne installerte pakker automatisk"

#, fuzzy
#| msgid "One of the essential functionalities of <command>apt</command> is the tracking of packages installed only through dependencies. These packages are called “automatic”, and often include libraries for instance."
msgid "One of the essential functionalities of <command>apt</command> is the tracking of packages installed only through dependencies. These packages are called “automatic”, and often include libraries."
msgstr "En av de svært viktige funksjonene i <command>apt</command> er sporing av pakker som bare er installert ved avhengigheter. Disse pakkene kalles «automatiske», og inkluderer for eksempel ofte biblioteker."

#, fuzzy
#| msgid "<primary><command>apt remove</command></primary>"
msgid "<primary><command>apt autoremove</command></primary>"
msgstr "<primary><command>apt remove</command></primary>"

#, fuzzy
#| msgid "<primary><command>apt-get remove</command></primary>"
msgid "<primary><command>apt-get autoremove</command></primary>"
msgstr "<primary><command>apt-get remove</command></primary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary>interfaces</secondary>"
msgid "<primary>APT</primary><secondary>automatic removal</secondary>"
msgstr "<primary>APT</primary><secondary>grensesnitt</secondary>"

#, fuzzy
#| msgid "<primary>package</primary><secondary>removal</secondary>"
msgid "<primary>package</primary><secondary>automatic removal</secondary>"
msgstr "<primary>pakke</primary><secondary>fjerne</secondary>"

#, fuzzy
#| msgid "With this information, when packages are removed, the package managers can compute a list of automatic packages that are no longer needed (because there is no “manually installed” packages depending on them). <command>apt-get autoremove</command> will get rid of those packages. <command>aptitude</command> and <command>apt</command> do not have this command: the former because it removes them automatically as soon as they are identified, and the latter probably because the user should not have to manually run such a command. In all cases, the tools display a clear message listing the affected packages."
msgid "With this information, when packages are removed, the package managers can compute a list of automatic packages that are no longer needed (because there is no “manually installed” packages depending on them). <command>apt-get autoremove</command> or <command>apt autoremove</command> will get rid of those packages. <command>aptitude</command> does not have this command because it removes them automatically as soon as they are identified. In all cases, the tools display a clear message listing the affected packages."
msgstr "Med denne informasjonen, når pakker er fjernet, kan pakkebehandlerne lage en liste over automatiske pakker som ikke lenger trengs (fordi det ikke er noen «manuelt installerte» pakker som er avhengig av dem). <command>apt-get autoremove</command> vil kvitte seg med disse pakkene. <command>aptitude</command> og  <command>apt</command> har ikke denne kommandoen: Den første  fordi den fjerner dem automatisk så snart de er identifisert, og sistnevnte trolig fordi brukeren ikke skal måtte kjøre en slik kommando manuelt. I alle tilfelle, verktøyene viser en klar melding som lister de berørte pakkene."

msgid "<primary><command>apt-mark auto</command></primary>"
msgstr "<primary><command>apt-mark auto</command></primary>"

msgid "<primary><command>apt-mark manual</command></primary>"
msgstr "<primary><command>apt-mark manual</command></primary>"

msgid "<primary><command>aptitude markauto</command></primary>"
msgstr "<primary><command>aptitude markauto</command></primary>"

msgid "<primary><command>aptitude unmarkauto</command></primary>"
msgstr "<primary><command>aptitude unmarkauto</command></primary>"

msgid "It is a good habit to mark as automatic any package that you don't need directly so that they are automatically removed when they aren't necessary anymore. <command>apt-mark auto <replaceable>package</replaceable></command> will mark the given package as automatic whereas <command>apt-mark manual <replaceable>package</replaceable></command> does the opposite. <command>aptitude markauto</command> and <command>aptitude unmarkauto</command> work in the same way although they offer more features for marking many packages at once (see <xref linkend=\"sect.aptitude\" />). The console-based interactive interface of <command>aptitude</command> also makes it easy to review the “automatic flag” on many packages."
msgstr "Det er en god vane å merke som automatisk, pakker som du ikke trenger direkte, slik at de fjernes automatisk når de ikke lenger er nødvendige. <command>apt-mark auto <replaceable>pakke</replaceable></command> vil merke en gitt pakke som automatisk, mens <command>apt-mark manual <replaceable>pakke</replaceable></command> gjør det motsatte. <command>aptitude markauto</command> og <command>aptitude unmarkauto</command> virker på samme måte selv om de tilbyr flere funksjoner for å merke mange pakker på en gang (se <xref linkend=\"sect.aptitude\" />). Det konsollbaserte brukergrensesnittet til <command>aptitude</command> gjør det også enkelt å gå i gjennom «automatisk»-flagget hos mange pakker."

msgid "<primary><command>aptitude why</command></primary>"
msgstr "<primary><command>aptitude why</command></primary>"

msgid "People might want to know why an automatically installed package is present on the system. To get this information from the command line, you can use <command>aptitude why <replaceable>package</replaceable></command> (<command>apt</command> and <command>apt-get</command> have no similar feature):"
msgstr "Folk vil kanskje vite hvorfor en automatisk installert pakke er til stede på systemet. For å få denne informasjonen fra kommandolinjen kan du bruke <command>aptitude why <replaceable>pakke</replaceable></command> (<command>apt</command> og <command>apt-get</command> har ingen tilsvarende funksjon):"

#, fuzzy
#| msgid ""
#| "<computeroutput>$ </computeroutput><userinput>aptitude why python-debian\n"
#| "</userinput><computeroutput>i   aptitude         Recommends apt-xapian-index         \n"
#| "i A apt-xapian-index Depends    python-debian (&gt;= 0.1.15)\n"
#| "</computeroutput>"
msgid ""
"<computeroutput>$ </computeroutput><userinput>aptitude why python-debian\n"
"</userinput><computeroutput>i   aptitude         Suggests apt-xapian-index\n"
"p   apt-xapian-index Depends  python-debian (&gt;= 0.1.14)\n"
"</computeroutput>"
msgstr ""
"<computeroutput>$ </computeroutput><userinput>aptitude why python-debian\n"
"</userinput><computeroutput>i   aptitude         Recommends apt-xapian-index         \n"
"i A apt-xapian-index Depends    python-debian (&gt;= 0.1.15)\n"
"</computeroutput>"

msgid "<emphasis>ALTERNATIVE</emphasis> <command>deborphan</command> and <command>debfoster</command>"
msgstr "<emphasis>ALTERNATIV</emphasis> <command>deborphan</command> og <command>debfoster</command>"

msgid "<primary><command>deborphan</command></primary>"
msgstr "<primary><command>deborphan</command></primary>"

msgid "<primary><command>debfoster</command></primary>"
msgstr "<primary><command>debfoster</command></primary>"

#, fuzzy
#| msgid "In days where <command>apt</command>, <command>apt-get</command> and <command>aptitude</command> were not able to track automatic packages, there were two utilities producing lists of unnecessary packages: <command>deborphan</command> and <command>debfoster</command>."
msgid "In days where <command>apt</command>, <command>apt-get</command> and <command>aptitude</command> were not able to track automatic packages, there were two utilities producing lists of unnecessary packages: <command>deborphan</command> and <command>debfoster</command>. Both can still be useful."
msgstr "Da det ikke var mulig for <command>apt</command>, <command>apt-get</command> og <command>aptitude</command> å spore automatiske pakker, var det to verktøy som produserte lister over unødvendige pakker: <command>deborphan</command> og <command>debfoster</command>."

#, fuzzy
#| msgid "<command>deborphan</command> is the most rudimentary of both. It simply scans the <literal>libs</literal> and <literal>oldlibs</literal> sections (in the absence of supplementary instructions) looking for the packages that are currently installed and that no other package depends on. The resulting list can then serve as a basis to remove unneeded packages."
msgid "<command>deborphan</command> scans the <literal>libs</literal> and <literal>oldlibs</literal> sections (in the absence of supplementary instructions) by default looking for the packages that are currently installed and that no other package depends on. The resulting list can then serve as a basis to remove unneeded packages."
msgstr "<command>deborphan</command> er det mest elementære av begge. Den skanner rett og slett <literal>libs</literal> og <literal>oldlibs</literal>-seksjonene (i fravær av tilleggsveiledninger) på jakt etter installerte pakker som ingen andre pakke er avhengig av. Den resulterende listen kan da tjene som grunnlag for å fjerne unødvendige pakker."

msgid "<command>debfoster</command> has a more elaborate approach, very similar to APT's one: it maintains a list of packages that have been explicitly installed, and remembers what packages are really required between each invocation. If new packages appear on the system and if <command>debfoster</command> doesn't know them as required packages, they will be shown on the screen together with a list of their dependencies. The program then offers a choice: remove the package (possibly together with those that depend on it), mark it as explicitly required, or ignore it temporarily."
msgstr "<command>debfoster</command> har en mer forseggjort tilnærming, svært lik APTs: Den opprettholder en liste med pakker som helt eksplisitt er installert, og husker hvilke pakker som er virkelig nødvendig mellom hvert kall. Hvis nye pakker vises på systemet, og hvis <command>debfoster</command> ikke kjenner dem som nødvendige pakker, vil de bli vist på skjermen sammen med en liste over avhengighetene sine. Programmet tilbyr deretter et valg: Fjern pakken (eventuelt sammen med dem som er avhengige av den), merk den som eksplisitt nødvendig, eller ignorer den midlertidig."

msgid "The <command>apt-cache</command> Command"
msgstr "Kommandoen <command>apt-cache</command>"

msgid "<primary><command>apt-cache</command></primary>"
msgstr "<primary><command>apt-cache</command></primary>"

msgid "<primary>APT</primary><secondary>package search</secondary>"
msgstr "<primary>APT</primary><secondary>pakkesøk</secondary>"

msgid "<primary>APT</primary><secondary>header display</secondary>"
msgstr "<primary>APT</primary><secondary>vise overskrifter</secondary>"

msgid "<primary>search of packages</primary>"
msgstr "<primary>søke etter pakker</primary>"

msgid "<primary>package</primary><secondary>search</secondary>"
msgstr "<primary>pakke</primary><secondary>søke</secondary>"

msgid "The <command>apt-cache</command> command can display much of the information stored in APT's internal database. This information is a sort of cache since it is gathered from the different sources listed in the <filename>sources.list</filename> file. This happens during the <command>apt update</command> operation."
msgstr "<command>apt-cache</command>-kommandoen kan vise mye av den informasjonen som er lagret i APTs interne database. Denne informasjonen er en slags buffer siden den er samlet inn fra ulike kilder oppført i<filename>sources.list</filename>-filen. Dette skjer under <command>apt update</command>-operasjonen."

msgid "<emphasis>VOCABULARY</emphasis> Cache"
msgstr "<emphasis>ORDFORRÅD</emphasis> Cache"

#, fuzzy
#| msgid "<primary>proxy cache</primary>"
msgid "<primary>cache</primary>"
msgstr "<primary>mellomtjener lager</primary>"

msgid "A cache is a temporary storage system used to speed up frequent data access when the usual access method is expensive (performance-wise). This concept can be applied in numerous situations and at different scales, from the core of microprocessors up to high-end storage systems."
msgstr "Et hurtiglager er en midlertidig lagringsplass som brukes til å øke hastigheten ved hyppig datatilgang når den vanlige tilgangsmetoden er dyr (ytelsesmessig). Dette konseptet kan brukes i en rekke situasjoner og i ulik skala, fra kjernen med mikroprosessorer opp til avanserte lagringssystemer."

msgid "In the case of APT, the reference <filename>Packages</filename> files are those located on Debian mirrors. That said, it would be very ineffective to go through the network for every search that we might want to do in the database of available packages. That is why APT stores a copy of those files (in <filename>/var/lib/apt/lists/</filename>) and searches are done within those local files. Similarly, <filename>/var/cache/apt/archives/</filename> contains a cache of already downloaded packages to avoid downloading them again if you need to reinstall them after a removal."
msgstr "Når det gjelder APT, befinner <filename>Packages</filename>-referansefilene seg på Debian-speilene. Når det er sagt, ville det være svært lite effektivt å laste dem ned over nettet for hvert søk som vi kanskje ønsker å gjøre i databasen med tilgjengelige pakker. Derfor lagrer APT en kopi av disse filene (i <filename>/var/lib/apt/lists/</filename>), og søkene gjøres i disse lokale filene. På samme måte inneholder <filename>/var/cache/apt/archives/</filename> et hurtiglager for allerede nedlastede pakker for å unngå å laste dem ned på nytt, hvis du må installere dem på nytt etter fjerning."

msgid "On the other hand, it is mandatory to run <command>apt update</command> regularly to update the cache. Otherwise your package search results will always miss the latest updates distributed by the Debian mirrors."
msgstr ""

msgid "<primary><command>apt show</command></primary>"
msgstr "<primary><command>apt show</command></primary>"

msgid "<primary><command>apt search</command></primary>"
msgstr "<primary><command>apt search</command></primary>"

msgid "<primary><command>apt-cache show</command></primary>"
msgstr "<primary><command>apt-cache show</command></primary>"

msgid "<primary><command>apt-cache search</command></primary>"
msgstr "<primary><command>apt-cache search</command></primary>"

msgid "<primary><command>aptitude show</command></primary>"
msgstr "<primary><command>aptitude show</command></primary>"

msgid "<primary><command>aptitude search</command></primary>"
msgstr "<primary><command>aptitude search</command></primary>"

msgid "The <command>apt-cache</command> command can do keyword-based package searches with <command>apt-cache search <replaceable>keyword</replaceable></command>. It can also display the headers of the package's available versions with <command>apt-cache show <replaceable>package</replaceable></command>. This command provides the package's description, its dependencies, the name of its maintainer, etc. Note that <command>apt search</command>, <command>apt show</command>, <command>aptitude search</command>, <command>aptitude show</command> work in the same way."
msgstr "<command>apt-cache</command>-kommandoen kan gjøre søkeordbaserte pakkesøk med <command>apt-cache search <replaceable>keyword</replaceable></command>. Den kan også vise topptekstene til tilgjengelige pakkeversjoner med <command>apt-cache show <replaceable>pakke</replaceable></command>. Denne kommandoen gir pakkens beskrivelse, avhengigheter, navnet på dens vedlikehold, etc. Merk at <command>apt search</command>, <command>apt show</command>, <command>aptitude search</command>, <command>aptitude show</command> virker på samme måte."

msgid "<emphasis>ALTERNATIVE</emphasis> <command>axi-cache</command>"
msgstr "<emphasis>ALTERNATIV</emphasis> <command>axi-cache</command>"

msgid "<primary><command>axi-cache</command></primary>"
msgstr "<primary><command>axi-cache</command></primary>"

msgid "<primary><emphasis role=\"pkg\">apt-xapian-index</emphasis></primary>"
msgstr "<primary><emphasis role=\"pkg\">apt-xapian-index</emphasis></primary>"

msgid "<command>apt-cache search</command> is a very rudimentary tool, basically implementing <command>grep</command> on package's descriptions. It often returns too many results or none at all when you include too many keywords."
msgstr "<command>apt-cache search</command> er et meget elementært verktøy, som egentlig implementerer <command>grep</command> til pakkens beskrivelser. Den returnerer ofte for mange resultater, eller ingen i det hele tatt når du har for mange søkeord."

#, fuzzy
#| msgid "<command>axi-cache search <replaceable>term</replaceable></command>, on the other hand, provides better results, sorted by relevancy. It uses the <emphasis>Xapian</emphasis> search engine and is part of the <emphasis role=\"pkg\">apt-xapian-index</emphasis> package whichs indexes all package information (and more, like the <filename>.desktop</filename> files from all Debian packages). It knows about tags (see sidebar <xref linkend=\"sidebar.debtags\" />) and returns results in a matter of milliseconds."
msgid "<command>axi-cache search <replaceable>term</replaceable></command>, on the other hand, provides better results, sorted by relevancy. It uses the <emphasis>Xapian</emphasis> search engine and is part of the <emphasis role=\"pkg\">apt-xapian-index</emphasis> package which indexes all package information (and more, like the <filename>.desktop</filename> files from all Debian packages). It knows about tags (see sidebar <xref linkend=\"sidebar.debtags\" />) and returns results in a matter of milliseconds."
msgstr "<command>axi-cache search <replaceable>begrep</replaceable></command>, på den annen side, gir bedre resultater, sortert etter relevans. Den bruker <emphasis>Xapian</emphasis> søkemotor og en del av <emphasis role=\"pkg\">apt-xapian-index</emphasis>-pakken som indekserer all pakkeinformasjon (og mer, som <filename>.desktop</filename>-filer fra alle Debian pakkene). Den kjenner til tagger (se sidefelt <xref linkend=\"sidebar.debtags\" />), og resultatene kommer på millisekunder."

#, fuzzy
#| msgid ""
#| "$ <userinput>axi-cache search package use::searching</userinput>\n"
#| "105 results found.\n"
#| "Results 1-20:\n"
#| "100% packagesearch - GUI for searching packages and viewing package information\n"
#| "98% debtags - Enables support for package tags\n"
#| "94% debian-goodies - Small toolbox-style utilities \n"
#| "93% dpkg-awk - Gawk script to parse /var/lib/dpkg/{status,available} and Packages\n"
#| "93% goplay - games (and more) package browser using DebTags\n"
#| "[...]\n"
#| "87% apt-xapian-index - maintenance and search tools for a Xapian index of Debian packages\n"
#| "[...]\n"
#| "More terms: search debian searching strigi debtags bsearch libbsearch\n"
#| "More tags: suite::debian works-with::software:package role::program interface::commandline implemented-in::c++ admin::package-management use::analysing\n"
#| "`axi-cache more' will give more results\n"
#| "      "
msgid ""
"$ <userinput>axi-cache search package use::searching</userinput>\n"
"<![CDATA[\n"
"100 results found.\n"
"Results 1-20:\n"
"100% packagesearch - GUI for searching packages and viewing package information\n"
"99% apt-utils - package management related utility programs\n"
"98% whohas - query multiple distributions' package archives\n"
"98% dpkg-awk - Gawk script to parse /var/lib/dpkg/{status,available} and Packages\n"
"97% apt-file - search for files within Debian packages (command-line interface)\n"
"[..]\n"
"90% wajig - unified package management front-end for Debian\n"
"More terms: debtags debian paket dpkg search pakete tools\n"
"More tags: role::program interface::commandline works-with::software:package suite::debian admin::package-management scope::utility network::client\n"
"`axi-cache more' will give more results\n"
"]]>"
msgstr ""
"$ <userinput>axi-cache search package use::searching</userinput>\n"
"105 results found.\n"
"Results 1-20:\n"
"100% packagesearch - GUI for searching packages and viewing package information\n"
"98% debtags - Enables support for package tags\n"
"94% debian-goodies - Small toolbox-style utilities \n"
"93% dpkg-awk - Gawk script to parse /var/lib/dpkg/{status,available} and Packages\n"
"93% goplay - games (and more) package browser using DebTags\n"
"[...]\n"
"87% apt-xapian-index - maintenance and search tools for a Xapian index of Debian packages\n"
"[...]\n"
"More terms: search debian searching strigi debtags bsearch libbsearch\n"
"More tags: suite::debian works-with::software:package role::program interface::commandline implemented-in::c++ admin::package-management use::analysing\n"
"`axi-cache more' will give more results\n"
"      "

msgid "<primary><command>apt-cache policy</command></primary>"
msgstr "<primary><command>apt-cache policy</command></primary>"

msgid "<primary><command>apt-cache dumpavail</command></primary>"
msgstr "<primary><command>apt-cache dumpavail</command></primary>"

msgid "<primary><command>apt-cache pkgnames</command></primary>"
msgstr "<primary><command>apt-cache pkgnames</command></primary>"

msgid "Some features are more rarely used. For instance, <command>apt-cache policy</command> displays the priorities of package sources as well as those of individual packages. Another example is <command>apt-cache dumpavail</command> which displays the headers of all available versions of all packages. <command>apt-cache pkgnames</command> displays the list of all the packages which appear at least once in the cache."
msgstr "Enkelte funksjoner brukes mer sjelden. For eksempel viser <command>apt-cache policy</command> prioriteringene av pakkekilder så vel som de individuelle pakkene. Et annet eksempel er <command>apt-cache dumpavail</command> som viser topptekstene til alle tilgjengelige versjoner av alle pakker. <command>apt-cache pkgnames</command> viser listen over alle de pakkene som vises minst én gang i hurtiglageret."

msgid "<emphasis>TIP</emphasis> <command>apt-cache policy</command>"
msgstr "<emphasis>TIPS</emphasis> <command>apt-cache policy</command>"

msgid "The <command>apt-cache policy</command> command displays the pinning priorities and distribution properties of each package source as explained in <xref linkend=\"sect.apt.priorities\" />. It can also show the pinning priorities for all available versions and sources of a package. For the <filename>sources.list</filename> example used in <xref linkend=\"example.stable-sources-list\" /> and <literal>APT::Default-Release</literal> set to <literal>\"buster\"</literal>, the output will look like this:"
msgstr ""

msgid ""
"<computeroutput>$ </computeroutput><userinput>apt-cache policy</userinput>\n"
"<computeroutput>Package files:\n"
" 100 /var/lib/dpkg/status\n"
"     release a=now\n"
" 100 https://deb.debian.org/debian buster-backports/contrib amd64 Packages\n"
"     release o=Debian Backports,a=buster-backports,n=buster-backports,l=Debian Backports,c=contrib,b=amd64\n"
"     origin deb.debian.org\n"
" 100 https://deb.debian.org/debian buster-backports/main amd64 Packages\n"
"     release o=Debian Backports,a=buster-backports,n=buster-backports,l=Debian Backports,c=main,b=amd64\n"
"     origin deb.debian.org\n"
" 990 https://deb.debian.org/debian buster/non-free amd64 Packages\n"
"     release v=10.0,o=Debian,a=stable,n=buster,l=Debian,c=non-free,b=amd64\n"
"     origin deb.debian.org\n"
" 990 https://deb.debian.org/debian buster/contrib amd64 Packages\n"
"     release v=10.0,o=Debian,a=stable,n=buster,l=Debian,c=contrib,b=amd64\n"
"     origin deb.debian.org\n"
" 990 https://deb.debian.org/debian buster/main amd64 Packages\n"
"     release v=10.0,o=Debian,a=stable,n=buster,l=Debian,c=main,b=amd64\n"
"     origin deb.debian.org\n"
" 990 http://security.debian.org buster/updates/main amd64 Packages\n"
"     release v=10,o=Debian,a=stable,n=buster,l=Debian-Security,c=main,b=amd64\n"
"     origin security.debian.org</computeroutput>"
msgstr ""

msgid "<command>apt-cache policy</command> can also show the pinning priorities for all available versions and sources of a given package."
msgstr ""

msgid ""
"<computeroutput>$ </computeroutput><userinput>apt-cache policy iptables</userinput>\n"
"<computeroutput>iptables:\n"
"  Installed: 1.8.2-4\n"
"  Candidate: 1.8.2-4\n"
"  Version table:\n"
"     1.8.3-2~bpo10+1 100\n"
"        100 https://deb.debian.org/debian buster-backports/main amd64 Packages\n"
" *** 1.8.2-4 990\n"
"        990 https://deb.debian.org/debian buster/main amd64 Packages\n"
"        100 /var/lib/dpkg/status</computeroutput>"
msgstr ""

msgid "Although there is a newer version of <emphasis role=\"pkg\">iptables</emphasis> in the <literal>buster-backports</literal> repository, APT will not install it automatically based on the priority. One would have to use <command>apt install iptables/buster-backports</command> or add a higher pinning priority to <filename>/etc/apt/preferences.d/iptables</filename>:"
msgstr ""

#, fuzzy
#| msgid ""
#| "Package: *\n"
#| "Pin: release a=unstable\n"
#| "Pin-Priority: 490"
msgid ""
"Package: iptables\n"
"Pin: release o=Debian Backports, a=buster-backports\n"
"Pin-Priority: 1001"
msgstr ""
"Package: *\n"
"Pin: release a=unstable\n"
"Pin-Priority: 490"

#, fuzzy
#| msgid "The <command>apt-cache</command> Command"
msgid "The <command>apt-file</command> Command"
msgstr "Kommandoen <command>apt-cache</command>"

#, fuzzy
#| msgid "<primary><command>apt-get</command></primary>"
msgid "<primary><command>apt-file</command></primary>"
msgstr "<primary><command>apt-get</command></primary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary>package search</secondary>"
msgid "<primary>APT</primary><secondary>file search</secondary>"
msgstr "<primary>APT</primary><secondary>pakkesøk</secondary>"

#, fuzzy
#| msgid "<primary>search of packages</primary>"
msgid "<primary>search of files</primary>"
msgstr "<primary>søke etter pakker</primary>"

#, fuzzy
#| msgid "<primary>package</primary><secondary>search</secondary>"
msgid "<primary>package</primary><secondary>search files</secondary>"
msgstr "<primary>pakke</primary><secondary>søke</secondary>"

msgid "Sometimes we refer to a file or a command and you might wonder, in which package it will be found. Fortunately the Debian repositories not only contain information about all the binary packages provided, but also all the files shipped with them. This information is stored in files named <filename>Contents-<replaceable>arch</replaceable>.gz</filename> and <filename>Contents-udeb-<replaceable>arch</replaceable>.gz</filename>. This information is not automatically downloaded by APT. Instead it needs the <command>apt-file update</command> command (from the similar named package) to retrieve the contents of all package sources mentioned in <filename>/etc/apt/sources.list</filename>. To update the database on a weekly base, the following entry can be added to <filename>/etc/crontab</filename> if convenient."
msgstr ""

msgid "<![CDATA[@weekly root test -x /usr/bin/apt-file && /usr/bin/apt-file update >> /dev/null 2>&1]]>"
msgstr ""

msgid "After the database has been updated, the command <command>apt-file search <replaceable>pattern</replaceable></command> will list all packages, which contain a filename or path containing the pattern."
msgstr ""

#, fuzzy
#| msgid "<computeroutput># </computeroutput><userinput>apt install spamassassin/unstable</userinput>"
msgid ""
"<computeroutput>$ </computeroutput><userinput>apt-file search bin/axi-cache</userinput>\n"
"apt-xapian-index: /usr/bin/axi-cache"
msgstr "<computeroutput># </computeroutput><userinput>apt install spamassassin/unstable</userinput>"

msgid "The command <command>apt-file list <replaceable>package</replaceable></command> will list all files shipped with the package instead."
msgstr ""

#, fuzzy
#| msgid "<emphasis>TIP</emphasis> Package naming conventions"
msgid "<emphasis>TIP</emphasis> Listing a package contents and finding a file's package"
msgstr "<emphasis>TIPS</emphasis> Konvensjoner for navngiving av pakker"

msgid "Similar to <command>apt-file list</command> the command <command>dpkg -L <replaceable>package</replaceable></command> lists all files, but only for an installed package. To find the package, a local file belongs to, use <command>dpkg -S <replaceable>file</replaceable></command> (see <xref linkend=\"sect.dpkg-list\" />). To list all local files not belonging to any installed package, you might want to take a look at the <emphasis role=\"pkg\">cruft</emphasis> or the <emphasis role=\"pkg\">cruft-ng</emphasis> package."
msgstr ""

msgid "Frontends: <command>aptitude</command>, <command>synaptic</command>"
msgstr "Brukergrensesnitt: <command>aptitude</command>, <command>synaptic</command>"

msgid "<primary><command>synaptic</command></primary>"
msgstr "<primary><command>synaptic</command></primary>"

msgid "<primary>APT</primary><secondary>interfaces</secondary>"
msgstr "<primary>APT</primary><secondary>grensesnitt</secondary>"

#, fuzzy
#| msgid "APT is a C++ program whose code mainly resides in the <command>libapt-pkg</command> shared library. Using a shared library facilitates the creation of user interfaces (front-ends), since the code contained in the library can easily be reused. Historically, <command>apt-get</command> was only designed as a test front-end for <command>libapt-pkg</command> but its success tends to obscure this fact."
msgid "APT is a C++ program whose code mainly resides in the <literal>libapt-pkg</literal> shared library. Using a shared library facilitates the creation of user interfaces (front-ends), since the code contained in the library can easily be reused. Historically, <command>apt-get</command> was only designed as a test front-end for <literal>libapt-pkg</literal> but its success tends to obscure this fact."
msgstr "APT er et C++-program med koden hovedsakelig liggende i det delte <command>libapt-pkg</command>-biblioteket. Å bruke et delt bibliotek gjør det mulig å lage brukergrensesnitt (front-end), ettersom koden som finnes i biblioteket lett kan gjenbrukes. Historisk ble <command>apt-get</command> bare laget som en test til et brukergrensesnitt for <command>libapt-pkg</command>, men suksessen tenderer til å overskygge dette faktum."

msgid "<command>aptitude</command>"
msgstr "<command>aptitude</command>"

msgid "<primary>APT</primary><secondary>interfaces</secondary><tertiary><command>aptitude</command></tertiary><see><command>aptitude</command></see>"
msgstr ""

#, fuzzy
#| msgid "<command>aptitude</command> is an interactive program that can be used in semi-graphical mode on the console. You can browse the list of installed and available packages, look up all the available information, and select packages to install or remove. The program is designed specifically to be used by administrators, so that its default behaviors are much more intelligent than <command>apt-get</command>'s, and its interface much easier to understand."
msgid "<command>aptitude</command> is an interactive program that can be used in semi-graphical mode on the console. You can browse the list of installed and available packages, look up all the available information, and select packages to install or remove. The program is designed specifically to be used by administrators, so that its default behaviors are designed to be much more intelligent than <command>apt-get</command>'s, and its interface much easier to understand."
msgstr "<command>aptitude</command> er et interaktivt program som kan brukes i semi-grafisk modus i konsollen. Du kan bla gjennom listen over installerte og tilgjengelige pakker, finne all tilgjengelig informasjon, og velge pakker til å installere eller fjerne. Programmet er spesielt utviklet for å brukes av administratorer, slik at standard atferd er mye mer intelligent enn <command>apt-get</command>, og dens grensesnitt mye lettere å forstå."

msgid "The <command>aptitude</command> package manager"
msgstr "Pakkebehandleren <command>aptitude</command>"

#, fuzzy
#| msgid "<primary><command>aptitude</command></primary>"
msgid "<primary><command>aptitude</command></primary><secondary>basic usage</secondary>"
msgstr "<primary><command>aptitude</command></primary>"

#, fuzzy
#| msgid "When it starts, <command>aptitude</command> shows a list of packages sorted by state (installed, non-installed, or installed but not available on the mirrors — other sections display tasks, virtual packages, and new packages that appeared recently on mirrors). To facilitate thematic browsing, other views are available. In all cases, <command>aptitude</command> displays a list combining categories and packages on the screen. Categories are organized through a tree structure, whose branches can respectively be unfolded or closed with the <keycombo><keycap>Enter</keycap></keycombo>, <keycombo><keycap>[</keycap></keycombo> and <keycombo><keycap>]</keycap></keycombo> keys. <keycombo><keycap>+</keycap></keycombo> should be used to mark a package for installation, <keycombo><keycap>-</keycap></keycombo> to mark it for removal and <keycombo><keycap>_</keycap></keycombo> to purge it (note than these keys can also be used for categories, in which case the corresponding actions will be applied to all the packages of the category). <keycombo><keycap>u</keycap></keycombo> updates the lists of available packages and <keycombo action=\"simul\"><keycap>Shift</keycap><keycap>u</keycap></keycombo> prepares a global system upgrade. <keycombo><keycap>g</keycap></keycombo> switches to a summary view of the requested changes (and typing <keycombo><keycap>g</keycap></keycombo> again will apply the changes), and <keycombo><keycap>q</keycap></keycombo> quits the current view. If you are in the initial view, this will effectively close <command>aptitude</command>."
msgid "When it starts, <command>aptitude</command> shows a list of packages sorted by state (installed, non-installed, or installed but not available on the mirrors — other sections display tasks, virtual packages, and new packages that appeared recently on mirrors). To facilitate thematic browsing, other views are available. In all cases, <command>aptitude</command> displays a list combining categories and packages on the screen. Categories are organized through a tree structure, whose branches can respectively be unfolded or closed with the <keycombo><keycap>Enter</keycap></keycombo>, <keycombo><keycap>[</keycap></keycombo> and <keycombo><keycap>]</keycap></keycombo> keys. <keycombo><keycap>+</keycap></keycombo> should be used to mark a package for installation, <keycombo><keycap>-</keycap></keycombo> to mark it for removal and <keycombo><keycap>_</keycap></keycombo> to purge it (note that these keys can also be used for categories, in which case the corresponding actions will be applied to all the packages of the category). <keycombo><keycap>u</keycap></keycombo> updates the lists of available packages and <keycombo action=\"simul\"><keycap>Shift</keycap><keycap>u</keycap></keycombo> prepares a global system upgrade. <keycombo><keycap>g</keycap></keycombo> switches to a summary view of the requested changes (and typing <keycombo><keycap>g</keycap></keycombo> again will apply the changes), and <keycombo><keycap>q</keycap></keycombo> quits the current view. If you are in the initial view, this will effectively close <command>aptitude</command>."
msgstr "Når den starter, viser <command>aptitude</command> en liste over pakker sortert etter tilstand (installert, ikke installert eller installert, men ikke tilgjengelig fra speil - andre avsnitt viser oppgaver, virtuelle pakker, og nye pakker som nylig er dukket opp i speil). For å lette tematisk surfing er andre visninger tilgjengelige. I alle tilfelle viser <command>aptitude</command> en liste som kombinerer kategorier og pakker på skjermen. Kategoriene er organisert gjennom en trestruktur, hvis grener kan henholdsvis foldes ut eller lukkes med tastene <keycombo><keycap>Enter</keycap></keycombo>, <keycombo><keycap>[</keycap></keycombo> og <keycombo><keycap>]</keycap></keycombo>. <keycombo><keycap>+</keycap></keycombo>-tasten brukes til å markere en pakke for installasjon, <keycombo><keycap>-</keycap></keycombo>-tasten for å merke for fjerning og <keycombo><keycap>_</keycap></keycombo> for å fjerne alle spor etter den (merk at disse tastene også kan brukes for kategorier, og i så fall vil tilsvarende handlinger bli brukt på alle pakkene av kategorien). <keycombo><keycap>u</keycap></keycombo> oppdaterer lista over tilgjengelige pakker og <keycombo action=\"simul\"><keycap>Shift</keycap><keycap>u</keycap></keycombo> forbereder en fullstendig systemoppgradering. <keycombo><keycap>g</keycap></keycombo> bytter til et sammendrag av de nødvendige endringene (og trykke <keycombo><keycap>g</keycap></keycombo> på nytt vil aktivere endringene), og <keycombo><keycap>q</keycap></keycombo> avslutter den gjeldende visningen. Hvis du er i den første visningen, vil dette effektivt stenge <command>aptitude</command>."

msgid "<emphasis>DOCUMENTATION</emphasis> <command>aptitude</command>"
msgstr "<emphasis>DOKUMENTASJON</emphasis> <command>aptitude</command>"

#, fuzzy
#| msgid "<primary>authentication</primary><secondary>package authentication</secondary>"
msgid "<primary><command>aptitude</command></primary><secondary>documentation</secondary>"
msgstr "<primary>autentisering</primary><secondary>pakke autentisering</secondary>"

#, fuzzy
#| msgid "This section does not cover the finer details of using <command>aptitude</command>, it rather focuses on giving you a survival kit to use it. <command>aptitude</command> is rather well documented and we advise you to use its complete manual available in the <emphasis role=\"pkg\">aptitude-doc-en</emphasis> package (see <filename>/usr/share/doc/aptitude/html/en/index.html</filename>)."
msgid "This section does not cover the finer details of using <command>aptitude</command>. It rather focuses on giving you a survival kit to use it. But it is well documented and we advise you to use its complete manual available in the <emphasis role=\"pkg\">aptitude-doc-en</emphasis> package (see <filename>/usr/share/doc/aptitude/html/en/index.html</filename>) or at <ulink url=\"https://www.debian.org/doc/manuals/aptitude/\" />)."
msgstr "Denne delen dekker ikke de finere detaljene ved å bruke <command>aptitude</command>. Den har heller fokus på å gi deg det du som bruker trenger for å klare seg. <command>aptitude</command> er ganske godt dokumentert, og vi anbefaler deg å utnytte den komplette håndboken som ligger i <emphasis role=\"pkg\">aptitude-doc-en</emphasis>-pakken (se <filename>/usr/share/doc/aptitude/html/en/index.html</filename>)."

#, fuzzy
#| msgid "<primary>APT</primary><secondary>package search</secondary>"
msgid "<primary><command>aptitude</command></primary><secondary>package search</secondary>"
msgstr "<primary>APT</primary><secondary>pakkesøk</secondary>"

msgid "To search for a package, you can type <keycombo><keycap>/</keycap></keycombo> followed by a search pattern. This pattern matches the name of the package, but can also be applied to the description (if preceded by <literal>~d</literal>), to the section (with <literal>~s</literal>) or to other characteristics detailed in the documentation. The same patterns can filter the list of displayed packages: type the <keycombo><keycap>l</keycap></keycombo> key (as in <foreignphrase>limit</foreignphrase>) and enter the pattern."
msgstr "For å søke etter en pakke kan du skrive <keycombo><keycap>/</keycap></keycombo> etterfulgt av en søkestreng. Denne strengen stemmer med navnet på pakken, men kan også brukes til beskrivelsen (dersom den innledes med <literal>~d</literal>), til seksjonen (med <literal>~s</literal>), eller til andre karakteristika beskrevet i dokumentasjonen. De samme strengene kan filtrere listen over viste pakker: skriv <keycombo><keycap>l</keycap></keycombo>-nøkkelen (som i  <foreignphrase>limit</foreignphrase>), og kjør strengen."

#, fuzzy
#| msgid "<primary>upgrade</primary><secondary>automatic system upgrade</secondary>"
msgid "<primary><command>aptitude</command></primary><secondary>automatic flag</secondary>"
msgstr "<primary>oppgradere</primary><secondary>automatisk system oppgradere</secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary><command>aptitude</command></primary><secondary><literal>markauto</literal></secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

msgid "Managing the “automatic flag” of Debian packages (see <xref linkend=\"sect.automatic-tracking\" />) is a breeze with <command>aptitude</command>. It is possible to browse the list of installed packages and mark packages as automatic with <keycombo action=\"simul\"><keycap>Shift</keycap> <keycap>m</keycap></keycombo> or to remove the mark with the <keycombo><keycap>m</keycap></keycombo> key. “Automatic packages” are displayed with an “A” in the list of packages. This feature also offers a simple way to visualize the packages in use on a machine, without all the libraries and dependencies that you don't really care about. The related pattern that can be used with <keycombo><keycap>l</keycap></keycombo> (to activate the filter mode) is <literal>~i!~M</literal>. It specifies that you only want to see installed packages (<literal>~i</literal>) not marked as automatic (<literal>!~M</literal>)."
msgstr "Å håndtere «automatiske flagg» i Debian-pakker (se <xref linkend=\"sect.automatic-tracking\" />) er en lek med <command>aptitude</command>. Det er mulig å søke i listen av installerte pakker, og merke installerte pakker som automatiske med <keycombo action=\"simul\"><keycap>Shift</keycap> <keycap>m</keycap></keycombo>, eller gjerne merket med <keycombo><keycap>m</keycap></keycombo>-nøkkelen. «Automatske pakker» vises med en «A» i listen med pakker. Denne funksjonen gir også en enkel måte å vise pakkene i bruk på en maskin, uten alle bibliotekene og avhengigheter som du ikke egentlig bryr seg om. Den relaterte strengen som kan brukes sammen med <keycombo><keycap>l</keycap></keycombo> (for å aktivere filtermoduset) er <literal>~i!~M</literal>. Det spesifiserer at du bare ønsker å se installerte pakker (<literal>~i</literal>) som ikke er merket som automatiske (<literal>!~M</literal>)."

msgid "<emphasis>TOOL</emphasis> Using <command>aptitude</command> on the command-line interface"
msgstr "<emphasis>VERKTØY</emphasis> Å bruke <command>aptitude</command> i brukergrensesnittet for kommandolinjer"

#, fuzzy
#| msgid "<primary><command>aptitude</command></primary>"
msgid "<primary><command>aptitude</command></primary><secondary>command line</secondary>"
msgstr "<primary><command>aptitude</command></primary>"

msgid "Most of <command>aptitude</command>'s features are accessible via the interactive interface as well as via command-lines. These command-lines will seem familiar to regular users of <command>apt-get</command> and <command>apt-cache</command>."
msgstr "De fleste av <command>aptitude</command>s funksjoner er tilgjengelige via det interaktive brukergrensesnittet så vel som via kommandolinjer. Disse kommandolinjene er kjente for vanlige brukere av <command>apt-get</command> og <command>apt-cache</command>."

msgid "The advanced features of <command>aptitude</command> are also available on the command-line. You can use the same package search patterns as in the interactive version. For example, if you want to cleanup the list of “manually installed” packages, and if you know that none of the locally installed programs require any particular libraries or Perl modules, you can mark the corresponding packages as automatic with a single command:"
msgstr "De avanserte funksjonene i <command>aptitude</command> er også tilgjengelige på kommandolinjen. Du kan bruke de samme pakke-søkemønstre som i den interaktiv versjonen. For eksempel, hvis du ønsker å rydde opp listen over «manuelt installerte» pakker, og hvis du vet at ingen av de lokalt installerte programmer krever noen spesielle biblioteker eller Perl-moduler, kan du merke de tilsvarende pakker som automatiske med en enkelt kommando:"

msgid "<computeroutput># </computeroutput><userinput>aptitude markauto '~slibs|~sperl'</userinput>"
msgstr "<computeroutput># </computeroutput><userinput>aptitude markauto '~slibs|~sperl'</userinput>"

msgid "Here, you can clearly see the power of the search pattern system of <command>aptitude</command>, which enables the instant selection of all the packages in the <literal>libs</literal> and <literal>perl</literal> sections."
msgstr "Her kan du tydelig se kraften i søkemønstersystemet til <command>aptitude</command>, som muliggjør det direkte valget av alle pakkene i <literal>libs</literal> og <literal>perl</literal>-seksjonene."

msgid "Beware, if some packages are marked as automatic and if no other package depends on them, they will be removed immediately (after a confirmation request)."
msgstr "Pass på, hvis noen pakker er merket som automatisk, og hvis ingen andre pakke er avhengig av dem, vil de bli fjernet umiddelbart (etter en bekreftelsesforespørsel)."

msgid "Managing Recommendations, Suggestions and Tasks"
msgstr "Håndtere anbefalinger, forslag og oppgaver"

#, fuzzy
#| msgid "<primary><command>aptitude</command></primary>"
msgid "<primary><command>aptitude</command></primary><secondary>tasks</secondary>"
msgstr "<primary><command>aptitude</command></primary>"

#, fuzzy
#| msgid "Another interesting feature of <command>aptitude</command> is the fact that it respects recommendations between packages while still giving users the choice not to install them on a case by case basis. For example, the <emphasis role=\"pkg\">gnome</emphasis> package recommends <emphasis role=\"pkg\">gdebi</emphasis> (among others). When you select the former for installation, the latter will also be selected (and marked as automatic if not already installed on the system). Typing <keycombo><keycap>g</keycap></keycombo> will make it obvious: <emphasis role=\"pkg\">gdebi</emphasis> appears on the summary screen of pending actions in the list of packages installed automatically to satisfy dependencies. However, you can decide not to install it by deselecting it before confirming the operations."
msgid "Another interesting feature of <command>aptitude</command> is the fact that it respects recommendations between packages while still giving users the choice not to install them on a case by case basis. For example, the <emphasis role=\"pkg\">gnome</emphasis> package recommends <emphasis role=\"pkg\">transmission-gtk</emphasis> (among others). When you select the former for installation, the latter will also be selected (and marked as automatic if not already installed on the system). Typing <keycombo><keycap>g</keycap></keycombo> will make it obvious: <emphasis role=\"pkg\">transmission-gtk</emphasis> appears on the summary screen of pending actions in the list of packages installed automatically to satisfy dependencies. However, you can decide not to install it by deselecting it before confirming the operations."
msgstr "Et annet interessant trekk ved <command>aptitude</command> er det faktum at det respekterer anbefalinger mellom pakker mens den gir brukerne valget om ikke å installere dem fra sak til sak. For eksempel anbefaler <emphasis role=\"pkg\">gnome</emphasis>-pakken <emphasis role=\"pkg\">gdebi</emphasis> (blant andre). Når du velger den første for installasjon, vil den siste også velges (og markert som automatisk hvis den ikke allerede er installert på systemet). Å taste <keycombo><keycap>g</keycap></keycombo> vil gjøre det klart: <emphasis role=\"pkg\">gdebi</emphasis> vises på sammendragsskjermen for ventende handlinger i listen over automatisk installerte pakker som skal imøtekomme avhengigheter. Du kan imidlertid velge å ikke installere den ved å fjerne den før du bekrefter operasjonene."

msgid "Note that this recommendation tracking feature does not apply to upgrades. For instance, if a new version of <emphasis role=\"pkg\">gnome</emphasis> recommends a package that it did not recommend formerly, the package won't be marked for installation. However, it will be listed on the upgrade screen so that the administrator can still select it for installation."
msgstr "Merk at denne anbefalte sporingsfunksjonen ikke gjelder for oppgraderinger. For eksempel, hvis en ny versjon av <emphasis role=\"pkg\">gnome</emphasis> anbefaler en pakke som den ikke anbefalte tidligere, vil pakken ikke merkes for installasjon. Imidlertid vil den bli oppført på oppgraderingsskjermen slik at administrator fortsatt kan velge å installere den."

#, fuzzy
#| msgid "Suggestions between packages are also taken into account, but in a manner adapted to their specific status. For example, since <emphasis role=\"pkg\">gnome</emphasis> suggests <emphasis role=\"pkg\">dia-gnome</emphasis>, the latter will be displayed on the summary screen of pending actions (in the section of packages suggested by other packages). This way, it is visible and the administrator can decide whether to take the suggestion into account or not. Since it is only a suggestion and not a dependency or a recommendation, the package will not be selected automatically — its selection requires a manual intervention from the user (thus, the package will not be marked as automatic)."
msgid "Suggestions between packages are also taken into account, but in a manner adapted to their specific status. For example, since <emphasis role=\"pkg\">gnome</emphasis> suggests <emphasis role=\"pkg\">empathy</emphasis>, the latter will be displayed on the summary screen of pending actions (in the section of packages suggested by other packages). This way, it is visible and the administrator can decide whether to take the suggestion into account or not. Since it is only a suggestion and not a dependency or a recommendation, the package will not be selected automatically — its selection requires a manual intervention from the user (thus, the package will not be marked as automatic)."
msgstr "Forslag til valg mellom pakker blir også tatt hensyn til, men på en måte som er tilpasset deres bestemte status. For eksempel, siden <emphasis role=\"pkg\">gnome</emphasis> foreslår <emphasis role=\"pkg\">dia-gnome</emphasis>, vil sistnevnte bli vist i oppsummeringsvinduet for ventende handlinger (i seksjonen for pakker foreslått av andre pakker). På denne måten blir det synlig, og administratoren kan velge å ta hensyn til forslaget eller ikke. Siden det bare er et forslag, og ikke en avhengighet eller en anbefaling, vil pakken ikke velges automatisk - dette valget krever en manuell inngripen fra brukeren (så pakken vil ikke bli merket som automatisk)."

msgid "In the same spirit, remember that <command>aptitude</command> makes intelligent use of the concept of task. Since tasks are displayed as categories in the screens of packages lists, you can either select a full task for installation or removal, or browse the list of packages included in the task to select a smaller subset."
msgstr "I samme retning, husk at <command>aptitude</command> bruker oppgavebegrepet intelligent. Siden oppgaver vises som kategorier på skjermene med pakkelister, kan du velge enten en hel oppgave for installasjon eller fjerning, eller bla gjennom listen med pakker som inngår i oppgaven, og velge en mindre undergruppe."

msgid "Better Solver Algorithms"
msgstr "Bedre løsningsalgoritmer"

#, fuzzy
#| msgid "<primary><command>aptitude</command></primary>"
msgid "<primary><command>aptitude</command></primary><secondary>solver</secondary>"
msgstr "<primary><command>aptitude</command></primary>"

msgid "To conclude this section, let's note that <command>aptitude</command> has more elaborate algorithms compared to <command>apt-get</command> when it comes to resolving difficult situations. When a set of actions is requested and when these combined actions would lead to an incoherent system, <command>aptitude</command> evaluates several possible scenarios and presents them in order of decreasing relevance. However, these algorithms are not failproof. Fortunately there is always the possibility to manually select the actions to perform. When the currently selected actions lead to contradictions, the upper part of the screen indicates a number of “broken” packages (and you can directly navigate to those packages by pressing <keycombo><keycap>b</keycap></keycombo>). It is then possible to manually build a solution for the problems found. In particular, you can get access to the different available versions by simply selecting the package with <keycombo><keycap>Enter</keycap></keycombo>. If the selection of one of these versions solves the problem, you should not hesitate to use the function. When the number of broken packages gets down to zero, you can safely go to the summary screen of pending actions for a last check before you apply them."
msgstr "For å lukke opp denne seksjonen, la oss være oppmerksomme på at <command>aptitude</command> har mer forseggjorte algoritmer sammenlignet med <command>apt-get</command> til å løse vanskelige situasjoner. Når det bes om et sett av handlinger, og når disse kombinerte tiltakene vil føre til et usammenhengende system, evaluerer <command>aptitude</command> flere mulige scenarier, og presenterer dem med synkende relevans. Men disse algoritmene er ikke feilfrie. Heldigvis er det alltid mulighet for å velge å utføre handlinger manuelt. Når valgte handlinger fører til motsigelser, indikerer den øvre delen av skjermen en rekke «ødelagte» pakker (og du kan navigere direkte til disse pakkene ved å trykke <keycombo><keycap>b</keycap></keycombo>). Deretter er det mulig å bygge en løsning manuelt for de problemer som oppstår. Spesielt kan du få tilgang til de ulike tilgjengelige versjonene ved å velge pakken med <keycombo> <keycap>Enter (skriv inn)</keycap></keycombo>. Hvis valget av en av disse versjonene løser problemet, bør du ikke nøle med å bruke funksjonen. Når antall ødelagte pakker kommer ned til null, kan du trygt gå til sammendragsskjermen med ventende handlinger for en siste sjekk før du bruker dem."

msgid "<emphasis>NOTE</emphasis> <command>aptitude</command>'s log"
msgstr "<emphasis>MERK</emphasis> <command>aptitude</command>s logg"

#, fuzzy
#| msgid "<primary><command>aptitude</command></primary>"
msgid "<primary><command>aptitude</command></primary><secondary>log</secondary>"
msgstr "<primary><command>aptitude</command></primary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary><command>aptitude</command></primary><secondary><filename>/var/log/aptitude</filename></secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

msgid "Like <command>dpkg</command>, <command>aptitude</command> keeps a trace of executed actions in its logfile (<filename>/var/log/aptitude</filename>). However, since both commands work at a very different level, you cannot find the same information in their respective logfiles. While <command>dpkg</command> logs all the operations executed on individual packages step by step, <command>aptitude</command> gives a broader view of high-level operations like a system-wide upgrade."
msgstr "På samme måte som <command>dpkg</command>, beholder <command>aptitude</command> et spor med utførte handlinger i sin loggfil (<filename>/var/log/aptitude</filename>). Men siden begge kommandoene virker på et helt forskjellig nivå, kan du ikke finne den samme informasjonen i deres respektive loggfiler. Mens <command>dpkg</command> logger alle operasjoner som er utført på enkeltpakker trinnvis, holder <command>aptitude</command> øye med høy-nivå operasjoner som en systemomfattende oppgradering vil være."

msgid "Beware, this logfile only contains a summary of operations performed by <command>aptitude</command>. If other front-ends (or even <command>dpkg</command> itself) are occasionally used, then <command>aptitude</command>'s log will only contain a partial view of the operations, so you can't rely on it to build a trustworthy history of the system."
msgstr "Pass på, denne loggfilen inneholder bare en oppsummering av operasjoner utført av <command>aptitude</command>. Hvis andre grenseflater (eller til og med <command>dpkg</command> selv) av og til brukes, så vil <command>aptitude</command>s logg bare delvis inneholde oversikten over operasjonene, så du kan ikke stole på den for å bygge en troverdig historikk til systemet."

msgid "<command>synaptic</command>"
msgstr "<command>synaptic</command>"

msgid "<primary>APT</primary><secondary>interfaces</secondary><tertiary><command>synaptic</command></tertiary><see><command>synaptic</command></see>"
msgstr ""

msgid "<command>synaptic</command> is a graphical package manager for Debian which features a clean and efficient graphical interface based on GTK+/GNOME. Its many ready-to-use filters give fast access to newly available packages, installed packages, upgradable packages, obsolete packages and so on. If you browse through these lists, you can select the operations to be done on the packages (install, upgrade, remove, purge); these operations are not performed immediately, but put into a task list. A single click on a button then validates the operations, and they are performed in one go."
msgstr "<command>synaptic</command> er en grafisk pakkebehandler for Debian med et rent og effektivt grafisk grensesnitt basert på GTK +/GNOME. De mange klare til-bruk-filtrene gir rask tilgang til nettopp tilgjengelige pakker, installerte pakker, oppgraderbare pakker, avleggse pakker, og så videre. Hvis du blar gjennom disse listene, kan du velge operasjonene som skal gjøres med pakkene (installere, oppgradere, fjerne, tvinge). Disse operasjonene utføres ikke umiddelbart, men settes i en oppgaveliste. Et enkelt klikk på en knapp bekrefter det som skal gjøres, og de blir utført i én omgang."

msgid "<command>synaptic</command> package manager"
msgstr "pakkebehandleren <command>synaptic</command>"

msgid "Checking Package Authenticity"
msgstr "Sjekking av pakkeautensitet"

msgid "<primary>package</primary><secondary>authenticity check</secondary>"
msgstr "<primary>pakke</primary><secondary>autentisitetskontroll</secondary>"

msgid "<primary>package</primary><secondary>seal</secondary>"
msgstr "<primary>pakke</primary><secondary>forsegling</secondary>"

msgid "<primary>package</primary><secondary>signature</secondary>"
msgstr "<primary>pakke</primary><secondary>signatur</secondary>"

msgid "<primary>signature</primary><secondary>package signature</secondary>"
msgstr "<primary>signatur</primary><secondary>pakke signatur</secondary>"

msgid "<primary>authentication</primary><secondary>package authentication</secondary>"
msgstr "<primary>autentisering</primary><secondary>pakke autentisering</secondary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary>interfaces</secondary>"
msgid "<primary>APT</primary><secondary><filename>Release</filename></secondary>"
msgstr "<primary>APT</primary><secondary>grensesnitt</secondary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"
msgid "<primary>APT</primary><secondary><filename>Release.gpg</filename></secondary>"
msgstr "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary>interfaces</secondary>"
msgid "<primary>APT</primary><secondary><filename>InRelease</filename></secondary>"
msgstr "<primary>APT</primary><secondary>grensesnitt</secondary>"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/trusted.gpg.d/</filename></primary>"
msgid "<primary>APT</primary><secondary><filename>/etc/apt/trusted.gpg</filename></secondary>"
msgstr "<primary><filename>/etc/apt/trusted.gpg.d/</filename></primary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>non-free</literal></secondary>"
msgid "<primary>APT</primary><secondary><literal>apt-secure</literal></secondary>"
msgstr "<primary>seksjon</primary><secondary><literal>non-free</literal></secondary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary>configuration</secondary>"
msgid "<primary>APT</primary><secondary>archive authentification</secondary>"
msgstr "<primary>APT</primary><secondary>oppsett</secondary>"

msgid "Security is very important for Falcot Corp administrators. Accordingly, they need to ensure that they only install packages which are guaranteed to come from Debian with no tampering on the way. A computer cracker could try to add malicious code to an otherwise legitimate package. Such a package, if installed, could do anything the cracker designed it to do, including for instance disclosing passwords or confidential information. To circumvent this risk, Debian provides a tamper-proof seal to guarantee — at install time — that a package really comes from its official maintainer and hasn't been modified by a third party."
msgstr "Sikkerheten er veldig viktig for Falcot Corps administratorer. Følgelig må de sørge for at de bare installerer pakker som er garantert å komme fra Debian uten å være tuklet med underveis. En som vil knekke en datamaskin (en cracker)  kan prøve å legge ondsinnet kode til en ellers lovlig pakke. En slik pakke, hvis den er installert, kunne gjøre noe knekkeren utviklet det til å gjøre, inkludert for eksempel å avdekke passord eller konfidensiell informasjon. For å omgå denne risikoen gir Debian nye installasjoner en forsegling som det ikke kan kludres med, for å garantere at en pakke virkelig kommer fra dens offisielle vedlikeholder, og ikke er endret av en tredjepart."

#, fuzzy
#| msgid "The seal works with a chain of cryptographical hashes and a signature. The signed file is the <filename>Release</filename> file, provided by the Debian mirrors. It contains a list of the <filename>Packages</filename> files (including their compressed forms, <filename>Packages.gz</filename> and <filename>Packages.xz</filename>, and the incremental versions), along with their MD5, SHA1 and SHA256 hashes, which ensures that the files haven't been tampered with. These <filename>Packages</filename> files contain a list of the Debian packages available on the mirror, along with their hashes, which ensures in turn that the contents of the packages themselves haven't been altered either."
msgid "The seal works with a chain of cryptographical hashes and a signature and is explained in detail in <citerefentry><refentrytitle>apt-secure</refentrytitle><manvolnum>8</manvolnum></citerefentry>. Starting with Debian 10 <emphasis role=\"distribution\">Buster</emphasis> the signed file is the <filename>InRelease</filename> file, provided by the Debian mirrors. There is also a legacy file called <filename>Release</filename>. Both contain a list of the <filename>Packages</filename> files (including their compressed forms, <filename>Packages.gz</filename> and <filename>Packages.xz</filename>, and the incremental versions), along with their SHA256 hashes, which ensures that the files haven't been tampered with. These <filename>Packages</filename> files contain a list of the Debian packages available on the mirror, along with their hashes, which ensures in turn that the contents of the packages themselves haven't been altered either. The difference between <filename>InRelease</filename> and <filename>Release</filename> is, that the former are cryptographically signed in-line, whereas the latter provide a detached signature in the form of the file <filename>Release.gpg</filename>."
msgstr "Forseglingen arbeider med en kjede av kryptografiske nøkler og en signatur. Den signerte filen er <filename>Release</filename>-filen, som Debian-speilene skaffer. Det inneholder en liste med <filename>Packages</filename>-filer (også i sine komprimert former, <filename>Packages.gz</filename>, og <filename>Packages.xz</filename>, og oppstigende versjoner), sammen med sine MD5, SHA1 og SHA256 nøkler, som sikrer at filene ikke har blitt tuklet med. Disse <filename>Packages</filename>-filene inneholder en liste med de Debian-pakkene som er tilgjengelig på speilet, med tilhørende nøkler, som i sin tur sikrer at heller ikke innholdet i disse pakkene har blitt endret."

#, fuzzy
#| msgid "<emphasis>GOING FURTHER</emphasis> The cache of <filename>.deb</filename> files"
msgid "<emphasis>NOTE</emphasis> The future of <filename>Release</filename> and <filename>Release.gpg</filename>"
msgstr "<emphasis>FOR VIDEREKOMMENDE</emphasis>Hurtiglageret med <filename>.deb</filename>-filer"

msgid "Probably with the release of Debian 11 <emphasis role=\"distribution\">Bullseye</emphasis> APT will remove support for the legacy files <filename>Release</filename> and <filename>Release.gpg</filename>, used since APT 0.6, which introduced support for an archive authentication."
msgstr ""

msgid "<primary><command>apt-key</command></primary>"
msgstr "<primary><command>apt-key</command></primary>"

msgid "<primary><emphasis role=\"pkg\">debian-archive-keyring</emphasis></primary>"
msgstr "<primary><emphasis role=\"pkg\">debian-archive-keyring</emphasis></primary>"

msgid "<primary><filename>/etc/apt/trusted.gpg.d/</filename></primary>"
msgstr "<primary><filename>/etc/apt/trusted.gpg.d/</filename></primary>"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/trusted.gpg.d/</filename></primary>"
msgid "<primary><filename>/etc/apt/trusted.gpg</filename></primary>"
msgstr "<primary><filename>/etc/apt/trusted.gpg.d/</filename></primary>"

msgid "<primary><filename>Release.gpg</filename></primary>"
msgstr "<primary><filename>Release.gpg</filename></primary>"

#, fuzzy
#| msgid "<primary><filename>Release.gpg</filename></primary>"
msgid "<primary><filename>InRelease</filename></primary>"
msgstr "<primary><filename>Release.gpg</filename></primary>"

#, fuzzy
#| msgid "The trusted keys are managed with the <command>apt-key</command> command found in the <emphasis role=\"pkg\">apt</emphasis> package. This program maintains a keyring of GnuPG public keys, which are used to verify signatures in the <filename>Release.gpg</filename> files available on the mirrors. It can be used to add new keys manually (when non-official mirrors are needed). Generally however, only the official Debian keys are needed. These keys are automatically kept up-to-date by the <emphasis role=\"pkg\">debian-archive-keyring</emphasis> package (which puts the corresponding keyrings in <filename>/etc/apt/trusted.gpg.d</filename>). However, the first installation of this particular package requires caution: even if the package is signed like any other, the signature cannot be verified externally. Cautious administrators should therefore check the fingerprints of imported keys before trusting them to install new packages:"
msgid "APT needs a set of trusted GnuPG public keys to verify signatures in the <filename>InRelease</filename> and <filename>Release.gpg</filename> files available on the mirrors. It gets them from files in <filename>/etc/apt/trusted.gpg.d/</filename> and from the <filename>/etc/apt/trusted.gpg</filename> keyring (managed by the <command>apt-key</command> command). The official Debian keys are provided and kept up-to-date by the <emphasis role=\"pkg\">debian-archive-keyring</emphasis> package which puts them in <filename>/etc/apt/trusted.gpg.d/</filename>. Note, however, that the first installation of this particular package requires caution: even if the package is signed like any other, the signature cannot be verified externally. Cautious administrators should therefore check the fingerprints of imported keys before trusting them to install new packages:"
msgstr "De klarerte nøklene styres med <command>apt-key</command>-kommandoen i <emphasis role=\"pkg\">apt</emphasis>-pakken. Dette programmet vedlikeholder en nøkkelring med GnuPG offentlige nøkler, som brukes til å verifisere signaturer i <filename>Release.gpg</filename>-filer tilgjengelig fra speil. Den kan brukes til å legge til nye nøkler manuelt (når ikke-offisielle speil er nødvendig). Vanligvis er det imidlertid bare de offisielle Debian-nøklene som trengs. Disse nøklene holdes automatisk oppdatert ved <emphasis role=\"pkg\">debian-archive-keyring</emphasis>-pakken (som setter de samsvarende nøkkelringene i <filename>/etc/apt/trusted.gpg.d</filename>). Men den første installasjonen av denne pakken krever forsiktighet: Selv om pakken er signert som alle andre, kan signaturen ikke bekreftes eksternt. Forsiktige administratorer bør derfor sjekke fingeravtrykkene til importerte nøkler før de stoler på dem for å installere nye pakker:"

#, fuzzy
#| msgid ""
#| "# <userinput>apt-key fingerprint</userinput>\n"
#| "/etc/apt/trusted.gpg.d/debian-archive-jessie-automatic.gpg\n"
#| "----------------------------------------------------------\n"
#| "pub   4096R/2B90D010 2014-11-21 [expires: 2022-11-19]\n"
#| "      Key fingerprint = 126C 0D24 BD8A 2942 CC7D  F8AC 7638 D044 2B90 D010\n"
#| "uid                  Debian Archive Automatic Signing Key (8/jessie) &lt;ftpmaster@debian.org&gt;\n"
#| "\n"
#| "/etc/apt/trusted.gpg.d/debian-archive-jessie-security-automatic.gpg\n"
#| "-------------------------------------------------------------------\n"
#| "pub   4096R/C857C906 2014-11-21 [expires: 2022-11-19]\n"
#| "      Key fingerprint = D211 6914 1CEC D440 F2EB  8DDA 9D6D 8F6B C857 C906\n"
#| "uid                  Debian Security Archive Automatic Signing Key (8/jessie) &lt;ftpmaster@debian.org&gt;\n"
#| "\n"
#| "/etc/apt/trusted.gpg.d/debian-archive-jessie-stable.gpg\n"
#| "-------------------------------------------------------\n"
#| "pub   4096R/518E17E1 2013-08-17 [expires: 2021-08-15]\n"
#| "      Key fingerprint = 75DD C3C4 A499 F1A1 8CB5  F3C8 CBF8 D6FD 518E 17E1\n"
#| "uid                  Jessie Stable Release Key &lt;debian-release@lists.debian.org&gt;\n"
#| "\n"
#| "/etc/apt/trusted.gpg.d/debian-archive-squeeze-automatic.gpg\n"
#| "-----------------------------------------------------------\n"
#| "pub   4096R/473041FA 2010-08-27 [expires: 2018-03-05]\n"
#| "      Key fingerprint = 9FED 2BCB DCD2 9CDF 7626  78CB AED4 B06F 4730 41FA\n"
#| "uid                  Debian Archive Automatic Signing Key (6.0/squeeze) &lt;ftpmaster@debian.org&gt;\n"
#| "\n"
#| "/etc/apt/trusted.gpg.d/debian-archive-squeeze-stable.gpg\n"
#| "--------------------------------------------------------\n"
#| "pub   4096R/B98321F9 2010-08-07 [expires: 2017-08-05]\n"
#| "      Key fingerprint = 0E4E DE2C 7F3E 1FC0 D033  800E 6448 1591 B983 21F9\n"
#| "uid                  Squeeze Stable Release Key &lt;debian-release@lists.debian.org&gt;\n"
#| "\n"
#| "/etc/apt/trusted.gpg.d/debian-archive-wheezy-automatic.gpg\n"
#| "----------------------------------------------------------\n"
#| "pub   4096R/46925553 2012-04-27 [expires: 2020-04-25]\n"
#| "      Key fingerprint = A1BD 8E9D 78F7 FE5C 3E65  D8AF 8B48 AD62 4692 5553\n"
#| "uid                  Debian Archive Automatic Signing Key (7.0/wheezy) &lt;ftpmaster@debian.org&gt;\n"
#| "\n"
#| "/etc/apt/trusted.gpg.d/debian-archive-wheezy-stable.gpg\n"
#| "-------------------------------------------------------\n"
#| "pub   4096R/65FFB764 2012-05-08 [expires: 2019-05-07]\n"
#| "      Key fingerprint = ED6D 6527 1AAC F0FF 15D1  2303 6FB2 A1C2 65FF B764\n"
#| "uid                  Wheezy Stable Release Key &lt;debian-release@lists.debian.org&gt;"
msgid ""
"<computeroutput># </computeroutput><userinput>apt-key fingerprint\n"
"</userinput><![CDATA[/etc/apt/trusted.gpg.d/debian-archive-buster-automatic.gpg\n"
"----------------------------------------------------------\n"
"pub   rsa4096 2019-04-14 [SC] [expires: 2027-04-12]\n"
"      80D1 5823 B7FD 1561 F9F7  BCDD DC30 D7C2 3CBB ABEE\n"
"uid           [ unknown] Debian Archive Automatic Signing Key (10/buster) <ftpmaster@debian.org>\n"
"sub   rsa4096 2019-04-14 [S] [expires: 2027-04-12]\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-buster-security-automatic.gpg\n"
"-------------------------------------------------------------------\n"
"pub   rsa4096 2019-04-14 [SC] [expires: 2027-04-12]\n"
"      5E61 B217 265D A980 7A23  C5FF 4DFA B270 CAA9 6DFA\n"
"uid           [ unknown] Debian Security Archive Automatic Signing Key (10/buster) <ftpmaster@debian.org>\n"
"sub   rsa4096 2019-04-14 [S] [expires: 2027-04-12]\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-buster-stable.gpg\n"
"-------------------------------------------------------\n"
"pub   rsa4096 2019-02-05 [SC] [expires: 2027-02-03]\n"
"      6D33 866E DD8F FA41 C014  3AED DCC9 EFBF 77E1 1517\n"
"uid           [ unknown] Debian Stable Release Key (10/buster) <debian-release@lists.debian.org>\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-jessie-automatic.gpg\n"
"----------------------------------------------------------\n"
"pub   rsa4096 2014-11-21 [SC] [expires: 2022-11-19]\n"
"      126C 0D24 BD8A 2942 CC7D  F8AC 7638 D044 2B90 D010\n"
"uid           [ unknown] Debian Archive Automatic Signing Key (8/jessie) <ftpmaster@debian.org>\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-jessie-security-automatic.gpg\n"
"-------------------------------------------------------------------\n"
"pub   rsa4096 2014-11-21 [SC] [expires: 2022-11-19]\n"
"      D211 6914 1CEC D440 F2EB  8DDA 9D6D 8F6B C857 C906\n"
"uid           [ unknown] Debian Security Archive Automatic Signing Key (8/jessie) <ftpmaster@debian.org>\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-jessie-stable.gpg\n"
"-------------------------------------------------------\n"
"pub   rsa4096 2013-08-17 [SC] [expires: 2021-08-15]\n"
"      75DD C3C4 A499 F1A1 8CB5  F3C8 CBF8 D6FD 518E 17E1\n"
"uid           [ unknown] Jessie Stable Release Key <debian-release@lists.debian.org>\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-stretch-automatic.gpg\n"
"-----------------------------------------------------------\n"
"pub   rsa4096 2017-05-22 [SC] [expires: 2025-05-20]\n"
"      E1CF 20DD FFE4 B89E 8026  58F1 E0B1 1894 F66A EC98\n"
"uid           [ unknown] Debian Archive Automatic Signing Key (9/stretch) <ftpmaster@debian.org>\n"
"sub   rsa4096 2017-05-22 [S] [expires: 2025-05-20]\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-stretch-security-automatic.gpg\n"
"--------------------------------------------------------------------\n"
"pub   rsa4096 2017-05-22 [SC] [expires: 2025-05-20]\n"
"      6ED6 F5CB 5FA6 FB2F 460A  E88E EDA0 D238 8AE2 2BA9\n"
"uid           [ unknown] Debian Security Archive Automatic Signing Key (9/stretch) <ftpmaster@debian.org>\n"
"sub   rsa4096 2017-05-22 [S] [expires: 2025-05-20]\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-stretch-stable.gpg\n"
"--------------------------------------------------------\n"
"pub   rsa4096 2017-05-20 [SC] [expires: 2025-05-18]\n"
"      067E 3C45 6BAE 240A CEE8  8F6F EF0F 382A 1A7B 6500\n"
"uid           [ unknown] Debian Stable Release Key (9/stretch) <debian-release@lists.debian.org>\n"
"\n"
"]]>"
msgstr ""
"# <userinput>apt-key fingerprint</userinput>\n"
"/etc/apt/trusted.gpg.d/debian-archive-jessie-automatic.gpg\n"
"----------------------------------------------------------\n"
"pub   4096R/2B90D010 2014-11-21 [expires: 2022-11-19]\n"
"      Key fingerprint = 126C 0D24 BD8A 2942 CC7D  F8AC 7638 D044 2B90 D010\n"
"uid                  Debian Archive Automatic Signing Key (8/jessie) &lt;ftpmaster@debian.org&gt;\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-jessie-security-automatic.gpg\n"
"-------------------------------------------------------------------\n"
"pub   4096R/C857C906 2014-11-21 [expires: 2022-11-19]\n"
"      Key fingerprint = D211 6914 1CEC D440 F2EB  8DDA 9D6D 8F6B C857 C906\n"
"uid                  Debian Security Archive Automatic Signing Key (8/jessie) &lt;ftpmaster@debian.org&gt;\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-jessie-stable.gpg\n"
"-------------------------------------------------------\n"
"pub   4096R/518E17E1 2013-08-17 [expires: 2021-08-15]\n"
"      Key fingerprint = 75DD C3C4 A499 F1A1 8CB5  F3C8 CBF8 D6FD 518E 17E1\n"
"uid                  Jessie Stable Release Key &lt;debian-release@lists.debian.org&gt;\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-squeeze-automatic.gpg\n"
"-----------------------------------------------------------\n"
"pub   4096R/473041FA 2010-08-27 [expires: 2018-03-05]\n"
"      Key fingerprint = 9FED 2BCB DCD2 9CDF 7626  78CB AED4 B06F 4730 41FA\n"
"uid                  Debian Archive Automatic Signing Key (6.0/squeeze) &lt;ftpmaster@debian.org&gt;\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-squeeze-stable.gpg\n"
"--------------------------------------------------------\n"
"pub   4096R/B98321F9 2010-08-07 [expires: 2017-08-05]\n"
"      Key fingerprint = 0E4E DE2C 7F3E 1FC0 D033  800E 6448 1591 B983 21F9\n"
"uid                  Squeeze Stable Release Key &lt;debian-release@lists.debian.org&gt;\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-wheezy-automatic.gpg\n"
"----------------------------------------------------------\n"
"pub   4096R/46925553 2012-04-27 [expires: 2020-04-25]\n"
"      Key fingerprint = A1BD 8E9D 78F7 FE5C 3E65  D8AF 8B48 AD62 4692 5553\n"
"uid                  Debian Archive Automatic Signing Key (7.0/wheezy) &lt;ftpmaster@debian.org&gt;\n"
"\n"
"/etc/apt/trusted.gpg.d/debian-archive-wheezy-stable.gpg\n"
"-------------------------------------------------------\n"
"pub   4096R/65FFB764 2012-05-08 [expires: 2019-05-07]\n"
"      Key fingerprint = ED6D 6527 1AAC F0FF 15D1  2303 6FB2 A1C2 65FF B764\n"
"uid                  Wheezy Stable Release Key &lt;debian-release@lists.debian.org&gt;"

msgid "<emphasis>IN PRACTICE</emphasis> Adding trusted keys"
msgstr "<emphasis>I PRAKSIS</emphasis> Å legge til klarerte nøkler"

msgid "<primary>trusted key</primary>"
msgstr "<primary>pålitelig nøkkel</primary>"

msgid "<primary>key</primary><secondary>APT's authentication keys</secondary>"
msgstr "<primary>nøkkel</primary><secondary>APTs autentiseringsnøkler</secondary>"

msgid "When a third-party package source is added to the <filename>sources.list</filename> file, APT needs to be told to trust the corresponding GPG authentication key (otherwise it will keep complaining that it can't ensure the authenticity of the packages coming from that repository). The first step is of course to get the public key. More often than not, the key will be provided as a small text file, which we will call <filename>key.asc</filename> in the following examples."
msgstr ""
"Når en tredjeparts pakke legges til <filename>sources.list</filename>filen, må APT bes om å stole på den samsvarende GPG autoriseringsnøkkelen \n"
"(ellers vil den klage på at den ikke kan sikre ektheten av pakkene som kommer fra dette pakkelageret). Det første trinnet er selvsagt å få den offentlige nøkkelen. Oftere enn ikke, vil nøkkelen bli gitt som en liten tekstfil, som vi vil kalle <filename>key.asc</filename> i de følgende eksemplene."

msgid "To add the key to the trusted keyring, the administrator can just put it in a <filename>*.asc</filename> file in <filename>/etc/apt/trusted.gpg.d/</filename>. This is supported since Debian <emphasis role=\"distribution\">Stretch</emphasis>. With older releases, you had to run <command>apt-key add &lt; key.asc</command>."
msgstr ""

msgid "Once the appropriate keys are in the keyring, APT will check the signatures before any risky operation, so that front-ends will display a warning if asked to install a package whose authenticity can't be ascertained."
msgstr "Når de aktuelle nøklene er i en nøkkelring, vil APT sjekke signaturer før en risikabel operasjon, slik at grensesnittet vil vise en advarsel hvis det er bedt om å installere en pakke der autentisiteten ikke kan påvises."

msgid "Upgrading from One Stable Distribution to the Next"
msgstr "Oppgradering fra en stabil distribusjon til den neste"

#, fuzzy
#| msgid "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"
msgid "<primary>system</primary><secondary><foreignphrase>dist-upgrade</foreignphrase></secondary>"
msgstr "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"

#, fuzzy
#| msgid "<primary><command>apt dist-upgrade</command></primary>"
msgid "<primary><foreignphrase>dist-upgrade</foreignphrase></primary>"
msgstr "<primary><command>apt dist-upgrade</command></primary>"

#, fuzzy
#| msgid "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"
msgid "<primary>APT</primary><secondary><foreignphrase>dist-upgrade</foreignphrase></secondary>"
msgstr "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"

msgid "One of the best-known features of Debian is its ability to upgrade an installed system from one stable release to the next: <foreignphrase>dist-upgrade</foreignphrase> — a well-known phrase — has largely contributed to the project's reputation. With a few precautions, upgrading a computer can take as little as a few minutes, or a few dozen minutes, depending on the download speed from the package repositories."
msgstr "En av de mest kjente funksjonene i Debian er evnen til å oppgradere et installert system fra en stabil utgave til den neste: <foreignphrase>dist-upgrade</foreignphrase> - en velkjent frase - har i stor grad bidratt til prosjektets omdømme. Med noen forholdsregler, kan det å oppgradere en datamaskin ta så lite som et par minutter, eller noen få dusin minutter, avhengig av nedlastingshastigheten til pakkebrønnene."

msgid "Recommended Procedure"
msgstr "Anbefalt prosedyre"

#, fuzzy
#| msgid "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"
msgid "<primary>system</primary><secondary><foreignphrase>release notes</foreignphrase></secondary>"
msgstr "<primary>APT</primary><secondary><foreignphrase>pinning</foreignphrase></secondary>"

msgid "Since Debian has quite some time to evolve in-between stable releases, you should read the release notes before upgrading."
msgstr "Siden Debian har litt tid for å utvikle seg i perioden mellom stabile versjoner, bør du lese produktmerknadene før du oppgraderer."

msgid "<emphasis>BACK TO BASICS</emphasis> Release notes"
msgstr "<emphasis>DET GRUNNLEGGENDE</emphasis> Versjonsmerknader"

#, fuzzy
#| msgid "<primary>trusted key</primary>"
msgid "<primary>release notes</primary>"
msgstr "<primary>pålitelig nøkkel</primary>"

msgid "The release notes for an operating system (and, more generally, for any software) are a document giving an overview of the software, with some details concerning the particularities of one version. These documents are generally short compared to the complete documentation, and they usually list the features which have been introduced since the previous version. They also give details on upgrading procedures, warnings for users of previous versions, and sometimes errata."
msgstr "Versjonsmerknadene til et operativsystem (og, mer generelt, for all programvare) er et dokument som gir en oversikt over programvaren, med noen detaljer angående særegenhetene til én versjon. Disse dokumentene er vanligvis korte sammenlignet med den komplette dokumentasjonen, og de lister vanligvis opp funksjoner som er blitt introdusert siden forrige versjon. De gir også detaljer om oppgraderingsprosedyrer, advarsler for brukere av tidligere versjoner, og noen ganger rettelser."

#, fuzzy
#| msgid "Release notes are available online: the release notes for the current stable release have a dedicated URL, while older release notes can be found with their codenames: <ulink type=\"block\" url=\"http://www.debian.org/releases/stable/releasenotes\" /> <ulink type=\"block\" url=\"http://www.debian.org/releases/wheezy/releasenotes\" />"
msgid "Release notes are available online: the release notes for the current stable release have a dedicated URL, while older release notes can be found with their codenames: <ulink type=\"block\" url=\"https://www.debian.org/releases/stable/releasenotes\" /> <ulink type=\"block\" url=\"https://www.debian.org/releases/stretch/releasenotes\" />"
msgstr "Versjonsmerknadene er tilgjengelig på nettet: Versjonsmerknadene for den nåværende stabile utgaven har en egen URL, mens eldre versjonsmerknader finnes med sine kodenavn: <ulink type=\"block\" url=\"http://www.debian.org/releases/stable/releasenotes\" /> <ulink type=\"block\" url=\"http://www.debian.org/releases/wheezy/releasenotes\" />"

#, fuzzy
#| msgid "In this section, we will focus on upgrading a <emphasis role=\"distribution\">Wheezy</emphasis> system to <emphasis role=\"distribution\">Jessie</emphasis>. This is a major operation on a system; as such, it is never 100% risk-free, and should not be attempted before all important data has been backed up."
msgid "In this section, we will focus on upgrading a <emphasis role=\"distribution\">Stretch</emphasis> system to <emphasis role=\"distribution\">Buster</emphasis>. This is a major operation on a system; as such, it is never 100% risk-free, and should not be attempted before all important data has been backed up."
msgstr "I denne seksjonen vil vi fokusere på å oppgradere et <emphasis role=\"distribution\">Wheezy</emphasis>-system til <emphasis role=\"distribution\">Jessie</emphasis>. Dette er en stor operasjon på et system; Og som sådan, er det aldri 100 prosent risikofritt, og bør ikke forsøkes før alle viktige data er sikkerhetskopiert ."

msgid "Another good habit which makes the upgrade easier (and shorter) is to tidy your installed packages and keep only the ones that are really needed. Helpful tools to do that include <command>aptitude</command>, <command>deborphan</command> and <command>debfoster</command> (see <xref linkend=\"sect.automatic-tracking\" />). For example, you can use the following command, and then use <command>aptitude</command>'s interactive mode to double check and fine-tune the scheduled removals:"
msgstr "En annen god vane som gjør oppgradering enklere (og kortere), er å rydde dine installerte pakker, og bare beholde dem som virkelig er nødvendige. Nyttige verktøy for å gjøre dette inkluderer <command>aptitude</command>, <command>deborphan</command> og <command>debfoster</command> (se <xref linkend=\"sect.automatic-tracking\" />). For eksempel kan du bruke følgende kommando, og så bruke  <command>aptitude</command>s interaktivmodus for å dobbeltsjekke og fininnstille de planlagte fjerningene:"

msgid "# <userinput>deborphan | xargs aptitude --schedule-only remove</userinput>"
msgstr "# <userinput>deborphan | xargs aptitude --schedule-only remove</userinput>"

#, fuzzy
#| msgid "<emphasis>TIP</emphasis> Package naming conventions"
msgid "<emphasis>TIP</emphasis> Finding changed files"
msgstr "<emphasis>TIPS</emphasis> Konvensjoner for navngiving av pakker"

#, fuzzy
#| msgid "<primary><command>debfoster</command></primary>"
msgid "<primary><command>debsums</command></primary>"
msgstr "<primary><command>debfoster</command></primary>"

msgid "The <command>debsums</command> command can check if files on the local system, which are part of an installed package, have been altered. It uses a simple hashsum algorithm and the information in <filename>/var/lib/dpkg/info/<replaceable>package</replaceable>.md5sums</filename> (see <xref linkend=\"sect.conffiles\" />). To find all altered configuration files use <command>debsums -ec</command>. To check the whole system, use <command>debsums -c</command>."
msgstr ""

#, fuzzy
#| msgid "Now for the upgrading itself. First, you need to change the <filename>/etc/apt/sources.list</filename> file to tell APT to get its packages from <emphasis role=\"distribution\">Jessie</emphasis> instead of <emphasis role=\"distribution\">Wheezy</emphasis>. If the file only contains references to <emphasis role=\"distribution\">Stable</emphasis> rather than explicit codenames, the change isn't even required, since <emphasis role=\"distribution\">Stable</emphasis> always refers to the latest released version of Debian. In both cases, the database of available packages must be refreshed (with the <command>apt update</command> command or the refresh button in <command>synaptic</command>)."
msgid "Now for the upgrading itself. First, you need to change the <filename>/etc/apt/sources.list</filename> file to tell APT to get its packages from <emphasis role=\"distribution\">Buster</emphasis> instead of <emphasis role=\"distribution\">Stretch</emphasis>. If the file only contains references to <emphasis role=\"distribution\">Stable</emphasis> rather than explicit codenames, the change isn't even required, since <emphasis role=\"distribution\">Stable</emphasis> always refers to the latest released version of Debian. In both cases, the database of available packages must be refreshed (with the <command>apt update</command> command or the refresh button in <command>synaptic</command>)."
msgstr "Nå for oppgraderingen selv. Først må du endre <filename>/etc/apt/sources.list</filename>-filen for å fortelle APT om å få sine pakker fra <emphasis role=\"distribution\">Jessie</emphasis> i stedet for fra <emphasis role=\"distribution\">Wheezy</emphasis>. Hvis filen bare inneholder referanser til <emphasis role=\"distribution\">Stable</emphasis> snarere enn til eksplisitte kodenavn, er endringen ikke engang nødvendig, siden <emphasis role=\"distribution\">Stable</emphasis> alltid refererer til den nyeste versjonen av Debian. I begge tilfeller må databasen med tilgjengelige pakker friskes opp med <command>apt update</command>-kommandoen, eller med oppdateringsknappen (refresh button) i <command>synaptic</command>)."

#, fuzzy
#| msgid "<emphasis>IN PRACTICE</emphasis> The Falcot Corp case"
msgid "<emphasis>NOTE</emphasis> Repository information changes"
msgstr "<emphasis>I PRAKSIS</emphasis> Situasjonen hos Falcot Corp"

msgid "When a new stable version of Debian is released, some fields in the <filename>Release</filename> and <filename>InRelease</filename> files of a repository change, like the <literal>Suite</literal> field. When this happens, downloading data from the repository is declined until the change is confirmed to ensure the user is prepared for it. To confirm the change use the <literal>--allow-releaseinfo-change</literal> or <literal>--allow-releaseinfo-change-<replaceable>field</replaceable></literal> options for <command>apt-get</command> or the <literal>Acquire::AllowReleaseInfoChange</literal> configuration option."
msgstr ""

msgid "Once these new package sources are registered, you should first do a minimal upgrade with <command>apt upgrade</command>. By doing the upgrade in two steps, we ease the job of the package management tools and often ensure that we have the latest versions of those, which might have accumulated bugfixes and improvements required to complete the full distribution upgrade."
msgstr "Straks disse nye pakkekildene er registrert, bør du først gjøre en liten oppgradering med <command>apt upgrade</command>. Ved å gjøre oppgraderingen i to trinn, lettes jobben for pakkens styringsverktøy, og sikrer ofte at vi har de nyeste versjonene av disse, som kanskje har akkumulert feilrettinger og forbedringer som kreves for å fullføre hele distribusjonsoppgraderingen."

#, fuzzy
#| msgid "Once this first upgrade is done, it is time to handle the upgrade itself, either with <command>apt full-upgrade</command>, <command>aptitude</command>, or <command>synaptic</command>. You should carefully check the suggested actions before applying them: you might want to add suggested packages or deselect packages which are only recommended and known not to be useful. In any case, the front-end should come up with a scenario ending in a coherent and up-to-date <emphasis role=\"distribution\">Jessie</emphasis> system. Then, all you need is to do is wait while the required packages are downloaded, answer the Debconf questions and possibly those about locally modified configuration files, and sit back while APT does its magic."
msgid "Once this first upgrade is done, it is time to handle the upgrade itself, either with <command>apt full-upgrade</command>, <command>aptitude</command>, or <command>synaptic</command>. You should carefully check the suggested actions before applying them: you might want to add suggested packages or deselect packages which are only recommended and known not to be useful. In any case, the front-end should come up with a scenario ending in a coherent and up-to-date <emphasis role=\"distribution\">Buster</emphasis> system. Then, all you need is to do is wait while the required packages are downloaded, answer the debconf questions and possibly those about locally modified configuration files, and sit back while APT does its magic."
msgstr "Straks disse nye pakkekildene er registrert, bør du først gjøre en liten oppgradering med <command>apt full-upgrade</command>, <command>aptitude</command>, eller <command>synaptic</command>. Du bør nøye kontrollere de foreslåtte tiltakene før du bruker dem: Du kan ønske å legge til foreslåtte pakker, eller velge bort pakker som kun er anbefalt og kjente for ikke å være nyttige. I alle fall skal brukergrensesnittet komme opp med et scenario som ender i et sammenhengende og up-to-date <emphasis role=\"distribution\">Jessie</emphasis>-system. Deretter er alt du trenger å gjøre er å vente mens de nødvendige pakkene er lastet ned, svare på Debconf-spørsmål, og muligens om lokale endringer i oppsettsfiler, og lene deg tilbake mens APT utfører sin magi."

msgid "Handling Problems after an Upgrade"
msgstr "Å håndtere problemer etter en oppgradering"

msgid "In spite of the Debian maintainers' best efforts, a major system upgrade isn't always as smooth as you could wish. New software versions may be incompatible with previous ones (for instance, their default behavior or their data format may have changed). Also, some bugs may slip through the cracks despite the testing phase which always precedes a Debian release."
msgstr "Til tross for Debian vedlikeholderes beste innsats, går en større oppgradering ikke alltid så glatt som du kan ønske deg. Nye programvareversjoner kan være uforenlig med de foregående (for eksempel kan standardopptredene eller dataformatet deres ha endret seg). Dessuten kan noen bug slippe gjennom nåløyet til tross for testfasen som alltid går foran en Debian-utgivelse."

msgid "To anticipate some of these problems, you can install the <emphasis role=\"pkg\">apt-listchanges</emphasis> package, which displays information about possible problems at the beginning of a package upgrade. This information is compiled by the package maintainers and put in <filename>/usr/share/doc/<replaceable>package</replaceable>/NEWS.Debian</filename> files for the benefit of users. Reading these files (possibly through <emphasis role=\"pkg\">apt-listchanges</emphasis>) should help you avoid bad surprises."
msgstr "For å foregripe noen av disse problemene kan du installere <emphasis role=\"pkg\">apt-listchanges</emphasis>-pakken, som viser informasjon om mulige problemer ved begynnelsen av en pakkeoppgradering. Denne informasjonen er utarbeidet av pakkens vedlikeholder, og satt i <filename>/usr/share/doc/<replaceable>pakke</replaceable>/NEWS.Debian</filename>-filer for å gjøre det enklere for brukerne. Å lese disse filene (eventuelt i <emphasis role=\"pkg\">apt-listchanges</emphasis>) bør hjelpe deg å unngå uønskede overraskelser."

#, fuzzy
#| msgid "You might sometimes find that the new version of a software doesn't work at all. This generally happens if the application isn't particularly popular and hasn't been tested enough; a last-minute update can also introduce regressions which are only found after the stable release. In both cases, the first thing to do is to have a look at the bug tracking system at <literal>https://bugs.debian.org/<replaceable>package</replaceable></literal>, and check whether the problem has already been reported. If it hasn't, you should report it yourself with <command>reportbug</command>. If it is already known, the bug report and the associated messages are usually an excellent source of information related to the bug:"
msgid "You might sometimes find that the new version of a software doesn't work at all. This generally happens if the application isn't particularly popular and hasn't been tested enough; a last-minute update can also introduce regressions which are only found after the stable release. In both cases, the first thing to do is to have a look at the bug tracking system at <ulink url=\"https://bugs.debian.org\"><literal>https://bugs.debian.org/<replaceable>package</replaceable></literal></ulink>, and check whether the problem has already been reported. If this is case it will be also listed before the upgrade begins, if you have <emphasis role=\"pkg\">apt-listbugs</emphasis> installed. If it hasn't, you should report it yourself with <command>reportbug</command>. If it is already known, the bug report and the associated messages are usually an excellent source of information related to the bug:"
msgstr "Du kan noen ganger finne at den nye versjonen av en programvare ikke fungerer i det hele tatt. Dette skjer vanligvis hvis programmet ikke er spesielt populært, og har ikke blitt testet nok: En i siste liten oppdatering kan også innføre regresjoner som bare finnes etter den stabile («stable») utgivelsen. I begge tilfeller er det første å gjøre å se på feilrapportsystemet på <literal>https://bugs.debian.org/<replaceable>pakke</replaceable></literal>, og sjekke om problemet allerede er blitt rapportert. Hvis det ikke er, bør du rapportere det selv med <command>reportbug</command>. Hvis det allerede er kjent, er feilrapporten og de tilhørende meldingene vanligvis en utmerket kilde til informasjon om feilen:"

msgid "sometimes a patch already exists, and it is available on the bug report; you can then recompile a fixed version of the broken package locally (see <xref linkend=\"sect.rebuilding-package\" />);"
msgstr "noen ganger finnes en patch (oppdatering) allerede, og den er tilgjengelig på feilrapporten; du kan deretter lokalt rekompilere en forbedret versjon av den ødelagte pakken (se <xref linkend=\"sect.rebuilding-package\" />);"

msgid "in other cases, users may have found a workaround for the problem and shared their insights about it in their replies to the report;"
msgstr "i andre tilfeller kan brukere ha funnet en løsning på problemet, og delt sin innsikt om det i sine svar til rapporteringen;"

msgid "in yet other cases, a fixed package may have already been prepared and made public by the maintainer."
msgstr "I atter andre tilfeller, kan en fast pakke ha blitt utarbeidet og offentliggjort av vedlikeholderen."

#, fuzzy
#| msgid "Depending on the severity of the bug, a new version of the package may be prepared specifically for a new revision of the stable release. When this happens, the fixed package is made available in the <literal>proposed-updates</literal> section of the Debian mirrors (see <xref linkend=\"sect.proposed-updates\" />). The corresponding entry can then be temporarily added to the <filename>sources.list</filename> file, and updated packages can be installed with <command>apt</command> or <command>aptitude</command>."
msgid "Depending on the severity of the bug, a new version of the package may be prepared specifically for a new revision of the stable release. When this happens, the fixed package is made available in the <literal>proposed-updates</literal> section of the Debian mirrors (see <xref linkend=\"sect.apt-sources.list.stable.proposed-updates\" />). The corresponding entry can then be temporarily added to the <filename>sources.list</filename> file, and updated packages can be installed with <command>apt</command> or <command>aptitude</command>."
msgstr "Avhengig av hvor alvorlig feilen er, kan en ny versjon av pakken bli forberedt spesielt til en ny revisjon av «stable»-utgivelsen. Når dette skjer, blir den forbedrede pakken gjort tilgjengelig i <literal>proposed-updates</literal>-seksjonen i Debian-speilene (se <xref linkend=\"sect.proposed-updates\" />). Den tilsvarende oppføring kan da midlertidig legges til <filename>sources.list</filename>-filen, og oppdaterte pakker kan installeres med <command>apt</command> eller <command>aptitude</command>."

#, fuzzy
#| msgid "Sometimes the fixed package isn't available in this section yet because it is pending a validation by the Stable Release Managers. You can verify if that's the case on their web page. Packages listed there aren't available yet, but at least you know that the publication process is ongoing. <ulink type=\"block\" url=\"https://release.debian.org/proposed-updates/stable.html\" />"
msgid "Sometimes the fixed package isn't available in this section yet because it is pending a validation by the Stable Release Managers. You can verify if that is the case on their web page. Packages listed there aren't available yet, but at least you know that the publication process is ongoing. <ulink type=\"block\" url=\"https://release.debian.org/proposed-updates/stable.html\" />"
msgstr "Noen ganger er den forbedrede pakken ikke tilgjengelig i denne delen ennå, i påvente av en validering av Stable-utgivelsesadministratorne. Du kan kontrollere om det er tilfelle på deres nettside. Pakker oppført der er ikke tilgjengelige ennå, men da vet du i det minste at publiseringsprosessen pågår. <ulink type=\"block\" url=\"https://release.debian.org/proposed-updates/stable.html\" />"

#, fuzzy
#| msgid "Handling Problems after an Upgrade"
msgid "Cleaning Up after an Upgrade"
msgstr "Å håndtere problemer etter en oppgradering"

#, fuzzy
#| msgid "<primary>package</primary><secondary>seal</secondary>"
msgid "<primary>upgrade</primary><secondary>cleaning</secondary>"
msgstr "<primary>pakke</primary><secondary>forsegling</secondary>"

msgid "APT usually ensures a clean upgrade, pulling in new and updated dependencies, or removing conflicting packages. But even being such a great tool, it cannot cover all tasks users and administrators will face after an upgrade, because they require a human decision."
msgstr ""

msgid "Packages removed from the Debian Archive"
msgstr ""

#, fuzzy
#| msgid "<primary><command>apt show</command></primary>"
msgid "<primary><command>apt-show-versions</command></primary>"
msgstr "<primary><command>apt show</command></primary>"

msgid "Sometimes the Debian FTP Masters remove packages from the Debian archive, because they contain release critical bugs, were abandoned by their upstream author or their package maintainer, or simply reached their end of life. In this case a newer Debian release does not ship the package anymore. To find all packages, which do not have a package source, use the <command>apt-show-versions</command> command:"
msgstr ""

#, fuzzy
#| msgid "<computeroutput># </computeroutput><userinput>apt --reinstall install postfix</userinput>"
msgid "<computeroutput>$ </computeroutput><userinput>apt-show-versions | grep \"No available version\"</userinput>"
msgstr "<computeroutput># </computeroutput><userinput>apt --reinstall install postfix</userinput>"

msgid "A similar result can be achieved by <command>aptitude search ~o</command>. If the packages found are not required anymore, they should be purged from the system, because they will not face any updates for critical or security related bugs anymore."
msgstr ""

msgid "Dummy and Transitional Packages"
msgstr ""

#, fuzzy
#| msgid "<primary>removal of a package</primary>"
msgid "<primary>dummy package</primary>"
msgstr "<primary>fjerning av en pakke</primary>"

#, fuzzy
#| msgid "<primary>removal of a package</primary>"
msgid "<primary>transitional package</primary>"
msgstr "<primary>fjerning av en pakke</primary>"

#, fuzzy
#| msgid "<primary>package</primary><secondary>seal</secondary>"
msgid "<primary>package</primary><secondary>transitional</secondary>"
msgstr "<primary>pakke</primary><secondary>forsegling</secondary>"

#, fuzzy
#| msgid "<primary>package</primary><secondary>seal</secondary>"
msgid "<primary>package</primary><secondary>dummy</secondary>"
msgstr "<primary>pakke</primary><secondary>forsegling</secondary>"

msgid "Sometimes, it might be necessary for a package to get a new name. In this case often the old package is kept as an (almost) empty package, depending on the new one and installing only the mandatory files in <filename>/usr/share/doc/<replaceable>package</replaceable>/</filename>. Such packages are called \"dummy\" or \"transitional\" packages. If the package maintainer in charge also changed the section of this package to <literal>oldlibs</literal>, then tools like <command>aptitude</command>, <command>deboprhan</command>, or <command>debfoster</command> (see sidebar <xref linkend=\"sidebar.deborphan-debfoster\" />) can pickup these packages to suggest their removal."
msgstr ""

msgid "Unfortunately there is currently no foolproof way of making sure that these packages are automatically removed or picked by the tools mentioned above. One way to check if the system still has some of these packages installed, is to look through the package descriptions of installed packages and then check the results. Be careful not to schedule the results for automatic removal, because this method can lead to false positives:"
msgstr ""

#, fuzzy
#| msgid "<computeroutput>$ </computeroutput><userinput>dpkg --get-selections &gt;pkg-list</userinput>"
msgid "<computeroutput>$ </computeroutput><userinput>dpkg -l | grep ^ii | grep -i -E \"(transition|dummy)\"</userinput>"
msgstr "<computeroutput>$ </computeroutput><userinput>dpkg --get-selections &gt;pkg-list</userinput>"

msgid "Because the new package is pulled in as a dependency of the transitional package, it is usually marked as automatically installed and might be scheduled for removal if you try to purge the transitional package from your system. In this case you can use either of the approaches described in sidebar <xref linkend=\"sidebar.apt-install-and-remove\" /> and <xref linkend=\"sect.automatic-tracking\" /> to selectively remove the transitional package."
msgstr ""

msgid "Old or Unused Configuration Files"
msgstr ""

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary>configuration files</primary><secondary><filename>.dpkg-dist</filename></secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary>configuration files</primary><secondary><filename>.dpkg-old</filename></secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>contrib</literal></secondary>"
msgid "<primary>configuration files</primary><secondary><filename>.ucf-old</filename></secondary>"
msgstr "<primary>arkiv</primary><secondary><literal>contrib</literal></secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary>configuration files</primary><secondary><filename>.ucf-new</filename></secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

#, fuzzy
#| msgid "<primary>section</primary><secondary><literal>main</literal></secondary>"
msgid "<primary>configuration files</primary><secondary><filename>.ucf-dist</filename></secondary>"
msgstr "<primary>seksjonen</primary><secondary><literal>main</literal></secondary>"

msgid "If the upgrade was successful there might be some configuration file cruft, either from dpkg (see <xref linkend=\"sect.conffiles\" />), ucf or from removed packages. The latter can be <link linkend=\"sidebar.purge\">purged</link> by using <command>apt autoremove --purge</command>. The configuration files, that were handled by <emphasis role=\"pkg\">dpkg</emphasis> or <emphasis role=\"pkg\">ucf</emphasis> during the upgrade process, have left some counterparts with a dedicated suffix (e.g. <filename>.dpkg-dist</filename>, <filename>.dpkg-old</filename>, <filename>.ucf-old</filename>). Using the <command>find</command> or <command>locate</command> command can help to track them down. If they are no longer of any use, they can be deleted."
msgstr ""

msgid "Files not owned by any Package"
msgstr ""

#, fuzzy
#| msgid "<primary><emphasis role=\"pkg\">approx</emphasis></primary>"
msgid "<primary><emphasis role=\"pkg\">cruft</emphasis></primary>"
msgstr "<primary><emphasis role=\"pkg\">approx</emphasis></primary>"

#, fuzzy
#| msgid "<primary><emphasis role=\"pkg\">apt-cacher-ng</emphasis></primary>"
msgid "<primary><emphasis role=\"pkg\">cruft-ng</emphasis></primary>"
msgstr "<primary><emphasis role=\"pkg\">apt-cacher-ng</emphasis></primary>"

msgid "The Debian policy enforces that packages don't leave files behind when they are purged. Violating this principle is a serious bug and you will rarely encounter it. If you do, report it; and if you are curious though, you can use the <emphasis role=\"pkg\">cruft</emphasis> or <emphasis role=\"pkg\">cruft-ng</emphasis> package to check your system for files not owned by any package."
msgstr ""

msgid "Keeping a System Up to Date"
msgstr "Å holde systemet oppdatert"

#, fuzzy
#| msgid "The Debian distribution is dynamic and changes continually. Most of the changes are in the <emphasis role=\"distribution\">Testing</emphasis> and <emphasis role=\"distribution\">Unstable</emphasis> versions, but even <emphasis role=\"distribution\">Stable</emphasis> is updated from time to time, mostly for security-related fixes. Whatever version of Debian a system runs, it is generally a good idea to keep it up to date, so that you can get the benefit of recent evolutions and bug fixes."
msgid "The Debian distribution is dynamic and changes continually. Most of the changes are in the <emphasis role=\"distribution\">Testing</emphasis> and <emphasis role=\"distribution\">Unstable</emphasis> versions, but even <emphasis role=\"distribution\">Stable</emphasis> is updated from time to time, mostly for security-related fixes. Whatever version of Debian a system runs, it is generally a good idea to keep it up to date, so that you can get the benefit of recent evolution and bug fixes."
msgstr "Debian-distribusjonen er dynamisk og endrer seg kontinuerlig. Mesteparten av endringene er i <emphasis role=\"distribution\">Testing</emphasis> og <emphasis role=\"distribution\">Unstable</emphasis>-versjonene, men selv <emphasis role=\"distribution\">Stable</emphasis> oppdateres fra tid til annen, for det meste med sikkerhetsrelaterte løsninger. Uansett hvilken versjon av Debian som kjører systemet, er det vanligvis en god idé å holde det oppdatert, slik at du får nytte av nyere videreutviklinger og feilrettinger."

msgid "While it is of course possible to periodically run a tool to check for available updates and run the upgrades, such a repetitive task is tedious, especially when it needs to be performed on several machines. Fortunately, like many repetitive tasks, it can be partly automated, and a set of tools have already been developed to that effect."
msgstr "Det er selvfølgelig mulig å kjøre et verktøy jevnlig for å se etter tilgjengelige oppdateringer og kjøre oppgraderinger. Slike repeterende oppgaver er kjedelige, spesielt når det må utføres på flere maskiner. Heldigvis, som for mange repeterende oppgaver, kan de delvis automatiseres. Et sett med verktøy er allerede utviklet til det formålet."

msgid "The first of these tools is <command>apticron</command>, in the package of the same name. Its main effect is to run a script daily (via <command>cron</command>). The script updates the list of available packages, and, if some installed packages are not in the latest available version, it sends an email with a list of these packages along with the changes that have been made in the new versions. Obviously, this package mostly targets users of Debian <emphasis role=\"distribution\">Stable</emphasis>, since the daily emails would be very long for the faster paced versions of Debian. When updates are available, <command>apticron</command> automatically downloads them. It does not install them — the administrator will still do it — but having the packages already downloaded and available locally (in APT's cache) makes the job faster."
msgstr "Det første av disse verktøyene er <command>apticron</command>, i pakken med samme navn. Den kjører et skript daglig <command>cron</command>). Skriptet oppdaterer listen over tilgjengelige pakker, og hvis noen installerte pakker ikke er i den nyeste versjonen, sender den en e-post med en liste over disse pakkene sammen med de endringene som er gjort i de nye versjonene. Selvfølgelig er denne pakken hovedsakelig rettet mot brukere av Debian <emphasis role=\"distribution\">Stable</emphasis>, siden de daglige e-postene ville være svært lange for de versjoner av Debian som har et raskere tempo. Når oppdateringer er tilgjengelige, laster <command>apticron</command> dem ned automatisk. De blir ikke installert - for det må administrator fortsatt gjøre - men å ha pakkene allerede nedlastet og tilgjengelig lokalt (i APTs hurtiglager) blir jobben raskere."

#, fuzzy
#| msgid "Administrators in charge of several computers will no doubt appreciate being informed of pending upgrades, but the upgrades themselves are still as tedious as they used to be, which is where the <filename>/etc/cron.daily/apt</filename> script (in the <emphasis role=\"pkg\">apt</emphasis> package) comes in handy. This script is also run daily (and non-interactively) by <command>cron</command>. To control its behavior, use APT configuration variables (which are therefore stored in a file under <filename>/etc/apt/apt.conf.d/</filename>). The main variables are:"
msgid "Administrators in charge of several computers will no doubt appreciate being informed of pending upgrades, but the upgrades themselves are still as tedious as they used to be. Periodic upgrades can be enabled: it uses a <command>systemd</command> timer unit or <command>cron</command>. If <emphasis role=\"pkg\">systemd</emphasis> is not installed, the <filename>/etc/cron.daily/apt-compat</filename> script (in the <emphasis role=\"pkg\">apt</emphasis> package) comes in handy. This script is run daily (and non-interactively) by <command>cron</command>. To control the behavior, use APT configuration variables (which are therefore stored in a file <filename>/etc/apt/apt.conf.d/10periodic</filename>). The main variables are:"
msgstr "Administratorer med ansvaret for flere datamaskiner vil uten tvil sette pris på å bli informert om ventende oppgraderinger, men oppgraderingene selv er fortsatt like kjedelige som de pleide å være. Her kommer <filename>/etc/cron.daily/apt</filename>-skriptet (i <emphasis role=\"pkg\">apt</emphasis>-pakken) hendig inn. Dette skriptet kjøres også daglig (og ikke-interaktivt) av <command>cron</command>. For sin egen kontroll bruker APT oppsettsvariabler (som derfor er lagret i en fil under <filename>/etc/apt/apt.conf.d/</filename>). De viktigste variablene er:"

msgid "<indexterm><primary>APT</primary><secondary><literal>APT::Periodic::Update-Package-Lists</literal></secondary></indexterm> <literal>APT::Periodic::Update-Package-Lists</literal>"
msgstr ""

msgid "This option allows you to specify the frequency (in days) at which the package lists are refreshed. <command>apticron</command> users can do without this variable, since <command>apticron</command> already does this task."
msgstr "Dette alternativet lar deg angi frekvensen (i dager) for hvor ofte pakkelistene blir oppdatert. <command>apticron</command>-brukere kan klare seg uten denne variabelen, ettersom <command>apticron</command> allerede utfører denne oppgaven."

msgid "<indexterm><primary>APT</primary><secondary><literal>APT::Periodic::Download-Upgradeable-Packages</literal></secondary></indexterm> <literal>APT::Periodic::Download-Upgradeable-Packages</literal>"
msgstr ""

msgid "Again, this option indicates a frequency (in days), this time for the downloading of the actual packages. Again, <command>apticron</command> users won't need it."
msgstr "Igjen, dette alternativet indikereren frekvens (i dager), denne gangen for nedlastingen av selve pakkene. En gang til, <command>apticron</command>-brukere vil ikke trenge dem."

msgid "<indexterm><primary>APT</primary><secondary><literal>APT::Periodic::AutocleanInterval</literal></secondary></indexterm> <literal>APT::Periodic::AutocleanInterval</literal>"
msgstr ""

msgid "This option covers a feature that <command>apticron</command> doesn't have. It controls how often obsolete packages (those not referenced by any distribution anymore) are removed from the APT cache. This keeps the APT cache at a reasonable size and means that you don't need to worry about that task."
msgstr "Dette alternativet omfatter en funksjon som <command>apticron</command> ikke har. Den styrer hvor ofte avleggse pakker (de som ikke er referert til av noen distribusjoner lenger) blir fjernet fra APTs hurtiglager. Dette holder APT hurtiglager på en rimelig størrelse, og betyr at du ikke trenger å bekymre deg for den oppgaven."

msgid "<indexterm><primary>APT</primary><secondary><literal>APT::Periodic::Unattended-Upgrade</literal></secondary></indexterm> <literal>APT::Periodic::Unattended-Upgrade</literal>"
msgstr ""

#, fuzzy
#| msgid "<primary><emphasis role=\"pkg\">unattended-upgrades</emphasis></primary>"
msgid "<primary><emphasis role=\"pkg\">unattended-upgrades</emphasis></primary><secondary><filename>/etc/apt/apt.conf.d/50unattended-upgrades</filename></secondary>"
msgstr "<primary><emphasis role=\"pkg\">unattended-upgrades</emphasis></primary>"

#, fuzzy
#| msgid "<primary><filename>/etc/apt/apt.conf.d/</filename></primary>"
msgid "<primary><filename>/etc/apt/apt.conf.d/50unattended-upgrades</filename></primary>"
msgstr "<primary><filename>/etc/apt/apt.conf.d/</filename></primary>"

#, fuzzy
#| msgid "When this option is enabled, the daily script will execute <command>unattended-upgrade</command> (from the <emphasis role=\"pkg\">unattended-upgrades</emphasis> package) which — as its name suggest — can automatize the upgrade process for some packages (by default it only takes care of security updates, but this can be customized in <filename>/etc/apt/apt.conf.d/50unattended-upgrades</filename>). Note that this option can be set with the help of debconf by running <command>dpkg-reconfigure -plow unattended-upgrades</command>."
msgid "When this option is enabled, the daily script will execute <command>unattended-upgrade</command> (from the <emphasis role=\"pkg\">unattended-upgrades</emphasis> package) which — as its name suggest — can automatize the upgrade process for some packages (by default it only takes care of security updates, but this can be customized in <filename>/etc/apt/apt.conf.d/50unattended-upgrades</filename>). Note that this option can be set with the help of debconf by running <command>dpkg-reconfigure -plow unattended-upgrades</command>. If <emphasis role=\"pkg\">apt-listbugs</emphasis> is installed it will prevent an automatic upgrade of packages which are affected by an already reported serious or grave bug."
msgstr "Med dette valget aktivert, vil det daglige skriptet kjøre <command>unattended-upgrade</command> (fra <emphasis role=\"pkg\">unattended-upgrades</emphasis>-pakken) som - som navnet antyder - kan automatisere oppgraderingsprosessen for noen pakker (som standard tar det bare vare på sikkerhetsoppdateringer, men dette kan tilpasses i <filename>/etc/apt/apt.conf.d/50unattended-upgrades</filename>). Merk at dette valget kan settes ved hjelp av debconf ved å kjøre <command>dpkg-reconfigure -plow unattended-upgrades</command>."

#, fuzzy
#| msgid "Other options can allow you to control the cache cleaning behavior with more precision. They are not listed here, but they are described in the <filename>/etc/cron.daily/apt</filename> script."
msgid "Other options can allow you to control the cache cleaning behavior with more precision. They are not listed here, but they are described in the <filename>/usr/lib/apt/apt.systemd.daily</filename> script."
msgstr "Andre alternativer kan tillate deg å kontrollere hurtiglagerets oppryddingsatferd med mer presisjon. De er ikke listet her, men er beskrevet i <filename>/etc/cron.daily/apt</filename>-skriptet."

msgid "<primary><emphasis role=\"pkg\">gnome-packagekit</emphasis></primary>"
msgstr "<primary><emphasis role=\"pkg\">gnome-packagekit</emphasis></primary>"

#, fuzzy
#| msgid "These tools work very well for servers, but desktop users generally prefer a more interactive system. That is why the “Debian desktop environment” task installs <emphasis role=\"pkg\">gnome-packagekit</emphasis> (at least when you select GNOME as desktop environment). It provides an icon in the notification area of desktop environments when updates are available; clicking on this icon then runs <command>gpk-update-viewer</command>, a simplified interface to perform updates. You can browse through available updates, read the short description of the relevant packages and the corresponding <filename>changelog</filename> entries, and select whether to apply the update or not on a case-by-case basis."
msgid "These tools work very well for servers, but desktop users generally prefer a more interactive system. The package <emphasis role=\"pkg\">gnome-software</emphasis> provides an icon in the notification area of desktop environments when updates are available; clicking on this icon then runs an interface to perform updates. You can browse through available updates, read the short description of the relevant packages and the corresponding <filename>changelog</filename> entries, and select whether to apply the update or not on a case-by-case basis."
msgstr "Disse verktøyene fungerer veldig bra på tjenere, men skrivebordsbrukere foretrekker generelt et mer interaktivt system. Det er derfor «Debian desktop environement» sin oppgave å installere <emphasis role=\"pkg\">gnome-packagekit</emphasis> (i hvert fall når du velger GNOME som skrivebordsmiljø). Det gir et ikon i varslingsområdet for skrivebordsmiljøer når oppdateringer er tilgjengelige; å klikke på dette ikonet kjører så <command>gpk-update-viewer</command>, et forenklet grensesnitt for å utføre oppdateringer. Du kan bla gjennom tilgjengelige oppdateringer, lese den korte beskrivelsen av de aktuelle pakkene og det overensstemmende <filename>changelog</filename> oppsettet, og fra sak til sak velge om du vil bruke oppdateringen eller ikke."

msgid "Upgrading with <command>gpk-update-viewer</command>"
msgstr "Oppgradering med <command>gpk-update-viewer</command>"

msgid "This tool is no longer installed in the default GNOME desktop. The new philosophy is that security updates should be automatically installed, either in the background or, preferably, when you shutdown your computer so as to not confuse any running application."
msgstr ""

msgid "Automatic Upgrades"
msgstr "Automatiske oppgraderinger"

msgid "<primary>upgrade</primary><secondary>automatic system upgrade</secondary>"
msgstr "<primary>oppgradere</primary><secondary>automatisk system oppgradere</secondary>"

msgid "<primary>automatic upgrade</primary>"
msgstr "<primary>automatisk oppgradering</primary>"

msgid "Since Falcot Corp has many computers but only limited manpower, its administrators try to make upgrades as automatic as possible. The programs in charge of these processes must therefore run with no human intervention."
msgstr "Siden Falcot Corp har mange datamaskiner, men bare begrenset arbeidskraft, prøver administratorene der å gjøre oppgraderinger så automatiske som mulig. Programmene som er ansvarlige for disse prosessene må derfor kjøres uten menneskelig inngripen."

msgid "Configuring <command>dpkg</command>"
msgstr "Oppsett av <command>dpkg</command>"

#, fuzzy
#| msgid "As we have already mentioned (see sidebar <xref linkend=\"sidebar.questions-conffiles\" />), <command>dpkg</command> can be instructed not to ask for confirmation when replacing a configuration file (with the <literal>--force-confdef --force-confold</literal> options). Interactions can, however, have three other sources: some come from APT itself, some are handled by <command>debconf</command>, and some happen on the command line due to package configuration scripts."
msgid "As we have already mentioned (see sidebar <xref linkend=\"sidebar.questions-conffiles\" />), <command>dpkg</command> can be instructed not to ask for confirmation when replacing a configuration file (with the <literal>--force-confdef --force-confold</literal> options). Interactions can, however, have three other sources: some come from APT itself, some are handled by <command>debconf</command>, and some happen on the command line due to package configuration scripts (sometimes handled by <emphasis role=\"pkg\">ucf</emphasis>)."
msgstr "Som vi allerede har nevnt kan (se sidefelt <xref linkend=\"sidebar.questions-conffiles\" />), <command>dpkg</command> bli instruert om å ikke be om bekreftelse når du skifter ut en oppsettsfil (med <literal>--force-confdef --force-confold</literal>-valgene). Interaksjoner kan imidlertid komme fra tre andre kilder: Noen fra APT selv, noen er håndtert av <command>debconf</command>, og noen skjer på kommandolinjen som følge av pakkeoppsettsskript."

msgid "Configuring APT"
msgstr "Oppsett av APT"

msgid "The case of APT is simple: the <literal>-y</literal> option (or <literal>--assume-yes</literal>) tells APT to consider the answer to all its questions to be “yes”."
msgstr "For APT er enkel: <literal>-y</literal>-valget (eller <literal>--assume-yes</literal>) ber APT å anse svaret på alle dens spørsmål for «yes»."

msgid "Configuring <command>debconf</command>"
msgstr "Oppsett av <command>debconf</command>"

msgid "The case of <command>debconf</command> deserves more details. This program was, from its inception, designed to control the relevance and volume of questions displayed to the user, as well as the way they are shown. That is why its configuration requests a minimal priority for questions; only questions above the minimal priority are displayed. <command>debconf</command> assumes the default answer (defined by the package maintainer) for questions which it decided to skip."
msgstr "Oppgaven <command>debconf</command> fortjener flere detaljer. Dette programmet var, fra begynnelsen av, designet for å styre relevans og antall spørsmål som vises til brukeren, samt måten de vises på. Det er derfor oppsettet knytter liten oppmerksomhet til spørsmål; bare spørsmål med mer enn minimal prioritet blir vist. <command>debconf</command> forutsetter standard svar (definert av pakkeutvikleren ) for spørsmål det er besluttet å hoppe over."

msgid "The other relevant configuration element is the interface used by the front-end. If you choose <literal>noninteractive</literal> out of the choices, all user interaction is disabled. If a package tries to display an informative note, it will be sent to the administrator by email."
msgstr "Det andre relevante oppsettselementet er grensesnittet som brukes av grenseflaten. Hvis du velger <literal>noninteractive</literal> blant valgene, er all brukerinteraksjon deaktivert. Hvis en pakke prøver å vise en informativ merknad, vil den bli sendt til administratoren via e-post."

msgid "To reconfigure <command>debconf</command>, use the <command>dpkg-reconfigure</command> tool from the <emphasis role=\"pkg\">debconf</emphasis> package; the relevant command is <command>dpkg-reconfigure debconf</command>. Note that the configured values can be temporarily overridden with environment variables when needed (for instance, <varname>DEBIAN_FRONTEND</varname> controls the interface, as documented in the <citerefentry><refentrytitle>debconf</refentrytitle><manvolnum>7</manvolnum></citerefentry> manual page)."
msgstr "For å refigurere <command>debconf</command> bruk <command>dpkg-reconfigure</command>-verktøyet fra <emphasis role=\"pkg\">debconf</emphasis>-pakken; den relevante kommandoen er <command>dpkg-reconfigure debconf</command>. Legg merke til at de oppsatte verdiene midlertidig kan overstyres av miljøvariabler ved behov (for eksempel <varname>DEBIAN_FRONTEND</varname> kontrollerer brukergrensesnittet, som dokumentert i manualsiden <citerefentry><refentrytitle>debconf</refentrytitle><manvolnum>7</manvolnum></citerefentry>)."

msgid "Handling Command Line Interactions"
msgstr "Å håndtere kommandolinjesamhandling"

msgid "The last source of interactions, and the hardest to get rid of, is the configuration scripts run by <command>dpkg</command>. There is unfortunately no standard solution, and no answer is overwhelmingly better than another."
msgstr "Den siste kilden til samhandling, og den vanskeligste å bli kvitt, er oppsettsskriptet som drives av <command>dpkg</command>. Det er dessverre ingen standardløsning, og ingen svar er overveiende bedre enn en annet."

msgid "The common approach is to suppress the standard input by redirecting the empty content of <filename>/dev/null</filename> into it with <command><replaceable>command</replaceable> &lt;/dev/null</command>, or to feed it with an endless stream of newlines. None of these methods is 100 % reliable, but they generally lead to the default answers being used, since most scripts consider a lack of reply as an acceptance of the default value."
msgstr "Den vanligste metoden er å undertrykke standard inndata ved å omdirigere det tomme innholdet i <filename>/dev/null</filename> til den med <command><replaceable>command</replaceable> &lt;/dev/null</command>, eller å mate den med en endeløs strøm av linjeskift. Ingen av disse metodene er 100 prosent pålitelige, men de fører vanligvis til at standardsvarene blir brukt, siden de fleste skript vurderer en mangel på svar som å akseptere standardverdien."

msgid "The Miracle Combination"
msgstr "Mirakelkombinasjonen"

msgid "By combining the previous elements, it is possible to design a small but rather reliable script which can handle automatic upgrades."
msgstr "Ved å kombinere de foregående elementene, er det mulig å utforme et lite, men temmelig pålitelig skript som kan håndtere automatiske oppgraderinger."

msgid "Non-interactive upgrade script"
msgstr "Ikke-interaktive oppgraderingsskript"

msgid ""
"export DEBIAN_FRONTEND=noninteractive\n"
"yes '' | apt-get -y -o DPkg::options::=\"--force-confdef\" -o DPkg::options::=\"--force-confold\" dist-upgrade"
msgstr ""
"export DEBIAN_FRONTEND=noninteractive\n"
"yes '' | apt-get -y -o DPkg::options::=\"--force-confdef\" -o DPkg::options::=\"--force-confold\" dist-upgrade"

msgid "<emphasis>IN PRACTICE</emphasis> The Falcot Corp case"
msgstr "<emphasis>I PRAKSIS</emphasis> Situasjonen hos Falcot Corp"

msgid "Falcot computers are a heterogeneous system, with machines having various functions. Administrators will therefore pick the most relevant solution for each computer."
msgstr "Datamaskinene på Falcon utgjør et heterogent system, med maskiner med ulike funksjoner. Administratorer vil derfor velge ut den mest relevante løsningen for hver datamaskin."

#, fuzzy
#| msgid "In practice, the servers running <emphasis role=\"distribution\">Jessie</emphasis> are configured with the “miracle combination” above, and are kept up to date automatically. Only the most critical servers (the firewalls, for instances) are set up with <command>apticron</command>, so that upgrades always happen under the supervision of an administrator."
msgid "In practice, the servers running <emphasis role=\"distribution\">Buster</emphasis> are configured with the “miracle combination” above, and are kept up to date automatically. Only the most critical servers (the firewalls, for instances) are set up with <command>apticron</command>, so that upgrades always happen under the supervision of an administrator."
msgstr "I praksis kjører tjenerne som <emphasis role=\"distribution\">Jessie</emphasis> er satt opp med «mirakelkombinasjonen» ovenfor, og holdes oppdatert automatisk. Bare de mest kritiske tjenere (brannmurene for eksempel) er satt opp med<command>apticron</command>, slik at oppgraderinger alltid skjer under oppsyn av en administrator."

#, fuzzy
#| msgid "The office workstations in the administrative services also run <emphasis role=\"distribution\">Jessie</emphasis>, but they are equipped with <emphasis role=\"pkg\">gnome-packagekit</emphasis>, so that users trigger the upgrades themselves. The rationale for this decision is that if upgrades happen without an explicit action, the behavior of the computer might change unexpectedly, which could cause confusion for the main users."
msgid "The office workstations in the administrative services also run <emphasis role=\"distribution\">Buster</emphasis>, but they are equipped with <emphasis role=\"pkg\">gnome-packagekit</emphasis>, so that users trigger the upgrades themselves. The rationale for this decision is that if upgrades happen without an explicit action, the behavior of the computer might change unexpectedly, which could cause confusion for the main users."
msgstr "Kontorets arbeidsstasjoner for de administrative tjenestene kjører også <emphasis role=\"distribution\">Jessie</emphasis>, men de er utstyrt med <emphasis role=\"pkg\">gnome-packagekit</emphasis>, slik at brukerne utløser oppgraderinger selv. Begrunnelsen for denne beslutningen er at hvis oppgraderinger skjer uten en eksplisitt handling, kan oppførselen til datamaskinen endres uventet, noe som kan føre til forvirring for de viktigste brukerne."

msgid "In the lab, the few computers using <emphasis role=\"distribution\">Testing</emphasis> — to take advantage of the latest software versions — are not upgraded automatically either. Administrators only configure APT to prepare the upgrades but not enact them; when they decide to upgrade (manually), the tedious parts of refreshing package lists and downloading packages will be avoided, and administrators can focus on the really useful part."
msgstr "I laboratoriet, der de få datamaskinene som bruker <emphasis role=\"distribution\">Testing</emphasis> - kan få fordelen med de siste programvareversjonene - er heller ikke oppgradert automatisk. Administratorer setter bare opp APT til å forberede oppgraderinger, ikke til å implementere dem. Når de bestemmer seg for å oppgradere (manuelt), vil de kjedelige delene med å oppdatere pakkelister, og med nedlasting av pakker unngås, og administratorer kan fokusere på den virkelig nyttige delen."

msgid "Searching for Packages"
msgstr "Søke etter pakker"

#, fuzzy
#| msgid "<primary>package</primary><secondary>search</secondary>"
msgid "<primary>package</primary><secondary>search package</secondary>"
msgstr "<primary>pakke</primary><secondary>søke</secondary>"

msgid "With the large and ever-growing amount of software in Debian, there emerges a paradox: Debian usually has a tool for most tasks, but that tool can be very difficult to find amongst the myriad other packages. The lack of appropriate ways to search for (and to find) the right tool has long been a problem. Fortunately, this problem has almost entirely been solved."
msgstr "Med den store og stadig voksende mengden av programvare i Debian, fremkommer det et paradoks: Debian har vanligvis et verktøy for de fleste oppgaver, men verktøyet kan være svært vanskelig å finne blant de utallige andre pakkene. Mangelen på egnede måter å søke etter (og finne) riktig verktøy har lenge vært et problem. Heldigvis er dette problemet blitt løst nesten helt."

msgid "The most trivial search possible is looking up an exact package name. If <command>apt show <replaceable>package</replaceable></command> returns a result, then the package exists. Unfortunately, this requires knowing or even guessing the package name, which isn't always possible."
msgstr "Enklest mulig søk er det nøyaktige navnet for en pakke. Hvis <command>apt show <replaceable>pakke</replaceable></command> returnerer et resultat, da eksisterer pakken. Dessverre krever dette å kunne, eller gjette, navnet på pakken, noe som ikke alltid er mulig."

msgid "<emphasis>TIP</emphasis> Package naming conventions"
msgstr "<emphasis>TIPS</emphasis> Konvensjoner for navngiving av pakker"

#, fuzzy
#| msgid "<primary>package</primary><secondary>installation</secondary>"
msgid "<primary>package</primary><secondary>naming conventions</secondary>"
msgstr "<primary>pakke</primary><secondary>installasjon</secondary>"

msgid "Some categories of packages are named according to a conventional naming scheme; knowing the scheme can sometimes allow you to guess exact package names. For instance, for Perl modules, the convention says that a module called <literal>XML::Handler::Composer</literal> upstream should be packaged as <emphasis role=\"pkg\">libxml-handler-composer-perl</emphasis>. The library enabling the use of the <command>gconf</command> system from Python is packaged as <emphasis role=\"pkg\">python-gconf</emphasis>. It is unfortunately not possible to define a fully general naming scheme for all packages, even though package maintainers usually try to follow the choice of the upstream developers."
msgstr "Noen kategorier av pakker navngis i henhold til en konvensjonell navneordning; idet vi vet at ordningen noen ganger kan tillate deg å gjette nøyaktige pakkenavn. For eksempel, for Perl-moduler, sier konvensjonen at en modul kalt <literal>XML::Handler::Composer</literal> oppstrøms skulle bli pakket som <emphasis role=\"pkg\">libxml-handler-composer-perl</emphasis>. Biblioteket som gjør bruken av <command>gconf</command>-systemet fra Python mulig, er pakket som <emphasis role=\"pkg\">python-gconf</emphasis>. Det er dessverre ikke mulig å definere en helt generell ordning for navning av alle pakkene, selv om pakkevedlikeholdere vanligvis prøver å følge oppstrømsvalget til utviklerne."

#, fuzzy
#| msgid "A slightly more successful searching pattern is a plain-text search in package names, but it remains very limited. You can generally find results by searching package descriptions: since each package has a more or less detailed description in addition to its package name, a keyword search in these descriptions will often be useful. <command>apt-cache</command> and <command>axi-cache</command> are the tools of choice for this kind of search; for instance, <command>apt-cache search video</command> will return a list of all packages whose name or description contains the keyword “video”."
msgid "A slightly more successful searching pattern is a plain-text search in package names, but it remains very limited. You can generally find results by searching package descriptions: since each package has a more or less detailed description in addition to its package name, a keyword search in these descriptions will often be useful. <command>apt-cache</command> and <command>axi-cache</command> are the tools of choice for this kind of search (see <xref linkend=\"sidebar.apt-axi-cache\" />); for instance, <command>apt-cache search video</command> will return a list of all packages whose name or description contains the keyword “video”."
msgstr "Et litt mer vellykket søkemønster er et bare tekstsøk (ren tekstsøk) i pakkenavn, men det er fortsatt svært begrenset. Du kan vanligvis finne resultater ved å søke i pakkebeskrivelser: Siden hver pakke har en mer eller mindre detaljert beskrivelse i tillegg til pakkenavnet, vil et søkeord i disse beskrivelsene ofte være nyttig <command>apt-cache</command>, og <command>axi-cache</command> er de valgte verktøyene for denne type søk; for eksempel vil <command>apt-cache search video</command> gi en liste med alle pakker hvis navn eller beskrivelse inneholder nøkkelordet «video»."

msgid "For more complex searches, a more powerful tool such as <command>aptitude</command> is required. <command>aptitude</command> allows you to search according to a logical expression based on the package's meta-data fields. For instance, the following command searches for packages whose name contains <literal>kino</literal>, whose description contains <literal>video</literal> and whose maintainer's name contains <literal>paul</literal>:"
msgstr "For mer komplekse søk kreves et kraftigere verktøy, som <command>aptitude</command>. <command>aptitude</command> lar deg søke etter et logisk uttrykk basert på pakkemetadatafelt. For eksempel vil følgende kommando søke etter pakker med navn som inneholder <literal>kino</literal>, der  beskrivelsen inneholder <literal>video</literal>, og der vedlikeholderens navn inneholder <literal>paul</literal>:"

#, fuzzy
#| msgid ""
#| "$ <userinput>aptitude search kino~dvideo~mpaul</userinput>\n"
#| "p   kino  - Non-linear editor for Digital Video data\n"
#| "$ <userinput>aptitude show kino</userinput>\n"
#| "Package: kino\n"
#| "State: not installed\n"
#| "Version: 1.3.4-2.1+b1\n"
#| "Priority: extra\n"
#| "Section: video\n"
#| "Maintainer: Paul Brossier &lt;piem@debian.org&gt;\n"
#| "Architecture: amd64\n"
#| "Uncompressed Size: 8,472 k\n"
#| "Depends: libasound2 (&gt;= 1.0.16), libatk1.0-0 (&gt;= 1.12.4), libavc1394-0 (&gt;=\n"
#| "         0.5.3), libavcodec56 (&gt;= 6:11~beta1) | libavcodec-extra-56 (&gt;=\n"
#| "         6:11~beta1), libavformat56 (&gt;= 6:11~beta1), libavutil54 (&gt;=\n"
#| "         6:11~beta1), libc6 (&gt;= 2.14), libcairo2 (&gt;= 1.2.4), libdv4,\n"
#| "         libfontconfig1 (&gt;= 2.11), libfreetype6 (&gt;= 2.2.1), libgcc1 (&gt;=\n"
#| "         1:4.1.1), libgdk-pixbuf2.0-0 (&gt;= 2.22.0), libglade2-0 (&gt;= 1:2.6.4-2~),\n"
#| "         libglib2.0-0 (&gt;= 2.12.0), libgtk2.0-0 (&gt;= 2.24.0), libice6 (&gt;=\n"
#| "         1:1.0.0), libiec61883-0 (&gt;= 1.2.0), libpango-1.0-0 (&gt;= 1.14.0),\n"
#| "         libpangocairo-1.0-0 (&gt;= 1.14.0), libpangoft2-1.0-0 (&gt;= 1.14.0),\n"
#| "         libquicktime2 (&gt;= 2:1.2.2), libraw1394-11, libsamplerate0 (&gt;= 0.1.7),\n"
#| "         libsm6, libstdc++6 (&gt;= 4.9), libswscale3 (&gt;= 6:11~beta1), libx11-6,\n"
#| "         libxext6, libxml2 (&gt;= 2.7.4), libxv1, zlib1g (&gt;= 1:1.1.4)\n"
#| "Recommends: ffmpeg, curl\n"
#| "Suggests: udev | hotplug, vorbis-tools, sox, mjpegtools, lame, ffmpeg2theora\n"
#| "Conflicts: kino-dvtitler, kino-timfx, kinoplus\n"
#| "Replaces: kino-dvtitler, kino-timfx, kinoplus\n"
#| "Provides: kino-dvtitler, kino-timfx, kinoplus\n"
#| "Description: Non-linear editor for Digital Video data\n"
#| " Kino allows you to record, create, edit, and play movies recorded with DV\n"
#| " camcorders. This program uses many keyboard commands for fast navigating and\n"
#| " editing inside the movie. \n"
#| " \n"
#| " The kino-timfx, kino-dvtitler and kinoplus sets of plugins, formerly\n"
#| " distributed as separate packages, are now provided with Kino.\n"
#| "Homepage: http://www.kinodv.org/\n"
#| "\n"
#| "Tags: field::arts, hardware::camera, implemented-in::c, implemented-in::c++,\n"
#| "      interface::x11, role::program, scope::application, suite::gnome,\n"
#| "      uitoolkit::gtk, use::editing, use::learning, works-with::video,\n"
#| "      x11::application"
msgid ""
"$ <userinput>aptitude search kino~dvideo~mpaul</userinput>\n"
"p   kino  - Non-linear editor for Digital Video data\n"
"$ <userinput>aptitude show kino</userinput>\n"
"<![CDATA[Package: kino                            \n"
"Version: 1.3.4+dfsg0-1\n"
"State: not installed\n"
"Priority: optional\n"
"Section: video\n"
"Maintainer: Paul Brossier <piem@debian.org>\n"
"Architecture: amd64\n"
"Uncompressed Size: 8,304 k\n"
"Depends: libasound2 (>= 1.0.16), libatk1.0-0 (>= 1.12.4), libavc1394-0 (>= 0.5.3), libavcodec58 (>=\n"
"         7:4.0) | libavcodec-extra58 (>= 7:4.0), libavformat58 (>= 7:4.0), libavutil56 (>= 7:4.0),\n"
"         libc6 (>= 2.14), libcairo2 (>= 1.2.4), libdv4 (>= 1.0.0), libfontconfig1 (>= 2.12.6),\n"
"         libfreetype6 (>= 2.2.1), libgcc1 (>= 1:3.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0\n"
"         (>= 1:2.6.4-2~), libglib2.0-0 (>= 2.16.0), libgtk2.0-0 (>= 2.24.32), libice6 (>= 1:1.0.0),\n"
"         libiec61883-0 (>= 1.2.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0),\n"
"         libpangoft2-1.0-0 (>= 1.14.0), libquicktime2 (>= 2:1.2.2), libraw1394-11, libsamplerate0\n"
"         (>= 0.1.7), libsm6, libstdc++6 (>= 5.2), libswscale5 (>= 7:4.0), libx11-6, libxext6,\n"
"         libxml2 (>= 2.7.4), libxv1, zlib1g (>= 1:1.1.4)\n"
"Recommends: ffmpeg, curl\n"
"Suggests: udev | hotplug, vorbis-tools, sox, mjpegtools, lame, ffmpeg2theora\n"
"Conflicts: kino-dvtitler, kino-timfx, kinoplus\n"
"Replaces: kino-dvtitler, kino-timfx, kinoplus\n"
"Provides: kino-dvtitler, kino-timfx, kinoplus\n"
"Description: Non-linear editor for Digital Video data\n"
" Kino allows you to record, create, edit, and play movies recorded with DV camcorders. This program\n"
" uses many keyboard commands for fast navigating and editing inside the movie.\n"
"\n"
" The kino-timfx, kino-dvtitler and kinoplus sets of plugins, formerly distributed as separate\n"
" packages, are now provided with Kino.\n"
"Homepage: http://www.kinodv.org/\n"
"Tags: field::arts, hardware::camera, implemented-in::c, implemented-in::c++, interface::graphical,\n"
"      interface::x11, role::program, scope::application, suite::gnome, uitoolkit::gtk,\n"
"      use::editing, use::learning, works-with::video, x11::application\n"
"]]>"
msgstr ""
"$ <userinput>aptitude search kino~dvideo~mpaul</userinput>\n"
"p   kino  - Non-linear editor for Digital Video data\n"
"$ <userinput>aptitude show kino</userinput>\n"
"Package: kino\n"
"State: not installed\n"
"Version: 1.3.4-2.1+b1\n"
"Priority: extra\n"
"Section: video\n"
"Maintainer: Paul Brossier &lt;piem@debian.org&gt;\n"
"Architecture: amd64\n"
"Uncompressed Size: 8,472 k\n"
"Depends: libasound2 (&gt;= 1.0.16), libatk1.0-0 (&gt;= 1.12.4), libavc1394-0 (&gt;=\n"
"         0.5.3), libavcodec56 (&gt;= 6:11~beta1) | libavcodec-extra-56 (&gt;=\n"
"         6:11~beta1), libavformat56 (&gt;= 6:11~beta1), libavutil54 (&gt;=\n"
"         6:11~beta1), libc6 (&gt;= 2.14), libcairo2 (&gt;= 1.2.4), libdv4,\n"
"         libfontconfig1 (&gt;= 2.11), libfreetype6 (&gt;= 2.2.1), libgcc1 (&gt;=\n"
"         1:4.1.1), libgdk-pixbuf2.0-0 (&gt;= 2.22.0), libglade2-0 (&gt;= 1:2.6.4-2~),\n"
"         libglib2.0-0 (&gt;= 2.12.0), libgtk2.0-0 (&gt;= 2.24.0), libice6 (&gt;=\n"
"         1:1.0.0), libiec61883-0 (&gt;= 1.2.0), libpango-1.0-0 (&gt;= 1.14.0),\n"
"         libpangocairo-1.0-0 (&gt;= 1.14.0), libpangoft2-1.0-0 (&gt;= 1.14.0),\n"
"         libquicktime2 (&gt;= 2:1.2.2), libraw1394-11, libsamplerate0 (&gt;= 0.1.7),\n"
"         libsm6, libstdc++6 (&gt;= 4.9), libswscale3 (&gt;= 6:11~beta1), libx11-6,\n"
"         libxext6, libxml2 (&gt;= 2.7.4), libxv1, zlib1g (&gt;= 1:1.1.4)\n"
"Recommends: ffmpeg, curl\n"
"Suggests: udev | hotplug, vorbis-tools, sox, mjpegtools, lame, ffmpeg2theora\n"
"Conflicts: kino-dvtitler, kino-timfx, kinoplus\n"
"Replaces: kino-dvtitler, kino-timfx, kinoplus\n"
"Provides: kino-dvtitler, kino-timfx, kinoplus\n"
"Description: Non-linear editor for Digital Video data\n"
" Kino allows you to record, create, edit, and play movies recorded with DV\n"
" camcorders. This program uses many keyboard commands for fast navigating and\n"
" editing inside the movie. \n"
" \n"
" The kino-timfx, kino-dvtitler and kinoplus sets of plugins, formerly\n"
" distributed as separate packages, are now provided with Kino.\n"
"Homepage: http://www.kinodv.org/\n"
"\n"
"Tags: field::arts, hardware::camera, implemented-in::c, implemented-in::c++,\n"
"      interface::x11, role::program, scope::application, suite::gnome,\n"
"      uitoolkit::gtk, use::editing, use::learning, works-with::video,\n"
"      x11::application"

msgid "The search only returns one package, <emphasis role=\"pkg\">kino</emphasis>, which satisfies all three criteria."
msgstr "Søket returnerer bare en pakke, <emphasis role=\"pkg\">kino</emphasis>, som tilfredsstiller de tre kriteriene."

msgid "Even these multi-criteria searches are rather unwieldy, which explains why they are not used as much as they could. A new tagging system has therefore been developed, and it provides a new approach to searching. Packages are given tags that provide a thematical classification along several strands, known as a “facet-based classification”. In the case of <emphasis role=\"pkg\">kino</emphasis> above, the package's tags indicate that Kino is a Gnome-based software that works on video data and whose main purpose is editing."
msgstr "Selv disse multi-kriteriesøkene er ganske uhåndterlige, noe som forklarer hvorfor de ikke brukes så mye som de kunne. Et nytt merkesystem har derfor blitt utviklet, og det gir en ny tilnærming til det å søke. Pakker er gitt koder som gir en tematisk klassifisering langs flere tråder, kjent som en «fasettbasert klassifikasjon». Når det gjelder <emphasis role=\"pkg\">kino</emphasis> ovenfor, tyder pakkenes koder på at Kino er en Gnome-basert programvare, som fungerer på videodata, og har som hovedformål å redigere."

#, fuzzy
#| msgid "Browsing this classification can help you to search for a package which corresponds to known needs; even if it returns a (moderate) number of hits, the rest of the search can be done manually. To do that, you can use the <literal>~G</literal> search pattern in <command>aptitude</command>, but it is probably easier to simply navigate the site where tags are managed: <ulink type=\"block\" url=\"http://debtags.alioth.debian.org/cloud/\" />"
msgid "Browsing this classification can help you to search for a package which corresponds to known needs; even if it returns a (moderate) number of hits, the rest of the search can be done manually. To do that, you can use the <literal>~G</literal> search pattern in <command>aptitude</command>, but it is probably easier to simply navigate the site where tags are managed: <ulink type=\"block\" url=\"https://debtags.debian.org/\" />"
msgstr "Å søke etter denne klassifiseringen kan hjelpe deg å finne en pakke som tilsvarer kjente behov; selv om det gir et (moderat) antall treff, kan resten av søket gjøres manuelt. For å gjøre det kan du bruke <literal>~G</literal> søkestreng i <command>aptitude</command>, men det er nok trolig lettere å navigere på nettstedet der taggene styres fra: <ulink type=\"block\" url=\"http://debtags.alioth.debian.org/cloud/\" />"

msgid "<primary><emphasis role=\"pkg\">debtags</emphasis></primary>"
msgstr "<primary><emphasis role=\"pkg\">debtags</emphasis></primary>"

msgid "<primary>tag</primary>"
msgstr "<primary>tagg</primary>"

#, fuzzy
#| msgid "<primary>package</primary><secondary>seal</secondary>"
msgid "<primary>package</primary><secondary>tags</secondary>"
msgstr "<primary>pakke</primary><secondary>forsegling</secondary>"

msgid "Selecting the <literal>works-with::video</literal> and <literal>use::editing</literal> tags yields a handful of packages, including the <emphasis role=\"pkg\">kino</emphasis> and <emphasis role=\"pkg\">pitivi</emphasis> video editors. This system of classification is bound to be used more and more as time goes on, and package managers will gradually provide efficient search interfaces based on it."
msgstr "Å velge <literal>works-with::video</literal> og <literal>use::editing</literal>-tagger gir en håndfull pakker, inkludert <emphasis role=\"pkg\">kino</emphasis> og <emphasis role=\"pkg\">pitivi</emphasis>-videoredigerere. Dette klassifiseringssystemet er bare bundet til å bli brukt mer og mer som tiden går, og pakkebehandlerne vil gradvis levere effektive søkegrensesnitt basert på det."

msgid "To sum up, the best tool for the job depends on the complexity of the search that you wish to do:"
msgstr "For å oppsummere, det beste verktøyet for jobben avhenger av hvor komplekse søk som du ønsker å gjøre:"

msgid "<command>apt-cache</command> only allows searching in package names and descriptions, which is very convenient when looking for a particular package that matches a few target keywords;"
msgstr "<command>apt-cache</command> tillater bare søking i pakkenavn og beskrivelser, noe som er veldig praktisk når vi leter etter en bestemt pakke som stemmer med noen få målrettede søkeord;"

msgid "when the search criteria also include relationships between packages or other meta-data such as the name of the maintainer, <command>synaptic</command> will be more useful;"
msgstr "når søkekriteriene også omfatter forhold mellom pakker eller andre meta-data, for eksempel navnet på vedlikeholderen, vil <command>synaptic</command> være nyttigere;"

msgid "when a tag-based search is needed, a good tool is <command>packagesearch</command>, a graphical interface dedicated to searching available packages along several criteria (including the names of the files that they contain). For usage on the command-line, <command>axi-cache</command> will fit the bill."
msgstr "når et merkelappbasert søk er nødvendig, er <command>packagesearch</command> et godt verktøy, det er et grafisk grensesnitt laget for å søke i tilgjengelige pakker med flere kriterier (inkludert navnene på filene som de inneholder). For bruk på kommandolinjen fungerer <command>axi-cache</command> godt."

msgid "<primary><emphasis role=\"pkg\">packagesearch</emphasis></primary>"
msgstr "<primary><emphasis role=\"pkg\">packagesearch</emphasis></primary>"

msgid "finally, when the searches involve complex expressions with logic operations, the tool of choice will be <command>aptitude</command>'s search pattern syntax, which is quite powerful despite being somewhat obscure; it works in both the command-line and the interactive modes."
msgstr "til slutt, når søkene har komplekse uttrykk med logiske operasjoner, vil det valgte verktøyet være <command>aptitude</command>s søkemønstersyntaks, som er ganske kraftig til tross for at den er noe uklar; det virker både i kommandolinjen og i interaktiv modus."

#~ msgid "Each active line of the <filename>/etc/apt/sources.list</filename> file contains the description of a source, made of 3 parts separated by spaces."
#~ msgstr "Hver aktiv linje i <filename>/etc/apt/sources.list</filename>-filen inneholder beskrivelsen av en kilde, laget av 3 deler atskilt med mellomrom."

#~ msgid "In practice, this repository is a subset of the <literal>proposed-updates</literal> repository, carefully selected by the Stable Release Managers."
#~ msgstr "I praksis er denne pakkebrønnen en undergruppe av pakkebrønnen <literal>proposed-updates</literal>, omhyggelig valgt ut av administratorene av «Stable»-utgivelsen."

#~ msgid "The <literal>stable-backports</literal> repository is now available on the usual Debian mirrors. But backports for <emphasis role=\"distribution\">Squeeze</emphasis> are still hosted on a dedicated server (<literal>backports.debian.org</literal>), and requires the following <filename>sources.list</filename> entry:"
#~ msgstr "Pakkebrønnen <literal>stable-backports</literal> er nå tilgjengelig fra de vanlige Debian-speilene. Men tilbakeføringer for <emphasis role=\"distribution\">Squeeze</emphasis> ligger fremdeles på en en egen tjener (<literal>backports.debian.org</literal>), og krever den følgende <filename>sources.list</filename> inngangen:"

#~ msgid "deb http://backports.debian.org/debian-backports squeeze-backports main contrib non-free"
#~ msgstr "deb http://backports.debian.org/debian-backports squeeze-backports main contrib non-free"

#~ msgid ""
#~ "# <userinput>apt install <replaceable>package1</replaceable> <replaceable>package2-</replaceable></userinput>\n"
#~ "[...]\n"
#~ "# <userinput>apt remove <replaceable>package1+</replaceable> <replaceable>package2</replaceable></userinput>\n"
#~ "[...]"
#~ msgstr ""
#~ "# <userinput>apt install <replaceable>pakke1</replaceable> <replaceable>pakke2-</replaceable></userinput>\n"
#~ "[...]\n"
#~ "# <userinput>apt remove <replaceable>pakke1+</replaceable> <replaceable>pakke2</replaceable></userinput>\n"
#~ "[...]"

#~ msgid "In more concrete terms, a package whose priority is less than 0 will never be installed. A package with a priority ranging between 0 and 100 will only be installed if no other version of the package is already installed. With a priority between 100 and 500, the package will only be installed if there is no other newer version installed or available in another distribution. A package of priority between 501 and 990 will only be installed if there is no newer version installed or available in the target distribution. With a priority between 990 and 1000, the package will be installed except if the installed version is newer. A priority greater than 1000 will always lead to the installation of the package even if it forces APT to downgrade to an older version."
#~ msgstr "Mer konkret, en pakke som har prioritet mindre enn 0 vil aldri bli installert. En pakke med en prioritet som varierer mellom 0 og 100 vil kun installeres hvis ingen annen versjon av pakken allerede er installert. Med en prioritet mellom 100 og 500, vil pakken bare installeres når det ikke finnes noen annen nyere versjon installert, eller er tilgjengelig i en annen distribusjon. En pakke med prioritet mellom 501 og 990 vil kun installeres hvis det ikke er noen nyere versjon installert eller tilgjengelig i distribusjonen det gjelder. Med en prioritet mellom 990 og 1000, vil pakken bli installert, bortsett fra hvis den installerte versjonen er nyere. En prioritet høyere enn 1000 vil alltid føre til installasjon av pakken, selv om det tvinger APT til å nedgradere til en eldre versjon."

#~ msgid "To add the key to the trusted keyring, the administrator can run <command>apt-key add &lt; key.asc</command>. Another way is to use the <command>synaptic</command> graphical interface: its “Authentication” tab in the <menuchoice><guimenu>Settings</guimenu> <guisubmenu>Repositories</guisubmenu></menuchoice> menu gives the possibility of importing a key from the <filename>key.asc</filename> file."
#~ msgstr "For å legge til en nøkkel til den klarerte nøkkelringen kan administratoren kjøre <command>apt-key add &lt; key.asc</command>. En annen måte er å bruke  <command>synaptic</command>s grafiske brukergrensesnitt: Dens «Autentisering»sfane i <menuchoice><guimenu>Innstillinger</guimenu> <guisubmenu>Pakkebrønner</guisubmenu></menuchoice>-menyen gir mulighet til å importere en nøkkel fra <filename>key.asc</filename>-filen."

#~ msgid "<primary><emphasis role=\"pkg\">gui-apt-key</emphasis></primary>"
#~ msgstr "<primary><emphasis role=\"pkg\">gui-apt-key</emphasis></primary>"

#~ msgid "For people who would want a dedicated application and more details on the trusted keys, it is possible to use <command>gui-apt-key</command> (in the package of the same name), a small graphical user interface which manages the trusted keyring."
#~ msgstr "For folk som ønsker et dedikert program og mer informasjon om klarerte nøkler, er det mulig å bruke <command>gui-apt-key</command> (i pakken med samme navn), et lite grafisk brukergrensesnitt som forvalter den klarerte nøkkelringen."

#~ msgid "<literal>APT::Periodic::Update-Package-Lists</literal>"
#~ msgstr "<literal>APT::Periodic::Update-Package-Lists</literal>"

#~ msgid "<literal>APT::Periodic::Download-Upgradeable-Packages</literal>"
#~ msgstr "<literal>APT::Periodic::Download-Upgradeable-Packages</literal>"

#~ msgid "<literal>APT::Periodic::AutocleanInterval</literal>"
#~ msgstr "<literal>APT::Periodic::AutocleanInterval</literal>"

#~ msgid "<literal>APT::Periodic::Unattended-Upgrade</literal>"
#~ msgstr "<literal>APT::Periodic::Unattended-Upgrade</literal>"