-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1367 lines (1196 loc) · 45.1 KB
/
index.html
File metadata and controls
executable file
·1367 lines (1196 loc) · 45.1 KB
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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevOpsTerminal - Zaawansowane narzędzia dla administratorów Linux</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
:root {
--primary: #0c86e6;
--primary-dark: #0a6ab8;
--secondary: #2c3e50;
--light: #ecf0f1;
--dark: #1a1a1a;
--success: #27ae60;
--warning: #f39c12;
--danger: #e74c3c;
--gray: #95a5a6;
--terminal-bg: #282c34;
--terminal-text: #abb2bf;
--code-highlight: #3e4451;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f8f9fa;
color: var(--secondary);
line-height: 1.6;
}
header {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: white;
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.hero {
padding: 4rem 0;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('https://images.unsplash.com/photo-1629654297299-c8506221ca97?q=80&w=1974&auto=format&fit=crop') no-repeat center center/cover;
text-align: center;
color: white;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto 2rem;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
color: white;
text-decoration: none;
font-size: 1.5rem;
font-weight: bold;
}
.logo i {
margin-right: 0.5rem;
font-size: 1.8rem;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 1.5rem;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
}
nav ul li a:hover {
color: var(--light);
}
.btn {
display: inline-block;
background-color: var(--primary);
color: white;
padding: 0.8rem 1.5rem;
border-radius: 4px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}
.btn:hover {
background-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-outline {
background-color: transparent;
border: 2px solid var(--primary);
color: var(--primary);
}
.btn-outline:hover {
background-color: var(--primary);
color: white;
}
.btn-success {
background-color: var(--success);
}
.btn-success:hover {
background-color: #219653;
}
.features {
padding: 5rem 0;
background-color: white;
}
.section-title {
text-align: center;
margin-bottom: 3rem;
}
.section-title h2 {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 1rem;
}
.section-title p {
max-width: 600px;
margin: 0 auto;
color: var(--gray);
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
padding: 2rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1.5rem;
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--secondary);
}
.pricing {
padding: 5rem 0;
background-color: #f8f9fa;
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.pricing-card {
background-color: white;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
overflow: hidden;
transition: all 0.3s ease;
}
.pricing-card:hover {
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.pricing-header {
padding: 2rem;
background-color: var(--primary);
color: white;
text-align: center;
}
.pricing-header h3 {
font-size: 1.8rem;
margin-bottom: 0.5rem;
}
.pricing-header .price {
font-size: 3rem;
font-weight: bold;
}
.pricing-header .period {
font-size: 1rem;
opacity: 0.8;
}
.pricing-body {
padding: 2rem;
}
.pricing-features {
list-style: none;
margin-bottom: 2rem;
}
.pricing-features li {
padding: 0.5rem 0;
border-bottom: 1px solid #f1f1f1;
}
.pricing-features li:first-child {
border-top: 1px solid #f1f1f1;
}
.pricing-features li i {
color: var(--success);
margin-right: 0.5rem;
}
.pricing-footer {
padding: 0 2rem 2rem;
text-align: center;
}
.terminal {
background-color: var(--terminal-bg);
color: var(--terminal-text);
padding: 1.5rem;
border-radius: 8px;
margin: 2rem 0;
font-family: 'Courier New', Courier, monospace;
overflow-x: auto;
position: relative;
}
.terminal-header {
display: flex;
align-items: center;
margin-bottom: 1rem;
}
.terminal-dot {
height: 12px;
width: 12px;
border-radius: 50%;
margin-right: 6px;
}
.terminal-red {
background-color: #ff5f56;
}
.terminal-yellow {
background-color: #ffbd2e;
}
.terminal-green {
background-color: #27c93f;
}
.terminal-path {
margin-left: 1rem;
color: #61afef;
}
.terminal pre {
margin: 0;
white-space: pre-wrap;
word-wrap: break-word;
}
.terminal code {
color: var(--terminal-text);
}
.terminal .prompt {
color: #98c379;
}
.terminal .command {
color: #e5c07b;
}
.terminal .output {
color: #dcdfe4;
}
.demo {
padding: 5rem 0;
background-color: white;
}
.video-container {
position: relative;
overflow: hidden;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-container img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.video-play {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 4rem;
cursor: pointer;
transition: all 0.3s ease;
}
.video-play:hover {
transform: translate(-50%, -50%) scale(1.1);
}
.testimonials {
padding: 5rem 0;
background-color: #f8f9fa;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.testimonial-card {
padding: 2rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.testimonial-content {
font-style: italic;
margin-bottom: 1.5rem;
}
.testimonial-author {
display: flex;
align-items: center;
}
.testimonial-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 1rem;
object-fit: cover;
}
.testimonial-info h4 {
font-size: 1.1rem;
margin-bottom: 0.25rem;
}
.testimonial-info p {
font-size: 0.9rem;
color: var(--gray);
}
.cta {
padding: 5rem 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: white;
text-align: center;
}
.cta h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.cta p {
max-width: 600px;
margin: 0 auto 2rem;
font-size: 1.1rem;
}
.support {
padding: 5rem 0;
background-color: white;
}
.support-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.support-option {
padding: 1.5rem;
text-align: center;
background-color: #f8f9fa;
border-radius: 8px;
transition: all 0.3s ease;
}
.support-option:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.support-icon {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1rem;
}
.support-option h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
}
.support-option p {
margin-bottom: 1rem;
color: var(--gray);
}
footer {
background-color: var(--secondary);
color: white;
padding: 3rem 0 1rem;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-column h3 {
font-size: 1.3rem;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.5rem;
}
.footer-column h3::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background-color: var(--primary);
}
.footer-column ul {
list-style: none;
}
.footer-column ul li {
margin-bottom: 0.5rem;
}
.footer-column ul li a {
color: #bdc3c7;
text-decoration: none;
transition: all 0.3s ease;
}
.footer-column ul li a:hover {
color: white;
padding-left: 5px;
}
.social-links {
display: flex;
margin-top: 1rem;
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
color: white;
margin-right: 0.5rem;
transition: all 0.3s ease;
}
.social-links a:hover {
background-color: var(--primary);
transform: translateY(-3px);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.payment-methods {
display: flex;
justify-content: center;
margin-bottom: 1rem;
}
.payment-methods i {
font-size: 2rem;
margin: 0 0.5rem;
color: #bdc3c7;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.2rem;
}
.section-title h2 {
font-size: 2rem;
}
.feature-grid, .pricing-grid, .testimonial-grid, .support-options {
grid-template-columns: 1fr;
}
nav ul {
display: none; /* In a real project, add a mobile menu */
}
}
/* Modal Styles */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
z-index: 1000;
justify-content: center;
align-items: center;
}
.modal-content {
background-color: white;
padding: 2rem;
border-radius: 8px;
max-width: 500px;
width: 100%;
position: relative;
}
.close-modal {
position: absolute;
top: 10px;
right: 15px;
font-size: 1.5rem;
cursor: pointer;
}
.payment-form label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
}
.payment-form input, .payment-form select {
width: 100%;
padding: 0.8rem;
margin-bottom: 1.5rem;
border: 1px solid #ddd;
border-radius: 4px;
}
.payment-options {
display: flex;
justify-content: space-between;
margin-bottom: 1.5rem;
}
.payment-option {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
padding: 0.5rem;
border-radius: 4px;
transition: all 0.3s ease;
}
.payment-option:hover {
background-color: #f8f9fa;
}
.payment-option i {
font-size: 2rem;
margin-bottom: 0.5rem;
}
.payment-option.active {
border: 2px solid var(--primary);
background-color: rgba(12, 134, 230, 0.1);
}
.video-call-container {
background-color: #f8f9fa;
padding: 1.5rem;
border-radius: 8px;
margin-top: 2rem;
display: none;
}
.video-call-container h3 {
margin-bottom: 1rem;
}
.video-call-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.video-participant {
background-color: #282c34;
border-radius: 8px;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.video-controls {
display: flex;
justify-content: center;
margin-top: 1rem;
}
.video-control-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: var(--secondary);
color: white;
margin: 0 0.5rem;
cursor: pointer;
transition: all 0.3s ease;
}
.video-control-btn:hover {
background-color: var(--primary);
}
.video-control-btn.end-call {
background-color: var(--danger);
}
</style>
</head>
<body>
<header>
<div class="container nav-container">
<a href="#" class="logo">
<i class="fas fa-terminal"></i> DevOpsTerminal
</a>
<nav>
<ul>
<li><a href="#features">Funkcje</a></li>
<li><a href="#pricing">Cennik</a></li>
<li><a href="#demo">Demo</a></li>
<li><a href="#support">Wsparcie</a></li>
<li><a href="#" class="btn btn-outline">Logowanie</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h1>Zaawansowana analiza i monitoring systemów Linux</h1>
<p>Hello System Scanner to profesjonalne narzędzie DevOps, które pozwala na kompleksową diagnostykę, śledzenie
zmian i analizę trendów w systemach Linux. Idealne dla administratorów, zespołów DevOps i specjalistów
bezpieczeństwa.</p>
<a href="#pricing" class="btn btn-success">Wypróbuj teraz</a>
<a href="#demo" class="btn btn-outline">Zobacz demo</a>
</div>
</section>
<section id="features" class="features">
<div class="container">
<div class="section-title">
<h2>Potężne funkcje</h2>
<p>Odkryj, jak Hello System Scanner może pomóc w zarządzaniu i monitorowaniu Twoich systemów Linux.</p>
</div>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-search"></i>
</div>
<h3>Kompleksowe Skanowanie</h3>
<p>Analiza zainstalowanego oprogramowania, usług, otwartych portów i konfiguracji systemu w jednym
miejscu.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-history"></i>
</div>
<h3>Śledzenie Zmian</h3>
<p>Wykrywanie i śledzenie zmian wprowadzonych w systemie od określonej daty, co umożliwia wykrywanie
nieautoryzowanych modyfikacji.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-chart-line"></i>
</div>
<h3>Analiza Trendu</h3>
<p>Wizualizacja zmian w systemie miesiąc po miesiącu z ostatnich 12 miesięcy, umożliwiająca
identyfikację wzorców i trendów.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-server"></i>
</div>
<h3>Multi-dystrybucja</h3>
<p>Działa na wszystkich głównych dystrybucjach Linux: Ubuntu, Debian, Fedora, CentOS, RHEL, Arch i wielu
innych.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-file-alt"></i>
</div>
<h3>Szczegółowe Raporty</h3>
<p>Generowanie kompleksowych raportów, które można zapisać do pliku i wykorzystać do audytów
bezpieczeństwa lub dokumentacji.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-lock"></i>
</div>
<h3>Bezpieczeństwo</h3>
<p>Identyfikacja potencjalnych luk w zabezpieczeniach poprzez analizę zmian w kluczowych plikach
systemowych i kontach użytkowników.</p>
</div>
</div>
</div>
</section>
<section id="demo" class="demo">
<div class="container">
<div class="section-title">
<h2>Zobacz skrypt w akcji</h2>
<p>Obejrzyj krótką demonstrację możliwości naszego skryptu Hello System Scanner</p>
</div>
<div class="terminal">
<div class="terminal-header">
<div class="terminal-dot terminal-red"></div>
<div class="terminal-dot terminal-yellow"></div>
<div class="terminal-dot terminal-green"></div>
<div class="terminal-path">~/DevOpsTerminal</div>
</div>
<pre><code><span class="prompt">user@server:~$</span> <span class="command">wget -O install.sh https://raw.githubusercontent.com/DevOpsTerminal/hello/main/install.sh && bash install.sh</span>
<pre><code><span class="prompt">user@server:~$</span> <span class="command"># OR: </span>
<pre><code><span class="prompt">user@server:~$</span> <span class="command">curl -sSL https://raw.githubusercontent.com/DevOpsTerminal/hello/main/install.sh | bash</span>
Próba pobrania sumy kontrolnej z: https://raw.githubusercontent.com/DevOpsTerminal/hello/main/checksums/checksums.sha256
Pobrana suma kontrolna: da4b0764b7ed89fb90d6947a435e339fab378b484c1b94c132a347c04cd729e6
Próba pobrania skryptu z: https://raw.githubusercontent.com/DevOpsTerminal/hello/main/hello.sh
Weryfikacja sumy kontrolnej...
Suma kontrolna zdalna: da4b0764b7ed89fb90d6947a435e339fab378b484c1b94c132a347c04cd729e6
Suma kontrolna lokalna: da4b0764b7ed89fb90d6947a435e339fab378b484c1b94c132a347c04cd729e6
Suma kontrolna zweryfikowana poprawnie
Uruchamianie skryptu...
===========================================================
hello .sh - Linux Software Finder - narzędzie do analizy systemu
===========================================================
Wersja 1.0
Ten skrypt identyfikuje zainstalowane oprogramowanie i usługi w systemie Linux oraz umożliwia śledzenie zmian od określonej daty.
SPOSÓB UŻYCIA:
./hello.sh [OPCJE]
PODSTAWOWE OPCJE:
--help, -h Wyświetla tę pomoc
--version Wyświetla informacje o wersji programu
--all Wyświetla wszystkie dostępne informacje
--save-all Zapisuje wszystkie wyniki do pliku
INFORMACJE O SYSTEMIE:
--system-info Wyświetla podstawowe informacje o systemie
--packages Wyświetla listę zainstalowanych pakietów
--services Wyświetla listę uruchomionych usług
--ports Wyświetla listę otwartych portów
--startup Wyświetla listę programów uruchamianych przy starcie
--recent-packages Wyświetla ostatnio zainstalowane pakiety
--repositories Wyświetla skonfigurowane repozytoria
ŚLEDZENIE ZMIAN:
--track-changes=DATA Ustawia datę śledzenia zmian
Przykłady:
--track-changes="1 month ago"
--track-changes="2023-01-15"
--config-changes Wyświetla zmiany w plikach konfiguracyjnych
--user-changes Wyświetla zmiany w użytkownikach i grupach
--binary-changes Wyświetla zmiany w plikach binarnych
--scheduled-tasks Wyświetla zmiany w zaplanowanych zadaniach
--network-changes Wyświetla zmiany w konfiguracji sieci
--system-timestamps Wyświetla zmiany w kluczowych plikach systemowych
RAPORTY MIESIĘCZNE:
--monthly-report Generuje szczegółowy raport miesięczny
--monthly-stats Generuje statystyki miesięczne
--monthly-visualize Generuje wizualizację miesięcznych zmian
PRZYKŁADY UŻYCIA:
# Wyświetlenie podstawowych informacji o systemie:
sudo ./hello.sh --system-info
# Wyświetlenie wszystkich informacji z śledzeniem zmian od tygodnia:
sudo ./hello.sh --track-changes="1 week ago" --all
# Wygenerowanie statystyk miesięcznych i zapisanie ich do pliku:
sudo ./hello.sh --monthly-stats --save-all
# Sprawdzenie zmian w plikach konfiguracyjnych od konkretnej daty:
sudo ./hello.sh --track-changes="2023-06-01" --config-changes
UWAGI:
- Niektóre funkcje wymagają uprawnień roota (sudo).
- Aby wyświetlić zmiany, należy użyć opcji --track-changes wraz z odpowiednią datą.
- Można łączyć wiele opcji w jednym poleceniu.
- Wyniki można zapisać do pliku za pomocą opcji --save-all.
===========================================================
Instalacja zakończona sukcesem!
</span>
</code></pre>
</div>
<div class="terminal">
<div class="terminal-header">
<div class="terminal-dot terminal-red"></div>
<div class="terminal-dot terminal-yellow"></div>
<div class="terminal-dot terminal-green"></div>
<div class="terminal-path">~/DevOpsTerminal</div>
</div>
<pre><code><span class="prompt">user@server:~$</span> <span class="command">sudo ./hello.sh</span>
<span class="output">===== hello .sh - Linux Software Finder =====
Ten skrypt identyfikuje zainstalowane oprogramowanie i usługi
oraz śledzi zmiany w systemie od określonej daty
Wybierz opcję:
1) Wyświetl wszystkie informacje
2) Informacje o systemie
3) Zainstalowane pakiety
4) Uruchomione usługi
5) Otwarte porty
6) Programy startowe
7) Ostatnio zainstalowane pakiety
8) Skonfigurowane repozytoria
9) Ustaw datę śledzenia zmian
10) Zmiany w plikach konfiguracyjnych
11) Zmiany w użytkownikach/grupach
12) Zmiany w plikach binarnych
13) Zmiany w zaplanowanych zadaniach
14) Zmiany w konfiguracji sieci
15) Zmiany w kluczowych plikach systemowych
16) Raport zmian miesięcznych (ostatnie 12 miesięcy)
17) Statystyki miesięczne (ostatnie 12 miesięcy)
18) Wizualizacja zmian miesięcznych
19) Zapisz wszystko do pliku
20) Wyjście</span>
<span class="prompt">user@server:~$</span> <span class="command">9</span>
<span class="output">========== Ustawienie daty śledzenia zmian ==========
Obecna data śledzenia zmian: 2024-03-03
Formaty daty:
- YYYY-MM-DD (np. 2023-01-15)
- 'X days ago' (np. '30 days ago')
- 'last month', 'last week', 'yesterday'
Podaj nową datę śledzenia zmian (lub naciśnij Enter, aby zachować obecną):</span> <span
class="command">30 days ago</span>
<span class="output">Data śledzenia zmian została ustawiona na: 2024-03-04</span>
<span class="prompt">user@server:~$</span> <span class="command">17</span>
<span class="output">========== Statystyki zmian miesięcznych z ostatnich 12 miesięcy ==========
Generowanie statystyk miesięcznych od Marzec 2023 do Marzec 2024
Miesiąc Pakiety Usługi Konfiguracje Użytkownicy Sieć
----------------------------------------------------------------------
Marzec 2023 45 12 87 2 4
Kwiecień 2023 12 3 24 0 1
Maj 2023 28 5 32 1 2
Czerwiec 2023 8 1 15 0 0
Lipiec 2023 32 8 46 1 3
Sierpień 2023 18 4 27 0 1
Wrzesień 2023 5 0 12 0 0
Październik 2023 22 6 35 2 5
Listopad 2023 10 2 19 0 1
Grudzień 2023 7 1 14 0 0
Styczeń 2024 36 9 52 1 4
Luty 2024 15 3 22 1 2
Marzec 2024 27 7 41 0 3
Legenda:
Pakiety: Liczba zainstalowanych pakietów
Usługi: Liczba zmodyfikowanych usług systemowych
Konfiguracje: Liczba zmodyfikowanych plików konfiguracyjnych
Użytkownicy: Zmiany w kontach użytkowników i grupach
Sieć: Zmiany w konfiguracji sieci</span>
</code></pre>
</div>
<div class="video-container">
<img src="/api/placeholder/1280/720" alt="Demo Hello System Scanner">
<div class="video-play">
<i class="fas fa-play-circle"></i>
</div>
</div>
</div>
</section>
<section id="pricing" class="pricing">
<div class="container">
<div class="section-title">
<h2>Proste i przejrzyste ceny</h2>
<p>Wybierz plan, który najlepiej odpowiada Twoim potrzebom</p>
</div>
<div class="pricing-grid">
<div class="pricing-card">
<div class="pricing-header">