manageiq-smartstate 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (305) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -0
  3. data/.rspec +4 -0
  4. data/.rspec_ci +4 -0
  5. data/.travis.yml +15 -0
  6. data/Gemfile +9 -0
  7. data/LICENSE.txt +202 -0
  8. data/README.md +45 -0
  9. data/Rakefile +23 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/lib/MiqContainerGroup/MiqContainerGroup.rb +31 -0
  13. data/lib/MiqVm/MiqLocalVm.rb +50 -0
  14. data/lib/MiqVm/MiqRhevmVm.rb +179 -0
  15. data/lib/MiqVm/MiqVm.rb +355 -0
  16. data/lib/MiqVm/miq_azure_vm.rb +96 -0
  17. data/lib/MiqVm/miq_scvmm_vm.rb +38 -0
  18. data/lib/MiqVm/test/camcorder_fleece_test.rb +60 -0
  19. data/lib/MiqVm/test/localVm.rb +45 -0
  20. data/lib/MiqVm/test/partitionAlignmentCheck.rb +76 -0
  21. data/lib/MiqVm/test/remoteVm.rb +65 -0
  22. data/lib/MiqVm/test/rhevmNfsTest.rb +62 -0
  23. data/lib/MiqVm/test/rhevmNfsTest2.rb +66 -0
  24. data/lib/MiqVm/test/rhevmTest.rb +70 -0
  25. data/lib/OpenStackExtract/MiqOpenStackVm/MiqOpenStackCommon.rb +107 -0
  26. data/lib/OpenStackExtract/MiqOpenStackVm/MiqOpenStackImage.rb +67 -0
  27. data/lib/OpenStackExtract/MiqOpenStackVm/MiqOpenStackInstance.rb +182 -0
  28. data/lib/Scvmm/miq_hyperv_disk.rb +273 -0
  29. data/lib/Scvmm/miq_scvmm_parse_powershell.rb +75 -0
  30. data/lib/Scvmm/miq_scvmm_vm_ssa_info.rb +135 -0
  31. data/lib/Scvmm/test/miq_hyperv_disk_test.rb +33 -0
  32. data/lib/Scvmm/test/miq_scvmm_vm_ssa_info_test.rb +41 -0
  33. data/lib/VmLocalDiskAccess/test/localCfg.rb +97 -0
  34. data/lib/VolumeManager/LVM/logical_volume.rb +75 -0
  35. data/lib/VolumeManager/LVM/lv_segment.rb +43 -0
  36. data/lib/VolumeManager/LVM/lvm2disk.rb +158 -0
  37. data/lib/VolumeManager/LVM/parser.rb +138 -0
  38. data/lib/VolumeManager/LVM/physical_volume.rb +19 -0
  39. data/lib/VolumeManager/LVM/scanner.rb +156 -0
  40. data/lib/VolumeManager/LVM/thin/btree.rb +83 -0
  41. data/lib/VolumeManager/LVM/thin/constants.rb +86 -0
  42. data/lib/VolumeManager/LVM/thin/data_map.rb +44 -0
  43. data/lib/VolumeManager/LVM/thin/mapping_tree.rb +19 -0
  44. data/lib/VolumeManager/LVM/thin/space_maps.rb +58 -0
  45. data/lib/VolumeManager/LVM/thin/superblock.rb +136 -0
  46. data/lib/VolumeManager/LVM/thin.rb +6 -0
  47. data/lib/VolumeManager/LVM/volume_group.rb +97 -0
  48. data/lib/VolumeManager/LVM.rb +8 -0
  49. data/lib/VolumeManager/MiqLdm.rb +546 -0
  50. data/lib/VolumeManager/MiqLvm.rb +17 -0
  51. data/lib/VolumeManager/MiqNativeVolumeManager.rb +150 -0
  52. data/lib/VolumeManager/MiqVolumeManager.rb +277 -0
  53. data/lib/VolumeManager/VolMgrPlatformSupport.rb +18 -0
  54. data/lib/VolumeManager/VolMgrPlatformSupportLinux.rb +77 -0
  55. data/lib/VolumeManager/VolMgrPlatformSupportWin.rb +17 -0
  56. data/lib/VolumeManager/test/blockDevTest.rb +40 -0
  57. data/lib/VolumeManager/test/ldm.rb +97 -0
  58. data/lib/blackbox/VmBlackBox.rb +103 -0
  59. data/lib/blackbox/xmlStorage.rb +180 -0
  60. data/lib/db/MiqBdb/MiqBdb.rb +309 -0
  61. data/lib/db/MiqBdb/MiqBdbBtree.rb +219 -0
  62. data/lib/db/MiqBdb/MiqBdbHash.rb +199 -0
  63. data/lib/db/MiqBdb/MiqBdbPage.rb +159 -0
  64. data/lib/db/MiqBdb/MiqBdbUtil.rb +18 -0
  65. data/lib/db/MiqSqlite/MiqSqlite3.rb +330 -0
  66. data/lib/db/MiqSqlite/MiqSqlite3Cell.rb +167 -0
  67. data/lib/db/MiqSqlite/MiqSqlite3Page.rb +151 -0
  68. data/lib/db/MiqSqlite/MiqSqlite3Table.rb +124 -0
  69. data/lib/db/MiqSqlite/MiqSqlite3Util.rb +32 -0
  70. data/lib/disk/DiskProbe.rb +68 -0
  71. data/lib/disk/MiqDisk.rb +317 -0
  72. data/lib/disk/camcorder_test.rb +90 -0
  73. data/lib/disk/dos_mbr.img +0 -0
  74. data/lib/disk/modules/AzureBlobDisk.rb +101 -0
  75. data/lib/disk/modules/LocalDevMod.rb +47 -0
  76. data/lib/disk/modules/LocalDevProbe.rb +6 -0
  77. data/lib/disk/modules/MSCommon.rb +352 -0
  78. data/lib/disk/modules/MSVSDiffDisk.rb +91 -0
  79. data/lib/disk/modules/MSVSDiskProbe.rb +61 -0
  80. data/lib/disk/modules/MSVSDynamicDisk.rb +42 -0
  81. data/lib/disk/modules/MSVSFixedDisk.rb +45 -0
  82. data/lib/disk/modules/MiqLargeFile.rb +63 -0
  83. data/lib/disk/modules/MiqLargeFileWin32.rb +107 -0
  84. data/lib/disk/modules/QcowDisk.rb +692 -0
  85. data/lib/disk/modules/QcowDiskProbe.rb +34 -0
  86. data/lib/disk/modules/RawBlockIO.rb +116 -0
  87. data/lib/disk/modules/RawDisk.rb +45 -0
  88. data/lib/disk/modules/RawDiskProbe.rb +7 -0
  89. data/lib/disk/modules/RhevmDescriptor.rb +167 -0
  90. data/lib/disk/modules/RhevmDiskProbe.rb +52 -0
  91. data/lib/disk/modules/VMWareCowdDisk.rb +207 -0
  92. data/lib/disk/modules/VMWareDescriptor.rb +214 -0
  93. data/lib/disk/modules/VMWareDiskProbe.rb +74 -0
  94. data/lib/disk/modules/VMWareSparseDisk.rb +189 -0
  95. data/lib/disk/modules/VhdxDisk.rb +625 -0
  96. data/lib/disk/modules/VhdxDiskProbe.rb +46 -0
  97. data/lib/disk/modules/VixDiskMod.rb +54 -0
  98. data/lib/disk/modules/VixDiskProbe.rb +6 -0
  99. data/lib/disk/modules/miq_disk_cache.rb +135 -0
  100. data/lib/disk/modules/miq_dummy_disk.rb +41 -0
  101. data/lib/disk/modules/vhdx_bat_entry.rb +10 -0
  102. data/lib/disk/test.rb +66 -0
  103. data/lib/fs/MetakitFS/MetakitFS.rb +530 -0
  104. data/lib/fs/MetakitFS/test/Makefile +14 -0
  105. data/lib/fs/MetakitFS/test/MkCollectFiles.rb +165 -0
  106. data/lib/fs/MetakitFS/test/MkSelectFiles.rb +30 -0
  107. data/lib/fs/MetakitFS/test/collect_files.yaml +70 -0
  108. data/lib/fs/MetakitFS/test/init.rb +3 -0
  109. data/lib/fs/MetakitFS/test/mk2vmdk.rb +64 -0
  110. data/lib/fs/MetakitFS/test/mk4test.c +92 -0
  111. data/lib/fs/MetakitFS/test/mkFsTest.rb +113 -0
  112. data/lib/fs/MetakitFS/test/proto.rb +97 -0
  113. data/lib/fs/MiqFS/FsProbe.rb +39 -0
  114. data/lib/fs/MiqFS/MiqFS.rb +515 -0
  115. data/lib/fs/MiqFS/modules/AUFSProbe.rb +26 -0
  116. data/lib/fs/MiqFS/modules/Ext3.rb +305 -0
  117. data/lib/fs/MiqFS/modules/Ext3Probe.rb +25 -0
  118. data/lib/fs/MiqFS/modules/Ext4.rb +304 -0
  119. data/lib/fs/MiqFS/modules/Ext4Probe.rb +25 -0
  120. data/lib/fs/MiqFS/modules/Fat32.rb +318 -0
  121. data/lib/fs/MiqFS/modules/Fat32Probe.rb +30 -0
  122. data/lib/fs/MiqFS/modules/HFSProbe.rb +18 -0
  123. data/lib/fs/MiqFS/modules/Iso9660.rb +293 -0
  124. data/lib/fs/MiqFS/modules/Iso9660Probe.rb +18 -0
  125. data/lib/fs/MiqFS/modules/LocalFS.rb +105 -0
  126. data/lib/fs/MiqFS/modules/NTFS.rb +287 -0
  127. data/lib/fs/MiqFS/modules/NTFSProbe.rb +21 -0
  128. data/lib/fs/MiqFS/modules/NativeFS.rb +155 -0
  129. data/lib/fs/MiqFS/modules/ReFSProbe.rb +17 -0
  130. data/lib/fs/MiqFS/modules/RealFS.rb +79 -0
  131. data/lib/fs/MiqFS/modules/RealFSProbe.rb +6 -0
  132. data/lib/fs/MiqFS/modules/Reiser4Probe.rb +18 -0
  133. data/lib/fs/MiqFS/modules/ReiserFS.rb +315 -0
  134. data/lib/fs/MiqFS/modules/ReiserFSProbe.rb +42 -0
  135. data/lib/fs/MiqFS/modules/UnionFSProbe.rb +18 -0
  136. data/lib/fs/MiqFS/modules/WebDAV.rb +127 -0
  137. data/lib/fs/MiqFS/modules/WebDAVFile.rb +68 -0
  138. data/lib/fs/MiqFS/modules/XFS.rb +300 -0
  139. data/lib/fs/MiqFS/modules/XFSProbe.rb +26 -0
  140. data/lib/fs/MiqFS/modules/ZFSProbe.rb +18 -0
  141. data/lib/fs/MiqFS/test.rb +59 -0
  142. data/lib/fs/MiqFsUtil.rb +383 -0
  143. data/lib/fs/MiqMountManager.rb +209 -0
  144. data/lib/fs/MiqNativeMountManager.rb +101 -0
  145. data/lib/fs/MountManagerProbe.rb +29 -0
  146. data/lib/fs/ReiserFS/block.rb +209 -0
  147. data/lib/fs/ReiserFS/directory.rb +136 -0
  148. data/lib/fs/ReiserFS/directory_entry.rb +140 -0
  149. data/lib/fs/ReiserFS/file_data.rb +111 -0
  150. data/lib/fs/ReiserFS/superblock.rb +140 -0
  151. data/lib/fs/ReiserFS/utils.rb +95 -0
  152. data/lib/fs/VimDatastoreFS/VimDatastoreFS.rb +192 -0
  153. data/lib/fs/ext3/alloc_bitmap.rb +38 -0
  154. data/lib/fs/ext3/block_pointers_path.rb +130 -0
  155. data/lib/fs/ext3/directory.rb +51 -0
  156. data/lib/fs/ext3/directory_entry.rb +67 -0
  157. data/lib/fs/ext3/ex_attrib_header.rb +14 -0
  158. data/lib/fs/ext3/ex_attrib_name.rb +23 -0
  159. data/lib/fs/ext3/file_data.rb +130 -0
  160. data/lib/fs/ext3/group_descriptor_entry.rb +65 -0
  161. data/lib/fs/ext3/group_descriptor_table.rb +54 -0
  162. data/lib/fs/ext3/hash_tree_entry.rb +18 -0
  163. data/lib/fs/ext3/hash_tree_header.rb +15 -0
  164. data/lib/fs/ext3/inode.rb +228 -0
  165. data/lib/fs/ext3/posix_acl_entry.rb +29 -0
  166. data/lib/fs/ext3/posix_acl_header.rb +11 -0
  167. data/lib/fs/ext3/superblock.rb +406 -0
  168. data/lib/fs/ext3/test/tc_Ext3BlockPointersPath.rb +74 -0
  169. data/lib/fs/ext4/alloc_bitmap.rb +38 -0
  170. data/lib/fs/ext4/directory.rb +87 -0
  171. data/lib/fs/ext4/directory_entry.rb +77 -0
  172. data/lib/fs/ext4/ex_attrib_header.rb +14 -0
  173. data/lib/fs/ext4/ex_attrib_name.rb +23 -0
  174. data/lib/fs/ext4/extent.rb +35 -0
  175. data/lib/fs/ext4/extent_header.rb +40 -0
  176. data/lib/fs/ext4/extent_index.rb +33 -0
  177. data/lib/fs/ext4/group_descriptor_entry.rb +69 -0
  178. data/lib/fs/ext4/group_descriptor_table.rb +54 -0
  179. data/lib/fs/ext4/hash_tree_entry.rb +58 -0
  180. data/lib/fs/ext4/hash_tree_header.rb +35 -0
  181. data/lib/fs/ext4/inode.rb +465 -0
  182. data/lib/fs/ext4/posix_acl_entry.rb +29 -0
  183. data/lib/fs/ext4/posix_acl_header.rb +11 -0
  184. data/lib/fs/ext4/superblock.rb +412 -0
  185. data/lib/fs/fat32/boot_sect.rb +379 -0
  186. data/lib/fs/fat32/directory.rb +222 -0
  187. data/lib/fs/fat32/directory_entry.rb +540 -0
  188. data/lib/fs/fat32/file_data.rb +128 -0
  189. data/lib/fs/iso9660/boot_sector.rb +170 -0
  190. data/lib/fs/iso9660/directory.rb +90 -0
  191. data/lib/fs/iso9660/directory_entry.rb +147 -0
  192. data/lib/fs/iso9660/file_data.rb +78 -0
  193. data/lib/fs/iso9660/rock_ridge.rb +329 -0
  194. data/lib/fs/iso9660/util.rb +57 -0
  195. data/lib/fs/modules/LinuxMount.rb +300 -0
  196. data/lib/fs/modules/LinuxMountProbe.rb +29 -0
  197. data/lib/fs/modules/WinMount.rb +97 -0
  198. data/lib/fs/modules/WinMountProbe.rb +24 -0
  199. data/lib/fs/ntfs/attrib_attribute_list.rb +131 -0
  200. data/lib/fs/ntfs/attrib_bitmap.rb +26 -0
  201. data/lib/fs/ntfs/attrib_data.rb +74 -0
  202. data/lib/fs/ntfs/attrib_file_name.rb +110 -0
  203. data/lib/fs/ntfs/attrib_header.rb +194 -0
  204. data/lib/fs/ntfs/attrib_index_allocation.rb +19 -0
  205. data/lib/fs/ntfs/attrib_index_root.rb +247 -0
  206. data/lib/fs/ntfs/attrib_object_id.rb +40 -0
  207. data/lib/fs/ntfs/attrib_standard_information.rb +107 -0
  208. data/lib/fs/ntfs/attrib_type.rb +49 -0
  209. data/lib/fs/ntfs/attrib_volume_information.rb +53 -0
  210. data/lib/fs/ntfs/attrib_volume_name.rb +31 -0
  211. data/lib/fs/ntfs/boot_sect.rb +253 -0
  212. data/lib/fs/ntfs/data_run.rb +358 -0
  213. data/lib/fs/ntfs/directory_index_node.rb +114 -0
  214. data/lib/fs/ntfs/index_node_header.rb +69 -0
  215. data/lib/fs/ntfs/index_record_header.rb +85 -0
  216. data/lib/fs/ntfs/mft_entry.rb +288 -0
  217. data/lib/fs/ntfs/utils.rb +43 -0
  218. data/lib/fs/test/camcorder_fs_test.rb +108 -0
  219. data/lib/fs/test/collect_files_direct.yaml +22 -0
  220. data/lib/fs/test/collect_files_in.yaml +24 -0
  221. data/lib/fs/test/collect_files_in_nc.yaml +22 -0
  222. data/lib/fs/test/collect_files_out.yaml +6 -0
  223. data/lib/fs/test/collect_files_rm.yaml +6 -0
  224. data/lib/fs/test/copyTest.rb +126 -0
  225. data/lib/fs/test/fsTest.rb +87 -0
  226. data/lib/fs/test/updateTest.rb +184 -0
  227. data/lib/fs/xfs/allocation_group.rb +160 -0
  228. data/lib/fs/xfs/bmap_btree_block.rb +125 -0
  229. data/lib/fs/xfs/bmap_btree_record.rb +80 -0
  230. data/lib/fs/xfs/bmap_btree_root_node.rb +72 -0
  231. data/lib/fs/xfs/directory.rb +133 -0
  232. data/lib/fs/xfs/directory2_data_header.rb +27 -0
  233. data/lib/fs/xfs/directory3_data_header.rb +34 -0
  234. data/lib/fs/xfs/directory_block_tail.rb +22 -0
  235. data/lib/fs/xfs/directory_data_header.rb +46 -0
  236. data/lib/fs/xfs/directory_entry.rb +106 -0
  237. data/lib/fs/xfs/inode.rb +532 -0
  238. data/lib/fs/xfs/inode_map.rb +100 -0
  239. data/lib/fs/xfs/short_form_directory_entry.rb +91 -0
  240. data/lib/fs/xfs/short_form_header.rb +44 -0
  241. data/lib/fs/xfs/superblock.rb +556 -0
  242. data/lib/lib/tasks/azure.rake +52 -0
  243. data/lib/manageiq/smartstate/version.rb +5 -0
  244. data/lib/manageiq/smartstate.rb +7 -0
  245. data/lib/manageiq-smartstate.rb +1 -0
  246. data/lib/metadata/MIQExtract/MIQExtract.rb +297 -0
  247. data/lib/metadata/MIQExtract/test/extractTest.rb +41 -0
  248. data/lib/metadata/MIQExtract/test/full_extract_test.rb +68 -0
  249. data/lib/metadata/ScanProfile/HostScanItem.rb +4 -0
  250. data/lib/metadata/ScanProfile/HostScanProfile.rb +4 -0
  251. data/lib/metadata/ScanProfile/HostScanProfiles.rb +41 -0
  252. data/lib/metadata/ScanProfile/ScanItemBase.rb +63 -0
  253. data/lib/metadata/ScanProfile/ScanProfileBase.rb +51 -0
  254. data/lib/metadata/ScanProfile/ScanProfilesBase.rb +60 -0
  255. data/lib/metadata/ScanProfile/VmScanItem.rb +4 -0
  256. data/lib/metadata/ScanProfile/VmScanProfile.rb +4 -0
  257. data/lib/metadata/ScanProfile/VmScanProfiles.rb +38 -0
  258. data/lib/metadata/ScanProfile/modules/HostScanItemFile.rb +51 -0
  259. data/lib/metadata/ScanProfile/modules/HostScanItemNteventlog.rb +84 -0
  260. data/lib/metadata/ScanProfile/modules/VmScanItemFile.rb +39 -0
  261. data/lib/metadata/ScanProfile/modules/VmScanItemNteventlog.rb +34 -0
  262. data/lib/metadata/ScanProfile/modules/VmScanItemRegistry.rb +64 -0
  263. data/lib/metadata/VMMount/VMMount.rb +81 -0
  264. data/lib/metadata/VMMount/VMPlatformMount.rb +18 -0
  265. data/lib/metadata/VMMount/VMPlatformMountLinux.rb +75 -0
  266. data/lib/metadata/VMMount/VMPlatformMountWin.rb +13 -0
  267. data/lib/metadata/VmConfig/GetNativeCfg.rb +45 -0
  268. data/lib/metadata/VmConfig/VmConfig.rb +947 -0
  269. data/lib/metadata/VmConfig/cfgConfig.rb +45 -0
  270. data/lib/metadata/VmConfig/ovfConfig.rb +99 -0
  271. data/lib/metadata/VmConfig/test/GetVMwareCfgTest.rb +40 -0
  272. data/lib/metadata/VmConfig/vmcConfig.rb +116 -0
  273. data/lib/metadata/VmConfig/vmtxConfig.rb +4 -0
  274. data/lib/metadata/VmConfig/vmxConfig.rb +162 -0
  275. data/lib/metadata/VmConfig/xmlConfig.rb +79 -0
  276. data/lib/metadata/VmConfig/xmlMsHyperVConfig.rb +41 -0
  277. data/lib/metadata/linux/InitProcHash.rb +632 -0
  278. data/lib/metadata/linux/LinuxInitProcs.rb +142 -0
  279. data/lib/metadata/linux/LinuxOSInfo.rb +237 -0
  280. data/lib/metadata/linux/LinuxPackages.rb +209 -0
  281. data/lib/metadata/linux/LinuxSystemd.rb +130 -0
  282. data/lib/metadata/linux/LinuxUsers.rb +289 -0
  283. data/lib/metadata/linux/LinuxUtils.rb +197 -0
  284. data/lib/metadata/linux/MiqConaryPackages.rb +41 -0
  285. data/lib/metadata/linux/MiqRpmPackages.rb +160 -0
  286. data/lib/metadata/linux/test/Name +0 -0
  287. data/lib/metadata/linux/test/Packages +0 -0
  288. data/lib/metadata/linux/test/rpoTest.rb +5 -0
  289. data/lib/metadata/linux/test/tc_LinuxUtils.rb +4157 -0
  290. data/lib/metadata/util/event_log_filter.rb +61 -0
  291. data/lib/metadata/util/md5deep.rb +280 -0
  292. data/lib/metadata/util/win32/Win32Accounts.rb +764 -0
  293. data/lib/metadata/util/win32/Win32EventLog.rb +743 -0
  294. data/lib/metadata/util/win32/Win32Services.rb +86 -0
  295. data/lib/metadata/util/win32/Win32Software.rb +326 -0
  296. data/lib/metadata/util/win32/Win32System.rb +333 -0
  297. data/lib/metadata/util/win32/boot_info_win.rb +59 -0
  298. data/lib/metadata/util/win32/fleece_hives.rb +220 -0
  299. data/lib/metadata/util/win32/ms-registry.rb +650 -0
  300. data/lib/metadata/util/win32/peheader.rb +868 -0
  301. data/lib/metadata/util/win32/remote-registry.rb +142 -0
  302. data/lib/metadata/util/win32/system_path_win.rb +103 -0
  303. data/lib/metadata/util/win32/versioninfo.rb +17 -0
  304. data/manageiq-smartstate.gemspec +35 -0
  305. metadata +486 -0
