Add applications-list.csv; git push

pull/239/head
Dmitry Razumov 4 months ago
parent 4a5b3a3ab1
commit 6b687b3ef7
Signed by: asmeron
GPG Key ID: 50BC1DB583B79706

@ -0,0 +1,4 @@
GROUP;APPLICATION;DESCRIPTION
Plank dock-panel;plank.desktop;Universal macOS-style dock-panel
Conky monitor;conky.desktop;System monitor
Hostalive;check-hostalive.desktop;Check the internet is alive
1 GROUP APPLICATION DESCRIPTION
2 Plank dock-panel plank.desktop Universal macOS-style dock-panel
3 Conky monitor conky.desktop System monitor
4 Hostalive check-hostalive.desktop Check the internet is alive

@ -1,17 +1,17 @@
GROUP_NAME;SUBGROUP_NAME;PACKAGES;DESCRIPTION
Containerization;;ubm-docker;Docker and webmanager and utils
Containerization;;ubm-podman;Podman and webmanager and utils
Drivers;Printer;ubm-drv-brother;Brother printer drivers
Drivers;Printer;ubm-drv-printers,ubm-drv-brother;Brother printer drivers
Drivers;Printer;ubm-drv-canon-capt;Canon CAPT Printer Driver
Drivers;Printer;ubm-drv-canon-ufrii;Canon UFR II LIPSLX CARPS2 printer driver
Drivers;Printer;ubm-drv-epson;Epson printer drivers
Drivers;Printer;ubm-drv-kyocera;Kyocera printer drivers
Drivers;Printer;ubm-drv-lexmark;Lexmark drivers
Drivers;Printer;ubm-drv-pantum;Pantum printer drivers
Drivers;Printer;ubm-drv-printer;hplip, gutenprint, foomatic printers drivers
Drivers;Printer;ubm-drv-printer;Universal printer drivers (HP, hplip, gutenprint, foomatic)
Drivers;Printer;ubm-drv-ricoh;Ricoh drivers
Drivers;Printer;ubm-drv-samsung;Samsung drivers
Drivers;Printer;ubm-drv-xerox;Xerox drivers
Drivers;Printer;ubm-drv-printers,ubm-drv-samsung;Samsung drivers
Drivers;Printer;ubm-drv-printers,ubm-drv-xerox;Xerox drivers
Education;;ubm-education;Education soft collection
Multimedia;Collection;ubm-080-multimedia;Multimedia soft collection
Multimedia;Blender;ubm-blender;Blender and utilities

1 GROUP_NAME SUBGROUP_NAME PACKAGES DESCRIPTION
2 Containerization ubm-docker Docker and webmanager and utils
3 Containerization ubm-podman Podman and webmanager and utils
4 Drivers Printer ubm-drv-brother ubm-drv-printers,ubm-drv-brother Brother printer drivers
5 Drivers Printer ubm-drv-canon-capt Canon CAPT Printer Driver
6 Drivers Printer ubm-drv-canon-ufrii Canon UFR II LIPSLX CARPS2 printer driver
7 Drivers Printer ubm-drv-epson Epson printer drivers
8 Drivers Printer ubm-drv-kyocera Kyocera printer drivers
9 Drivers Printer ubm-drv-lexmark Lexmark drivers
10 Drivers Printer ubm-drv-pantum Pantum printer drivers
11 Drivers Printer ubm-drv-printer hplip, gutenprint, foomatic printers drivers Universal printer drivers (HP, hplip, gutenprint, foomatic)
12 Drivers Printer ubm-drv-ricoh Ricoh drivers
13 Drivers Printer ubm-drv-samsung ubm-drv-printers,ubm-drv-samsung Samsung drivers
14 Drivers Printer ubm-drv-xerox ubm-drv-printers,ubm-drv-xerox Xerox drivers
15 Education ubm-education Education soft collection
16 Multimedia Collection ubm-080-multimedia Multimedia soft collection
17 Multimedia Blender ubm-blender Blender and utilities

@ -1,4 +1,4 @@
NAME;NAME_SERVICES;DESCRIPTION
GROUP;UNIT;DESCRIPTION
UBManager WebPanel;cockpit.socket;Operating system monitoring and management manager service
Network Manager;NetworkManager;Is a program for providing detection and configuration for systems to automatically connect to networks
SSH;sshd;The daemon that listens for connections from clients on port 22

