-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1281 lines (686 loc) · 47 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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="Linux, C++">
<meta name="description" content="Hexo Theme Keep">
<meta name="author" content="ssk-wh">
<title>
Ssk-wh's Blog
</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="shortcut icon" href="/images/logo.svg">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/source/font/css/fontawesome.min.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/source/font/css/regular.min.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/source/font/css/solid.min.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/source/font/css/brands.min.css">
<script class="keep-theme-configurations">
const KEEP = window.KEEP || {}
KEEP.hexo_config = {"hostname":"ssk-wh.github.io","root":"/","language":"en","path":"search.xml"}
KEEP.theme_config = {"base_info":{"primary_color":"#29392c","title":"Ssk-wh's Blog","author":"ssk-wh","avatar":"/images/avatar.svg","logo":"/images/logo.svg","favicon":"/images/logo.svg"},"menu":{"home":"/","archives":"/archives","tags":"/tags","categories":"/categories","tools":"/tools","about":"/about"},"first_screen":{"enable":true,"background_img":"/images/bg.svg","background_img_dark":"/images/bg.svg","description":"Keep writing and Keep loving.","hitokoto":true},"social_contact":{"enable":true,"links":{"github":"https://github.com/ssk-wh","weixin":null,"qq":null,"weibo":null,"zhihu":null,"twitter":null,"x":null,"facebook":null,"email":"[email protected]"}},"scroll":{"progress_bar":false,"percent":true,"hide_header":true},"home":{"announcement":null,"category":true,"tag":true,"post_datetime":"updated"},"post":{"author_badge":{"enable":true,"level_badge":true,"custom_badge":["One","Two","Three"]},"word_count":{"wordcount":true,"min2read":true},"datetime_format":"YYYY-MM-DD HH:mm:ss","copyright_info":false,"share":false,"reward":{"enable":false,"img_link":null,"text":null}},"code_block":{"tools":{"enable":true,"style":"default"},"highlight_theme":"default"},"toc":{"enable":true,"number":false,"expand_all":true,"init_open":true,"layout":"right"},"website_count":{"busuanzi_count":{"enable":true,"site_uv":false,"site_pv":false,"page_pv":true}},"local_search":{"enable":true,"preload":true},"comment":{"enable":true,"use":"waline","valine":{"appid":"p7UzBFMhtEszl675JcK4nD8u-gzGzoHsz","appkey":"jbg4L3iFVJ2gfpME1ueGIyoA","server_urls":null,"placeholder":null},"gitalk":{"github_id":null,"github_admins":null,"repository":null,"client_id":null,"client_secret":null,"proxy":null},"twikoo":{"env_id":null,"region":null,"version":"1.6.21"},"waline":{"server_url":"https://waline-comment-bbfehgah2-ssk-wh.vercel.app/","reaction":true,"version":3},"giscus":{"repo":null,"repo_id":null,"category":"Announcements","category_id":null,"reactions_enabled":false},"artalk":{"server":null},"disqus":{"shortname":null}},"rss":{"enable":true},"lazyload":{"enable":true},"cdn":{"enable":true,"provider":"jsdelivr"},"pjax":{"enable":true},"footer":{"since":2020,"word_count":false,"site_deploy":{"enable":true,"provider":"github","url":"https://github.com/"},"record":{"enable":false,"list":[{"code":null,"link":null}]}},"inject":{"enable":false,"css":[null],"js":[null]},"root":"","source_data":{"links":[{"title":"伙计们"},{"name":"XPoet","link":"https://xpoet.cn/","description":"懒惰是程序员第一生产力","avatar":"https://xpoet.cn/images/avatar.png"},{"name":"Guo Le's Blog","link":"https://guole.fun/","description":"生命是独立是自由是爱与和平","avatar":"https://guole.fun/img/gl.jpg"},{"name":"酷小呵","link":"https://www.kuhehe.top/","description":"爱分享的酷小呵","avatar":"https://q1.qlogo.cn/g?b=qq&nk=3111349763&s=100"}],"tools":[{"category":"AI"},{"name":"ChatGPT","link":"https://chat.openai.com/","description":"OpenAI 旗下 AI 聊天对话工具","image":"/images/tools/chatgpt.svg"},{"name":"Gemini","link":"https://gemini.google.com/app","description":"Google 旗下 AI 聊天对话工具","image":"/images/tools/gemini.svg"},{"name":"Copilot","link":"https://copilot.microsoft.com/","description":"微软家的AI助手","image":"/images/tools/copilot.svg"},{"name":"Kimi","link":"https://kimi.moonshot.cn/","description":"支持识别文件或网址的小众AI网站","image":"/images/tools/kimi.png"},{"name":"文心一言","link":"https://yiyan.baidu.com/","description":"百度旗下的AI助手","image":"/images/tools/wxyy.png"},{"name":"通义千问","link":"https://tongyi.aliyun.com/qianwen/","description":"阿里旗下","image":"/images/tools/tyqw.Default"},{"name":"讯飞星火","link":"https://xinghuo.xfyun.cn/","description":"讯飞旗下","image":"/images/tools/xfxh.svg"},{"category":"技术"},{"name":"Hexo","link":"https://hexo.io/","description":"快速、简洁且高效的博客框架","image":"https://upload.wikimedia.org/wikipedia/commons/b/b9/Hexo_blog_logo.svg"},{"name":"稀土掘金","link":"https://juejin.cn/","description":"开发者社区","image":"/images/tools/xtjj.Default"},{"category":"笔记"},{"name":"语雀","link":"https://www.yuque.com/","description":"在线记录笔记","image":"/images/tools/yuque.svg"},{"category":"图片"},{"name":"undraw","link":"https://undraw.co/illustrations","description":"免费的矢量素材下载网站","image":"https://raw.githubusercontent.com/ssk-wh/ssk-wh.github.io/master/images/undraw_shopping_bags_8l6g.svg"},{"name":"carbon","link":"https://carbon.now.sh/","description":"将代码生成图片","image":null},{"category":"作图网站"},{"name":"Draw.io","link":"https://draw.io/","description":"在线绘图网站,支持同步保存至github","image":null},{"name":"ProcessOn","link":"https://www.processon.com/","description":"在线绘图网站,画软件流程图经常用到","image":null},{"category":"博客管理"},{"name":"LeanCloud","link":"https://console.leancloud.app/apps/D0eDuK0h6X11p0z7FxTgY1CX-MdYXbMMI/storage/data/Comment","description":"评论管理","image":"https://gravatar.tapglb.com/avatar/afa8e9b8057e1877138d43f1dfdd8510?s=200&d=retro"}]},"version":"4.1.2"}
KEEP.language_ago = {"second":"%s seconds ago","minute":"%s minutes ago","hour":"%s hours ago","day":"%s days ago","week":"%s weeks ago","month":"%s months ago","year":"%s years ago"}
KEEP.language_code_block = {"copy":"Copy code","copied":"Copied","fold":"Fold code block","folded":"Folded"}
KEEP.language_copy_copyright = {"copy":"Copy copyright info","copied":"Copied","title":"Original post title","author":"Original post author","link":"Original post link"}
</script>
<meta name="generator" content="Hexo 6.3.0"><link rel="alternate" href="/atom.xml" title="Ssk-wh's Blog" type="application/atom+xml">
</head>
<body>
<div class="progress-bar-container">
<span class="pjax-progress-bar"></span>
<i class="pjax-progress-icon fas fa-circle-notch fa-spin"></i>
</div>
<main class="page-container border-box">
<!-- home first screen -->
<div class="first-screen-container border-box flex-center fade-in-down-animation">
<div class="first-screen-content border-box">
<div class="top-placeholder border-box"></div>
<div class="middle-placeholder border-box">
<div class="description border-box">
<div class="desc-item border-box"><span class="desc hitokoto"></span><span class="cursor">|</span></div>
</div>
<script async data-pjax
src="https://v1.hitokoto.cn/?encode=js"
>
</script>
</div>
<div class="bottom-placeholder border-box">
<div class="sc-icon-list border-box">
<!-- fontawesome icons -->
<div class="tooltip sc-icon-item "
data-tooltip-content="GitHub"
>
<a target="_blank" href="https://github.com/ssk-wh">
<i class="fab fa-github"></i>
</a>
</div>
<div class="tooltip sc-icon-item "
data-tooltip-content="Email"
>
<a href="mailto:[email protected]">
<i class="fas fa-envelope"></i>
</a>
</div>
<!-- custom svg icons -->
</div>
</div>
</div>
</div>
<!-- page content -->
<div class="page-main-content border-box is-home">
<div class="page-main-content-top">
<header class="header-wrapper transparent-1">
<div class="border-box header-content has-first-screen">
<div class="left border-box">
<a class="logo-image border-box" href="/">
<img src="/images/logo.svg">
</a>
<a class="site-name border-box" href="/">
Ssk-wh's Blog
</a>
</div>
<div class="right border-box">
<div class="pc">
<ul class="menu-list">
<li class="menu-item">
<a class="active"
href="/"
>
HOME
</a>
</li>
<li class="menu-item">
<a class=""
href="/archives"
>
ARCHIVES
</a>
</li>
<li class="menu-item">
<a class=""
href="/tags"
>
TAGS
</a>
</li>
<li class="menu-item">
<a class=""
href="/categories"
>
CATEGORIES
</a>
</li>
<li class="menu-item">
<a class=""
href="/tools"
>
TOOLS
</a>
</li>
<li class="menu-item">
<a class=""
href="/about"
>
ABOUT
</a>
</li>
<li class="menu-item search search-popup-trigger">
<i class="fas search fa-search"></i>
</li>
</ul>
</div>
<div class="mobile">
<div class="icon-item search search-popup-trigger"><i class="fas fa-search"></i></div>
<div class="icon-item menu-bar">
<div class="menu-bar-middle"></div>
</div>
</div>
</div>
</div>
<div class="header-drawer">
<ul class="drawer-menu-list">
<li class="drawer-menu-item flex-center">
<a class="active"
href="/"
>HOME</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/archives"
>ARCHIVES</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/tags"
>TAGS</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/categories"
>CATEGORIES</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/tools"
>TOOLS</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/about"
>ABOUT</a>
</li>
</ul>
</div>
<div class="window-mask"></div>
</header>
</div>
<div class="page-main-content-middle border-box">
<div class="main-content border-box">
<div class="home-content-container fade-in-down-animation">
<ul class="home-post-list border-box">
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<div class="post-sticky-box card">
<i class="fas fa-thumbtack"></i><span class="sticky-name"> TOP</span>
</div>
<h3 class="home-post-title border-box">
<a href="/2022/1253439.html">
系统鉴权-polkit
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>如果您只是想了解如何让自己的应用的某些接口被调用时,需要用户验证身份后才能进行,请移步《应用如何发起鉴权》。<br>如果您想了解操作系统中的身份验证弹窗程序是如何工作的,请移步《鉴权验证程序》。</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Jul 12 2024 03:05:34 GMT+0000"
>2024-07-12 03:05:34</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux/">Linux</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/polkit/">polkit</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/%E9%89%B4%E6%9D%83/">鉴权</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/%E8%AE%A4%E8%AF%81/">认证</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/%E6%8E%88%E6%9D%83/">授权</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2022/1253439.html">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<div class="post-sticky-box card">
<i class="fas fa-thumbtack"></i><span class="sticky-name"> TOP</span>
</div>
<h3 class="home-post-title border-box">
<a href="/2022/1261176.html">
Accessbility可访问性指导文档
</a>
</h3>
<div class="home-post-content keep-markdown-body">
如果你只想知道代码中如何尽快添加accessible辅助功能,请移步第四章
名词介绍Accessbility:可访问性。计算机软件的可访问性使应用程序可适用于具有不同能力(这是指听障,视障之类)的人。重要的是要考虑到不同人的需求,例如,在视力、听...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Jul 12 2024 03:05:34 GMT+0000"
>2024-07-12 03:05:34</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/C/">C++</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Qt/">Qt</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2022/1261176.html">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<div class="post-sticky-box card">
<i class="fas fa-thumbtack"></i><span class="sticky-name"> TOP</span>
</div>
<h3 class="home-post-title border-box">
<a href="/2023/024414.html">
Linux常见命令的使用
</a>
</h3>
<div class="home-post-content keep-markdown-body">
基本涵盖了Linux下开发常用的命令,适合刚接触Linux的小伙伴。
fish安装
sudo apt install fish
概述
命令提示&补全工具
用法fish
Tips:可以使用方向键→键,直接补全提示的命令
Q&A
使用...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Jul 12 2024 03:05:34 GMT+0000"
>2024-07-12 03:05:34</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux/">Linux</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/%E5%91%BD%E4%BB%A4/">命令</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2023/024414.html">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/0754520fd3.html">
ostree中GPG签名的使用方式
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>OSTree 是一个用于版本化文件系统树的工具,可以将其视为 Git 的文件系统版本。OSTree 不仅支持文件系统的版本管理,还支持使用 GPG 对其提交进行签名,以确保数据的完整性和来源的可信性。下面介绍 GPG 签名的原理和如何在 OSTree 中使用它。</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Jul 12 2024 03:05:34 GMT+0000"
>2024-07-12 03:05:34</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/ostree/">ostree</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/ostree/">ostree</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/GPG/">GPG</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/%E7%AD%BE%E5%90%8D/">签名</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/0754520fd3.html">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/07e7dec690.html">
理解CPU的主频、倍频和外频
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>在计算机的世界里,CPU(中央处理器)作为计算机的大脑,其性能决定了整机的速度和效率。而CPU的主频、倍频和外频则是衡量其性能的重要参数。本文将为您深入浅出地介绍这三个概念,帮助您更好地理解它们之间的关系及其对CPU性能的影响。</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Jul 12 2024 03:05:34 GMT+0000"
>2024-07-12 03:05:34</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/">计算机</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/CPU/">CPU</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/07e7dec690.html">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/0717fd6bfe.html">
makeself 的使用
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>在 Linux 中,创建自解压安装脚本是一种常见的方法,可以将多个文件打包成一个可执行文件,以便于分发和安装。这种方法通常使用 <code>shar</code>(Shell Archive)或者 <code>makeself</code> 工具来实现。</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Jul 12 2024 03:05:34 GMT+0000"
>2024-07-12 03:05:34</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux/">Linux</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Linux/">Linux</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/makeself/">makeself</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/0717fd6bfe.html">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/072650bdc9.html">
宏内核与微内核:深入理解计算机操作系统的核心
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>在计算机操作系统的设计中,内核(Kernel)是一个至关重要的组成部分。内核作为系统软件的核心,负责管理系统资源,协调硬件和软件之间的交互。根据设计思想的不同,内核可以分为两种主要类型:宏内核(Monolithic Kernel)和微内核(Microkernel)。本文将深入探讨这两种内核的区别、各自的优缺点以及一些实际的例子。</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Jul 12 2024 03:05:34 GMT+0000"
>2024-07-12 03:05:34</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux/">Linux</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Linux/">Linux</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/%E5%86%85%E6%A0%B8/">内核</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/072650bdc9.html">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/07eadf9fd1.html">
段页式内存管理
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>段页式内存管理是一种结合了分段和分页两种内存管理技术的机制,它旨在充分利用这两者的优点,减少它们各自的缺点。这种混合策略广泛应用于现代操作系统中,以实现灵活高效的内存管理。</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Jul 12 2024 03:05:34 GMT+0000"
>2024-07-12 03:05:34</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux/">Linux</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Linux/">Linux</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86/">内存管理</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/07eadf9fd1.html">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/06697cec4e.html">
Greenboot服务介绍
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<h2 id="概况"><a href="#概况" class="headerlink" title="概况"></a>概况</h2><p>Fedora 中提供了 <a class="link" target="_blank" rel="noopener" href="https://github.com/fedora-iot/greenboot/tree/main" >greenboot<i class="fas fa-external-link-alt"></i></a> 服务,这是一款基于 rpm-ostree 的系统上 systemd 的通用运行状况检查框架。</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Jul 12 2024 03:05:34 GMT+0000"
>2024-07-12 03:05:34</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Linux/">Linux</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/grub/">grub</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/fedora/">fedora</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/greenboot/">greenboot</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/06697cec4e.html">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/0650acf1b8.html">
systemd 目录重定向
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>在 <code>systemd</code> 中,可以使用 <code>BindPaths</code> 或 <code>BindReadOnlyPaths</code> 来重定向应用访问的目录。这些选项可以在 <code>.service</code> 单元文件中设置,用于将特定的目录绑定到不同的位置,从而实现目录的重定向。<code>systemd</code> 的这种机制,可以让我们更好的控制应用的行为,增强系统的安全性。</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Fri Jul 12 2024 03:05:34 GMT+0000"
>2024-07-12 03:05:34</span>
</span>