@@ -0,0 +1,632 @@
1
+ module MiqLinux
2
+ InitProcHash = {
3
+ "2xthinclientserver" => "Supports thin clients",
4
+ "3dwm-server" => "Binary server daemon",
5
+ "acct" => "GNU Accounting utilities for process and login accounting",
6
+ "acpid" => "Utilities for using ACPI power management",
7
+ "acquire" => "Knowledge base editor and integrated inference engin",
8
+ "adjtimex" => "Utility to display or set the kernel time variables",
9
+ "afs" => "DeanSoft Co.,Ltd. michael@deansoft.com.tw",
10
+ "aime" => "Advanced Interactive Mudding Environment",
11
+ "alamin-server" => "Alamin GSM SMS Gateway server",
12
+ "alkahest" => "Alkahest by the Alkahest Initiative eric_windham@ncsu.edu",
13
+ "allianz" => "Allianz Insurance rainer.brunold@allianz.at",
14
+ "alsa" => "ALSA driver configuration files",
15
+ "amavis" => "AMaViS Development Team amavis@amavis.org",
16
+ "amavisd" => "AMaViS Development Team amavis@amavis.org",
17
+ "amavis-postfix" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
18
+ "am-utils" => "Automounter utilities",
19
+ "anacron" => "Executes commands at intervals",
20
+ "and" => "Auto Nice Daemon",
21
+ "apache" => "Versatile, high-performance HTTP server",
22
+ "apache-perl" => "Versatile, high-performance HTTP server with Perl support",
23
+ "apache-ssl" => "Versatile, high-performance HTTP server with SSL support",
24
+ "apcd" => "APC Smart UPS daemon",
25
+ "apcupsd" => "APC UPS Power Management (daemon)",
26
+ "apmd" => "Utilities for Advanced Power Management (APM)",
27
+ "aprsd" => "Internet Gateway for the Automatic Position Reporting System",
28
+ "argus" => "IP network transaction auditing tool",
29
+ "arkeia" => "Arkeia Corporation aspicht@arkeia.com",
30
+ "arla" => "A free client for the AFS distributed network filesystem",
31
+ "armtech" => "Aurema Pty Ltd vickyo@aurema.com",
32
+ "arpd" => "User-space ARP daemon",
33
+ "arpwatch" => "Ethernet/FDDI station activity monitor",
34
+ "asdis" => "ASDIS Software AG support@asdis.de",
35
+ "aspera" => "Aspera, Inc. serban@asperasoft.com",
36
+ "atd" => "Delayed job execution and batch processing",
37
+ "atftpd" => "Advanced TFTP server",
38
+ "atm" => "Base programs for ATM in Linux",
39
+ "atokx" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
40
+ "aumix" => "Simple text-based mixer control program",
41
+ "aumix-gtk" => "Simple mixer control program with GUI and text interfaces",
42
+ "autofs" => "Kernel-based automounter for Linux",
43
+ "backupexpress" => "Backup Express by Syncsort, Inc. klieberman@syncsort.com",
44
+ "bayonne" => "Telephony server of the GNU project",
45
+ "bind" => "Internet Domain Name Server",
46
+ "bind9" => "Internet Domain Name Server",
47
+ "binfmt-support" => "Support for extra binary formats",
48
+ "binkd" => "FidoTech TCP/IP mailer",
49
+ "bird" => "Internet Routing Daemon",
50
+ "bl" => "Blink Keyboard LEDs",
51
+ "blinkd" => "Blinks keyboard LEDs",
52
+ "blootbot" => "Severely modified infobot for IRC",
53
+ "bluetooth" => "Bluetooth stack utilities",
54
+ "bnetd" => "Gaming server that emulates Battle.net(R)",
55
+ "boa" => "Lightweight and high performance web server",
56
+ "bootmisc.sh" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
57
+ "bootparamd" => "Boot parameter server",
58
+ "bpalogin" => "Login client for the Telstra Bigpond Cable Network (Australia)",
59
+ "bpowerd" => "Program to monitor Best Power Patriot and Patriot Plus UPSs under Linux",
60
+ "brltty" => "Access software for a blind person using a braille display",
61
+ "bwbar" => "Generates text and graphical readout of current bandwidth use",
62
+ "bzflagserver" => "BZFlag game server",
63
+ "caantivirus" => "Computer Associates antivirus",
64
+ "callweaver" => "Eris Associates Limited mjagdis@eris-associates.co.uk",
65
+ "camserv" => "Stream live video out onto the web",
66
+ "camserv-relay" => "Relay camserv video stream for load balancing purposes",
67
+ "canna" => "Japanese input system (server and dictionary)",
68
+ "capisuite" => "Fax and voice box solution for ISDN/CAPI capable devices",
69
+ "caudium" => "Extensible WWW server written in Pike",
70
+ "centrifydc" => "Centrify Direct Control Suite adam.au@centrify.com",
71
+ "cern-httpd" => "Generic, full featured server for serving files using the HTTP protocol",
72
+ "cfsd" => "Cryptographic Filesystem",
73
+ "chainmail" => "Caversham Computer Services Ltd. wrd@cavcomp.co.uk",
74
+ "checkfs.sh" => "Checkpoint and Block Level Incremental Backup (BLIB) File System",
75
+ "checkroot.sh" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
76
+ "chrony" => "Sets your computer's clock from time servers on the Net",
77
+ "cipe" => "Files for the CIPE",
78
+ "ciphire" => "Ciphire Labs le at ciphirelabs.com",
79
+ "ciphire-gw" => "Ciphire Labs le at ciphirelabs.com",
80
+ "ciphire-proxy" => "Ciphire Labs le at ciphirelabs.com",
81
+ "cjdbc" => "ObjectWeb Consortium lsb@objectweb.org",
82
+ "clamd" => "ClamAV anti-virus software lanana@martinconsulting.com",
83
+ "cnewsclean" => "Simple news server",
84
+ "connectgate" => "Lymeware Corporation cfox@lymeware.com",
85
+ "conserver-server" => "Allows multiple users to watch a serial console at the same time",
86
+ "console-cyrillic" => "Better Cyrillic support for Linux console",
87
+ "console-log" => "Puts a logfile pager on virtual consoles",
88
+ "console-screen.kbd.sh" => "Console Screen keyboard",
89
+ "console-screen.sh" => "Console Screen",
90
+ "conwrks" => "ConsoleWorks by TECSys Development, Inc support@tditx.com",
91
+ "courier-authdaemon" => "Courier authentication daemon",
92
+ "courier-imap" => "Courier Mail Server - IMAP server",
93
+ "courier-imap-ssl" => "Courier Mail Server - IMAP over SSL",
94
+ "courier-mta" => "Courier Mail Server - ESMTP daemon",
95
+ "courier-mta-ssl" => "Courier Mail Server - ESMTP daemon over SSL",
96
+ "courier-pcp" => "Courier Mail Server - PCP server",
97
+ "courier-pop" => "Courier Mail Server - POP3 server",
98
+ "courier-pop-ssl" => "Courier Mail Server - POP3 server over SSL",
99
+ "cpoint" => "Caversham Computer Services Ltd. wrd@cavcomp.co.uk",
100
+ "cprocsp" => "Crypto-Pro, Ltd cross@cryptopro.ru",
101
+ "craits" => "Caversham Computer Services Ltd. wrd@cavcomp.co.uk",
102
+ "crms" => "SVI Retail iblackwell@sviretail.com",
103
+ "cron" => "Management of regular background processing",
104
+ "crond" => "Management of regular background processing",
105
+ "crossfire-server" => "Server for Crossfire Games",
106
+ "cst" => "CST GmbH thimo.neubauer@cst.com",
107
+ "cucipop" => "Implementation of the RFC1939 POP3 protocol",
108
+ "cups" => "Common UNIX Printing System(tm)",
109
+ "cupsys" => "Common UNIX Printing System(tm) - server",
110
+ "cvsupd" => "Server program for the CVSup network distribution package",
111
+ "daltoneyes" => "Objective Pathology Systems kemp@extelligence.net",
112
+ "dancer-ircd" => "IRC server designed for centrally maintained network",
113
+ "dancer-services" => "IRC services implementation for dancer-ircd",
114
+ "danted" => "SOCKS (v4 and v5) proxy daemon",
115
+ "db2icd" => "IBM DB2 Universal Database Information ihakes@ca.ibm.com",
116
+ "dbbalancer" => "Database connection pooling, load balancing and write-replication",
117
+ "ddclient" => "Update dynamic IP address at DynDNS.org",
118
+ "ddt-client" => "Client side implementation of the DDTP protocol",
119
+ "ddt-server" => "Dynamic DNS Tools Server - DDTP protocol",
120
+ "decnet" => "Digital Equipment Corporation NETwork (",
121
+ "devfsd" => "Daemon for the device file system",
122
+ "devpts.sh" => "Provides an interface to pseudo terminal (pty) devices",
123
+ "dhclient" => "Internet Software Consortium DHCP Client,",
124
+ "dhcp" => "DHCP server for automatic IP address assignment",
125
+ "dhcp3-relay" => "DHCP relay daemon",
126
+ "dhcp3-server" => "DHCP server for automatic IP address assignment",
127
+ "dhcpcd" => "DHCP client for automatically configuring IPv4 networking",
128
+ "dhcp-relay" => "DHCP relay daemon",
129
+ "dhid" => "Dynamic Host Information System (DHIS) client",
130
+ "dhttpd" => "Minimal secure webserver without cgi-bin support",
131
+ "diablo" => "Comprehensive newsfeeding and newsreading software package",
132
+ "diald" => "dial on demand daemon for PPP and SLIP",
133
+ "dictd" => "Dictionary Server",
134
+ "discover" => "Hardware identification system",
135
+ "distributed-net" => "Reserved for LSB-Compliant Distribution bovine@distributed.net",
136
+ "distributed-net-pproxy" => "Reserved for LSB-Compliant Distribution bovine@distributed.net",
137
+ "dnet-progs" => "DECnet user programs and daemons",
138
+ "dns-clean" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
139
+ "dnsmasq" => "Small caching DNS proxy and DHCP server",
140
+ "docview" => "Caldera Systems Inc. dba The SCO Group linuxtech@sco.com",
141
+ "dqs" => "Distributed Queueing System",
142
+ "drac" => "Dynamic Relay Authorization Control ",
143
+ "drbd" => "The DRBD development team philipp.reisner@linbit.com",
144
+ "dvb" => "SUSE LINUX Products GmbH ludwig.nussel@suse.de",
145
+ "ekahau-engine" => "Ekahau, Inc juha.sievanen@ekahau.com",
146
+ "eloquence" => "Marxmeier Software AG mike@marxmeier.com",
147
+ "elvind" => "Mantara Software lsb@mantara.com",
148
+ "emwin" => "Weather Data processing",
149
+ "epos" => "Text-to-speech system",
150
+ "esound" => "Enlightened Sound Daemon",
151
+ "evms" => "Enterprise Volume Management System (core)",
152
+ "exim" => "Obsolete MTA (Mail Transport Agent), replaced by exim4",
153
+ "ez-ipupdate" => "Client for most dynamic DNS services",
154
+ "faximum" => "Faximum Software Inc. George.Pajari@faximum.com",
155
+ "fcron" => "Cron-like scheduler with extended capabilities",
156
+ "festival" => "General multi-lingual speech synthesis system",
157
+ "fetchmail" => "SSL enabled POP3, APOP, IMAP mail gatherer/forwarder",
158
+ "fidogate" => "Fido-Internet gateway and a Fido tosser",
159
+ "filterproxy" => "Perl script that acts as a generic web proxy",
160
+ "firestarter" => "Gtk program for managing and observing your firewal",
161
+ "firewall-easy" => "Easy to use packet filter firewall",
162
+ "fma" => "Fabric Management Agent help@myri.com",
163
+ "frad" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
164
+ "freenet" => "Tunnel to freenet",
165
+ "freenet6" => "IPv6 tunnel to freenet6 (transitional package)",
166
+ "freenet-unstable" => "Decentralised network of nodes designed to allow for efficient distribution of information over the Interne",
167
+ "freeradius" => "High-performance and highly configurable RADIUS server",
168
+ "freewnn-cserver" => "Chinese input system",
169
+ "freewnn-jserver" => "Japanese input system",
170
+ "freewnn-kserver" => "Korean input system",
171
+ "freewnn-tserver" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
172
+ "frox" => "Transparent caching ftp proxy",
173
+ "fsg" => "The Free Standards Group dbb@freestandards.org",
174
+ "ftp-proxy" => "Application level proxy for the FTP protocol",
175
+ "fwctl" => "Configure ipchains firewall using higher level abstraction",
176
+ "fwlogwatch" => "Firewall log analyzer",
177
+ "galaxy" => "CommVault Galaxy dmitriy@commvault.com",
178
+ "garpd" => "Microcraft AB Garp marko.kupiainen@garp.se",
179
+ "gcpegg" => "Global Consciousness Project EGG Software",
180
+ "gdm" => "GNOME Display Manager",
181
+ "gdomap" => "Used by GNUstep programs to look up distributed objects of running processes",
182
+ "geas" => "GNU Enterprise Application Server ",
183
+ "geneweb" => "Genealogy software with web interface",
184
+ "genpower" => "Monitor UPS and handle line power failures",
185
+ "gidentd" => "RFC1413 compliant IPv4/IPv6 ident daemon",
186
+ "gigaset" => "Siemens Gigaset ISDN device drivers gigaset307x-common@lists.sourceforge.net",
187
+ "getport" => "University of Utah Office of IT support@it.utah.edu",
188
+ "gm" => "Glenn's Messages help@myri.com",
189
+ "gnudip" => "Scripts for dynamic IP to name mappings",
190
+ "gom" => "Command line and interactive ncurses-based OSS audio mixer",
191
+ "gopherd" => "Distributed Hypertext, Gopher protocol",
192
+ "gpm" => "General Purpose Mouse Interface",
193
+ "guarddog" => "Firewall configuration utility for KDE",
194
+ "gwava" => "Beginfinite, Inc mjb@gwava.com",
195
+ "gwavaman" => "Beginfinite, Inc mjb@gwava.com",
196
+ "gwava-poa" => "Beginfinite, Inc mjb@gwava.com",
197
+ "haldaemon" => "Danny Kukawka dkukawka@suse.de",
198
+ "halt" => "Stop all running processes on a system cleanly",
199
+ "heartbeat" => "Subsystem for High-Availability Linux",
200
+ "heimdal-kdc" => "Heimdal Kerberos - key distribution center (KDC)",
201
+ "hostname.dhcp" => "Utility to set/show the host name or domain name",
202
+ "hostname.sh" => "Utility to set/show the host name or domain name",
203
+ "hotplug" => "Linux Hotplug Scripts",
204
+ "hplip" => "HP Linux Printing and Imaging System (HPLIP)",
205
+ "hpoj" => "HP OfficeJet Linux driver (hpoj)",
206
+ "hpsockd" => "HP SOCKS server",
207
+ "httpd" => "HTTP daemon",
208
+ "hwclockfirst.sh" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
209
+ "hwclock.sh" => "Query and set the hardware clock (RTC)",
210
+ "hwtools" => "Collection of tools for low-level hardware management",
211
+ "hylafax" => "Flexible client/server fax software",
212
+ "iagent" => "Lymeware Corporation cfox@lymeware.com",
213
+ "iagent3" => "Lymeware Corporation cfox@lymeware.com",
214
+ "icecast-server" => "MPEG Layer III Streaming Server",
215
+ "identd" => "ident daemon",
216
+ "ifupdown" => "High level tools to configure network interfaces",
217
+ "inet" => "International NETworking conference (conference),",
218
+ "inetd" => "Responsible for starting most of the network services.",
219
+ "initrd-tools.sh" => "Tools to create initrd image for prepackaged Linux kernel",
220
+ "inn" => "News transport system",
221
+ "inn2" => "'InterNetNews' news server",
222
+ "intel-rng-tools" => "Daemon to use the RNG on i810 motherboards",
223
+ "interchange" => "E-commerce and general HTTP database display system",
224
+ "ipac" => "IP accounting configuration and statistics tool",
225
+ "ipac-ng" => "IP Accounting for iptables",
226
+ "ipfm" => "Bandwidth analysis tool",
227
+ "ipip" => "IP over IP Encapsulation Daemon",
228
+ "ipmasq" => "Securely initializes IP Masquerade forwarding/firewalling",
229
+ "ipmasq-kmod" => "Sets up IP Masquerading kernel modules using the insmod command",
230
+ "ipmi" => "OpenIPMI Project matt_domsch@dell.com",
231
+ "ippl" => "IP protocols logger",
232
+ "ipsec" => "IPsec for Linux",
233
+ "iptables" => "Administration tools for packet filtering and NAT",
234
+ "ipvsadm" => "Linux Virtual Server support programs",
235
+ "ipx" => "Utilities to configure the kernel ipx interface",
236
+ "ipxripd" => "IPX RIP/SAP daemon",
237
+ "ircd" => "IRC Server daemon - dummy package",
238
+ "irda" => "Infrared devices",
239
+ "irq_balancer" => "Daemon to balance interrupts",
240
+ "isapnp" => "ISA Plug-And-Play",
241
+ "isdn" => "Integrated Services Digital Network",
242
+ "isdnactivecards" => "Support utilities for active ISDN cards",
243
+ "isdneurofile" => "ISDN eurofile transfer tool",
244
+ "isdnutils" => "ISDN-related packages and utilities",
245
+ "ivman" => "Daemon to auto-mount and manage media devices",
246
+ "ixbiff" => "Notify user when mail arrives by blinking keyboard LEDs",
247
+ "jabber" => "Instant messaging server using the Jabber/XMPP protocol",
248
+ "jail" => "Just Another ICMP Logger",
249
+ "jboss" => "JBoss Application, SUSE CR s.r.o. pmladek@suse.cz",
250
+ "jftpgw" => "Joe's FTP Proxy/Gateway",
251
+ "jmon" => "Distributed resource monitor",
252
+ "jonas" => "JOnAS, ObjectWeb Consortium lsb@objectweb.org",
253
+ "jove" => "Jonathan's Own Version of Emacs - a compact, powerful editor",
254
+ "joystick" => "Testing and calibration tools",
255
+ "jserv" => "Java Servlet 2.0 engine",
256
+ "jslaunch" => "Joystick button shell command execution/shutdown tool",
257
+ "junkbuster" => "Instrumentable proxy that filters the HTTP stream between web servers and browsers",
258
+ "kannel" => "WAP and SMS gateway",
259
+ "kdm" => "X display manager for KDE",
260
+ "keep" => "Backup system for KDE",
261
+ "keepd" => "Backup system for KDE",
262
+ "kerberos4kth-kdc" => "KDC for Kerberos4 from KTH",
263
+ "keymap.sh" => "Keyboard map decision tree builder and interpreter",
264
+ "kimberlite" => "High Availability Clustering Package",
265
+ "klisa" => "LAN information service",
266
+ "klogd" => "Kernel Logging Daemon",
267
+ "krb5-admin-server" => "MIT Kerberos master server (kadmind)",
268
+ "krb5-kdc" => "MIT Kerberos key server (KDC)",
269
+ "kudzu" => "Red Hat Linux hardware probing tool.",
270
+ "l2tpd" => "Layer 2 tunneling protocol implementation",
271
+ "lambdamoo" => "Server for an online multiuser virtual world",
272
+ "laptop-net" => "Automatically adapt laptop ethernet",
273
+ "latd" => "LAT (Local Area Transport) Daemon",
274
+ "lcd4linux" => "Grabs information and displays it on an external lcd",
275
+ "LCDd" => "Loss of Cell Delineation (UNI, ATM)",
276
+ "ldirectord" => "Monitors virtual services provided by LVS",
277
+ "leeuwenhoek" => "Objective Pathology Systems kemp@extelligence.net",
278
+ "ledd" => "LED control",
279
+ "chipcardd3" => "Martin Preuss martin@libchipcard.de",
280
+ "linesrv" => "Server to remotely control the internet connection",
281
+ "linuxconf" => "Extremely capable system configuration tool for Linux",
282
+ "linuxlogo" => "Color ANSI System Logo",
283
+ "lirc" => "Infra-red remote control support",
284
+ "lmsd" => "LAN Management System Daemon",
285
+ "log2mail" => "Daemon watching logfiles and mailing lines matching patterns",
286
+ "lokkit" => "Firewalling",
287
+ "lpd" => "Line printer daemon",
288
+ "lpd-ppd" => "Line printer daemon",
289
+ "lprng" => "Lpr/lpd printer spooling system",
290
+ "lsf" => "Load sharing facility",
291
+ "lsh-server" => "Secure Shell v2 (SSH2) protocol server",
292
+ "lvm" => "Logical Volume Manager",
293
+ "lwresd" => "Lightweight Resolver Daemon",
294
+ "lyskom-server" => "Server for the LysKOM conference system",
295
+ "mailscanner" => "Email virus scanner and spam tagge",
296
+ "makedev" => "Creates device files in /dev",
297
+ "mandate" => "ADS Specialists, Inc. gedwards@ads-specialists.com",
298
+ "mandateip" => "ADS Specialists, Inc. gedwards@ads-specialists.com",
299
+ "maradns" => "Simple security-aware Domain Name Service server",
300
+ "mas" => "mas by Shiman Associates Inc leon@magic.shiman.com",
301
+ "mason" => "Interactively creates a Linux packet filtering firewall",
302
+ "masqmail" => "mailer for hosts without permanent internet connection",
303
+ "maxdb" => "MaxDB database system",
304
+ "mcserv" => "Server program for the Midnight Commander networking file system",
305
+ "mdadm" => "Tool to administer Linux MD arrays",
306
+ "mdadm-raid" => "Tool to administer Linux MD arrays",
307
+ "mdctl" => "Used to control Linux MD devices",
308
+ "mdctl-raid" => "Used to control Linux MD devices",
309
+ "mdidentd" => "Special ident daemon that permits processes to set their own fake ident replies",
310
+ "medusa" => "Fast, parallel, modular, login brute-forcer for network services",
311
+ "mgetty-fax" => "Faxing tools for mgetty",
312
+ "microcode.ctl" => "Intel IA32 CPU Microcode Utility",
313
+ "mimersql" => "Upright Database Technology AB Mimer SQ per.bengtsson@upright.se",
314
+ "modutils" => "Linux module utilities",
315
+ "momonga" => "Momonga Project",
316
+ "mon" => "Monitor hosts/services/whatever and alert about problems",
317
+ "mopd" => "Maintenance Operations Protocol (MOP) loader daemon",
318
+ "mosix" => "Utilities to administer a mosix cluster node",
319
+ "mountall.sh" => "Mounts filesystems according to a file_system_table",
320
+ "mountfix" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
321
+ "mountnfs.sh" => "Startup Item to mount NFS filesystems",
322
+ "mpagent" => "Grid MP Platform by United Devices jlawson@ud.com",
323
+ "mpservices" => "Grid MP Platform by United Devices jlawson@ud.com",
324
+ "mpwebsvc" => "Grid MP Platform by United Devices jlawson@ud.com",
325
+ "mrouted" => "Implementation of the Distance Vector Multicast Routing Protocol ",
326
+ "msec-daemon" => "Provide generic secure level to the Mandrake Linux users.",
327
+ "msec-milter" => "Provide generic secure level to the Mandrake Linux users.",
328
+ "mserv" => "Local centralised multiuser music server",
329
+ "mserver" => "Network Modem Server",
330
+ "mt-st" => "Linux SCSI tape driver aware magnetic tape control",
331
+ "muddleftpd" => "Flexible and efficient FTP daemon",
332
+ "murasaki" => "Another HotPlug Agent",
333
+ "mwavem" => "Mwave/ACP modem support",
334
+ "mx" => "Script is used to start and stop the MX server and update processes",
335
+ "mysql" => "MySQL Server",
336
+ "named" => "Internet domain name server",
337
+ "nas" => "Network Audio System",
338
+ "nbd-client" => "Network Block Device client",
339
+ "nbd-server" => "Network Block Device server",
340
+ "net-acct" => "User-mode IP accounting daemon",
341
+ "netatalk" => "AppleTalk user binaries",
342
+ "netenv" => "Configure your system for different network environments",
343
+ "nethack" => "Nethack dungeon crawl game",
344
+ "netobjd" => "Network Object agent daemon ",
345
+ "netperf" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
346
+ "netplan" => "Network server for `plan'",
347
+ "netsaint" => "Netsaint",
348
+ "netsaint-statd" => "Netsaint_statd plugins",
349
+ "netvsn" => "NetVision, Inc jay.adams@netvision.com",
350
+ "netvision" => "NetVision, Inc jay.adams@netvision.com",
351
+ "network" => "Simple network configuration",
352
+ "networking" => "Simple network configuration",
353
+ "newscache" => "NewsCache project Herbert Straub herbert@linuxhacker.at",
354
+ "nfs" => "Network file system",
355
+ "nfs-common" => "NFS support files common to client and server",
356
+ "nfs-kernel-server" => "Support for NFS kernel server",
357
+ "nfslock" => "Takes care of starting and stopping the NFS file locking service",
358
+ "nfs-user-server" => "User space NFS server",
359
+ "nis" => "Clients and daemons for the Network Information Services",
360
+ "nmb" => "Part of the samba package",
361
+ "nntpcache" => "Proxy cache newsgroups",
362
+ "noffle" => "Offline news server",
363
+ "noflushd" => "Allow idle hard disks to spin down",
364
+ "nscd" => "Network Characterization Service daemon",
365
+ "nsmon" => "Intranet/internet server checker",
366
+ "ntop" => "Display network usage in top-like format",
367
+ "ntp" => "Network Time Protocol daemon and utility programs",
368
+ "ntpdate" => "Client for setting system time from NTP servers",
369
+ "nullmailer" => "Simple relay-only mail transport agent",
370
+ "nut" => "Core system of the nut - Network UPS Tools",
371
+ "nviboot" => "Script to recover nvi edit sessions",
372
+ "nvi-m17n" => "Multilingual version of nvi ",
373
+ "nvi-m17n-canna" => "Multilingual version of nvi ",
374
+ "nz" => "Netezza Corp. psmith@netezza.com",
375
+ "oftpd" => "Secure anonymous FTP server",
376
+ "oidentd" => "Replacement ident daemon",
377
+ "omniorb-nameserver" => "CORBA ORB - nameserver",
378
+ "omreports" => "University of Utah Office of IT support@it.utah.edu",
379
+ "oops" => "Caching HTTP proxy server written for performance",
380
+ "openafs-client" => "AFS distributed filesystem client support",
381
+ "openafs-fileserver" => "AFS distributed filesystem file server",
382
+ "opengate" => "Opengate Voice over IP gatekeeper",
383
+ "openh323gk" => "H.323 gatekeeper controls all H.323 clients ",
384
+ "openmanage" => "Dell OpenManage Server ",
385
+ "openmosix" => "Utilities to administer an openmosix node",
386
+ "oss-preserve" => "Program to save/restore OSS mixer settings",
387
+ "otrs" => "Open Ticket Request System",
388
+ "ovpa" => "HP OpenView Performance Agent",
389
+ "panthera" => "Panthera Systems daniel.baumann@panthera-systems.net",
390
+ "partimaged" => "Partition imaging utility:",
391
+ "pcmcia" => "Personal Computer Memory Card International Association",
392
+ "pcscd" => "PCSC Lite resource manager daemon",
393
+ "pdns" => "PowerDNS",
394
+ "pdnsd" => "Proxy DNS Server",
395
+ "peerfs" => "PeerFS Replicating Filesystem",
396
+ "perdition" => "POP3 and IMAP4 Proxy server",
397
+ "pipsecd" => "IPsec tunnel implementation",
398
+ "pkspxy" => "PGP Public Key Server Proxy Daemon",
399
+ "plex86" => "PC virtualization program to run x86 operating systems",
400
+ "plptools" => "Access a Psion PDA over a serial link",
401
+ "pmxs" => "Preprocessor for MusiXTeX",
402
+ "popa3d" => "A tiny POP3 daemon, designed with security as the primary goal",
403
+ "pop-before-smtp" => "Watch log for POP/IMAP auth, notify MTA to allow relay",
404
+ "portmap" => "RPC portmapper",
405
+ "portsentry" => "Portscan detection daemon",
406
+ "postfix" => "High-performance mail transport agent",
407
+ "postgresql" => "PostgreSQL Database server",
408
+ "postgrey" => "Greylisting implementation for Postfix",
409
+ "powerfail" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
410
+ "powersaved" => "Power management daemon",
411
+ "powertweakd" => "Tool to tune system for optimal performance",
412
+ "powstatd" => "Configurable UPS monitoring daemon",
413
+ "ppp" => "Point-to-Point Protocol (PPP) daemon",
414
+ "pptpd" => "PoPToP Point to Point Tunneling Server",
415
+ "prime-net" => "Internet PrimeNet Server",
416
+ "procps.sh" => "/proc file system utilities",
417
+ "proftpd" => "Versatile, virtual-hosting FTP daemon",
418
+ "pure-ftpd" => "Pure-FTPd FTP server",
419
+ "pvss" => "PVSS by ETM Aktiengesellschaft koller@etm.at",
420
+ "pwcheck" => "Unix pwcheck daemon login authentication",
421
+ "qmail" => "Qmail MTA",
422
+ "qpage" => "Sends messages to a paging terminal using the SNPP and IXO (also known as TAP) protocols",
423
+ "qsnet" => "High speed interconnect designed by Quadrics used in HPC clusters",
424
+ "queue" => "Transparent load balancing system",
425
+ "quota" => "Implementation of the disk quota system",
426
+ "quotarpc" => "Quota script",
427
+ "radioclk" => "Simple ntp refclock daemon for MSF/WWVB/DCF77 time signals",
428
+ "radiusd" => "Radius Server",
429
+ "radiusd-livingston" => "Remote Authentication Dial-In User Service (RADIUS) server",
430
+ "radvd" => "Router Advertisement Daemon",
431
+ "raid" => "RAID support",
432
+ "raid2" => "RAID support",
433
+ "random" => "Non-linear additive feedback random number generator",
434
+ "rarpd" => "Reverse Address Resolution Protocol daemon",
435
+ "rawio" => "Allows direct access to devices",
436
+ "rbootd" => "Remote Boot Daemon",
437
+ "rc" => "An implementation of the AT&T Plan 9 shell",
438
+ "rcS" => "GNU Revision Control System",
439
+ "README" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
440
+ "reboot" => "Restarts computer",
441
+ "resmgr" => "Resource manager library daemon and PAM module",
442
+ "rgpsp" => "Remote poller for GPS (Graphical Process Statistics)",
443
+ "rinetd" => "Internet TCP redirection server",
444
+ "ricis" => "RICIS, Inc. lsb@ricis.com",
445
+ "rlagent" => "Beginfinite, Inc. mjb@gwava.com",
446
+ "rlcenter" => "Beginfinite, Inc. mjb@gwava.com",
447
+ "rlinetd" => "Gruesomely over-featured inetd replacement",
448
+ "rmnologin" => "Essential for login",
449
+ "rms" => "rms for Quadrics Ltd. daniel.blueman@quadrics.com",
450
+ "routed" => "Network routing daemon",
451
+ "roxen" => "Roxen Challenger Webserver",
452
+ "roxen2" => "Roxen Challenger Webserver",
453
+ "rpasswdd" => "pwdutils package kukuk@suse.de",
454
+ "rpcbind" => "kukuk's port of TI-RPC for Linux kukuk@suse.de",
455
+ "rplay" => "Set of dependencies designed to mitigate upgrade problems",
456
+ "rproxy" => "Cache which uses differences to speed up retrievals",
457
+ "rrlogind" => "Login daemon for the Road Runner Cable Modem Service",
458
+ "rspfd" => "Radio Shortest Path Daemon",
459
+ "rstatd" => "Displays uptime information for remote machines",
460
+ "rusersd" => "Returns information about users currently logged in to the system",
461
+ "rwhod" => "System status server",
462
+ "samba" => "LanManager-like file and printer server for Unix",
463
+ "saslauthd" => "Daemon process that handles plaintext authentication requests on behalf of the SASL library",
464
+ "sauce" => "SMTP defence software against spam",
465
+ "scandetd" => "Portscan detector for Linux",
466
+ "scanlogd" => "portscan detecting tool",
467
+ "scobrand" => "Caldera Systems Inc. dba The SCO Group linuxtech@sco.com",
468
+ "scsitools-pre.sh" => "Collection of tools for SCSI hardware management ",
469
+ "scsitools.sh" => "Collection of tools for SCSI hardware management",
470
+ "securetransport" => "Tumbleweed Communications Corp. mattl@tumbleweed.com",
471
+ "secvpn" => "Secure Virtual Private Network",
472
+ "sendmail" => "Powerful, efficient, and scalable Mail Transport Agent",
473
+ "sendpage" => "Easy-to-use Unix tool for sending pages",
474
+ "sendsigs" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
475
+ "sensord" => "Hardware sensor information logging daemon",
476
+ "ser2net" => "Allows network connections to serial ports",
477
+ "serpento" => "DICT server with full Unicode support",
478
+ "set6x86" => "Cyrix/IBM 5x86/6x86 CPU configuration tool",
479
+ "setmixer" => "Commandline mixer",
480
+ "setserial" => "Controls configuration of serial ports",
481
+ "sfs-client" => "Self-Certifying File System client",
482
+ "sfs-server" => "Self-Certifying File System server",
483
+ "shaper" => "Traffic shaper init script (cbq.init) for Linux",
484
+ "shaperd" => "User-mode traffic shaper for tcp-ip networks",
485
+ "shorewall" => "Shoreline Firewall",
486
+ "single" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
487
+ "skeleton" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
488
+ "skinsight" => "Objective Pathology Systems kemp@extelligence.net",
489
+ "skkserv" => "Dictionary server for SKK",
490
+ "slapd" => "OpenLDAP server",
491
+ "slashem" => "Variant of Nethack",
492
+ "sleepd" => "Puts an inactive or low battery laptop to sleep",
493
+ "slpd" => "OpenSLP Server",
494
+ "smad" => "SyAM Software, Inc. michael.daniele@syamsoftware.com",
495
+ "smagent" => "Engenio Information Technologies, Inc danny.pevoto@engenio.com",
496
+ "smail" => "Electronic mail transport system",
497
+ "smartd" => "smartmontools sbrabec@suse.cz",
498
+ "smartsuite" => "SMART utility suite for Linux",
499
+ "smb" => "SMB services",
500
+ "smcd" => "SyAM Software, Inc. michael.daniele@syamsoftware.com",
501
+ "smmonitor" => "Engenio Information Technologies, Inc danny.pevoto@engenio.com",
502
+ "smokeping" => "Latency logging and graphing system",
503
+ "smtpd" => "Mail proxy for firewalls with anti-spam and anti-relay features",
504
+ "smtpfeed" => "SMTP Fast Exploding External Deliver for Sendmail",
505
+ "smwd" => "SyAM Software, Inc. michael.daniele@syamsoftware.com",
506
+ "sn" => "Small NNTP server for leaf sites",
507
+ "snmpd" => "SNMP (Simple Network Management Protocol) agents",
508
+ "snmptrapfmt" => "A configurable snmp trap handler daemon for snmpd",
509
+ "snort" => "Flexible Network Intrusion Detection System",
510
+ "sofistikpsd" => "SOFiSTiK AG harald.nikolisin@sofistik.de",
511
+ "spamassassin" => "Perl-based spam filter using text analysis",
512
+ "spong-client" => "Systems and network monitoring system -- client programs",
513
+ "spong-server" => "Systems and network monitoring system -- server programs",
514
+ "squid" => "Internet object cache (WWW proxy cache)",
515
+ "squidtaild" => "Squid log monitoring program",
516
+ "ssh" => "Secure shell client and server (metapackage)",
517
+ "ssh2" => "Secure rlogin/rsh/rcp replacement",
518
+ "sshd" => "OpenSSH SSH daemon",
519
+ "ssh-krb5" => "Secure rlogin/rsh/rcp replacement (OpenSSH with Kerberos)",
520
+ "ssh-nonfree" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
521
+ "sslwrap" => "Simple TCP service encryption using TLS/SSL",
522
+ "ssvl" => "SCO System V Libraries for Linux linuxtech@sco.com",
523
+ "strs" => "StreamServe Ltd. kaj.nylen@streamserve.com",
524
+ "subdomain" => "SubDomain by Immunix dominic@immunix.com",
525
+ "sudo" => "Provide limited super user privileges to specific users",
526
+ "sudoscript" => "EGBOK Consultants hbo@egbok.com ",
527
+ "susefirewall2_final" => "SUSE LINUX Products GmbH ludwig.nussel@suse.de",
528
+ "susefirewall2_init" => "SUSE LINUX Products GmbH ludwig.nussel@suse.de",
529
+ "susefirewall2_setup" => "SUSE LINUX Products GmbH ludwig.nussel@suse.de",
530
+ "svgatextmode" => "Enable higher resolution text modes",
531
+ "swapd" => "Daemon for dynamic swap file creation",
532
+ "sympa" => "Modern mailing list manager",
533
+ "sysklogd" => "System Logging Daemon",
534
+ "syslog" => "System logging",
535
+ "syslog-ng" => "Next generation logging daemon",
536
+ "sysstat" => "Sar, iostat and mpstat - system performance tools for Linux",
537
+ "systemimager" => "Utilities for installing GNU/Linux software images to machines over the network",
538
+ "systune" => "Kernel tuning through the /proc file system",
539
+ "tac-plus" => "TACACS+ authentication daemon",
540
+ "tama" => "Net Tamagotchi server",
541
+ "tcpquota" => "Dialout/masquerading monitoring package",
542
+ "tcpspy" => "Incoming and Outgoing TCP/IP connections logger",
543
+ "teamware" => "Teamware Mobile, Teamware Group ken.barnes@teamware.co.uk",
544
+ "teapop" => "Powerful and flexible RFC-compliant POP3 server",
545
+ "teapop-mysql" => "Powerful and flexible RFC-compliant POP3 server",
546
+ "teapop-pgsql" => "Powerful and flexible RFC-compliant POP3 serve",
547
+ "thttpd" => "Tiny/turbo/throttling HTTP server",
548
+ "timeoutd" => "Flexible user timeout daemon with X11 support",
549
+ "tinc" => "Virtual Private Network daemon",
550
+ "tinyproxy" => "A lightweight, non-caching, optionally anonymizing http proxy",
551
+ "tleds" => "Blinks keyboard LEDs for TX and RX network packets",
552
+ "tomcat" => "Java Servlet engine with JSP support",
553
+ "tomcat4" => "Java Servlet engine with JSP support",
554
+ "tpconfig" => "Configure touchpad devices",
555
+ "tpssmagent" => "Engenio Information Technologies, Inc danny.pevoto@engenio.com",
556
+ "tpssmmonitor" => "Engenio Information Technologies, Inc danny.pevoto@engenio.com",
557
+ "trafstats" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
558
+ "transproxy" => "Transparent Proxy Daemon for HTTP requests",
559
+ "trustees" => "Advanced permission management system for Linux",
560
+ "ud" => "Uptime Daemon",
561
+ "udhcpd" => "Very small DHCP server",
562
+ "ugidd" => "NFS UID mapping daemon",
563
+ "ulogd" => "Netfilter Userspace Logging Daemon",
564
+ "umountfs" => "Unmount file systems",
565
+ "umountnfs.sh" => "Unmount network file systems",
566
+ "umsdos" => "Utilities for controlling a umsdos filesystem",
567
+ "upsd" => "UPS Monitor Program via serial interface",
568
+ "ups-monitor" => "UPS Monitor",
569
+ "uptimed" => "Utility to track your highest uptimes",
570
+ "uptimed.sh" => "Utility to track your highest uptimes",
571
+ "urandom" => "Provides an interface to the kernel's random number generator.",
572
+ "usbmgr" => "User-mode daemon which loads/unloads USB kernel modules",
573
+ "usermin" => "Web interface for user tasks",
574
+ "userv" => "'User services' - program call across trust boundaries",
575
+ "vchkpw" => "Authentication for a pop server",
576
+ "vdr" => "Video Disk Recorder for DVB cards",
577
+ "vje-delta" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
578
+ "voicerd" => "VoiceRD cthorner@novacoast.com",
579
+ "vold" => "Volume daemon for CDROM devices.",
580
+ "vpnd" => "Virtual Private Network Daemon",
581
+ "vsftpd" => "Very Secure FTP Daemon",
582
+ "vtun" => "Virtual Tunnel over TCP/IP Networks",
583
+ "vvrts" => "Info-Electronics Systems Inc. bernard@info-electronics.com",
584
+ "vvrtspg" => "Info-Electronics Systems Inc. bernard@info-electronics.com",
585
+ "wanpipe" => "Configuration utilities for Sangoma S508/S514 WAN cards",
586
+ "wasp" => "Beginfinite, Inc mjb@gwava.com",
587
+ "watchdog" => "Software watchdog",
588
+ "wavelink" => "Avalanche Mobility Center Applications mvongunten@wavelink.com",
589
+ "wdm" => "WINGs Display Manager",
590
+ "webfs" => "Lightweight http server for static content",
591
+ "webmin" => "Web-based administration toolkit",
592
+ "welcome2l" => "Linux ANSI boot logo",
593
+ "whereami" => "Automatically reconfigure your (laptop) system for a new location",
594
+ "winbind" => "Service to resolve user and group information from Windows NT servers",
595
+ "wn" => "Secure and efficient http server with advanced features",
596
+ "wondershaper" => "Easy to use traffic shaping script",
597
+ "wtrex" => "Lymeware Corporation cfox@lymeware.com",
598
+ "wu-ftpd" => "Powerful and widely used FTP server",
599
+ "wwsympa" => "Sympa's web interface",
600
+ "wwwoffle" => "World Wide Web OFFline Explorer",
601
+ "X" => "open source implementation of the X Window System",
602
+ "xdasd" => "OpenXDAS jcalcote@novell.com",
603
+ "xdm" => "X display manager",
604
+ "xess" => "Applied Information Systems, Inc. jim@ais.com",
605
+ "xfs" => "X display manager",
606
+ "xfstt" => "X Font Server for TrueType fonts",
607
+ "xfs-xtt" => "X-TrueType font server",
608
+ "xinetd" => "Replacement for inetd with many enhancements",
609
+ "xnptd" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
610
+ "xpilots" => "Dummy upgrade package for xpilot",
611
+ "xringd" => "Extended Ring Daemon - Monitor phone rings and take action",
612
+ "xshipwars-server" => "Dynamic space-oriented gaming system",
613
+ "xstrade" => "Applied Information Systems, Inc. jim@ais.com",
614
+ "xtell" => "Simple messaging client and server, sort of networked write",
615
+ "xtend" => "10 status monitoring daemon",
616
+ "xttpd" => "XTide web server",
617
+ "yardradius" => "YARD Radius Auth/Acct Server",
618
+ "yiff-server" => "Y Sound Server",
619
+ "youbin" => "Conventional mail arrival notification server.",
620
+ "ypbind" => "Network Information Service ",
621
+ "yppasswdd" => "Reserved for LSB-Compliant Distribution lsb@lanana.org",
622
+ "ypserv" => "NIS server",
623
+ "ypxfrd" => "Transfer NIS database from remote server",
624
+ "zebra" => "Routing manager for use with associated Quagga components",
625
+ "zephyrd" => "The original Instant Message system ",
626
+ "zhm" => "Zephyr HostManager ",
627
+ "zmailer" => "Mailer for Extreme Performance Demands",
628
+ "zmailer-ssl" => "Mailer for Extreme Performance Demands over SSL",
629
+ "zoneserver" => "Handle zone transfers for MaraDNS ",
630
+ "zope" => "Open source web application server"
631
+ }
632
+ end