1 NAME GROUP NAME_SERVICES UNIT DESCRIPTION
2 UBManager WebPanel cockpit.socket Operating system monitoring and management manager service
3 Network Manager NetworkManager Is a program for providing detection and configuration for systems to automatically connect to networks
4 SSH sshd The daemon that listens for connections from clients on port 22

@ -1,9 +1,9 @@
VFS_NAME;VFS_DESCRIPTION;VFS_CONFIG;VFS_MIN;VSF_PATITY
RAID0;raid0 description;raid0;2;
RAID1;raid1 description;raid1;2;2
RAID4;raid4 description;raid4;2;
RAID5;raid5 description;raid5;3;
RAID6;raid5 description;raid6;2;
RAID10;raid10 description;raid10;4;2
LVM;lvm description;lvm;2;
LVM DYNAMIC;lvm_dynamic description;lvm_dynamic;2;
RAID0;RAID 0 (Striping). Combines two or more drives to increase read/write speed. Failure of one disk leads to a complete loss of all data.;raid0;2;
RAID1;RAID 1 (Mirroring). Data is written identically to two or more drives.;raid1;2;2
RAID4;RAID 4 (Striping with dedicated parity). It uses block striping of data across multiple disks and a dedicated parity disk to ensure fault tolerance.;raid4;2;
RAID5;RAID 5 (Striping with distributed parity). Data striping with a checksum distributed over all disks (parity). It allows you to survive a single disk failure without data loss, but requires at least 3 disks and suffers from slower writes.;raid5;3;
RAID6;RAID 6 (Striping with double distributed parity). It provides high fault tolerance, allowing you to survive the simultaneous failure of two disks by using two independent parity schemes (P and Q) distributed across all disks.;raid6;2;
RAID10;RAID 1+0 (Striping from of mirrored drives). Combines mirroring (RAID 1) for reliability and interleaving (RAID 0) for performance. It requires at least 4 disks (an even number), creating mirrored pairs (RAID 1), which are then combined into a single array using striping (RAID 0).;raid10;4;2
LVM;LVM (Logical Volume Manager). Allows you to flexibly combine multiple disks or partitions into shared pools (volume groups, VG) and create logical volumes (LV) from them.;lvm;2;
LVM DYNAMIC;LVM DYNAMIC (Logical Volume Manager DYNAMIC). Allows you to flexibly dynamically combine multiple disks or partitions into shared pools (volume groups, VG) and dynamically create logical volumes (LV) from them.;lvm_dynamic;2;
1 VFS_NAME VFS_DESCRIPTION VFS_CONFIG VFS_MIN VSF_PATITY
2 RAID0 raid0 description RAID 0 (Striping). Combines two or more drives to increase read/write speed. Failure of one disk leads to a complete loss of all data. raid0 2
3 RAID1 raid1 description RAID 1 (Mirroring). Data is written identically to two or more drives. raid1 2 2
4 RAID4 raid4 description RAID 4 (Striping with dedicated parity). It uses block striping of data across multiple disks and a dedicated parity disk to ensure fault tolerance. raid4 2
5 RAID5 raid5 description RAID 5 (Striping with distributed parity). Data striping with a checksum distributed over all disks (parity). It allows you to survive a single disk failure without data loss, but requires at least 3 disks and suffers from slower writes. raid5 3
6 RAID6 raid5 description RAID 6 (Striping with double distributed parity). It provides high fault tolerance, allowing you to survive the simultaneous failure of two disks by using two independent parity schemes (P and Q) distributed across all disks. raid6 2
7 RAID10 raid10 description RAID 1+0 (Striping from of mirrored drives). Combines mirroring (RAID 1) for reliability and interleaving (RAID 0) for performance. It requires at least 4 disks (an even number), creating mirrored pairs (RAID 1), which are then combined into a single array using striping (RAID 0). raid10 4 2
8 LVM lvm description LVM (Logical Volume Manager). Allows you to flexibly combine multiple disks or partitions into shared pools (volume groups, VG) and create logical volumes (LV) from them. lvm 2
9 LVM DYNAMIC lvm_dynamic description LVM DYNAMIC (Logical Volume Manager DYNAMIC). Allows you to flexibly dynamically combine multiple disks or partitions into shared pools (volume groups, VG) and dynamically create logical volumes (LV) from them. lvm_dynamic 2
Loading…
Cancel
Save