-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservices.list
1125 lines (1081 loc) · 57.2 KB
/
services.list
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
#services to include in installer
#format is servicename=category, Description
#for example ntp might be ntp=Admin, Network Time Protocol
#list is comma delimited
#use:
# [LN]
# servicename = category, Description for localizations
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[am]
anacron = Admin, አንዳንድ ጊዜ ትእዛዝ ማስኬጃ
cron = Admin, ጊዜ-መሰረት ያደረገ ስራ ማሰናጃ
sudo = Admin, እንደ ሌላ ተጠቃሚ ትእዛዝ መፈጸሚያ
plymouth = Admin, Plymouth boot splash
cpufrequtils = ጠንካራ አካል, CPU frequency irqbalance
smartmontools = ጠንካራ አካል, S.M.A.R.T. መቆጣጠሪያ መሳሪያዎች
acpid = ጠንካራ አካል, Advanced Configuration of Power Interface event daemon
acpi-support = ጠንካራ አካል, Advanced Configuration and Power Interface
hddtemp = ጠንካራ አካል, የ ሀርድ ድራይቭ ሙቀት መቆጣጠሪያ
gpm = ጠንካራ አካል, አይጥ እና የ ሁኔታዎች ሰርቨር
acpi-fakekey = ጠንካራ አካል, Generates key events for ACPI scripts
dbus = ጠንካራ አካል, Message bus daemon
saned = ጠንካራ አካል, የ ማሰሻ እረዳት
haveged = ጠንካራ አካል, በ ደፈናው ቁጥር አመንጪ
avahi-daemon = ጠንካራ አካል, Enables programs to publish and discover services and hosts
network-manager = ኔትዎርክ, Network connections
wicd = ኔትዎርክ, Network connections
ssh = ኔትዎርክ, አስተማማኝ Shell
nfs-kernel-server = ኔትዎርክ, Linux NFS Network File System server component
openVPN = ኔትዎርክ, VPN program that creates secure connections
bluetooth = ኔትዎርክ, ብሉቱዝ
rsync = ኔትዎርክ, File copying tool
cups = በ ማተም ላይ, Linux and OS X የ ማተሚያ ግልጋሎት
cups-browsed = በ ማተም ላይ, CUPS Bonjour (zeroconf) printer discovery service
[ar]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = الأجهزة, CPU frequency irqbalance
smartmontools = الأجهزة, S.M.A.R.T. monitoring tools
acpid = الأجهزة, Advanced Configuration of Power Interface event daemon
acpi-support = الأجهزة, Advanced Configuration and Power Interface
hddtemp = الأجهزة, HDD temperature monitor
gpm = الأجهزة, Mouse event server
acpi-fakekey = الأجهزة, Generates key events for ACPI scripts
dbus = الأجهزة, Message bus daemon
saned = الأجهزة, Scanner daemon
haveged = الأجهزة, Random number generator
avahi-daemon = الأجهزة, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[bg]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Хардуер, CPU frequency irqbalance
smartmontools = Хардуер, S.M.A.R.T. monitoring tools
acpid = Хардуер, Advanced Configuration of Power Interface event daemon
acpi-support = Хардуер, Advanced Configuration and Power Interface
hddtemp = Хардуер, HDD temperature monitor
gpm = Хардуер, Mouse event server
acpi-fakekey = Хардуер, Generates key events for ACPI scripts
dbus = Хардуер, Message bus daemon
saned = Хардуер, Scanner daemon
haveged = Хардуер, Random number generator
avahi-daemon = Хардуер, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[ca]
anacron = Administració, Executa ordres periòdicament
cron = Administració, Planificació de tasques en el temps
sudo = Administració, Executa una ordre com un altre usuari
plymouth = Administració, Pantalla d'arrencada Plymouth
cpufrequtils = Maquinari , Freqüència CPU - Equilibri IRQ
smartmontools = Maquinari , Eines de seguiment S.M.A.R.T.
acpid = Maquinari , Configuració avançada del dimoni d'esdeveniments de la interfície d'alimentació
acpi-support = Maquinari , Dimoni d'esdeveniments Advanced Configuration and Power Interface
hddtemp = Maquinari , Seguiment de temperatura del disc dur
gpm = Maquinari , Servidor d'esdeveniments de ratolí
acpi-fakekey = Maquinari , Genera esdeveniments clau per a scripts d'ACPI
dbus = Maquinari , Dimoni del bus de missatges
saned = Maquinari , Dimoni d'escàners
haveged = Maquinari , Generador de nombres aleatoris
avahi-daemon = Maquinari , Permet que els programes publiquin i descobreixin serveis i amfitrions
network-manager = Xarxa, Connexions de xarxa
wicd = Xarxa, Connexions de xarxa
ssh = Xarxa, Intèrpret Segur
nfs-kernel-server = Xarxa, Components del servidor Linux NFS (Network File System)
openVPN = Xarxa, Programa VPN que crea connexions segures
bluetooth = Xarxa, Bluetooth
rsync = Xarxa, Eina de còpia de fitxers
cups = Impressió , Servei d'impressió per a Linux i OS X
cups-browsed = Impressió , Servei de descoberta d'impressores CUPS Bonjour (zeroconf)
[cs]
anacron = Admin, Spouští příkazy periodicky
cron = Admin, Plánovač úkolů
sudo = Admin, Spustit příkaz jako jiný uživatel
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, Monitorovací nástroje S.M.A.R.T.
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface event daemon
hddtemp = Hardware, Monitor teploty HDDD
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generuje klíčenky pro ACPI skripty
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Umožňuje programům publikovat a odhalovat služby a hostitele
network-manager = Síť, Network connections
wicd = Síť, Network connections
ssh = Síť, Secure Shell
nfs-kernel-server = Síť, Linux NFS Network File System server component
openVPN = Síť, VPN program k vytvoření zabezpečeného spojení
bluetooth = Síť, Bluetooth
rsync = Síť, File copying tool
cups = Tisk, Linux a OSX služby tisku
cups-browsed = Tisk, CUPS Bonjour (zeroconf) printer discovery service
[da]
anacron = Administration, Kører kommandoer periodisk
cron = Administration, Tidsbaseret jobplanlægger
sudo = Administration, Eksekver en kommando som en anden bruger
plymouth = Administration, Opstartsbillede for Plymouth
cpufrequtils = Hardware, IRQ-balance for CPU-frekvens
smartmontools = Hardware, Værktøjer til S.M.A.R.T.-overvågning
acpid = Hardware, Avanceret konfiguration af hændelsesdæmon for strømstyring
acpi-support = Hardware, Avanceret konfiguration- og strømgrænseflade
hddtemp = Hardware, Overvågning af HDD-temperatur
gpm = Hardware, Musehændelse-server
acpi-fakekey = Hardware, Genererer nøglehændelser for ACPI-scripts
dbus = Hardware, Meddelelsesbus-dæmon
saned = Hardware, Skanner-dæmon
haveged = Hardware, Tilfældigt tal-generator
avahi-daemon = Hardware, Gør programmer i stand til at udgive og opdage tjenester og værter
network-manager = Netværk, Netværksforbindelser
wicd = Netværk, Netværksforbindelser
ssh = Netværk, Sikker skal
nfs-kernel-server = Netværk, Linux-kompoment for NFS Network File System-server
openVPN = Netværk, VPN-program som opretter sikre forbindelser
bluetooth = Netværk, Bluetooth
rsync = Netværk, Filkopieringsværktøj
cups = Udskrivning, Linux- og OS X-printertjeneste
cups-browsed = Udskrivning, CUPS Bonjour (zeroconf) -printeropdagelsestjeneste
[de]
anacron = Administration, Befehle periodisch ausführen
cron = Administration, Planer zeitabhängiger Aufträge
sudo = Administration, Befehl als anderer Benutzer ausführen
plymouth = Administration, Grafisch animiertes Boot mit "Plymouth"
cpufrequtils = Hardware, CPU Frequenz IRQ-Balance
smartmontools = Hardware, S.M.A.R.T. Überwachungswerkzeug
acpid = Hardware, Erweiterte Konfiguration des Ereignisdaemons für die Stromversorgungsschnittstelle
acpi-support = Hardware, Erweiterte Konfiguration und Stromversorgungsschnittstelle
hddtemp = Hardware, HDD-Temperaturmonitor
gpm = Hardware, Server für Mauszeigerauslöser
acpi-fakekey = Hardware, Generiert Schlüssel-Events für ACPI-Skripte
dbus = Hardware, Daemon für den Benachrichtigungsbus
saned = Hardware, Scanner Daemon
haveged = Hardware, Zufallszahlengenerator
avahi-daemon = Hardware, Ermöglicht es, dass Programme Dienste und Hosts veröffentlichen und entdecken
network-manager = Netzwerkeinstellungen, Netzwerkverbindungen
wicd = Netzwerkeinstellungen, Netzwerkverbindungen
ssh = Netzwerkeinstellungen, Sichere Shell
nfs-kernel-server = Netzwerkeinstellungen, Server-Komponente des Linux NFS Dateisystems
openVPN = Netzwerkeinstellungen, VPN-Programm zur Herstellung gesicherter Verbindungen
bluetooth = Netzwerkeinstellungen, Bluetooth
rsync = Netzwerkeinstellungen, Werkzeug zum Kopieren von Dateien
cups = Drucken, Linux und OS X Druckerdienst
cups-browsed = Drucken, CUPS Bonjour (zeroconf) Dienst zum Druckerauffinden
[el]
anacron = Διαχείριση, Runs commands periodically
cron = Διαχείριση, Time-based job scheduler
sudo = Διαχείριση, Execute a command as another user
plymouth = Διαχείριση, Εικόνα εκκίνησης του Plymouth
cpufrequtils = Υλικό (Hardware), Ισορροπία συχνότητας CPU
smartmontools = Υλικό (Hardware), S.M.A.R.T. monitoring tools
acpid = Υλικό (Hardware), Advanced Configuration of Power Interface event daemon
acpi-support = Υλικό (Hardware), Advanced Configuration and Power Interface
hddtemp = Υλικό (Hardware), HDD temperature monitor
gpm = Υλικό (Hardware), Mouse event server
acpi-fakekey = Υλικό (Hardware), Generates key events for ACPI scripts
dbus = Υλικό (Hardware), Message bus daemon
saned = Υλικό (Hardware), Scanner daemon
haveged = Υλικό (Hardware), Random number generator
avahi-daemon = Υλικό (Hardware), Επιτρέπει προγράμματα να δημοσιεύουν και να ανακαλύψουν τα services και hosts
network-manager = Δικτύωση, Δικτυακές συνδέσεις
wicd = Δικτύωση, Δικτυακές συνδέσεις
ssh = Δικτύωση, Secure Shell
nfs-kernel-server = Δικτύωση, Linux NFS Network File System server component
openVPN = Δικτύωση, Πρόγραμμα VPN που δημιουργεί ασφαλείς συνδέσεις
bluetooth = Δικτύωση, Bluetooth
rsync = Δικτύωση, Εργαλείο αντιγραφής αρχείων
cups = Εκτύπωση, Linux and OS X printer service
cups-browsed = Εκτύπωση, Υπηρεσία εντοπισμού εκτυπωτών CUPS Bonjour (zeroconf)
[es]
anacron = Admin, Ejecuta órdenes periódicamente
cron = Admin, Temporizador de tareas basadas en horarios
sudo = Admin, Ejecutar órdenes como otro usuario
plymouth = Admin, Plymouth boot splash
cpufrequtils = Equipo físico, CPU frequencia irqbalance
smartmontools = Equipo físico, Herramientas S.M.A.R.T.
acpid = Equipo físico, Configuración avanzada del daemon de eventos de Power Interface
acpi-support = Equipo físico, Demonio para interfaz de energía y configuración avanzada (ACPI)
hddtemp = Equipo físico, Monitor de temperatura del disco
gpm = Equipo físico, Servidor de eventos del Ratón
acpi-fakekey = Equipo físico, Genera eventos de teclas para scripts ACPI
dbus = Equipo físico, demonio de mensajes de bus
saned = Equipo físico, demonio de escáner
haveged = Equipo físico, generador de números aleatorios
avahi-daemon = Equipo físico, Permite a los programas publicar y descubrir los servicios y los hosts
network-manager = Conexión entre redes, Conexiones de redes
wicd = Conexión entre redes, Conexiones de redes
ssh = Conexión entre redes, Consola Segura
nfs-kernel-server = Conexión entre redes, Componente del servidor para el Sistema de Ficheros de Redes NFS de Linux
openVPN = Conexión entre redes, Programa VPN que crea conexiones seguras
bluetooth = Conexión entre redes, Bluetooth
rsync = Conexión entre redes, Herramienta para copiar ficheros
cups = Impresión, Servicio de impresión para Linux y OS X
cups-browsed = Impresión, CUPS Bonjour (zeroconf) servicio para visualización de impresoras
[et]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[eu]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[fa]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[fi]
anacron = Ylläpitäjä, Suorittaa komennot säännöllisesti
cron = Ylläpitäjä, Time-based job scheduler
sudo = Ylläpitäjä, Suorittaa komennon toisena käyttäjänä
plymouth = Ylläpitäjä, Plymouth boot splash
cpufrequtils = Laitteisto, CPU frequency irqbalance
smartmontools = Laitteisto, S.M.A.R.T. valvontatyökalut
acpid = Laitteisto, Advanced Configuration of Power Interface event daemon
acpi-support = Laitteisto, Advanced Configuration and Power Interface
hddtemp = Laitteisto, Kiintolevy(je)n lämpötilan valvonta
gpm = Laitteisto, Mouse event server
acpi-fakekey = Laitteisto, Generates key events for ACPI scripts
dbus = Laitteisto, Message bus daemon
saned = Laitteisto, Scanner daemon
haveged = Laitteisto, satunnaislukugeneraattori
avahi-daemon = Laitteisto, Enables programs to publish and discover services and hosts
network-manager = Verkko, Verkkoyhteydet
wicd = Verkko, Verkkoyhteydet
ssh = Verkko, Secure Shell
nfs-kernel-server = Verkko, Linux NFS Network File System server component
openVPN = Verkko, VPN program that creates secure connections
bluetooth = Verkko, Bluetooth
rsync = Verkko, Tiedostojen kopiointityökalu
cups = Tulostus, Linux and OS X printer service
cups-browsed = Tulostus, CUPS Bonjour (zeroconf) printer discovery service
[fr]
anacron = Administrateur, Exécute périodiquement des commandes
cron = Administrateur, Planificateur temporel de tâches
sudo = Administrateur, Lancer une commande comme autre utilisateur
plymouth = Administrateur, Écran bootsplash de Plymouth
cpufrequtils = Matériel, Fréquence du CPU, irqbalance
smartmontools = Matériel, Outils de surveillance S.M.A.R.T.
acpid = Matériel, Démon d'interface événementiel avancée de configuration et de gestion de l'énergie (ACPI)
acpi-support = Matériel, Configuration avancée et interface d'alimentation
hddtemp = Matériel, Surveillance de la température des disques durs
gpm = Matériel, Serveur d'événements de la souris
acpi-fakekey = Matériel, Génération d'événements clé pour les scripts ACPI
dbus = Matériel, Démon de bus de messages
saned = Matériel, Démon pour scanner
haveged = Matériel, Générateur de nombres aléatoires
avahi-daemon = Matériel, Permet aux programmes de publier et découvrir des services et des hôtes
network-manager = Réseaux, Connexions réseau
wicd = Réseaux, Connexions réseau
ssh = Réseaux, Protocole Secure Shell
nfs-kernel-server = Réseaux, Composant de serveur Linux NFS Network File System (système de fichiers réseau)
openVPN = Réseaux, Programme VPN qui crée des connexions sécurisées
bluetooth = Réseaux, Bluetooth
rsync = Réseaux, Outil de copie de fichier
cups = Imprimantes, Service d'impression pour Linux et OS X
cups-browsed = Imprimantes, Service de découverte d'imprimante de CUPS, Bonjour (zeroconf)
[he_IL]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = חומרה, CPU frequency irqbalance
smartmontools = חומרה, S.M.A.R.T. monitoring tools
acpid = חומרה, Advanced Configuration of Power Interface event daemon
acpi-support = חומרה, Advanced Configuration and Power Interface
hddtemp = חומרה, HDD temperature monitor
gpm = חומרה, Mouse event server
acpi-fakekey = חומרה, Generates key events for ACPI scripts
dbus = חומרה, Message bus daemon
saned = חומרה, Scanner daemon
haveged = חומרה, Random number generator
avahi-daemon = חומרה, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[hi]
anacron = प्रबंधक, Runs commands periodically
cron = प्रबंधक, Time-based job scheduler
sudo = प्रबंधक, Execute a command as another user
plymouth = प्रबंधक, Plymouth boot splash
cpufrequtils = हार्डवेयर, CPU frequency irqbalance
smartmontools = हार्डवेयर, S.M.A.R.T. monitoring tools
acpid = हार्डवेयर, Advanced Configuration of Power Interface event daemon
acpi-support = हार्डवेयर, Advanced Configuration and Power Interface
hddtemp = हार्डवेयर, HDD temperature monitor
gpm = हार्डवेयर, Mouse event server
acpi-fakekey = हार्डवेयर, Generates key events for ACPI scripts
dbus = हार्डवेयर, Message bus daemon
saned = हार्डवेयर, Scanner daemon
haveged = हार्डवेयर, Random number generator
avahi-daemon = हार्डवेयर, Enables programs to publish and discover services and hosts
network-manager = नेटवर्किंग, Network connections
wicd = नेटवर्किंग, Network connections
ssh = नेटवर्किंग, Secure Shell
nfs-kernel-server = नेटवर्किंग, Linux NFS Network File System server component
openVPN = नेटवर्किंग, VPN program that creates secure connections
bluetooth = नेटवर्किंग, ब्लूटूथ
rsync = नेटवर्किंग, File copying tool
cups = प्रिंटिंग, Linux and OS X printer service
cups-browsed = प्रिंटिंग, CUPS Bonjour (zeroconf) printer discovery service
[hr]
anacron = Admin, Pokreće naredbe periodično
cron = Admin, Time-based job scheduler
sudo = Admin, Izvršite naredbu kao drugi korisnik
plymouth = Admin, Plymouth boot splash
cpufrequtils = Sklopovlje, CPU frequency irqbalance
smartmontools = Sklopovlje, S.M.A.R.T. monitoring tools
acpid = Sklopovlje, Advanced Configuration of Power Interface event daemon
acpi-support = Sklopovlje, Advanced Configuration and Power Interface
hddtemp = Sklopovlje, HDD nadzor temperature
gpm = Sklopovlje, Mouse event server
acpi-fakekey = Sklopovlje, Generates key events for ACPI scripts
dbus = Sklopovlje, Message bus daemon
saned = Sklopovlje, Scanner daemon
haveged = Sklopovlje, Generator nasumičnog broja
avahi-daemon = Sklopovlje, Enables programs to publish and discover services and hosts
network-manager = Networking, Mrežne veze
wicd = Networking, Mrežne veze
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program koji stvara sigurne veze
bluetooth = Networking, Bluetooth
rsync = Networking, Alat za kopiranje datoteka
cups = Ispisivanje, Linux i OS X servis ispisa
cups-browsed = Ispisivanje, CUPS Bonjour (zeroconf) printer discovery service
[hu]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardver, CPU frequency irqbalance
smartmontools = Hardver, S.M.A.R.T. monitoring tools
acpid = Hardver, Advanced Configuration of Power Interface event daemon
acpi-support = Hardver, Advanced Configuration and Power Interface event daemon
hddtemp = Hardver, HDD temperature monitor
gpm = Hardver, Mouse event server
acpi-fakekey = Hardver, Generates key events for ACPI scripts
dbus = Hardver, Message bus daemon
saned = Hardver, Scanner daemon
haveged = Hardver, Random number generator
avahi-daemon = Hardver, Enables programs to publish and discover services and hosts
network-manager = Hálózatok, Network connections
wicd = Hálózatok, Network connections
ssh = Hálózatok, Secure Shell
nfs-kernel-server = Hálózatok, Linux NFS Network File System server component
openVPN = Hálózatok, VPN program that creates secure connections
bluetooth = Hálózatok, Bluetooth
rsync = Hálózatok, File copying tool
cups = Nyomtatás, Linux and OS X printer service
cups-browsed = Nyomtatás, CUPS Bonjour (zeroconf) printer discovery service
[id]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[is]
anacron = Kerfisstjórnun, Runs commands periodically
cron = Kerfisstjórnun, Time-based job scheduler
sudo = Kerfisstjórnun, Execute a command as another user
plymouth = Kerfisstjórnun, Plymouth boot splash
cpufrequtils = Vélbúnaður, CPU frequency irqbalance
smartmontools = Vélbúnaður, S.M.A.R.T. monitoring tools
acpid = Vélbúnaður, Advanced Configuration of Power Interface event daemon
acpi-support = Vélbúnaður, Advanced Configuration and Power Interface
hddtemp = Vélbúnaður, HDD temperature monitor
gpm = Vélbúnaður, Mouse event server
acpi-fakekey = Vélbúnaður, Generates key events for ACPI scripts
dbus = Vélbúnaður, Message bus daemon
saned = Vélbúnaður, Scanner daemon
haveged = Vélbúnaður, Random number generator
avahi-daemon = Vélbúnaður, Enables programs to publish and discover services and hosts
network-manager = Netkerfi, Network connections
wicd = Netkerfi, Network connections
ssh = Netkerfi, Secure Shell
nfs-kernel-server = Netkerfi, Linux NFS Network File System server component
openVPN = Netkerfi, VPN program that creates secure connections
bluetooth = Netkerfi, Bluetooth
rsync = Netkerfi, File copying tool
cups = Prentun, Linux and OS X printer service
cups-browsed = Prentun, CUPS Bonjour (zeroconf) printer discovery service
[it]
anacron = Amministrazione, Avvia i comandi periodicamente
cron = Amministrazione, Time-based job scheduler
sudo = Amministrazione, Eseguire un comando come altro utente
plymouth = Amministrazione, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Demone degli eventi di configurazione avanzata e dell'interfaccia Power
acpi-support = Hardware, Eventi di configurazione avanzata e dell'interfaccia Power (ACPI)
hddtemp = Hardware, Monitor della temperatura dell'hard disck
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Generatore di numeri random
avahi-daemon = Hardware, Consente ai programmi di scoprire e pubblicare i servizi e gli host
network-manager = Impostazioni di rete, Connessioni di rete
wicd = Impostazioni di rete, Connessioni di rete
ssh = Impostazioni di rete, Secure Shell
nfs-kernel-server = Impostazioni di rete, Linux NFS Network File System server component
openVPN = Impostazioni di rete, VPN programma per realizzare connessioni sicure
bluetooth = Impostazioni di rete, Bluetooth
rsync = Impostazioni di rete, Strumento di copia File
cups = Stampa, Servizio per la stampa in Linux e OS X
cups-browsed = Stampa, CUPS Bonjour (zeroconf) servizio di rilevazione stampanti
[ja]
anacron = Admin, 定期的にコマンドを実行する
cron = Admin, 時間スケジュール処理
sudo = Admin, 他のユーザがコマンドを実行
plymouth = Admin, Plymouth boot splash
cpufrequtils = ハードウェア, CPU frequency irqbalance
smartmontools = ハードウェア, S.M.A.R.T. 監視ツール
acpid = ハードウェア, Advanced Configuration of Power Interface event daemon
acpi-support = ハードウェア, 拡張オプション・電源管理
hddtemp = ハードウェア, ハードディスク温度管理
gpm = ハードウェア, マウスイベントサーバ
acpi-fakekey = ハードウェア, ACPI スクリプトのキー生成
dbus = ハードウェア, BUS デーモン出力
saned = ハードウェア, デーモンを検索
haveged = ハードウェア, 順番をランダムにする
avahi-daemon = ハードウェア, サービスやホストを検出するためプログラムの公開を有効にします
network-manager = ネットワーク, Network connections
wicd = ネットワーク, Network connections
ssh = ネットワーク, セキュアシェル
nfs-kernel-server = ネットワーク, Linux NFS Network File System server component
openVPN = ネットワーク, VPN プログラムはセキュア接続を生成します
bluetooth = ネットワーク, Bluetooth
rsync = ネットワーク, File copying tool
cups = 印刷中, Linux・OS X 印刷サービス
cups-browsed = 印刷中, CUPS Bonjour (zeroconf) printer discovery service
[kk]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Баспаға шығару, Linux and OS X printer service
cups-browsed = Баспаға шығару, CUPS Bonjour (zeroconf) printer discovery service
[ko]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[lt]
anacron = Administravimas, Periodiškai vykdo komandas
cron = Administravimas, Laiku pagrįsta užduočių planuoklė
sudo = Administravimas, Vykdyti komandą kaip kitas naudotojas
plymouth = Administravimas, Plymouth boot splash
cpufrequtils = Aparatinė įranga, CPU frequency irqbalance
smartmontools = Aparatinė įranga, S.M.A.R.T. stebėsenos įrankiai
acpid = Aparatinė įranga, Išplėstinė maitinimo sąsajos konfigūracijos įvykių tarnyba
acpi-support = Aparatinė įranga, Išplėstinė konfigūracijos ir maitinimo sąsaja
hddtemp = Aparatinė įranga, Standžiojo disko temperatūros prižiūryklė
gpm = Aparatinė įranga, Pelės įvykių serveris
acpi-fakekey = Aparatinė įranga, Generuoja raktinius įvykius, skirtus ACPI scenarijams
dbus = Aparatinė įranga, Pranešimų magistralės tarnyba
saned = Aparatinė įranga, Skenerių tarnyba
haveged = Aparatinė įranga, Atsitiktinių skaičių generatorius
avahi-daemon = Aparatinė įranga, Leidžia programoms skelbti ir atrasti tarnybas bei serverius
network-manager = Darbas tinkle, Tinklo ryšiai
wicd = Darbas tinkle, Tinklo ryšiai
ssh = Darbas tinkle, Saugusis aplvalkalas
nfs-kernel-server = Darbas tinkle, Linux NFS tinklo failų sistemos serverio komponentas
openVPN = Darbas tinkle, VPN programa, kuri sukuria saugius ryšius
bluetooth = Darbas tinkle, Bluetooth
rsync = Darbas tinkle, Failų kopijavimo įrankis
cups = Spausdinimas, Linux ir OS X spausdinimo tarnyba
cups-browsed = Spausdinimas, CUPS Bonjour (zeroconf) spausdintuvų atradimo tarnyba
[mk]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[nb]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Maskinvare, CPU frequency irqbalance
smartmontools = Maskinvare, S.M.A.R.T. monitoring tools
acpid = Maskinvare, Advanced Configuration of Power Interface event daemon
acpi-support = Maskinvare, Advanced Configuration and Power Interface
hddtemp = Maskinvare, HDD temperature monitor
gpm = Maskinvare, Mouse event server
acpi-fakekey = Maskinvare, Generates key events for ACPI scripts
dbus = Maskinvare, Message bus daemon
saned = Maskinvare, Scanner daemon
haveged = Maskinvare, Random number generator
avahi-daemon = Maskinvare, Enables programs to publish and discover services and hosts
network-manager = Netverks, Network connections
wicd = Netverks, Network connections
ssh = Netverks, Secure Shell
nfs-kernel-server = Netverks, Linux NFS Network File System server component
openVPN = Netverks, VPN program that creates secure connections
bluetooth = Netverks, Bluetooth
rsync = Netverks, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[nl]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth opstart splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Gevorderde Configuratie en Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface event daemon
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Stelt programma's in staat services en hosts te vinden
network-manager = Netwerken, Netwerkverbindingen
wicd = Netwerken, Netwerkverbindingen
ssh = Netwerken, Secure Shell
nfs-kernel-server = Netwerken, Linux NFS Netwerk Bestandssysteem server onderdeel
openVPN = Netwerken, VPN programma dat beveiligde verbindingen maakt
bluetooth = Netwerken, Bluetooth
rsync = Netwerken, Bestand kopiëergereedschap
cups = Afdrukken, Linux and OS X printer service
cups-browsed = Afdrukken, CUPS Bonjour (zeroconf) printer vinder service
[pl]
anacron = Admin, Uruchamia polecenia okresowo
cron = Admin, Planowanie zadań oparte o czas
sudo = Admin, Wykonaj polecenie jako inny użytkownik
plymouth = Admin, Plymouth boot splash
cpufrequtils = Sprzęt, CPU frequency irqbalance
smartmontools = Sprzęt, Narzędzia monitorowania S.M.A.R.T.
acpid = Sprzęt, Zaawansowana konfiguracja demona zdarzeń interfejsu zasilania
acpi-support = Sprzęt, Zaawansowana konfiguracja i interfejs zasilania
hddtemp = Sprzęt, Monitor temperatury dysku twardego
gpm = Sprzęt, Serwer zdarzeń myszy
acpi-fakekey = Sprzęt, Generuje kluczowe zdarzenia dla skryptów ACPI
dbus = Sprzęt, Message bus daemon
saned = Sprzęt, Daemon skanera
haveged = Sprzęt, Generator liczb losowych
avahi-daemon = Sprzęt, Umożliwia programom publikowanie i odkrywanie usług i hostów
network-manager = Sieć (networking), Połączenia sieciowe
wicd = Sieć (networking), Połączenia sieciowe
ssh = Sieć (networking), Bezpieczna powłoka
nfs-kernel-server = Sieć (networking), Linux NFS komponent serwera Sieciowego Systemu Plików
openVPN = Sieć (networking), Program VPN, który tworzy bezpieczne połączenia
bluetooth = Sieć (networking), Bluetooth
rsync = Sieć (networking), Narzędzie do kopiowania plików
cups = Drukowanie, Usługa drukowania dla systemów Linux i OS X
cups-browsed = Drukowanie, Usługa wykrywania drukarek CUPS Bonjour (zeroconf)
[pt_BR]
anacron = Administrador, Executa os comandos periodicamente
cron = Administrador, Agendador de ações a executar por horário
sudo = Administrador, Executar um comando como usuário diferente
plymouth = Administrador, Plymouth boot splash
cpufrequtils = Hardware, Frequência irqbalance da CPU
smartmontools = Hardware, Ferramentas de monitorização S.M.A.R.T.
acpid = Hardware, Daemon (processo oculto) de evento de Configuração Avançada da Interface de Energia (ACPI)
acpi-support = Hardware, Configuração Avançada da Interface de Energia (ACPI)
hddtemp = Hardware, Monitor de temperatura do disco rígido (HDD)
gpm = Hardware, Servidor de eventos do mouse
acpi-fakekey = Hardware, Gera eventos-chave para scripts ACPI
dbus = Hardware, Daemon (processo oculto) de transporte de mensagens
saned = Hardware, Daemon (processo oculto) de Scanner
haveged = Hardware, Gerador de números aleatórios
avahi-daemon = Hardware, Habilitar programas a publicar e a descobrir serviços e hospedeiros.
network-manager = Rede, Conexões de rede
wicd = Rede, Conexões de rede
ssh = Rede, Shell seguro
nfs-kernel-server = Rede, Componente de servidor Linux NFS (Sistema de Arquivos de Rede)
openVPN = Rede, Programa de Redes Privadas Virtuais (VPN) que cria conexões seguras
bluetooth = Rede, Bluetooth
rsync = Rede, Ferramenta de cópia de arquivos
cups = Impressão, Serviço de impressoras para Linux e OS X
cups-browsed = Impressão, Serviço descobridor de impressoras - CUPS Bonjour (zeroconf)
[pt]
anacron = Administrar, Executa os comandos periodicamente
cron = Administrar, Horário de ações temporizadas
sudo = Administrar, Executar um comando como utilizador diferente
plymouth = Administrar, Estampa de arranque Plymouth
cpufrequtils = Equipamento, irqbalance para a frequência da CPU
smartmontools = Equipamento, Ferramentas de monitorização S.M.A.R.T.
acpid = Equipamento, Configuração Avançada do daemon de eventos da Interface de Energia
acpi-support = Equipamento, Interface Avançada de Configuração e Energia / ACPI
hddtemp = Equipamento, Monitor de temperatura do disco rígido
gpm = Equipamento, Servidor de eventos do rato
acpi-fakekey = Equipamento, Gera eventos-chave para scripts ACPI
dbus = Equipamento, Daemon de transporte de mensagens
saned = Equipamento, Daemon do scanner/digitalizador
haveged = Equipamento, Gerador de números aleatórios
avahi-daemon = Equipamento, Permite que os programas descubram e mostrem serviços e hospedeiros
network-manager = Redes, Ligações de rede
wicd = Redes, Ligações de rede
ssh = Redes, Interpretador (shell) seguro
nfs-kernel-server = Redes, Componente de servidor do Sistema de Ficheiros de Rede Linux NFS
openVPN = Redes, Programa de redes privadas virtuais (VPN) que cria ligações seguras
bluetooth = Redes, Bluetooth
rsync = Redes, Ferramenta de cópia de ficheiros
cups = Imprimir, Serviço de impressoras para Linux e OS X
cups-browsed = Imprimir, Serviço de detecção de impressoras CUPS Bonjour (ou DNS Service Discovery)
[ro]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface event daemon
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Permite programelor să publice și să descopere servicii și gazde
network-manager = Rețea, Network connections
wicd = Rețea, Network connections
ssh = Rețea, Secure Shell
nfs-kernel-server = Rețea, Linux NFS Network File System server component
openVPN = Rețea, Program VPN care crează conexiuni securizate
bluetooth = Rețea, Bluetooth
rsync = Rețea, File copying tool
cups = Tipărire, Linux and OS X printer service
cups-browsed = Tipărire, CUPS Bonjour (zeroconf) printer discovery service
[ru]
anacron = Admin, Выполняет команды периодически
cron = Admin, Планировщик заданий, основанный на времени
sudo = Admin, Выполнить команду от имени другого пользователя
plymouth = Admin, Plymouth boot splash
cpufrequtils = Оборудование, Управление частотой CPU и Irqbalance
smartmontools = Оборудование, Инструменты проверки S.M.A.R.T. у накопителей
acpid = Оборудование, Конфигурация демона событий интерфейса энергопотребления
acpi-support = Оборудование, Демон расширенной конфигурации и событий интерфейса питания
hddtemp = Оборудование, Контроль температуры жесткого диска
gpm = Оборудование, Сервер событий мыши
acpi-fakekey = Оборудование, Создает ключевые события для скриптов ACPI
dbus = Оборудование, Демон шины сообщений
saned = Оборудование, Демон сканера
haveged = Оборудование, Генератор случайных чисел
avahi-daemon = Оборудование, Позволяет программам создавать и обнаруживать службы и хосты
network-manager = Сеть, Сетевые подключения
wicd = Сеть, Сетевые подключения
ssh = Сеть, Безопасная оболочка
nfs-kernel-server = Сеть, Компонента сервера сетевой файловой системы NFS
openVPN = Сеть, Программа VPN, которая создает безопасные соединения.
bluetooth = Сеть, Блютуз
rsync = Сеть, Утилита копирования файлов
cups = Печать, Служба принтера Linux и OS X
cups-browsed = Печать, Служба общего доступа к принтерам CUPS Bonjour
[sk]
anacron = Admin, Spúšťa príkazy opakovane
cron = Admin, Časovač úloh
sudo = Admin, Spustiť príkaz ako iný uživateľ
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardvér, CPU frequency irqbalance
smartmontools = Hardvér, S.M.A.R.T. monitorovacie nástroje
acpid = Hardvér, Advanced Configuration of Power Interface event daemon
acpi-support = Hardvér, Rozšírené nastavenia a udalosti Napájacieho rozhrania
hddtemp = Hardvér, Snímač teploty HDD
gpm = Hardvér, Server udalostí myši
acpi-fakekey = Hardvér, Generuje kľúče udalostí pre ACPI skripty
dbus = Hardvér, Message bus daemon
saned = Hardvér, Deamon scanneru
haveged = Hardvér, Generátor náhodných čísel
avahi-daemon = Hardvér, Umožnuje programom publikovať a odhaľovať služby a hosty
network-manager = Sieť, Network connections
wicd = Sieť, Network connections
ssh = Sieť, Secure Shell
nfs-kernel-server = Sieť, Linux NFS Network File System server component
openVPN = Sieť, Program VPN, ktorý vytvára zabezpečené pripojenia
bluetooth = Sieť, Bluetooth
rsync = Sieť, File copying tool
cups = Tlač, Služba tlače pre Linux a OS X
cups-browsed = Tlač, CUPS Bonjour (zeroconf) printer discovery service
[sl]
anacron = Administrator, Runs commands periodically
cron = Administrator, Time-based job scheduler
sudo = Administrator, Execute a command as another user
plymouth = Administrator, Plymouth boot splash
cpufrequtils = Strojni, CPU frequency irqbalance
smartmontools = Strojni, S.M.A.R.T. monitoring tools
acpid = Strojni, Advanced Configuration of Power Interface event daemon
acpi-support = Strojni, Advanced Configuration and Power Interface
hddtemp = Strojni, HDD temperature monitor
gpm = Strojni, Mouse event server
acpi-fakekey = Strojni, Generates key events for ACPI scripts
dbus = Strojni, Message bus daemon
saned = Strojni, Scanner daemon
haveged = Strojni, Random number generator
avahi-daemon = Strojni, Enables programs to publish and discover services and hosts
network-manager = Omrežje, Network connections
wicd = Omrežje, Network connections
ssh = Omrežje, Secure Shell
nfs-kernel-server = Omrežje, Linux NFS Network File System server component
openVPN = Omrežje, VPN program that creates secure connections
bluetooth = Omrežje, Bluetooth
rsync = Omrežje, File copying tool
cups = Tiskanje, Linux and OS X printer service
cups-browsed = Tiskanje, CUPS Bonjour (zeroconf) printer discovery service
[sq]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[sr]
anacron = Admin, Runs commands periodically
cron = Admin, Time-based job scheduler
sudo = Admin, Execute a command as another user
plymouth = Admin, Plymouth boot splash
cpufrequtils = Hardware, CPU frequency irqbalance
smartmontools = Hardware, S.M.A.R.T. monitoring tools
acpid = Hardware, Advanced Configuration of Power Interface event daemon
acpi-support = Hardware, Advanced Configuration and Power Interface
hddtemp = Hardware, HDD temperature monitor
gpm = Hardware, Mouse event server
acpi-fakekey = Hardware, Generates key events for ACPI scripts
dbus = Hardware, Message bus daemon
saned = Hardware, Scanner daemon
haveged = Hardware, Random number generator
avahi-daemon = Hardware, Enables programs to publish and discover services and hosts
network-manager = Networking, Network connections
wicd = Networking, Network connections
ssh = Networking, Secure Shell
nfs-kernel-server = Networking, Linux NFS Network File System server component
openVPN = Networking, VPN program that creates secure connections
bluetooth = Networking, Bluetooth
rsync = Networking, File copying tool
cups = Printing, Linux and OS X printer service
cups-browsed = Printing, CUPS Bonjour (zeroconf) printer discovery service
[sv]
anacron = Administratör, Kör kommandon periodiskt
cron = Administratör, Tidsbaserad arbets-schemaläggare
sudo = Administratör, Utför ett kommando som annan användare