-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1570 lines (700 loc) · 51.4 KB
/
index.html
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="en">
<!-- Head tag -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="xBT4GhYoi5qRD5tr338pgPM5OWHHIDR6mNg1a3euekI" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keyword" content="Linux,运维,Nginx,Zabbix,Centos,Ansible,MySQL,Python,Docker,Kubernetes,K3s,AI,WireGuard,ELK,Haproxy,Git,Nodejs,安全,技术">
<link rel="shortcut icon" href="/img/ironman-draw.png">
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<title>
奇妙的 Linux 世界
</title>
<link rel="canonical" href="https://www.hi-linux.com/">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/beantech.min.css">
<!-- Pygments Highlight CSS -->
<link rel="stylesheet" href="/css/highlight.css">
<link rel="stylesheet" href="/css/widget.css">
<link rel="stylesheet" href="/css/rocket.css">
<link rel="stylesheet" href="/css/signature.css">
<link rel="stylesheet" href="/css/toc.css">
<!-- Custom Fonts -->
<!-- <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> -->
<!-- Hux change font-awesome CDN to qiniu -->
<link href="https://cdn.staticfile.org/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Hux Delete, sad but pending in China
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/
css'>
-->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- ga & ba script hoook -->
<script></script>
<meta name="generator" content="Hexo 4.2.1"><link rel="alternate" href="/atom.xml" title="奇妙的 Linux 世界" type="application/atom+xml">
</head>
<!-- hack iOS CSS :active style -->
<body ontouchstart="">
<!-- Modified by Yu-Hsuan Yen -->
<!-- Post Header -->
<style type="text/css">
header.intro-header{
background-image: url('/img/header_img/home.jpg')
/*config*/
}
</style>
<header class="intro-header" >
<!-- Signature -->
<div id="signature">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading">
<h1>奇妙的 Linux 世界</h1>
<!--<hr class="small">-->
<span class="subheading">种一棵树最好的时间是十年前,其次是现在。</span>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">奇妙的 Linux 世界</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- Known Issue, found by Hux:
<nav>'s height woule be hold on by its content.
so, when navbar scale out, the <nav> will cover tags.
also mask any touch event of tags, unfortunately.
-->
<div id="huxblog_navbar">
<div class="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/archive/">Archives</a>
</li>
<li>
<a href="/tags/">Tags</a>
</li>
<li>
<a href="/about/">About</a>
</li>
</ul>
</div>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<script>
// Drop Bootstarp low-performance Navbar
// Use customize navbar with high-quality material design animation
// in high-perf jank-free CSS3 implementation
var $body = document.body;
var $toggle = document.querySelector('.navbar-toggle');
var $navbar = document.querySelector('#huxblog_navbar');
var $collapse = document.querySelector('.navbar-collapse');
$toggle.addEventListener('click', handleMagic)
function handleMagic(e){
if ($navbar.className.indexOf('in') > 0) {
// CLOSE
$navbar.className = " ";
// wait until animation end.
setTimeout(function(){
// prevent frequently toggle
if($navbar.className.indexOf('in') < 0) {
$collapse.style.height = "0px"
}
},400)
}else{
// OPEN
$collapse.style.height = "auto"
$navbar.className += " in";
}
}
</script>
<!-- Main Content -->
<!-- Main Content -->
<div class="container">
<div class="row">
<!-- USE SIDEBAR -->
<!-- Post Container -->
<div class="
col-lg-8 col-lg-offset-1
col-md-8 col-md-offset-1
col-sm-12
col-xs-12
post-container
">
<!-- Main Content -->
<div class="post-preview">
<a href="/posts/22000.html">
<h2 class="post-title">
『极客视界』一站式科技达人综合资讯指南和神秘宝箱,等你来开启
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
🛠️ 『极客视界』科技达人的综合资讯指南
你是否常常为寻找最新的技术资讯、工具和资源而感到困扰?或者每次开发时都需要开启无数个标签页,才能找到所需的工具和信息?
别担心,让我为你介绍一个好地方『极客视界』,这是每位科技达人的福音、必备的综合资讯指南。
『极客视界』提供了一站式的服务,它包罗万象、功能丰富,直接满足你从资讯获取到开发辅助的全部需求。
从 GitHub 热榜到 PDF 工具箱,......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Mike on
2050-06-18
</p>
<div class="tags">
<a href="/tags/#Linux" title="Linux">Linux</a>
<a href="/tags/#IT" title="IT">IT</a>
<a href="/tags/#程序员" title="程序员">程序员</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/posts/2894.html">
<h2 class="post-title">
『IT 人必备工具箱』一份属于你的数字宝藏,期待你的支持!
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
嘿,小伙伴们!还记得你第一次发现 「IT 人必备工具箱」时的那种惊喜吗?就像打开了一扇通往数字宝藏的门,里面满满的都是你在工作和生活中需要的利器。
从 AI 工具到代码生成,从 UI 设计到网络安全,每一个工具都像专为你量身打造的秘密武器。
今天,我想和你聊聊这个网站背后的故事,以及为什么你的支持对我们来说如此重要。
网站的价值:一个 IT 人的瑞士军刀
『IT 人必备工具箱』是一个专注......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Mike on
2050-03-20
</p>
<div class="tags">
<a href="/tags/#技巧" title="技巧">技巧</a>
<a href="/tags/#Linux" title="Linux">Linux</a>
<a href="/tags/#DNS" title="DNS">DNS</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/posts/53504.html">
<h2 class="post-title">
『IT 人员必备工具箱』:一个专注于 IT 人的优质资源分享导航站
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
『IT 人员必备工具箱』是一个专注于 IT 人优质资源分享的导航站,包含大量好玩又实用的 AI、翻译、编程、设计、Linux、网络、云原生、安全等多款应用。
🏷️ 网站地址:https://666666.dev
我们的目标是帮助更多 IT 人发现有价值的优质资源,让更多人受益。
『IT 人员必备工具箱』也可以推荐你喜欢的软件和网站呢!如果你有什么好玩有趣又实用的酷软趣站,快『推荐』给我......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Mike on
2050-03-18
</p>
<div class="tags">
<a href="/tags/#技巧" title="技巧">技巧</a>
<a href="/tags/#Linux" title="Linux">Linux</a>
<a href="/tags/#DNS" title="DNS">DNS</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/posts/51647.html">
<h2 class="post-title">
掌握这 9 个 IT 新技术:让你轻松驾驭技术浪潮,成为团队核心,轻松逆袭职场!
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
1. 引言
大家好!在这个数字化飞速发展的时代,技术的每一次变革都可能影响您的业务成败。
想象一下,有一位经验丰富的技术专家在您身边,为您指明前行的方向,帮助您避开潜在的陷阱,最终实现业务目标。
我正是您在技术迷宫中最值得信赖的向导。无论您是刚起步的创业者,还是成熟企业的决策者。选择我,就是选择了一条通往成功的捷径。
2. 我的专业背景
我是一名拥有 20+ 年丰富经验的 IT 技术专家。在......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Mike on
2035-01-08
</p>
<div class="tags">
<a href="/tags/#技巧" title="技巧">技巧</a>
<a href="/tags/#Linux" title="Linux">Linux</a>
<a href="/tags/#Docker" title="Docker">Docker</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/posts/28049.html">
<h2 class="post-title">
Github 星标 2.3 K,异地组网新工具 Easytier 助你轻松实现跨地域设备互联
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
EasyTier 是由 Rust 和 Tokio 驱动一个简单、安全、去中心化的内网穿透 远程 组网方案,开源项目。
优点
去中心化:无需依赖中心化服务,节点平等且独立
公网 IP 组网:支持利用共享的公网节点组网, 可以使用 EasyTier 公共 Peers
低占用: 即使最垃圾的机器也可以跑
跨平台支持
NAT 穿透:支持基于 UDP 的 NAT 穿透,即使在复杂的网络环境下也能建立......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Mike on
2025-01-12
</p>
<div class="tags">
<a href="/tags/#Linux" title="Linux">Linux</a>
<a href="/tags/#WireGuard" title="WireGuard">WireGuard</a>
<a href="/tags/#EasyTier" title="EasyTier">EasyTier</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/posts/45935.html">
<h2 class="post-title">
如何同时向两个远程 Git 仓库推送代码
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
在日常开发中,我们有时需要将代码推送到多个远程仓库以确保代码备份和同步。本篇文章将介绍如何配置和操作 Git,同时推送代码到两个远程仓库。
为什么需要多个远程仓库?
多个远程仓库的常见场景包括:
备份:确保代码在不同平台上有备份,例如 GitHub 和 GitLab。
协作:团队成员在不同的远程仓库上工作,需要确保代码同步。
配置多个远程仓库
假设我们已经有一个远程仓库 origin......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Mike on
2024-08-26
</p>
<div class="tags">
<a href="/tags/#技巧" title="技巧">技巧</a>
<a href="/tags/#Linux" title="Linux">Linux</a>
<a href="/tags/#Git" title="Git">Git</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/posts/34227.html">
<h2 class="post-title">
如何实现同一端口代理不同的后端服务
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
在网络通信中,端口是用于区分不同服务的重要资源。通常,每个服务会绑定到一个特定端口上,但有时我们需要通过同一个端口来代理不同的服务。这种技术被称为端口复用。本文将介绍端口复用的场景、用途、协议特性,并分别使用 Nginx 和 HAProxy 进行端口复用配置。
端口复用的场景与用途
端口复用在以下场景中非常有用:
资源限制:在IP地址和端口资源有限的环境中,通过同一端口提供多个服务可以最大......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Mike on
2024-08-26
</p>
<div class="tags">
<a href="/tags/#技巧" title="技巧">技巧</a>
<a href="/tags/#Linux" title="Linux">Linux</a>
<a href="/tags/#Nginx" title="Nginx">Nginx</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/posts/46814.html">
<h2 class="post-title">
一分钟上手 PG Back Web,让你的 PostgreSQL 备份高枕无忧
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
引言
在当今数据驱动的世界中,数据库备份的重要性不言而喻。无论是开发者还是系统管理员,确保数据的安全和可用性都是至关重要的任务。
然而,手动备份不仅繁琐,还容易出错。幸运的是,有了 PG Back Web,这一切变得轻而易举。本文将带领大家深入了解 pgbackweb 的强大功能,并教你如何使用它来简化 PostgreSQL 的备份任务。
什么是 PG Back Web?
PG Back W......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Mike on
2024-08-15
</p>
<div class="tags">
<a href="/tags/#Linux" title="Linux">Linux</a>
<a href="/tags/#PostgreSQL" title="PostgreSQL">PostgreSQL</a>
<a href="/tags/#备份" title="备份">备份</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/posts/53528.html">
<h2 class="post-title">
解锁科技魔法「极客光年」,让你的手机看上去更美,从此与众不同!
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
你是否厌倦了每次解锁手机,看到的都是那些千篇一律的壁纸?你的朋友是不是总能找到令人惊叹的手机背景,而你只能羡慕嫉妒恨?
别担心,我们找到了解决方案「极客光年」!这个网站简直就是手机壁纸界的宝藏窟,绝对能让你的屏幕从此与众不同!
为什么选择「极客光年」?
海量高质量壁纸
想象一下,你打开「极客光年」,就像走进了一个巨大的艺术画廊。从绚丽的风景到可爱的动物,从未来科技到复古怀旧,应有尽有。......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Mike on
2024-08-14
</p>
<div class="tags">
<a href="/tags/#壁纸" title="壁纸">壁纸</a>
<a href="/tags/#摄影" title="摄影">摄影</a>
<a href="/tags/#手机" title="手机">手机</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/posts/37064.html">
<h2 class="post-title">
告别复杂命令行,Hollama 让与 Ollama AI 对话丝般顺滑
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
🌐 引言
在人工智能快速发展的今天,我们越来越依赖各种 AI 工具来提高工作效率和生活质量。
Ollama 作为一个强大的本地 AI 模型服务器,为我们提供了丰富的 AI 能力。但是,如何更方便地与 Ollama 进行交互呢?
这就是 Hollama 的用武之地!Hollama 为 Ollama 服务器提供了一个简洁优雅的 Web 界面,让你可以轻松地与 AI 模型对话,无需复杂的命令行操......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Mike on
2024-08-12
</p>
<div class="tags">
<a href="/tags/#AI" title="AI">AI</a>
<a href="/tags/#Ollama" title="Ollama">Ollama</a>
<a href="/tags/#Hollama" title="Hollama">Hollama</a>
</div>
</div>
<hr>
<!-- Pager -->
<ul class="pager">
<li class="next">
<a href="/archives/2/">Older Posts →</a>
</li>
</ul>
<!-- 如果开启评论功能 -->
</div>
<!-- Sidebar Container -->
<div class="
col-lg-3 col-lg-offset-0
col-md-3 col-md-offset-0
col-sm-12
col-xs-12
sidebar-container
">
<!-- Featured Tags -->
<section>
<!-- no hr -->
<h5><a href="/tags/">FEATURED TAGS</a></h5>
<div class="tags">
<a href="/tags/#技巧" title="技巧" rel="303">技巧</a>
<a href="/tags/#Tmux" title="Tmux" rel="3">Tmux</a>
<a href="/tags/#Linux" title="Linux" rel="524">Linux</a>
<a href="/tags/#Redis" title="Redis" rel="5">Redis</a>
<a href="/tags/#Docker" title="Docker" rel="94">Docker</a>
<a href="/tags/#运维" title="运维" rel="2">运维</a>
<a href="/tags/#Kubernetes" title="Kubernetes" rel="94">Kubernetes</a>
<a href="/tags/#DNS" title="DNS" rel="13">DNS</a>
<a href="/tags/#Nginx" title="Nginx" rel="41">Nginx</a>
<a href="/tags/#SSH" title="SSH" rel="13">SSH</a>
<a href="/tags/#工具" title="工具" rel="42">工具</a>
<a href="/tags/#MySQL" title="MySQL" rel="25">MySQL</a>
<a href="/tags/#HTTP" title="HTTP" rel="3">HTTP</a>
<a href="/tags/#云原生" title="云原生" rel="5">云原生</a>
<a href="/tags/#教程" title="教程" rel="19">教程</a>
<a href="/tags/#微服务" title="微服务" rel="6">微服务</a>
<a href="/tags/#Prometheus" title="Prometheus" rel="4">Prometheus</a>
<a href="/tags/#Mesos" title="Mesos" rel="2">Mesos</a>
<a href="/tags/#DevOps" title="DevOps" rel="5">DevOps</a>
<a href="/tags/#PHP" title="PHP" rel="2">PHP</a>
<a href="/tags/#Elasticsearch" title="Elasticsearch" rel="2">Elasticsearch</a>
<a href="/tags/#Apache" title="Apache" rel="3">Apache</a>
<a href="/tags/#CentOS" title="CentOS" rel="3">CentOS</a>
<a href="/tags/#OpenSSH" title="OpenSSH" rel="4">OpenSSH</a>
<a href="/tags/#Consul" title="Consul" rel="3">Consul</a>
<a href="/tags/#Git" title="Git" rel="8">Git</a>
<a href="/tags/#GitHub" title="GitHub" rel="6">GitHub</a>
<a href="/tags/#HTTPS" title="HTTPS" rel="8">HTTPS</a>
<a href="/tags/#JBoss" title="JBoss" rel="2">JBoss</a>
<a href="/tags/#经典" title="经典" rel="2">经典</a>
<a href="/tags/#音乐" title="音乐" rel="2">音乐</a>
<a href="/tags/#开源" title="开源" rel="10">开源</a>
<a href="/tags/#Helm" title="Helm" rel="2">Helm</a>
<a href="/tags/#VIM" title="VIM" rel="2">VIM</a>
<a href="/tags/#Lua" title="Lua" rel="2">Lua</a>
<a href="/tags/#eBPF" title="eBPF" rel="2">eBPF</a>
<a href="/tags/#Systemd" title="Systemd" rel="3">Systemd</a>
<a href="/tags/#Ubuntu" title="Ubuntu" rel="5">Ubuntu</a>
<a href="/tags/#Tailscale" title="Tailscale" rel="2">Tailscale</a>
<a href="/tags/#WireGuard" title="WireGuard" rel="4">WireGuard</a>
<a href="/tags/#Vagrant" title="Vagrant" rel="2">Vagrant</a>
<a href="/tags/#Python" title="Python" rel="6">Python</a>
<a href="/tags/#Etcd" title="Etcd" rel="5">Etcd</a>
<a href="/tags/#周刊" title="周刊" rel="7">周刊</a>
<a href="/tags/#文档" title="文档" rel="3">文档</a>
<a href="/tags/#程序员" title="程序员" rel="5">程序员</a>
<a href="/tags/#网络" title="网络" rel="7">网络</a>
<a href="/tags/#备份" title="备份" rel="2">备份</a>
<a href="/tags/#职场" title="职场" rel="3">职场</a>
<a href="/tags/#AI" title="AI" rel="4">AI</a>
<a href="/tags/#终端" title="终端" rel="9">终端</a>
<a href="/tags/#虚拟化" title="虚拟化" rel="4">虚拟化</a>
<a href="/tags/#Shell" title="Shell" rel="8">Shell</a>
<a href="/tags/#思想" title="思想" rel="5">思想</a>
<a href="/tags/#微信" title="微信" rel="2">微信</a>