-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.xml
1360 lines (654 loc) · 351 KB
/
search.xml
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
<?xml version="1.0" encoding="utf-8"?>
<search>
<entry>
<title>Blender是一款强大而多功能的开源3D计算机图形软件,用于制作动画电影、视觉效果、艺术品、3D游戏等 | WWZ.iM</title>
<link href="/article/blender/"/>
<url>/article/blender/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/splash.png"></p><h1 id="💡-Blender是一款强大而多功能的开源3D计算机图形软件,用于制作动画电影、视觉效果、艺术品、3D游戏等。以下是Blender的一些关键方面:"><a href="#💡-Blender是一款强大而多功能的开源3D计算机图形软件,用于制作动画电影、视觉效果、艺术品、3D游戏等。以下是Blender的一些关键方面:" class="headerlink" title=" 💡 Blender是一款强大而多功能的开源3D计算机图形软件,用于制作动画电影、视觉效果、艺术品、3D游戏等。以下是Blender的一些关键方面:"></a><aside> 💡 Blender是一款强大而多功能的开源3D计算机图形软件,用于制作动画电影、视觉效果、艺术品、3D游戏等。以下是Blender的一些关键方面:</h1></aside><ol><li><strong>建模:</strong> Blender提供了各种建模工具,用于创建3D对象。它支持多边形建模、雕刻、纹理等。</li><li><strong>动画:</strong> 用户可以使用Blender的动画工具对其3D模型进行动画处理。这包括关键帧设置、绑定骨骼和角色动画。</li><li><strong>渲染:</strong> Blender内置了一个渲染引擎,称为Cycles,允许用户生成逼真的图像。Eevee是Blender的另一个实时渲染引擎,提供更快的预览。</li><li><strong>纹理和着色:</strong> Blender允许艺术家应用纹理并创建材质,使物体具有逼真的外观。节点用于更复杂的着色设置。</li><li><strong>模拟:</strong> Blender包括用于模拟基于物理的现象(如烟雾、火、流体、布料和软/刚体动力学)的工具。</li><li><strong>合成:</strong> Blender具有一个强大的基于节点的合成器,用于后期处理和组合场景的不同元素。</li><li><strong>游戏开发:</strong> Blender具有用于游戏开发的功能,包括一个游戏引擎(尽管在Blender 2.8及以上版本中已删除)和创建交互式3D内容的能力。</li><li><strong>脚本和自动化:</strong> Blender支持Python脚本,允许用户创建自定义工具、自动化任务并扩展Blender的功能。</li><li><strong>插件:</strong> Blender的功能可以通过插件进行扩展,这些插件是由社区创建的脚本或插件。</li><li><strong>开源:</strong> Blender是免费且开源的软件,意味着用户可以访问和修改源代码。这导致了一个由开发者和艺术家社区构成的蓬勃发展的社区。</li></ol><p>Blender被广泛应用于各个行业,包括动画制片厂、游戏开发、视觉效果、建筑和设计。它具有一定的学习曲线,但有大量的教程和社区资源可供用户入门并提高技能。</p><p><img src="https://wangwenzhi.eu.org/images/images/blender-jg.png" alt="Untitled"></p><h1 id="Blander-快捷键"><a href="#Blander-快捷键" class="headerlink" title="Blander 快捷键"></a>Blander 快捷键</h1><ul><li>Shift + D 复制</li><li>Shift + W 节点添加</li><li>Ctrl +Shift + D 点击节点可以复制出前一个节点的和连接线</li><li>按住Ctrl + Shift 点击节点可以自动生成连接的输出节点看到最终效果</li><li><strong>Ctrl+Shift+右键</strong> 拖动鼠标从一个节点到另一个节点(混合模式是“混合”)</li><li>Shift + S:<strong>对齐菜单(游标吸附到选中项)</strong></li><li>Shift + N <strong>矫正法线</strong></li><li>M 新建集合</li><li>P 分离</li><li>N 关闭侧边栏</li><li>L 扩选(Ctrl + +)</li><li>R(Rotate)/G/S(Scale) 旋转/位移/缩放</li><li>R + X + 数字 (旋转+X轴+ 旋转角度)</li><li>Tab 切换到编辑模式</li><li>Alt 环选</li><li>E 挤出(点模式可以Ctrl + 右键进行连续打点)</li><li>i 内插面(双击ii分别内插面)</li><li>F 连接点线成面</li><li>J 连接顶点路径</li><li>Ctrl + i 反选</li><li>Ctrl + R 环切</li><li>Ctrl + B 倒角、滑移</li><li>Ctrl + B (渲染模式下选择渲染区域)</li><li>Ctrl + F (栅格填充,只能填充偶数边)</li><li>Ctrl + L 先选中静止物体再选中动画物体(动画复制)</li><li>Ctrl + L 关联材质</li><li>Ctrl+T 调出“纹理坐标”与“映射”的节点组合(插件 Node: Node Wrangler)</li><li>X (边删除修改融并设置)</li><li>Ctrl + A 倒角修改</li><li>Alt + R/G/S 归零旋转/位移/缩放</li><li>Ctrl +A 应用(物体模式才能使用)</li><li>Alt + A 对齐拉直(Straighten)</li><li>Ctrl + j 节点打组</li><li>Ctrl + Shift +T 导入材质节点(材质采用标准命名A_roof_01_diff_2k.jpg /A_roof_01_nor_2k.jpg)</li><li>Ctrl + Alt +0 设置当前视角为摄像机视角</li><li>7 Z轴 (俯视)</li><li>8 上下旋转</li><li>9 仰视</li><li>4 逆时针旋转</li><li>5 透视/平行 视角切换</li><li>6 顺时针旋转</li><li>1 Y轴(左视)</li><li>3 X轴(正视)</li><li>Tab 饼状菜单(键位映射中打开 Tab fo Pie Menu)</li><li>动画插入关键帧 i</li></ul><p>雕刻模式</p><p>. Alt + Z 进入透视模式</p><h1 id="Blander-注意事项"><a href="#Blander-注意事项" class="headerlink" title="Blander 注意事项"></a>Blander 注意事项</h1><ul><li>视角无法推拉的问题按小键盘的(.)或者home</li><li>父级空物体(先选物体最后选择空物体为父级)</li><li>文本转网格(添加精简修改器可以减少线出错)</li><li>物体合并与拆分<ul><li>物体模式下选中两个物体选择合并</li><li>编辑模式下鼠标放在物体上按L键,P键分离(分离选中项)</li></ul></li><li>长方形倒角问题,需要线Ctrl + A应用一下缩放,才能正常倒角</li><li>隧道打洞(选中两个面右键桥接面)</li><li>有没有打不规则形状的</li><li>使用Moi 3D 工具转换stp 文件为obj文件时需要进去设置把毫米设置为米的单位,这时导入blander时模型比例才能正确,blender 单位也需要统一为厘米在操作时单位就能统一.</li><li><a href="https://www.bilibili.com/video/BV1fE411c7gF/?spm_id_from=333.788.recommend_more_video.-1">投影切割</a>(同时选中两个物体,进入编辑模式,先选投影(红)面再选被投射物体)</li></ul><h1 id="Blender-界面工具栏使用"><a href="#Blender-界面工具栏使用" class="headerlink" title="Blender 界面工具栏使用"></a>Blender 界面工具栏使用</h1><ol><li>快速收展卷展栏:长按鼠标左键往其他展开的栏目上拖动,划过的地方,可以快捷地将其他栏目打开或收缩。</li><li>全屏显示:Ctrl+空格 全屏显示任何编辑器的界面。</li><li>展开排头:工具无法全部显示时,悬停在视窗上方的工具栏,滚动滑轮,或按下鼠标中键拖动。</li><li>滚动选择分栏:Ctrl+滑轮,在默认界面的右侧。(如下图)</li><li>分栏的选项卡内容区域,和下拉栏都能使用这个小功能,甚至在数值框也可以用 移动卷展栏:右侧每个栏目的末端都有小点点的图标,这意味它可以被长按鼠标左键拖拽到其他位置,将常用的栏目置顶。</li><li>复制粘贴数值:Blander中复制任何参数时,只需将鼠标悬停在数值上,Ctrl+c,就可以复制了,粘贴的时候也只需悬停鼠标,按下Ctrl+v即可。 另外,颜色其实也是一种数值,所以也可以用同样的方法复制</li><li>吸管工具:鼠标悬停在标有吸管工具的框上,按:E 或点击图标,快速切换到吸管工具,可以直接在视窗中拾取模型。</li><li>快速命名:视窗中选中模型,F2 。</li><li>快速收藏夹:在视窗中 Q 键唤出收藏夹,快捷调用命令;任何命令都可以右键,添加到收藏夹或从中删除。比命名新快捷键更节省时间。</li><li>功能搜索:F3 ,唤出搜索栏,键入功能或命令的关键字即可搜索相关的命令和快捷键。再次按下 F3 ,会显示上次的搜索内容。 作者:二秦哥 <a href="https://www.bilibili.com/read/cv13019454">https://www.bilibili.com/read/cv13019454</a> 出处:bilibili</li></ol><h1 id="中英文快速切换"><a href="#中英文快速切换" class="headerlink" title="中英文快速切换"></a>中英文快速切换</h1><p>完美中文是一款用于汉化 Blender.</p><p><img src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Fb2b568a9-12fc-4ccb-9478-45fe8ad61ce6%2FUntitled.png?table=block&id=0418ee9f-a3dd-48f5-a52d-41943cc872f7&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><p><img src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Fcb778cdc-4e0b-4f58-b572-943bb0491594%2FUntitled.png?table=block&id=b6123606-2074-4945-ad65-e152a0b85a0a&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><p>手动安装:C:\Users\Administrator\AppData\Roaming\Blender Foundation\Blender\3.0\scripts\addons</p><p>perfect_chinese</p><p>✍🏻Zimon整理的笔记:</p><ol><li>编辑-偏好设置-键位映射-窗口,底部点击‘新增’ 2.点击none旁边的小箭头展开,文字栏位输入wm.context_toggle,回车 3.Context Attributes右边输入preferences.view.use_translate_interface 4.设置快捷键,建议设置为Alt+T 5.界面-翻译,设置目标语言,保存启动设置</li></ol><h1 id="不生成-blender1的设置"><a href="#不生成-blender1的设置" class="headerlink" title="不生成.blender1的设置*"></a><em><em>不生成</em>.blender1的设置</em>*</h1><p>保存文件的时候会自动生成一个*.blender1文件,这个文件其实也是一个blender文件,如果你定期保存的话,这个文件意义不大,有强迫症的同学总想把它去掉,如图所示把“保存版本”设为0就可以了</p><p><img src="https://imgconvert.csdnimg.cn/aHR0cHM6Ly91cGxvYWQtaW1hZ2VzLmppYW5zaHUuaW8vdXBsb2FkX2ltYWdlcy8xNzIzMDk2NS0xOTc1YmY1MzI3YWY2ODIxLnBuZw?x-oss-process=image/format,png"></p><h1 id="无缝背景"><a href="#无缝背景" class="headerlink" title="无缝背景"></a>无缝背景</h1><p><img src="https://www.notion.so/image/https%3A%2F%2Fprod-files-secure.s3.us-west-2.amazonaws.com%2F8de6dcdf-172b-4660-80ec-06dcd4abe7e5%2Ff29f3afc-52bc-4c35-b857-e6a30e86013e%2FUntitled.png?table=block&id=e8778ded-c97b-470c-a58a-544f40103717&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><h1 id="Blender内插面不均匀"><a href="#Blender内插面不均匀" class="headerlink" title="Blender内插面不均匀"></a><strong>Blender内插面不均匀</strong></h1><p>物体没有定形</p><p><img src="https://www.notion.so/image/https%3A%2F%2Fprod-files-secure.s3.us-west-2.amazonaws.com%2F8de6dcdf-172b-4660-80ec-06dcd4abe7e5%2F69836abd-ee52-44d0-b154-a27b8c081472%2FUntitled.png?table=block&id=53a33c69-ea94-4e2f-a686-fc205cf9fc0f&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><p><a href="https://www.bilibili.com/video/BV1ds4y1i7Wp/?vd_source=9a8dd1ed2dd26da50ce74d64716e3b8f">Blender内插面不均匀_哔哩哔哩_bilibili</a></p><h1 id="Blender-最佳视口着色设置-窗口模型颜色显示"><a href="#Blender-最佳视口着色设置-窗口模型颜色显示" class="headerlink" title="Blender 最佳视口着色设置-窗口模型颜色显示"></a><strong>Blender 最佳视口着色设置-窗口模型颜色显示</strong></h1><p><img src="https://www.notion.so/image/https%3A%2F%2Fprod-files-secure.s3.us-west-2.amazonaws.com%2F8de6dcdf-172b-4660-80ec-06dcd4abe7e5%2F78410853-77aa-4e99-9560-7b4f2471aa8a%2FUntitled.png?table=block&id=9d604249-693a-42eb-8dbd-df7160332acd&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><p><a href="https://www.bilibili.com/video/BV1kT4y1H717/?spm_id_from=333.337.search-card.all.click&vd_source=9a8dd1ed2dd26da50ce74d64716e3b8f">【中字】Blender 建模教程:最佳视口着色设置-窗口模型颜色显示_哔哩哔哩_bilibili</a></p><h1 id="Blender-Cycles-中更快渲染的-5-个技巧"><a href="#Blender-Cycles-中更快渲染的-5-个技巧" class="headerlink" title="Blender Cycles 中更快渲染的 5 个技巧"></a><strong>Blender Cycles 中更快渲染的 5 个技巧</strong></h1><p><a href="https://www.youtube.com/watch?v=VEdd9CynwQU">https://www.youtube.com/watch?v=VEdd9CynwQU</a></p><p><img src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Fef9e6739-382f-4683-90c1-bac1fdc865c8%2FScreenshot_2022-07-16_100751.png?table=block&id=ecf98d1d-b18d-4891-a4c1-601b62bd9080&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Screenshot 2022-07-16 100751.png"></p><h3 id="渲染设备"><a href="#渲染设备" class="headerlink" title="渲染设备"></a>渲染设备</h3><p><img src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Ff76a74aa-447f-49c9-bc49-dd61fd4a6e1d%2FUntitled.png?table=block&id=15e89e5b-493d-42e1-b25f-4cd09e146c13&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><p><img src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Fb022f011-0179-4794-8c4e-3848ad369c22%2FUntitled.png?table=block&id=bf063634-a14a-4283-b210-e752404bb52b&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><h3 id="噪声阈值"><a href="#噪声阈值" class="headerlink" title="噪声阈值"></a>噪声阈值</h3><p><img src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F194c0aeb-932e-4ad2-be64-ed6e8aa83524%2FUntitled.png?table=block&id=ca1aeb5f-3054-4b32-8753-db79209a135d&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><h3 id="光路性能"><a href="#光路性能" class="headerlink" title="光路性能"></a>光路性能</h3><p><img src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F79945226-fd7e-4d7f-ab8f-5a11277902ee%2FUntitled.png?table=block&id=501d0511-790a-4439-85ce-23e2285cf799&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><p><img src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F2e3bc2c8-ca0f-4247-aef7-4f654943b22a%2FUntitled.png?table=block&id=a5393a71-d3c5-4006-bfbc-649e018d471f&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><h1 id="玻璃材质在EEVEE中的设置"><a href="#玻璃材质在EEVEE中的设置" class="headerlink" title="玻璃材质在EEVEE中的设置"></a><strong>玻璃材质在EEVEE中的设置</strong></h1><p><img src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Fb2a50d38-049e-4ab6-9194-f96e5c38bc94%2FUntitled.png?table=block&id=76b8f9e9-f325-4e36-9069-9584c487d138&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><h1 id="添加辉光"><a href="#添加辉光" class="headerlink" title="添加辉光"></a>添加辉光</h1><p><img src="https://www.notion.so/image/https%3A%2F%2Fprod-files-secure.s3.us-west-2.amazonaws.com%2F8de6dcdf-172b-4660-80ec-06dcd4abe7e5%2F1648ef8b-c52d-49ec-9166-b745b07a5723%2FUntitled.png?table=block&id=db94fa43-a723-464b-a957-3e13a94b72a4&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><h1 id="Blander-常用插件"><a href="#Blander-常用插件" class="headerlink" title="Blander 常用插件"></a>Blander 常用插件</h1><p><a href="https://www.uisdc.com/10-blender-plug-in">附安装包和快捷键!10个不能错过的 Blender 插件(上)</a></p><ul><li>images (图片直接拖入软件插件)</li><li>pie(边修改) (快捷键X)(倒角修改Ctrl + A)</li><li>MACHIN3tools_0.4.1(对齐工具Alt + A )</li><li>W_Mesh_28x(物体添加可修改边)</li><li>Loop (LoopTools 插件)(连接面,打直,转曲,打平,,,,)</li><li>bool (布尔插件)(Ctrl + Shift + B)</li><li>Auto Tile Size (降低渲染时间)</li><li>Wrangler(Node: Node Wrangler 调整贴图方向)Ctrl + T</li><li>Node Arrange(节点整理插件)</li><li>Copy Attributes Menu (复制位置插件)</li><li>Rigging:Rigify (骨骼创建插件)</li><li>Import Images as planes ()</li></ul><p><a href="http://www.gfxcamp.com/tag/blender%E6%8F%92%E4%BB%B6/">Blender插件</a></p><p><img src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Fca20cc2a-ed41-4190-a31c-d9c9104bd622%2FUntitled.png?table=block&id=8fc78040-085c-4960-b19e-a384b2ced680&spaceId=8de6dcdf-172b-4660-80ec-06dcd4abe7e5&width=2000&userId=8a584c4d-b7d9-4ca2-8c28-4f7c1ee492c5&cache=v2" alt="Untitled"></p><h1 id="其他教程"><a href="#其他教程" class="headerlink" title="其他教程"></a>其他教程</h1><p>请在下面的网页中获取密码</p><p><a href="http://www.cgtsj.com/cg/f/vx1923/index.html">http://www.cgtsj.com/cg/f/vx1923/index.html</a></p><p>相关资源-下载链接</p><p>Blender先进技术进阶训练教程第二季 <a href="http://www.cgtsj.com/cg/f/vx1927/index.html">http://www.cgtsj.com/cg/f/vx1927/index.html</a></p><p>Blender摄像机跟踪教程 <a href="http://www.cgtsj.com/cg/f/vx1926/index.html">http://www.cgtsj.com/cg/f/vx1926/index.html</a></p><p>Blender三维合成教程 <a href="http://www.cgtsj.com/cg/f/vx1925/index.html">http://www.cgtsj.com/cg/f/vx1925/index.html</a></p><p>Blender热带岛屿环境制作教程 <a href="http://www.cgtsj.com/cg/f/vx1924/index.html">http://www.cgtsj.com/cg/f/vx1924/index.html</a></p><p>Blender粒子与毛发制作教程 <a href="http://www.cgtsj.com/cg/f/vx1923/index.html">http://www.cgtsj.com/cg/f/vx1923/index.html</a></p><p>Blender保时捷911跑车建模教程 <a href="http://www.cgtsj.com/cg/f/vx1922/index.html">http://www.cgtsj.com/cg/f/vx1922/index.html</a></p><p>Blender2.6全面培训教程 <a href="http://www.cgtsj.com/cg/f/vx1921/index.html">http://www.cgtsj.com/cg/f/vx1921/index.html</a></p><p>Blender 3D建筑可视化教程 <a href="http://www.cgtsj.com/cg/f/vx1920/index.html">http://www.cgtsj.com/cg/f/vx1920/index.html</a></p><p>Blender 2.6小河马建模教程 <a href="http://www.cgtsj.com/cg/f/vx1919/index.html">http://www.cgtsj.com/cg/f/vx1919/index.html</a></p><p>Blender与Unity游戏建模制作教程 <a href="http://www.cgtsj.com/cg/f/vx1758/index.html">http://www.cgtsj.com/cg/f/vx1758/index.html</a></p><p>Blender变型金刚视觉特效视频教程 <a href="http://www.cgtsj.com/cg/f/vx604/index.html">http://www.cgtsj.com/cg/f/vx604/index.html</a></p><p>Blender衣物服装雕刻艺术视频教程 <a href="http://www.cgtsj.com/cg/f/vx603/index.html">http://www.cgtsj.com/cg/f/vx603/index.html</a></p><p>Blender水母制作视频教程 <a href="http://www.cgtsj.com/cg/f/vx602/index.html">http://www.cgtsj.com/cg/f/vx602/index.html</a></p><p>Blender人类手臂雕刻艺术视频教程 <a href="http://www.cgtsj.com/cg/f/vx601/index.html">http://www.cgtsj.com/cg/f/vx601/index.html</a></p><p>Blender女性头部与毛发雕刻艺术视频教程 <a href="http://www.cgtsj.com/cg/f/vx600/index.html">http://www.cgtsj.com/cg/f/vx600/index.html</a></p><p>Blender螺旋电话线模拟视频教程 <a href="http://www.cgtsj.com/cg/f/vx599/index.html">http://www.cgtsj.com/cg/f/vx599/index.html</a></p><p>Blender恐怖树木制作视频教程 <a href="http://www.cgtsj.com/cg/f/vx598/index.html">http://www.cgtsj.com/cg/f/vx598/index.html</a></p><p>Blender卡通渲染制作视频教程 <a href="http://www.cgtsj.com/cg/f/vx597/index.html">http://www.cgtsj.com/cg/f/vx597/index.html</a></p><p>Blender角色纹理制作视频教程 <a href="http://www.cgtsj.com/cg/f/vx596/index.html">http://www.cgtsj.com/cg/f/vx596/index.html</a></p><p>Blender跟踪与合成训练视频教程 <a href="http://www.cgtsj.com/cg/f/vx595/index.html">http://www.cgtsj.com/cg/f/vx595/index.html</a></p><p>Blender刚体模拟训练视频教程 <a href="http://www.cgtsj.com/cg/f/vx594/index.html">http://www.cgtsj.com/cg/f/vx594/index.html</a></p><p>Blender全面核心技术视频教程 <a href="http://www.cgtsj.com/cg/f/vx593/index.html">http://www.cgtsj.com/cg/f/vx593/index.html</a></p><p>Blender鹦鹉建模制作视频教程 <a href="http://www.cgtsj.com/cg/f/vx592/index.html">http://www.cgtsj.com/cg/f/vx592/index.html</a></p><p>Blender角色概念艺术建模视频教程 <a href="http://www.cgtsj.com/cg/f/vx591/index.html">http://www.cgtsj.com/cg/f/vx591/index.html</a></p><p>Blender高级培训视频教程 <a href="http://www.cgtsj.com/cg/f/vx590/index.html">http://www.cgtsj.com/cg/f/vx590/index.html</a></p><p>Blender游戏武器M4步枪建模视频教程 <a href="http://www.cgtsj.com/cg/f/vx588/index.html">http://www.cgtsj.com/cg/f/vx588/index.html</a></p><p>Blender硬表面建模视频教程 <a href="http://www.cgtsj.com/cg/f/vx587/index.html">http://www.cgtsj.com/cg/f/vx587/index.html</a></p><p>Blender希腊神庙建模视频教程 <a href="http://www.cgtsj.com/cg/f/vx586/index.html">http://www.cgtsj.com/cg/f/vx586/index.html</a></p><p>Blender泰迪熊建模视频教程 <a href="http://www.cgtsj.com/cg/f/vx585/index.html">http://www.cgtsj.com/cg/f/vx585/index.html</a></p><p>Blender粒子系统视频教程 <a href="http://www.cgtsj.com/cg/f/vx584/index.html">http://www.cgtsj.com/cg/f/vx584/index.html</a></p><p>Blender科幻武器建模视频教程 <a href="http://www.cgtsj.com/cg/f/vx583/index.html">http://www.cgtsj.com/cg/f/vx583/index.html</a></p><p>Blender金鱼渲染视频教程 <a href="http://www.cgtsj.com/cg/f/vx582/index.html">http://www.cgtsj.com/cg/f/vx582/index.html</a></p><p>Blender角色头发渲染视频教程 <a href="http://www.cgtsj.com/cg/f/vx581/index.html">http://www.cgtsj.com/cg/f/vx581/index.html</a></p><p>Blender角色动画视频教程 <a href="http://www.cgtsj.com/cg/f/vx580/index.html">http://www.cgtsj.com/cg/f/vx580/index.html</a></p><p>Blender动画训练视频教程 <a href="http://www.cgtsj.com/cg/f/vx579/index.html">http://www.cgtsj.com/cg/f/vx579/index.html</a></p><p>Blender电吉他建模视频教程 <a href="http://www.cgtsj.com/cg/f/vx578/index.html">http://www.cgtsj.com/cg/f/vx578/index.html</a></p><p>blender草地室外场景制作视频教程 <a href="http://www.cgtsj.com/cg/f/vx577/index.html">http://www.cgtsj.com/cg/f/vx577/index.html</a></p><p><img src="https://wangwenzhi.eu.org/images/images/blender_40_splash.jpg"></p>]]></content>
<categories>
<category> 3D渲染 </category>
</categories>
<tags>
<tag> 软件 </tag>
<tag> BLog </tag>
<tag> 3D渲染 </tag>
</tags>
</entry>
<entry>
<title>Adobe 软件激活破解工具 2024 Win/Mac | WWZ.iM Adobe GenP几乎可以破解所有Adobe CC 2019-2024的windows版软件</title>
<link href="/article/Adobe/"/>
<url>/article/Adobe/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/Adobe.png"></p><h1 id="Adobe-系列软件"><a href="#Adobe-系列软件" class="headerlink" title="Adobe 系列软件"></a>Adobe 系列软件</h1><h2 id="Adobe软件大全"><a href="#Adobe软件大全" class="headerlink" title="Adobe软件大全"></a>Adobe软件大全</h2><p>百度网盘:<a href="https://pan.baidu.com/share/init?surl=ujYFLPuHDs8hz_XtiOrjww&pwd=qiji">https://pan.baidu.com/share/init?surl=ujYFLPuHDs8hz_XtiOrjww&pwd=qiji</a><br>本站网盘:<a href="https://alist.wwz.im/Software/%E8%BD%AF%E4%BB%B6/Adobe">https://alist.wwz.im/Software/%E8%BD%AF%E4%BB%B6/Adobe</a></p><h2 id="屏蔽弹窗"><a href="#屏蔽弹窗" class="headerlink" title="屏蔽弹窗"></a>屏蔽弹窗</h2><p><a href="https://prod-files-secure.s3.us-west-2.amazonaws.com/8de6dcdf-172b-4660-80ec-06dcd4abe7e5/c70f1716-c8e8-44f8-b1a8-29042bbdace4/Adobe_Block_hosts_26.04.2024_-_ENG.7z">Adobe Block hosts 26.04.2024 - ENG.7z</a></p><p><a href="https://prod-files-secure.s3.us-west-2.amazonaws.com/8de6dcdf-172b-4660-80ec-06dcd4abe7e5/a8aa6cad-644e-4eb6-ad56-6739166c51d8/Lock-Unlock_Firewall_Adobe_products_2024.rar">Lock-Unlock Firewall Adobe products 2024.rar</a></p><h1 id="Adobe-通用破解器"><a href="#Adobe-通用破解器" class="headerlink" title="Adobe 通用破解器"></a>Adobe 通用破解器</h1><p><a href="https://prod-files-secure.s3.us-west-2.amazonaws.com/8de6dcdf-172b-4660-80ec-06dcd4abe7e5/ded8d293-f118-4e07-8185-fa4754641638/Adobe-GenP-3.3.10-CGP.zip">Adobe-GenP-3.3.10-CGP.zip</a></p><p><a href="https://www.seying123.com/adobe/hosts">www.seying123.com</a></p><p><a href="https://www.cybermania.ws/apps/genp/">GenP Universal Patch 3.3.10 / 3.4.13 B4</a></p><p><a href="https://jpsmile.com/genp-v3/">Win软件:Adobe GenP v3.2.3 让你优雅地使用Adobe 2019~2024</a></p><p><a href="https://alist.wwz.im/%E8%BD%AF%E4%BB%B6">AList.WWZ.iM</a></p><p><a href="https://flowus.cn/share/ab4b6b86-34a6-4aa0-a679-b4a221b8e41d">FlowUs 息流 - 新一代生产力工具</a></p><p><a href="https://www.qijishow.com/down/index.html">奇迹秀工具箱-设计师的百宝箱</a></p><p><a href="https://www.macat.vip/28417.html">2023-2024 Adobe全家桶 最新激活补丁Patcher for Mac 一键激活adobe全套 持续更新 类似以前的zii (11.19更新)</a></p><p><a href="https://www.seying123.com/100.html">PS/LR 等软件提示“this Adobe app is not available”的解决方法(持续更新防检测代码)</a></p><h1 id="PS-LR-等软件提示“this-Adobe-app-is-not-available”的解决方法(持续更新防检测代码)"><a href="#PS-LR-等软件提示“this-Adobe-app-is-not-available”的解决方法(持续更新防检测代码)" class="headerlink" title="PS/LR 等软件提示“this Adobe app is not available”的解决方法(持续更新防检测代码)"></a><strong>PS/LR 等软件提示“this Adobe app is not available”的解决方法(持续更新防检测代码)</strong></h1><p><strong>PS:建议收藏本文章,因为Adobe这个防检测代码每隔一段时间会更新(大概一个月一次),另外也建议各位收藏一下本站呀,收录了很多优质的网址和资源,一定会方便到各位朋友的。</strong></p><p>!<a href="https://www.seying123.com/wp-content/uploads/2023/05/1-1.png">https://www.seying123.com/wp-content/uploads/2023/05/1-1.png</a></p><p>最近很多朋友说使用 PS、LR 等 Adobe 系软件的时候会弹出</p><p>“Sorry, this Adobe app is not available”</p><p>或者 “This non-genuine Adobe app has been disabled”</p><p>这种弹窗,然后软件就闪退不能用了,这里应该是 Adobe 公司最近新出的限制,检测软件是否是正版,不过这个问题还是比较好解决的,将下面的最新规则加入到 Hosts 文件中就可以了:</p><p>小站为爱发电,如帮助到各位麻烦帮忙点点页面上的广告,也可扫描上方二维码对小站进行赞赏,维持一下服务器费用,感谢各位,比心~</p><p>#2024.04.29 更新</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">127.0.0.1 ic.adobe.io</span><br><span class="line">#Mac</span><br><span class="line">127.0.0.1 lre1kgz2u4.adobe.io</span><br><span class="line">#Win</span><br><span class="line">127.0.0.1 4u4udfpb9h.adobe.io</span><br><span class="line">127.0.0.1 23ynjitwt5.adobe.io</span><br></pre></td></tr></table></figure><p>(有 Clash 的用户如果还是有弹窗可以参考:<a href="https://www.seying123.com/536.html">Clash 导致 Hosts 文件失效的解决办法</a>)</p><p>可搭配 SwitchHosts 软件订阅本站 Hosts 实现自动更新,</p><p>Windows:</p><p><a href="https://www.seying123.com/app/887.html">SwitchHosts 方便切换 Hosts 的工具 - 最新版</a></p><p>SwitchHosts 是一个管理、切换多个 hosts 方案的工具。 它是一个免费开源软件。</p><p>Mac:</p><p><a href="https://www.seying123.com/app/602.html">SwitchHosts 方便切换 Hosts 的工具 - 最新版</a></p><p>SwitchHosts 是一个管理、切换多个 hosts 方案的工具。 它是一个免费开源软件。</p><p>安装 SwitchHosts 之后添加 hosts 类型为 “<strong>远程</strong>”,URL为“<strong><a href="https://www.seying123.com/adobe/hosts">https://www.seying123.com/adobe/hosts</a></strong>”,自动刷新设置“1<strong>小时</strong>”,即可实现自动更新 hosts 文件,就不用每次有变动都来网站查询修改了。</p><p>解决Adobe弹窗警告,有两种解决方法。</p><hr><h3 id="第一种:"><a href="#第一种:" class="headerlink" title="第一种:"></a><strong>第一种:</strong></h3><p>在系统的hosts文件中添加相应的屏蔽内容(优点:不影响软件的在线功能;缺点:添加的屏蔽内容得时常更新,不然可能会失效)</p><p>最新hosts屏蔽内容:<a href="https://pan.baidu.com/s/13BJ461wBXYjp8wFsNMOx3A?pwd=2333">2024-05-21</a></p><p>Win专用:下载<a href="https://pan.baidu.com/s/1lH07kQA5lOVKddehvDSA6A?pwd=2333">Adoeb Bloak hosts(中文).bat</a>,解压后双击打开,如图:</p><p>!<a href="https://jpsmile.com/wp-content/uploads/2024/05/Block-hosts-0521.webp">https://jpsmile.com/wp-content/uploads/2024/05/Block-hosts-0521.webp</a></p><ul><li>输入数字“1”。(程序就会自动添加屏蔽的内容到hosts文件中)</li><li>输入数字“2”。(程序访问打开最新的屏蔽内容,你可以手动复制并添加到hosts)</li></ul><hr><h3 id="第二种:"><a href="#第二种:" class="headerlink" title="第二种:"></a><strong>第二种:</strong></h3><p>使用防火墙工具阻止相应的Adobe程序连网。(优点:基本上一劳永逸的解决方法;缺点:软件的在线功能和启动界面等会无法使用)</p><p>Window自带防火墙专用:下载<a href="https://pan.baidu.com/s/1bwAjQTr257dPhWSW9aP6pw?pwd=2333">Adobe弹窗专用防火墙规则</a>,解压后双击打开,如图:</p><p>!<a href="https://jpsmile.com/wp-content/uploads/2024/04/Adobe-Block-Firewall.webp">https://jpsmile.com/wp-content/uploads/2024/04/Adobe-Block-Firewall.webp</a></p><ul><li>对应单个软件:1、2、3、4、5、6、7、8、9、A、B</li><li>对应全部(C是屏蔽所有,S是取消屏蔽):C、S</li></ul><p>输入对应的数字或者字母即可。</p><p>Mac系统用户自行使用防火墙屏蔽。(推荐使用第一种hosts屏蔽的方法)</p><p><strong>怎样安装?</strong></p><p>首先,你需要安装<strong>Adobe Creative Cloud</strong>,您可以从 Adobe 官网下载,或者使用提供的安装包里的<strong>Creative_Cloud_Set-Up.exe</strong>运行安装。</p><h3 id="官网地址:"><a href="#官网地址:" class="headerlink" title="官网地址:"></a><strong>官网地址:</strong></h3><p><a href="https://creativecloud.adobe.com/apps/download/creative-cloud">https://creativecloud.adobe.com/apps/download/creative-cloud</a></p><p><a href="https://creativecloud.adobe.com/apps/download/creative-cloud">Adobe Creative Cloud | Sign in</a></p><p>(温馨提示:你也可以单独下载安装包,离线安装,然后再用激活工具激活。文末已经给你准备好了)</p><p>安装完<strong>Creative Cloud</strong>,打开它,然后你需要登录一下,没有账号的,可以自己注册一个。</p><p>然后打开Creative Cloud程序,点击<strong>首选项</strong>,在这里我们可以选择安装软件。如果需要改安装的位置,我们可以更改安装的位置。</p><p>然后,选择程序安装。直接点击“<strong>试用</strong>”。</p><p><strong>激活:</strong></p><p>安装完以后,需要激活。使用<strong>AdobeGenP激活工具</strong>(安装包里有)。</p><p>运行<strong>AdobeGenP.exe</strong>:</p><p>点击底部菜单“<strong>Path</strong>” 选择软件安装目录,点击 “<strong>Search</strong>” 分析,点击 “<strong>Patch</strong>”运行激活。</p><p>好了,大功告成!</p><p>你现在可以愉快的玩耍了。</p><p>zh_CN</p><p><a href="https://www.jianshu.com/p/53e93a51afcf">Premiere Pro 1 - 如何更改PR系统语言的英文为中文</a></p><p><strong>怎样获取?</strong></p><ol><li>Win直接下载 <a href="https://app.wwz.im/software/AdobeGenP.zip">https://app.wwz.im/software/AdobeGenP.zip</a></li><li>Mac直接下载 <a href="https://github.com/wangwenzhiwwz/file/releases/download/video/Adobe.v1.9.dmg">https://github.com/wangwenzhiwwz/file/releases/download/video/Adobe.v1.9.dmg</a></li></ol>]]></content>
<categories>
<category> 软件推荐 </category>
</categories>
<tags>
<tag> 软件 </tag>
<tag> 推荐 </tag>
<tag> 必看精选 </tag>
</tags>
</entry>
<entry>
<title>Reality 协议使用X-ui搭建 | WWZ.iM | 目前最安全的X-ray代理协议reality,从购买vps到搭建教程演示</title>
<link href="/article/Reality/"/>
<url>/article/Reality/</url>
<content type="html"><![CDATA[<aside>💡 **搭建 Reality 协议** | WWZ.iM</aside><h1 id="搭建-Reality"><a href="#搭建-Reality" class="headerlink" title="搭建 Reality"></a><strong>搭建 Reality</strong></h1><h3 id="安装所需组件"><a href="#安装所需组件" class="headerlink" title="安装所需组件"></a><strong>安装所需组件</strong></h3><p>以下命令,请根据自己的操作系统作出选择</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">## 以下为 CentOS 命令yum update -yyum install curl wget -y</span><br></pre></td></tr></table></figure><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">## 以下为 Debian / Ubuntu 命令apt update -yapt install curl wget -y</span><br></pre></td></tr></table></figure><h3 id="安装-X-ui"><a href="#安装-X-ui" class="headerlink" title="安装 X-ui"></a><strong>安装 X-ui</strong></h3><blockquote><p>因为原版的 X-UI 已经很久没有更新和维护了,以下的 X-UI 为改版,来自 GitHub :点击访问</p><p>更新频率更高,推荐大家使用。</p></blockquote><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -Ls https://raw.githubusercontent.com/FranzKafkaYu/x-ui/master/install.sh)</span><br></pre></td></tr></table></figure><h3 id="设置-X-ui-面板"><a href="#设置-X-ui-面板" class="headerlink" title="设置 X-ui 面板"></a><strong>设置 X-ui 面板</strong></h3><p>找到左侧面板设置,记录 “面板 url 根路径” ,以后访问 X-ui 面板的地址为 <code>http://ip:端口/面板url根路径</code></p><h3 id="如何寻找-TLS1-3-H2-的网站"><a href="#如何寻找-TLS1-3-H2-的网站" class="headerlink" title="如何寻找 TLS1.3/H2 的网站"></a><strong>如何寻找 TLS1.3/H2 的网站</strong></h3><blockquote><p>目标网站最低标准:国外网站,支持 TLSv1.3 与 H2,域名非跳转用</p><p>加分项:IP 相近(更像,且延迟低),Server Hello 后的握手消息一起加密(如 dl.google.com),有 OCSP Stapling</p><p>配置加分项:禁回国流量,TCP/80、UDP/443 也转发(REALITY 对外表现即为端口转发,目标 IP 冷门或许更好)</p></blockquote><p>可以使用这个网站:<a href="https://www.ssllabs.com/projects/index.html">点击访问</a> ,来寻找 <code>TLS1.3 / X25519 / H2</code> 的指向站点,更多注意事项,请看 本期视频</p><p>也可以使用这个网站:<a href="http://web.chacuo.net/netocspstapling">点击访问</a> ,来查询目标网站是否支持 <code>OCSP Stapling</code> (<strong>加分项而已,不支持也没有太大关系</strong>)</p><p><strong>注意:大家代理出现问题,第一个需要检查的是目标网站是否存在问题!!!!!!</strong></p><h3 id="部署-Reality-节点"><a href="#部署-Reality-节点" class="headerlink" title="部署 Reality 节点"></a><strong>部署 Reality 节点</strong></h3><p>创建 Reality 节点还是很简单的,如下图,更多注意事项请看 <a href="https://www.youtube.com/watch?v=DO1_C9YWOYY">本期视频</a></p><h3 id="开启-BBR-加速"><a href="#开启-BBR-加速" class="headerlink" title="开启 BBR 加速"></a><strong>开启 BBR 加速</strong></h3><p>以下 BBR 加速,请自选一种</p><h3 id="1、系统自带-BBR-加速"><a href="#1、系统自带-BBR-加速" class="headerlink" title="1、系统自带 BBR 加速"></a><strong>1、系统自带 BBR 加速</strong></h3><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">echo "net.core.default_qdisc=fq" >> /etc/sysctl.confecho "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.confsysctl -p</span><br></pre></td></tr></table></figure><h3 id="2、BBRplus-加速"><a href="#2、BBRplus-加速" class="headerlink" title="2、BBRplus 加速"></a><strong>2、BBRplus 加速</strong></h3><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh</span><br></pre></td></tr></table></figure><h1 id=""><a href="#" class="headerlink" title=""></a></h1><h1 id="Reality-客户端"><a href="#Reality-客户端" class="headerlink" title="Reality 客户端"></a><strong>Reality 客户端</strong></h1><p>以下客户端来自 <a href="https://github.com/XTLS/Xray-core">XTLS</a> 官方推荐(部分我没有进行尝试,大家可以自行尝试)</p><ul><li>OpenWrt<ul><li><a href="https://github.com/xiaorouji/openwrt-passwall">PassWall</a>, <a href="https://github.com/xiaorouji/openwrt-passwall2">PassWall 2</a></li><li><a href="https://github.com/fw876/helloworld">ShadowSocksR Plus+</a></li><li><a href="https://github.com/yichya/luci-app-xray">luci-app-xray</a> (<a href="https://github.com/yichya/openwrt-xray">openwrt-xray</a>)</li></ul></li><li>Windows<ul><li><a href="https://github.com/2dust/v2rayN">v2rayN</a></li><li><a href="https://github.com/Matsuridayo/nekoray">NekoRay</a></li><li><a href="https://github.com/LorenEteval/Furious">Furious</a></li><li><a href="https://github.com/hiddify/HiddifyN">HiddifyN</a></li><li><a href="https://github.com/InvisibleManVPN/InvisibleMan-XRayClient">Invisible Man – Xray</a></li></ul></li><li>Android<ul><li><a href="https://github.com/2dust/v2rayNG">v2rayNG</a></li><li><a href="https://github.com/hiddify/HiddifyNG">HiddifyNG</a></li><li><a href="https://github.com/XTLS/X-flutter">X-flutter</a></li></ul></li><li>iOS & macOS arm64<ul><li><a href="https://github.com/arror/Mango">Mango</a></li><li><a href="https://apps.apple.com/app/foxray/id6448898396">FoXray</a></li><li><a href="https://apps.apple.com/app/streisand/id6450534064">Streisand</a></li></ul></li><li>macOS arm64 & x64<ul><li><a href="https://github.com/yanue/V2rayU">V2rayU</a></li><li><a href="https://github.com/tzmax/V2RayXS">V2RayXS</a></li><li><a href="https://github.com/LorenEteval/Furious">Furious</a></li><li><a href="https://apps.apple.com/app/foxray/id6448898396">FoXray</a></li></ul></li><li>Linux<ul><li><a href="https://github.com/v2rayA/v2rayA">v2rayA</a></li><li><a href="https://github.com/Matsuridayo/nekoray">NekoRay</a></li><li><a href="https://github.com/LorenEteval/Furious">Furious</a></li></ul></li></ul><h1 id="后记"><a href="#后记" class="headerlink" title="后记"></a><strong>后记</strong></h1><p>有了 <code>X-ui</code> 面板,可视化的搭建 <code>Reality</code> ,也是极为方便,而且这种协议也是目前来说比较安全的代理方式之一,不需要自己购买的域名,可以有效的去除普通 <code>TLS</code> 代理过程中的一些特征。</p><p>但是互联网没有绝对,无非也就是矛与盾之间的较量,只是在目前来说不容易被封 IP 和端口。</p><p>若是你问我,是不是推荐所有人都来使用它,其实我不推荐,这只是一种方法,若是你自创的一种方式能长期稳定的使用,那么我不推荐你进行更换,就和 <code>XTLS</code> 官方所说:“把所有的鸡蛋都放在一个篮子里是十分危险的,我们鼓励大家善用每个工具的特性,分散特征”。</p><p>比如:<code>NaiveProxy</code>、魔改的 <code>Shadowsocks</code>,<code>MITM</code> 代理 等等。我个人觉得,越少冷门越好。</p>]]></content>
<categories>
<category> 科学上网 </category>
</categories>
<tags>
<tag> 科学上网 </tag>
</tags>
</entry>
<entry>
<title>Ubuntu DD是一个Unix和类Unix系统上的命令,主要功能为转换和复制文件。甚至可以将远端系统镜像,比如Windows系统镜像写入硬盘进行安装</title>
<link href="/article/LiunxOrder/"/>
<url>/article/LiunxOrder/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/ubuntu.png"></p><h1 id="综合工具箱(强烈推荐)"><a href="#综合工具箱(强烈推荐)" class="headerlink" title="综合工具箱(强烈推荐)"></a><code>综合工具箱(强烈推荐)</code></h1><figure class="highlight jsx"><table><tr><td class="code"><pre><span class="line">bash <(curl -sL kejilion.<span class="property">sh</span>)</span><br></pre></td></tr></table></figure><h1 id="Dibian安装-curl-waget"><a href="#Dibian安装-curl-waget" class="headerlink" title="Dibian安装 curl,waget"></a><code>Dibian安装 curl,waget</code></h1><figure class="highlight jsx"><table><tr><td class="code"><pre><span class="line">apt update</span><br><span class="line">apt install sudo</span><br><span class="line">sudo apt update</span><br><span class="line">sudo apt install curl</span><br><span class="line">sudo apt install wget</span><br></pre></td></tr></table></figure><p>专为Linux服务器监控、测试和管理而设计。整合了各类系统工具面板的安装及使用,使系统维护变得更加简单。</p><h3 id="安装curl"><a href="#安装curl" class="headerlink" title="安装curl"></a>安装curl</h3><p><strong>Debian/Ubuntu</strong></p><p><code>apt update -y && apt install -y curl</code></p><p><strong>CentOS</strong></p><p><code>yum update && yum install -y curl</code></p><p><strong>Alpine Linux</strong></p><p><code>apk update && apk add curl</code></p><h3 id="运行脚本"><a href="#运行脚本" class="headerlink" title="运行脚本"></a>运行脚本</h3><p>官网版</p><p><code>curl -sS -O https://kejilion.pro/kejilion.sh && chmod +x kejilion.sh && ./kejilion.sh</code></p><p>GitHub版 部分小伙伴会遇到官网版出现大段乱码!就用GitHub版本吧!</p><p><code>curl -sS -O https://raw.githubusercontent.com/kejilion/sh/main/kejilion.sh && chmod +x kejilion.sh && ./kejilion.sh</code></p><p>国内服务器版</p><p><code>curl -sS -O https://raw.gitmirror.com/kejilion/sh/main/cn/kejilion.sh && chmod +x kejilion.sh && ./kejilion.sh</code></p><h2 id="更新软件包列表,然后安装-curl-软件包"><a href="#更新软件包列表,然后安装-curl-软件包" class="headerlink" title="更新软件包列表,然后安装**curl**软件包"></a>更新软件包列表,然后安装**<code>curl</code>**软件包</h2><p><strong>Debian/Ubuntu</strong>安装下载工具</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">apt update -y && apt install -y curl</span><br></pre></td></tr></table></figure><p><strong>CentOS</strong>安装下载工具</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">yum update && yum install curl</span><br></pre></td></tr></table></figure><p><strong>Alpine Linux</strong></p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">apt-get update</span><br><span class="line">apt-get install <span class="built_in">sudo</span></span><br></pre></td></tr></table></figure><h1 id="dd系统,一劳永逸。目前支持amd和arm的脚本:"><a href="#dd系统,一劳永逸。目前支持amd和arm的脚本:" class="headerlink" title="dd系统,一劳永逸。目前支持amd和arm的脚本:"></a>dd系统,一劳永逸。目前支持amd和arm的脚本:</h1><p><code>bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -u 20.04 -v 64 -a -firmware -p password</code></p><h2 id="DD是什么?"><a href="#DD是什么?" class="headerlink" title="DD是什么?"></a>DD是什么?</h2><p>维基百科是这样定义的,DD是一个Unix和类Unix系统上的命令,主要功能为转换和复制文件。甚至可以将远端系统镜像,比如Windows系统镜像写入硬盘进行安装。</p><p>DD系统是什么?一键DD系统角本是啥?</p><p>DD系统,就是通过网络重装系统,而不是传统的通过u盘或者是控制面板重装系统。而一键DD系统角本就是,通过自动化脚本执行所有的dd步骤,你只需要执行一行命令即可dd完成,方便快捷。</p><h2 id="为什么要DD系统?"><a href="#为什么要DD系统?" class="headerlink" title="为什么要DD系统?"></a>为什么要DD系统?</h2><p>主要原因有以下两点:</p><p>1、很多时候我们的vps提供商给到我们的可能是定制版系统,又或者没有提供我们想要的系统和功能。通过网络重装(dd)的方式可自由为服务器切换其它系统。</p><p>2、有些vps服务商还会限制重装系统的次数,通过dd系统就可以绕过。</p><h2 id="其他版本"><a href="#其他版本" class="headerlink" title="其他版本"></a>其他版本</h2><p><code>bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -d 9 -v 64 -p 密码</code><br>命令中的 -d 后面为Debian版本号,-v 后面为64位/32位,【7、8、9、10】<br>命令中的 -u 后面为Ubuntu版本号,-v 后面为64位/32位,【14.04、16.04、18.04、20.04】<br><code>bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -d 9 -v 64 -p password</code></p><h1 id="要为您的-Ubuntu-版本安装所有可用更新,您可以在终端中使用以下命令:"><a href="#要为您的-Ubuntu-版本安装所有可用更新,您可以在终端中使用以下命令:" class="headerlink" title="要为您的 Ubuntu 版本安装所有可用更新,您可以在终端中使用以下命令:"></a>要为您的 Ubuntu 版本安装所有可用更新,您可以在终端中使用以下命令:</h1><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo apt update && sudo apt upgrade</span><br></pre></td></tr></table></figure><p>此命令将更新软件包列表并将所有已安装的软件包升级到最新版本。建议在升级 Ubuntu 版本之前运行此命令,以确保您的系统是最新的,并避免在升级过程中出现任何潜在问题。</p><p>请注意,升级到新版本的 Ubuntu 是系统的重大更改,因此在继续之前备份重要数据非常重要。您可以使用以下命令升级 Ubuntu 版本:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo do-release-upgrade</span><br></pre></td></tr></table></figure><p>此命令将检查是否有新的 Ubuntu 版本,并提示您升级(如果有)。请确保在升级过程中仔细按照说明进行操作。</p>]]></content>
<categories>
<category> VPS </category>
</categories>
<tags>
<tag> 科学上网 </tag>
</tags>
</entry>
<entry>
<title>Hysteria 2一键安装 | Hysteria协议大家可能在很多地方都见过,很多人都说是可以拯救吃灰小鸡的脚本。但是由于他使用的udp协议,并且比较暴力。</title>
<link href="/article/hysteria2/"/>
<url>/article/hysteria2/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/Hysteria2.png"></p><aside>💡 **一键安装Hysteria 2** | WWZ.iM</aside><h1 id="一键脚本"><a href="#一键脚本" class="headerlink" title="一键脚本"></a>一键脚本</h1><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">wget -N --no-check-certificate https://raw.githubusercontent.com/Misaka-blog/hysteria-install/main/hy2/hysteria.sh && bash hysteria.sh</span><br></pre></td></tr></table></figure><h1 id="重新运行"><a href="#重新运行" class="headerlink" title="重新运行"></a>重新运行</h1><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">bash hysteria.sh</span><br></pre></td></tr></table></figure><h1 id="Dibian安装-curl-waget"><a href="#Dibian安装-curl-waget" class="headerlink" title="Dibian安装 curl,waget"></a><code>Dibian安装 curl,waget</code></h1><figure class="highlight jsx"><table><tr><td class="code"><pre><span class="line">apt update</span><br><span class="line">apt install sudo</span><br><span class="line">sudo apt update</span><br><span class="line">sudo apt install curl</span><br><span class="line">sudo apt install wget</span><br></pre></td></tr></table></figure><h1 id="1-前言"><a href="#1-前言" class="headerlink" title="1.前言"></a><strong>1.前言</strong></h1><p>Hysteria协议大家可能在很多地方都见过,很多人都说是可以拯救吃灰小鸡的脚本。但是由于他使用的udp协议,并且比较暴力。</p><h1 id="导入软件"><a href="#导入软件" class="headerlink" title="导入软件"></a><strong>导入软件</strong></h1><h3 id="windows的Nekoray-安卓的Nekobox"><a href="#windows的Nekoray-安卓的Nekobox" class="headerlink" title="windows的Nekoray / 安卓的Nekobox"></a><strong>windows的Nekoray / 安卓的Nekobox</strong></h3><p>新版的nekoray和nekobox可以直接导入节点链接,并且使用sing-box进行代理。</p><p>首先复制你的节点链接,比如我搭建好的链接就是</p><p><code>hysteria2://081e248c@71.48.11.19:9368/?insecure=1&sni=www.bing.com#Misaka-Hysteria2</code></p><p>在nekoray界面点击<code>程序</code>然后点击<code>从剪切板导入</code>即可。</p><p>!<a href="https://tc.duangks.com/img/202311302134703.webp">https://tc.duangks.com/img/202311302134703.webp</a></p><h1 id="4-常见问题"><a href="#4-常见问题" class="headerlink" title="4.常见问题"></a><strong>4.常见问题</strong></h1><h3 id="Hysteria-是多倍发包吗?"><a href="#Hysteria-是多倍发包吗?" class="headerlink" title="Hysteria 是多倍发包吗?"></a><strong>Hysteria 是多倍发包吗?</strong></h3><p><strong>不是。Hysteria 不会在任何情况下主动对一份数据进行多次发送</strong> ,只有在检测到丢包时才会对丢失的部分进行重传(丢包重传是任何可靠协议都必须有的)。而检测丢包和重传的策略和原版 QUIC 完全一致,QUIC 的策略本身也源自 TCP 没有太大区别。</p><p>在丢包率低的情况下,Hysteria 传输一份数据所消耗的流量和数据本身大小没有太大差异,并且能跑满带宽。假如是多倍发包,即使只多一倍,流量消耗也会是原来的两倍,并且最大有效传输速度只是线路的一半。因此所谓多倍发包是一个非常容易证伪的错误说法。</p><p><a href="https://duangks.com/archives/155/">一键脚本安装新版Hysteria 2,不需要域名,垃圾小鸡直接起飞 - 性价比机场测速</a></p><p><strong>Hysteria2一键安装教程,搭建歇斯底里2(windows,安卓,ios,mac)客户端下载,sing-box配置使用教程</strong></p><p>Hysteria2一键安装视频教程:▶ <a href="https://youtu.be/N6j3gWde8cQ">https://youtu.be/N6j3gWde8cQ</a></p><p><strong>步骤:</strong></p><p><strong>一、准备一个VPS服务器(Debian)</strong></p><p>Vultr注册账号:<a href="https://www.vultr.com/?ref=8941832-8H">https://www.vultr.com/?ref=8941832-8H</a></p><p><strong>二、下载搭建工具 FinalShell</strong></p><p>FinalShell下载:<a href="https://kjfx.lanzoui.com/iqm6Uosbzha">点击下载>></a></p><p>备用下载(Windows MacOS Linux):<a href="http://www.hostbuf.com/t/988.html">点击下载>></a></p><p><strong>三、更新 VPS 系统,安装组件</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">apt update -y</span><br><span class="line">apt install curl sudo -y</span><br><span class="line"></span><br></pre></td></tr></table></figure><p><strong>四、Hysteria 2 一键安装脚本</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -N --no-check-certificate https://raw.githubusercontent.com/flame1ce/hysteria2-install/main/hysteria2-install-main/hy2/hysteria.sh && bash hysteria.sh</span><br><span class="line"></span><br></pre></td></tr></table></figure><p><strong>五、Hysteria 服务相关命令</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">systemctl start hysteria-server.service # 启动 hysteria 服务</span><br><span class="line">systemctl enable hysteria-server.service # 设置 hysteria 服务 开机自启</span><br><span class="line">systemctl restart hysteria-server.service # 重启 hysteria 服务</span><br><span class="line">systemctl stop hysteria-server.service # 停止 hysteria 服务</span><br><span class="line">systemctl status hysteria-server.service # 查看 hysteria 服务 状态</span><br><span class="line"></span><br></pre></td></tr></table></figure><p><strong>六、客户端配置</strong></p><ul><li><p>Windows 建议使用 V2rayN,<a href="https://github.com/2dust/v2rayN/releases/latest">点击下载>></a></p><p> 如果你不清楚下载哪个文件,请下载 “zz_v2rayN-With-Core-SelfContained.7z” 解压使用。</p></li><li><p>IOS/MAC 建议使用 sing-box 或 Shadowrocket</p><p> 需要使用美区 AppleID 登录 App Store 下载,如果没有美区ID,可以点击免费申请一个 <a href="https://github.com/kjfx/AppleID">美区AppleID>></a></p></li><li><p>安卓手机 建议使用 sing-box</p><p> 可以在 Google Play 商店下载,或者<a href="https://github.com/SagerNet/sing-box/releases/latest">官方下载>></a></p><p> 请下载.apk文件,建议下载v8a.apk</p></li></ul><p><strong>七、sing-box 配置文件</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">{</span><br><span class="line"> "dns": {</span><br><span class="line"> "servers": [</span><br><span class="line"> {</span><br><span class="line"> "tag": "cf",</span><br><span class="line"> "address": "https://1.1.1.1/dns-query"</span><br><span class="line"> },</span><br><span class="line"> {</span><br><span class="line"> "tag": "local",</span><br><span class="line"> "address": "223.5.5.5",</span><br><span class="line"> "detour": "direct"</span><br><span class="line"> },</span><br><span class="line"> {</span><br><span class="line"> "tag": "block",</span><br><span class="line"> "address": "rcode://success"</span><br><span class="line"> }</span><br><span class="line"> ],</span><br><span class="line"> "rules": [</span><br><span class="line"> {</span><br><span class="line"> "geosite": "category-ads-all",</span><br><span class="line"> "server": "block",</span><br><span class="line"> "disable_cache": true</span><br><span class="line"> },</span><br><span class="line"> {</span><br><span class="line"> "outbound": "any",</span><br><span class="line"> "server": "local"</span><br><span class="line"> },</span><br><span class="line"> {</span><br><span class="line"> "geosite": "cn",</span><br><span class="line"> "server": "local"</span><br><span class="line"> }</span><br><span class="line"> ],</span><br><span class="line"> "strategy": "ipv4_only"</span><br><span class="line"> },</span><br><span class="line"> "inbounds": [</span><br><span class="line"> {</span><br><span class="line"> "type": "tun",</span><br><span class="line"> "inet4_address": "172.19.0.1/30",</span><br><span class="line"> "auto_route": true,</span><br><span class="line"> "strict_route": false,</span><br><span class="line"> "sniff": true</span><br><span class="line"> }</span><br><span class="line"> ],</span><br><span class="line"> "outbounds": [</span><br><span class="line"> {</span><br><span class="line"> "type": "hysteria2",</span><br><span class="line"> "tag": "proxy",</span><br><span class="line"> "server": "IP", // VPS ip</span><br><span class="line"> "server_port": 443, // 端口</span><br><span class="line"> "up_mbps": 20, //上传速率,实际填写,过大会导致流量浪费</span><br><span class="line"> "down_mbps": 100, //下载速率,实际填写,过大会导致流量浪费</span><br><span class="line"> "password": "88888888", //hysteria2 服务密码</span><br><span class="line"> "tls": {</span><br><span class="line"> "enabled": true,</span><br><span class="line"> "server_name": "www.bing.com",</span><br><span class="line"> "insecure": true</span><br><span class="line"> }</span><br><span class="line"> },</span><br><span class="line"> {</span><br><span class="line"> "type": "direct",</span><br><span class="line"> "tag": "direct"</span><br><span class="line"> },</span><br><span class="line"> {</span><br><span class="line"> "type": "block",</span><br><span class="line"> "tag": "block"</span><br><span class="line"> },</span><br><span class="line"> {</span><br><span class="line"> "type": "dns",</span><br><span class="line"> "tag": "dns-out"</span><br><span class="line"> }</span><br><span class="line"> ],</span><br><span class="line"> "route": {</span><br><span class="line"> "rules": [</span><br><span class="line"> {</span><br><span class="line"> "protocol": "dns",</span><br><span class="line"> "outbound": "dns-out"</span><br><span class="line"> },</span><br><span class="line"> {</span><br><span class="line"> "geosite": "cn",</span><br><span class="line"> "geoip": [</span><br><span class="line"> "private",</span><br><span class="line"> "cn"</span><br><span class="line"> ],</span><br><span class="line"> "outbound": "direct"</span><br><span class="line"> },</span><br><span class="line"> {</span><br><span class="line"> "geosite": "category-ads-all",</span><br><span class="line"> "outbound": "block"</span><br><span class="line"> }</span><br><span class="line"> ],</span><br><span class="line"> "auto_detect_interface": true</span><br><span class="line"> }</span><br><span class="line">}</span><br><span class="line"></span><br></pre></td></tr></table></figure><p><strong>八、常见问题</strong></p><p>节点如果不能正常使用,请放行端口,请将以下命令复制到搭建工具,再点回车</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">iptables -I INPUT -p tcp --dport 443 -j ACCEPT</span><br><span class="line"></span><br></pre></td></tr></table></figure><ul><li>请将 443 改为你节点的端口再使用</li></ul>]]></content>
<categories>
<category> 科学上网 </category>
</categories>
<tags>
<tag> 科学上网 </tag>
<tag> VPS </tag>
<tag> 一键脚本 </tag>
</tags>
</entry>
<entry>
<title>SERV00 免费10年的云服务器 Serv00 是一家波兰的免费VPS提供商,成立于2008年,致力于 Web 应用托管市场和 UNIX/Linux 服务器管理 | WWZ.iM</title>
<link href="/article/serv00/"/>
<url>/article/serv00/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/serv00.png"></p><h1 id="一键脚本"><a href="#一键脚本" class="headerlink" title="一键脚本"></a>一键脚本</h1><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -s https://raw.githubusercontent.com/gshtwy/socks5-for-serv00/main/install-socks5-hysteria.sh)</span><br></pre></td></tr></table></figure><p><a href="https://wangwenzhi.serv00.net/">APP.WWZ.iM</a></p><p><a href="https://panel5.serv00.com/login/?next=/">Sign in</a></p><p>1.免费提供 3GB 的存储空间</p><p>2.内存:512MB</p><p>3.流量:不限流量 (可以搭建IP节点)</p><p>4.支持PHP、MySQL等网站开发语言和数据库</p><p>5.可以同时搭建100个网站</p><p>6.可自定义开放端口</p><p>7.支持SSH远程访问</p><p>8.免费提供的二级域名,可以自定义绑定</p><p>9.官方要求至少每隔3个月登入一次</p><p>官方免费注册:【<a href="https://www.serv00.com/"><strong>点击前往</strong></a>】</p><p><a href="https://www.serv00.com/">Serv00.com » Home</a></p><p>如何通过SSH远程连接VPS?</p><p>首先需要添加ip白名单:【<a href="https://www.serv00.com/ip_unban/"><strong>点击前往</strong></a>】</p><p>SSH远程终端连接工具:【<a href="https://github.com/kingToolbox/WindTerm/releases/tag/2.6.0"><strong>WindTerm</strong></a>】</p><p>!<a href="https://www.freedidi.com/wp-content/uploads/2024/06/screencapture-serv00-offer-2024-06-26-15_58_03.webp">https://www.freedidi.com/wp-content/uploads/2024/06/screencapture-serv00-offer-2024-06-26-15_58_03.webp</a></p><p><strong>am-nodejs-proxy</strong></p><p>基于 Node.js 的 vless 实现包。它在各种 Node.js 环境中都能运行,包括但不限于:Windows、Linux、MacOS、Android、iOS、树莓派等。同时,它也适用于各种 PaaS 平台,如:replit、heroku 等。</p><ul><li><a href="https://github.com/ansoncloud8/am-nodejs-proxy/blob/main/README_CN.md">中文文档</a></li><li><a href="https://youtu.be/tj9uD575R80">视频教程</a></li><li><a href="https://t.me/AM_CLUBS">Telegram交流群</a></li><li><a href="https://youtube.com/@AM_CLUB">YouTube频道</a></li><li><a href="https://github.com/ansoncloud8">Github仓库</a></li></ul><p>This README explains how to set up and use the <code>start.sh</code> script to manage the project components.</p><p><strong>Initial Setup</strong></p><ol><li>Connect to your host using SSH:</li></ol><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">ssh <username>@<panel>.serv00.com</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>Use the information emailed to you by serv00.</p><ol><li>Enable management permissions:</li></ol><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">devil binexec on</span><br><span class="line"></span><br></pre></td></tr></table></figure><p><em><strong>AFTER THIS STEP, EXIT FROM SSH AND LOG IN AGAIN.</strong></em></p><ol><li>Clone the repository:</li></ol><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">cd domains/<username>.serv00.net</span><br><span class="line">git clone https://github.com/ansoncloud8/am-nodejs-proxy.git</span><br><span class="line">cd am-nodejs-proxy</span><br><span class="line"></span><br></pre></td></tr></table></figure><p><strong>Usage</strong></p><p>To use the script, run:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">./start.sh <action> <sub-action></span><br><span class="line"></span><br></pre></td></tr></table></figure><table><thead><tr><th>Action</th><th>Sub-Action</th><th>Command</th><th>Description</th></tr></thead><tbody><tr><td>setup</td><td>xray/node</td><td><code>./start.sh setup xray</code></td><td>Setup services in a single command</td></tr><tr><td>check</td><td>xray/node</td><td><code>./start.sh check xray</code></td><td>Checks Cloudflared and other services</td></tr><tr><td>show</td><td>xray/node/all</td><td><code>./start.sh show xray</code></td><td>Displays VLESS connection links from node/.env</td></tr></tbody></table><p><em><strong>NODE.JS AND XRAY CANNOT BE ACTIVE SIMULTANEOUSLY. ONLY ONE OF THEM SHOULD BE RUNNING AT A TIME.</strong></em></p><p><strong>Checking Sessions</strong></p><p>To check the status of a specific component, you can attach to its tmux session:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">tmux attach -t <session></span><br><span class="line"></span><br></pre></td></tr></table></figure><p>Replace <code><session></code> with:</p><ul><li><code>cf</code> for Cloudflared</li><li><code>node</code> for Node.js</li><li><code>xray</code> for Xray</li></ul><p>For example, to check the Cloudflared session:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">tmux attach -t cf</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>To detach from a tmux session without closing it, press:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">Ctrl + b, then d</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>This key combination allows you to exit the session while leaving it running in the background.</p><p><strong>Notes</strong></p><ul><li>The script uses tmux to manage sessions for each component.</li><li>Cron jobs are set up for periodic maintenance of Node.js and Xray.</li><li>Cloudflared, Node.js, and Xray configurations are generated automatically.</li><li>The script includes functions for port management and cleanup.</li></ul>]]></content>
<categories>
<category> VPS </category>
</categories>
<tags>
<tag> VPS </tag>
<tag> Free </tag>
</tags>
</entry>
<entry>
<title>Hiddify VPN 客户端 | VPN代理软件,不同平台设备下的科学上网代理软件,根据使用平台及使用场景来选择适合的客户端。</title>
<link href="/article/VPN/"/>
<url>/article/VPN/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/VPN.png"></p><p>💡 <strong>Hiddify</strong> 全平台VPN客户端 | WWZ.iM</p><h1 id="直接下载"><a href="#直接下载" class="headerlink" title="直接下载"></a><a href="https://alist.wwz.im/VPN">直接下载</a></h1><p><a href="https://alist.wwz.im/VPN">AList.WWZ.iM</a></p><table><thead><tr><th>客户端</th><th>Clash订阅(默认)</th><th>SingBox订阅</th><th>V2Ray订阅</th></tr></thead><tbody><tr><td>Android</td><td><a href="https://alist.wwz.im/VPN/Hiddify/Hiddify-Android-universal.apk">https://alist.wwz.im/VPN/Hiddify/Hiddify-Android-universal.apk</a></td><td><a href="https://www.wwz.im/article/Sing-Box">https://www.wwz.im/article/Sing-Box</a></td><td><a href="https://alist.wwz.im/VPN/V2rayNG">https://alist.wwz.im/VPN/V2rayNG</a></td></tr><tr><td>Windows</td><td><a href="https://alist.wwz.im/VPN/Hiddify/Hiddify-Windows-Portable-x64.zip">https://alist.wwz.im/VPN/Hiddify/Hiddify-Windows-Portable-x64.zip</a></td><td><a href="https://alist.wwz.im/VPN/V2rayN">https://alist.wwz.im/VPN/V2rayN</a></td><td><a href="https://alist.wwz.im/VPN/V2rayN">https://alist.wwz.im/VPN/V2rayN</a></td></tr><tr><td>iOS</td><td><a href="https://testflight.apple.com/join/URrT6ZWm">https://testflight.apple.com/join/URrT6ZWm</a></td><td><a href="https://www.wwz.im/article/Sing-Box">https://www.wwz.im/article/Sing-Box</a></td><td><a href="https://apps.apple.com/us/app/shadowrocket/id932747118">https://apps.apple.com/us/app/shadowrocket/id932747118</a></td></tr><tr><td>MacOS</td><td><a href="https://alist.wwz.im/VPN/Hiddify/Hiddify-MacOS.dmg">https://alist.wwz.im/VPN/Hiddify/Hiddify-MacOS.dmg</a></td><td></td><td></td></tr></tbody></table><p><a href="https://github.com/hiddify/hiddify-next/releases">https://github.com/hiddify/hiddify-next/releases</a></p><p><a href="https://translate.yandex.com/translate">Yandex</a></p><p><a href="https://translate.yandex.com/translate">https://translate.yandex.com/translate</a></p><h1 id="前言"><a href="#前言" class="headerlink" title="前言"></a><strong>前言</strong></h1><p>目前,各种科学上网协议不断增多,客户端软件也是越来越多。</p><p>确定你所使用的订阅类型选择合适的客户端软件,默认使用V2Ray订阅</p><p>最新选择Hiddify导入Clash订阅使用更方便</p><p><a href="https://www.youtube.com/watch?v=boAFTSxDTTs&t=5s">https://www.youtube.com/watch?v=boAFTSxDTTs&t=5s</a></p><h1 id="Hiddify-App-是什么?"><a href="#Hiddify-App-是什么?" class="headerlink" title="Hiddify App 是什么?"></a><strong>Hiddify App 是什么?</strong></h1><p><img src="https://prod-files-secure.s3.us-west-2.amazonaws.com/8de6dcdf-172b-4660-80ec-06dcd4abe7e5/f5f08ba6-850f-4a2b-967a-347d8de3d71f/285144404-d821cfe0-b4c4-441f-be4e-eb9209f59542.png" alt="285144404-d821cfe0-b4c4-441f-be4e-eb9209f59542.png"></p><p>一款基于 <a href="https://github.com/SagerNet/sing-box">Sing-box</a> 通用代理工具的跨平台代理客户端。Hiddify 提供了较全面的代理功能,例如自动选择节点、TUN 模式、使用远程配置文件等。Hiddify 无广告,并且代码开源。它为大家自由访问互联网提供了一个支持多种协议的、安全且私密的工具。</p><p><strong>🚀 主要特性</strong></p><p>✈️ 多平台客户端:Android、iOS、Windows、macOS 和 Linux</p><p>⭐ 简单易用的用户界面</p><p>🔍 基于延迟自动选择节点</p><p>🟡 全面的协议支持:<strong>Vless、Vmess、Reality、TUIC、Wireguard、Hysteria、SSH</strong></p><p>🟡 多种订阅链接和配置文件格式支持: <strong>Sing-box、V2ray、Clash、Clash meta</strong></p><p>🔄 支持自动更新订阅</p><p>🔎 可显示包含了剩余天数和流量使用情况的配置文件信息</p><p>🛡 开源、安全且由社区驱动</p><p>🌙 深色和浅色模式</p><p>⚙ 兼容所有的代理管理面板</p><p>⭐ 适用于伊朗、中国、俄罗斯或其他国家的配置</p><h1 id="免费vpn,操作极其简"><a href="#免费vpn,操作极其简" class="headerlink" title="免费vpn,操作极其简"></a><strong>免费vpn,操作极其简</strong></h1><p>PC端软件下载地址:<a href="https://github.com/NIKJOO/WarpOnWarp-Windows-Client/releases">https://github.com/NIKJOO/WarpOnWarp-Windows-Client/releases</a></p><p>安卓手机端软件下载地址:<a href="https://github.com/bepass-org/oblivion/releases">https://github.com/bepass-org/oblivion/releases</a></p><p><a href="https://one.one.one.one/">1.1.1.1 — The free app that makes your Internet faster.</a></p><h1 id="使用方法"><a href="#使用方法" class="headerlink" title="使用方法"></a>使用方法</h1><p><a href="https://binghe.gitbook.io/quan-ping-tai-fan-qiang-gong-ju/0/windows">Windows翻墙客户端</a></p><p><a href="https://binghe.gitbook.io/quan-ping-tai-fan-qiang-gong-ju/0/mac">Mac 客户端</a></p><p><a href="https://binghe.gitbook.io/quan-ping-tai-fan-qiang-gong-ju/0/iphone">iPhone 客户端</a></p><h1 id="官方地址直达"><a href="#官方地址直达" class="headerlink" title="官方地址直达"></a>官方地址直达</h1><p><a href="https://nodecats.com/clash-download/">科学上网软件下载</a></p><table><thead><tr><th>推荐工具</th><th>大致介绍</th><th>项目原地址</th><th>软件下载</th></tr></thead><tbody><tr><td>V2rayN</td><td>Windows 客户端。</td><td><a href="https://github.com/2dust/v2rayN/releases">https://github.com/2dust/v2rayN/releases</a></td><td><a href="https://pan.wwz.im/s/d8qLgXoXoqw59Cw">https://pan.wwz.im/s/d8qLgXoXoqw59Cw</a></td></tr><tr><td>Shadowrocket</td><td>iOS VPN 应用</td><td><a href="https://youtu.be/0hphAq3_yL8">https://youtu.be/0hphAq3_yL8</a></td><td><a href="https://apps.apple.com/us/app/shadowrocket/id932747118">https://apps.apple.com/us/app/shadowrocket/id932747118</a></td></tr><tr><td>V2rayNG</td><td>Android客户端</td><td><a href="https://github.com/2dust/v2rayNG/releases">https://github.com/2dust/v2rayNG/releases</a></td><td><a href="https://pan.wwz.im/s/PFK75g8GRMAF4Gx">https://pan.wwz.im/s/PFK75g8GRMAF4Gx</a></td></tr></tbody></table><p><a href="https://github.com/2dust/clashN/releases">https://github.com/2dust/clashN/releases</a></p><p><a href="https://github.com/2dust/v2rayN/releases">https://github.com/2dust/v2rayN/releases</a></p>]]></content>
<categories>
<category> 科学上网 </category>
</categories>
<tags>
<tag> 科学上网 </tag>
<tag> VPS </tag>
</tags>
</entry>
<entry>
<title>OpenAI ChatGPT 是一家人工智能技术公司,由多位顶尖科学家和企业家创立,其业务覆盖人工智能基础研究、产品研发、技术咨询和服务等领域</title>
<link href="/article/Ai/"/>
<url>/article/Ai/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/chatgpt.png"></p><h1 id="OpenAI-被曝早在-2021-年斥资数千万(1100-万)美元买下-AI-com-域名,并在近期启用"><a href="#OpenAI-被曝早在-2021-年斥资数千万(1100-万)美元买下-AI-com-域名,并在近期启用" class="headerlink" title="OpenAI 被曝早在 2021 年斥资数千万(1100 万)美元买下 AI.com 域名,并在近期启用"></a>OpenAI 被曝早在 2021 年斥资数千万(1100 万)美元买下 AI.com 域名,并在近期启用</h1><hr><h3 id="ChatGPT"><a href="#ChatGPT" class="headerlink" title="ChatGPT"></a><a href="https://ai.com/">ChatGPT</a></h3><hr><p>据最新消息,人工智能领域的领先企业 OpenAI 已经斥资数千万美元(1100 万美元)购买了域名 AI.com。近日,该公司正式启用了这一域名,进一步巩固了其在人工智能领域的领导地位。</p><p>据悉,OpenAI 的这一举措旨在提高其品牌的知名度和可信度,并更好地向全球范围内的客户和利益相关者展示其创新技术和解决方案。同时,AI.com 这一短小精悍的域名也有望为 OpenAI 带来更多的流量和搜索排名,进一步增强其在线存在感和竞争力。</p><p>OpenAI 是一家人工智能技术公司,由多位顶尖科学家和企业家创立,其业务覆盖人工智能基础研究、产品研发、技术咨询和服务等领域。目前,该公司已经成为人工智能领域的领导者之一,拥有包括硬件、软件和云服务等多种形式的人工智能解决方案,并在众多领域取得了卓越成果,如自然语言处理、计算机视觉、自动驾驶等。</p><p>此次 OpenAI 收购 AI.com 域名的举措,也是该公司加速扩大品牌影响力和拓展全球市场的重要举措之一。可以预见,在未来的发展过程中,OpenAI 还将继续推出更多创新产品和技术,为人工智能领域的发展注入更多的动力和活力。</p>]]></content>
<categories>
<category> 热门文章 </category>
</categories>
<tags>
<tag> VPS </tag>
<tag> BLog </tag>
</tags>
</entry>
<entry>
<title>Markdown 语法手册 Markdown 支持两种形式的链接语法: 行内式和参考式两种形式,行内式一般使用较多</title>
<link href="/article/Markdown/"/>
<url>/article/Markdown/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/Markdown.png"></p><h2 id="1-斜体和粗体"><a href="#1-斜体和粗体" class="headerlink" title="1. 斜体和粗体"></a>1. 斜体和粗体</h2><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">*斜体*或_斜体_</span><br><span class="line">**粗体**</span><br><span class="line">***加粗斜体***</span><br><span class="line">~~删除线~~</span><br></pre></td></tr></table></figure><p>显示效果:</p><p><em>斜体</em>或_斜体_<br><strong>粗体</strong><br><em><strong>加粗斜体</strong></em><br><del>删除线</del></p><h2 id="2-分级标题"><a href="#2-分级标题" class="headerlink" title="2. 分级标题"></a>2. 分级标题</h2><p>第一种写法:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">这是一个一级标题</span><br><span class="line">============================</span><br><span class="line">这是一个二级标题</span><br><span class="line">--------------------------------------------------</span><br></pre></td></tr></table></figure><p>第二种写法:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line"><span class="comment"># 一级标题</span></span><br><span class="line"><span class="comment">## 二级标题</span></span><br><span class="line"><span class="comment">### 三级标题</span></span><br><span class="line"><span class="comment">#### 四级标题</span></span><br><span class="line"><span class="comment">##### 五级标题</span></span><br><span class="line"><span class="comment">###### 六级标题</span></span><br></pre></td></tr></table></figure><p>由于用了[TOC]标记编辑器会把所有标题写到目录大纲中,在这里写的演示标题也会列进去,所以就不演示了。同学们自己在编辑器中观察,很简单,一级标题字号最大,依级递减。</p><h2 id="3-超链接"><a href="#3-超链接" class="headerlink" title="3. 超链接"></a>3. 超链接</h2><p>Markdown 支持两种形式的链接语法: 行内式和参考式两种形式,行内式一般使用较多。</p><p> 3.1. 行内式<br>语法说明:</p><p>[]里写链接文字,()里写链接地址, ()中的”“中可以为链接指定title属性,title属性可加可不加。title属性的效果是鼠标悬停在链接上会出现指定的 title文字。[链接文字](链接地址 “链接标题”)’这样的形式。链接地址与链接标题前有一个空格。<br>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">欢迎来到[王文志博客](http://wangwenzhi.top)</span><br><span class="line">欢迎来到[王文志博客](http://wangwenzhi.top <span class="string">"王文志博客"</span>)</span><br></pre></td></tr></table></figure><p>显示效果:</p><p>欢迎来到<a href="http://wangwenzhi.top/">王文志博客</a><br>欢迎来到<a href="http://wangwenzhi.top/" title="王文志博客">王文志博客</a></p><p> 3.2. 参考式<br>参考式超链接一般用在学术论文上面,或者另一种情况,如果某一个链接在文章中多处使用,那么使用引用 的方式创建链接将非常好,它可以让你对链接进行统一的管理。</p><p>语法说明:<br>参考式链接分为两部分,文中的写法 [链接文字][链接标记],在文本的任意位置添加[链接标记]:链接地址 “链接标题”,链接地址与链接标题前有一个空格。</p><p>如果链接文字本身可以做为链接标记,你也可以写成[链接文字][]<br>[链接文字]:链接地址的形式,见代码的最后一行。</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">我经常去的几个网站[Google][1]、[Leanote][2]以及[自己的博客][3]</span><br><span class="line">[Leanote 笔记][2]是一个不错的[网站][]。</span><br><span class="line">[1]:http://www.google.com <span class="string">"Google"</span></span><br><span class="line">[2]:http://www.leanote.com <span class="string">"Leanote"</span></span><br><span class="line">[3]:http://http://blog.leanote.com/freewalk <span class="string">"梵居闹市"</span></span><br><span class="line">[网站]:http://http://blog.leanote.com/freewalk</span><br></pre></td></tr></table></figure><p>显示效果:</p><p>我经常去的几个网站[Google][1]、[Leanote][2]以及[自己的博客][3]<br>[Leanote 笔记][2]是一个不错的[网站][]。<br>[1]:<a href="http://www.google.com/">http://www.google.com</a> “Google”<br>[2]:<a href="http://www.leanote.com/">http://www.leanote.com</a> “Leanote”<br>[3]:<a href="http://http//blog.leanote.com/freewalk">http://http://blog.leanote.com/freewalk</a> “梵居闹市”<br>[网站]:<a href="http://http//blog.leanote.com/freewalk">http://http://blog.leanote.com/freewalk</a></p><p> 3.3. 自动链接</p><p>语法说明:<br>Markdown 支持以比较简短的自动链接形式来处理网址和电子邮件信箱,只要是用<>包起来, Markdown 就会自动把它转成链接。一般网址的链接文字就和链接地址一样,例如:</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line"><http://example.com/></span><br><span class="line"><address@example.com></span><br></pre></td></tr></table></figure><p>显示效果:</p><p><a href="http://example.com/">http://example.com/</a><br><a href="mailto:address@example.com">address@example.com</a></p><h2 id="5-列表"><a href="#5-列表" class="headerlink" title="5. 列表"></a>5. 列表</h2><p> 5.1. 无序列表</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">- 无序列表项 一</span><br><span class="line">- 无序列表项 二</span><br><span class="line">- 无序列表项 三</span><br></pre></td></tr></table></figure><ul><li>无序列表项 一</li><li>无序列表项 二</li><li>无序列表项 三<br> 5.2. 有序列表</li></ul><p>有序列表则使用数字接着一个英文句点。</p><p>代码:<br> <figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">1. 有序列表项 一</span><br><span class="line">2. 有序列表项 二</span><br><span class="line">3. 有序列表项 三</span><br></pre></td></tr></table></figure></p><ol><li>有序列表项 一</li><li>有序列表项 二</li><li>有序列表项 三<br> 5.3. 定义型列表<br>语法说明:</li></ol><p>定义型列表由名词和解释组成。一行写上定义,紧跟一行写上解释。解释的写法:紧跟一个缩进(Tab)</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">Markdown</span><br><span class="line">: 轻量级文本标记语言,可以转换成html,pdf等格式(左侧有一个可见的冒号和四个不可见的空格)</span><br><span class="line">代码块 2</span><br><span class="line">: 这是代码块的定义(左侧有一个可见的冒号和四个不可见的空格)</span><br><span class="line"> 代码块(左侧有八个不可见的空格)</span><br></pre></td></tr></table></figure><p>显示效果:</p><dl><dt>Markdown<br>: 轻量级文本标记语言,可以转换成html,pdf等格式(左侧有一个可见的冒号和四个不可见的空格)<br>代码块 2</dt><dd>这是代码块的定义(左侧有一个可见的冒号和四个不可见的空格)<br> 代码块(左侧有八个不可见的空格)</dd></dl><p> 5.3. 列表缩进<br>语法说明:</p><p>列表项目标记通常是放在最左边,但是其实也可以缩进,最多 3 个空格,项目标记后面则一定要接着至少一个空格或制表符。</p><p>要让列表看起来更漂亮,你可以把内容用固定的缩进整理好(显示效果与代码一致):</p><p>轻轻的我走了, 正如我轻轻的来; 我轻轻的招手, 作别西天的云彩。<br>那河畔的金柳, 是夕阳中的新娘; 波光里的艳影, 在我的心头荡漾。<br>软泥上的青荇, 油油的在水底招摇; 在康河的柔波里, 我甘心做一条水草!<br>那榆荫下的一潭, 不是清泉, 是天上虹; 揉碎在浮藻间, 沉淀着彩虹似的梦。<br>寻梦?撑一支长篙, 向青草更青处漫溯; 满载一船星辉, 在星辉斑斓里放歌。<br>但我不能放歌, 悄悄是别离的笙箫; 夏虫也为我沉默, 沉默是今晚的康桥!<br>悄悄的我走了, 正如我悄悄的来; 我挥一挥衣袖, 不带走一片云彩。<br>但是如果你懒,那也行: </p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">* 轻轻的我走了, 正如我轻轻的来; 我轻轻的招手, 作别西天的云彩。</span><br><span class="line">那河畔的金柳, 是夕阳中的新娘; 波光里的艳影, 在我的心头荡漾。 </span><br><span class="line">软泥上的青荇, 油油的在水底招摇; 在康河的柔波里, 我甘心做一条水草! </span><br><span class="line">* 那榆荫下的一潭, 不是清泉, 是天上虹; 揉碎在浮藻间, 沉淀着彩虹似的梦。 </span><br><span class="line">寻梦?撑一支长篙, 向青草更青处漫溯; 满载一船星辉, 在星辉斑斓里放歌。 </span><br><span class="line">但我不能放歌, 悄悄是别离的笙箫; 夏虫也为我沉默, 沉默是今晚的康桥! </span><br><span class="line">悄悄的我走了, 正如我悄悄的来; 我挥一挥衣袖, 不带走一片云彩。</span><br></pre></td></tr></table></figure><p> 5.4. 包含段落的列表<br>语法说明:</p><p>列表项目可以包含多个段落,每个项目下的段落都必须缩进 4 个空格或是 1 个制表符(显示效果与代码一致):</p><p>轻轻的我走了, 正如我轻轻的来; 我轻轻的招手, 作别西天的云彩。<br>那河畔的金柳, 是夕阳中的新娘; 波光里的艳影, 在我的心头荡漾。<br>软泥上的青荇, 油油的在水底招摇; 在康河的柔波里, 我甘心做一条水草!</p><p>那榆荫下的一潭, 不是清泉, 是天上虹; 揉碎在浮藻间, 沉淀着彩虹似的梦。<br>寻梦?撑一支长篙, 向青草更青处漫溯; 满载一船星辉, 在星辉斑斓里放歌。<br>但我不能放歌, 悄悄是别离的笙箫; 夏虫也为我沉默, 沉默是今晚的康桥!</p><p>悄悄的我走了, 正如我悄悄的来; 我挥一挥衣袖, 不带走一片云彩。</p><p>如果你每行都有缩进,看起来会看好很多,当然,再次地,如果你很懒惰,Markdown 也允许:</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">* 轻轻的我走了, 正如我轻轻的来; 我轻轻的招手, 作别西天的云彩。</span><br><span class="line">那河畔的金柳, 是夕阳中的新娘; 波光里的艳影, 在我的心头荡漾。 </span><br><span class="line">软泥上的青荇, 油油的在水底招摇; 在康河的柔波里, 我甘心做一条水草!</span><br><span class="line"> 那榆荫下的一潭, 不是清泉, 是天上虹; 揉碎在浮藻间, 沉淀着彩虹似的梦。 </span><br><span class="line">寻梦?撑一支长篙, 向青草更青处漫溯; 满载一船星辉, 在星辉斑斓里放歌。 </span><br><span class="line">但我不能放歌, 悄悄是别离的笙箫; 夏虫也为我沉默, 沉默是今晚的康桥! </span><br><span class="line">* 悄悄的我走了, 正如我悄悄的来; 我挥一挥衣袖, 不带走一片云彩。</span><br></pre></td></tr></table></figure><p> 5.5. 包含引用的列表<br>语法说明:</p><p>如果要在列表项目内放进引用,那 > 就需要缩进:</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">* 阅读的方法:</span><br><span class="line"> > 打开书本。</span><br><span class="line"> > 打开电灯。</span><br></pre></td></tr></table></figure><p> 5.6. 包含代码区块的引用<br>语法说明:<br>如果要放代码区块的话,该区块就需要缩进两次,也就是 8 个空格或是 2 个制表符:</p><p>一列表项包含一个列表区块:</p><h2 id="6-引用"><a href="#6-引用" class="headerlink" title="6. 引用"></a>6. 引用</h2><p>语法说明:</p><p>引用需要在被引用的文本前加上>符号。</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">> 这是一个有两段文字的引用,</span><br><span class="line">> 无意义的占行文字1.</span><br><span class="line">> 无意义的占行文字2.</span><br><span class="line">> </span><br><span class="line">> 无意义的占行文字3.</span><br><span class="line">> 无意义的占行文字4.</span><br></pre></td></tr></table></figure><p>Markdown 也允许你偷懒只在整个段落的第一行最前面加上 > :</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">> 这是一个有两段文字的引用,</span><br><span class="line">无意义的占行文字1.</span><br><span class="line">无意义的占行文字2.</span><br><span class="line">> 无意义的占行文字3.</span><br><span class="line">无意义的占行文字4.</span><br></pre></td></tr></table></figure><p> 6.1. 引用的多层嵌套<br>区块引用可以嵌套(例如:引用内的引用),只要根据层次加上不同数量的 > :</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">>>> 请问 Markdwon 怎么用? - 小白</span><br><span class="line">>> 自己看教程! - 愤青</span><br><span class="line">> 教程在哪? - 小白</span><br></pre></td></tr></table></figure><p> 6.2. 引用其它要素<br>引用的区块内也可以使用其他的 Markdown 语法,包括标题、列表、代码区块等:</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">> 1. 这是第一行列表项。</span><br><span class="line">> 2. 这是第二行列表项。</span><br><span class="line">> </span><br><span class="line">> 给出一些例子代码:</span><br><span class="line">> </span><br><span class="line">> <span class="built_in">return</span> shell_exec(<span class="string">"echo <span class="variable">$input</span> | <span class="variable">$markdown_script</span>"</span>);</span><br></pre></td></tr></table></figure><h2 id="7-插入图像"><a href="#7-插入图像" class="headerlink" title="7. 插入图像"></a>7. 插入图像</h2><p>图片的创建方式与超链接相似,而且和超链接一样也有两种写法,行内式和参考式写法。</p><p>语法中图片Alt的意思是如果图片因为某些原因不能显示,就用定义的图片Alt文字来代替图片。 图片Title则和链接中的Title一样,表示鼠标悬停与图片上时出现的文字。 Alt 和 Title 都不是必须的,可以省略,但建议写上。</p><p> 7.1. 行内式</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">美丽花儿: </span><br><span class="line">![美丽花儿](http://ww2.sinaimg.cn/large/56d258bdjw1eugeubg8ujj21kw16odn6.jpg <span class="string">"美丽花儿"</span>)</span><br></pre></td></tr></table></figure><p>美丽花儿:<br><img src="http://ww2.sinaimg.cn/large/56d258bdjw1eugeubg8ujj21kw16odn6.jpg" alt="美丽花儿" title="美丽花儿"></p><p> 7.2. 参考式</p><p>语法说明:</p><p>在文档的最后写上[标记]:图片地址 “Title”</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">美丽花儿:</span><br><span class="line">![美丽花儿][flower]</span><br><span class="line">[flower]:http://ww2.sinaimg.cn/large/56d258bdjw1eugeubg8ujj21kw16odn6.jpg <span class="string">"美丽花儿"</span></span><br></pre></td></tr></table></figure><p>美丽花儿:<br>![美丽花儿][flower]<br>[flower]:<a href="http://ww2.sinaimg.cn/large/56d258bdjw1eugeubg8ujj21kw16odn6.jpg">http://ww2.sinaimg.cn/large/56d258bdjw1eugeubg8ujj21kw16odn6.jpg</a> “美丽花儿”</p><h2 id="8-内容目录"><a href="#8-内容目录" class="headerlink" title="8. 内容目录"></a>8. 内容目录</h2><h2 id="9-注脚"><a href="#9-注脚" class="headerlink" title="9. 注脚"></a>9. 注脚</h2><p>语法说明:</p><p>在需要添加注脚的文字后加上脚注名字[^注脚名字],称为加注。 然后在文本的任意位置(一般在最后)添加脚注,脚注前必须有对应的脚注名字。</p><p>注意:经测试注脚与注脚之间必须空一行,不然会失效。成功后会发现,即使你没有把注脚写在文末,经Markdown转换后,也会自动归类到文章的最后。</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">使用 Markdown[^1]可以效率的书写文档, 直接转换成 HTML[^2], 你可以使用 Leanote[^Le] 编辑器进行书写。</span><br><span class="line">[^1]:Markdown是一种纯文本标记语言</span><br><span class="line">[^2]:HyperText Markup Language 超文本标记语言</span><br><span class="line">[^Le]:开源笔记平台,支持Markdown和笔记直接发为博文</span><br></pre></td></tr></table></figure><p>使用 Markdown[^1]可以效率的书写文档, 直接转换成 HTML[^2], 你可以使用 Leanote[^Le] 编辑器进行书写。<br>[^1]:Markdown是一种纯文本标记语言<br>[^2]:HyperText Markup Language 超文本标记语言<br>[^Le]:开源笔记平台,支持Markdown和笔记直接发为博文</p><p>注:脚注自动被搬运到最后面,请到文章末尾查看,并且脚注后方的链接可以直接跳转回到加注的地方。</p><h2 id="10-LaTeX-公式"><a href="#10-LaTeX-公式" class="headerlink" title="10. LaTeX 公式"></a>10. LaTeX 公式</h2><p> 10.1. $ 表示行内公式:</p><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">质能守恒方程可以用一个很简洁的方程式 <span class="variable">$E</span>=mc^2$ 来表达。</span><br></pre></td></tr></table></figure><p> 10.2 $$ 表示整行公式:<br>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">$$\sum_{i=1}^n a_i=0$$</span><br><span class="line">$<span class="variable">$f</span>(x_1,x_x,\ldots,x_n) = x_1^2 + x_2^2 + \cdots + x_n^2 $$</span><br><span class="line">$$\<span class="built_in">sum</span>^{j-1}_{k=0}{\widehat{\gamma}_{kj} z_k}$$</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>显示效果:</p><p>$$\sum_{i=1}^n a_i=0$$<br>$$f(x_1,x_x,\ldots,x_n) = x_1^2 + x_2^2 + \cdots + x_n^2 $$<br>$$\sum^{j-1}<em>{k=0}{\widehat{\gamma}</em>{kj} z_k}$$</p><h2 id="11-流程图"><a href="#11-流程图" class="headerlink" title="11. 流程图"></a>11. 流程图</h2><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">flow</span><br><span class="line">st=>start: Start:>https://www.zybuluo.com</span><br><span class="line">io=>inputoutput: verification</span><br><span class="line">op=>operation: Your Operation</span><br><span class="line">cond=>condition: Yes or No?</span><br><span class="line">sub=>subroutine: Your Subroutine</span><br><span class="line">e=>end</span><br><span class="line">st->io->op->cond</span><br><span class="line">cond(<span class="built_in">yes</span>)->e</span><br><span class="line">cond(no)->sub->io</span><br></pre></td></tr></table></figure><p>flow<br>st=>start: Start:><a href="https://www.zybuluo.com/">https://www.zybuluo.com</a><br>io=>inputoutput: verification<br>op=>operation: Your Operation<br>cond=>condition: Yes or No?<br>sub=>subroutine: Your Subroutine<br>e=>end<br>st->io->op->cond<br>cond(yes)->e<br>cond(no)->sub->io</p><h2 id="12-表格"><a href="#12-表格" class="headerlink" title="12 .表格"></a>12 .表格</h2><p>语法说明:</p><p>不管是哪种方式,第一行为表头,第二行分隔表头和主体部分,第三行开始每一行为一个表格行。<br>列于列之间用管道符|隔开。原生方式的表格每一行的两边也要有管道符。<br>第二行还可以为不同的列指定对齐方向。默认为左对齐,在-右边加上:就右对齐。<br>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">简单方式写表格:</span><br><span class="line"></span><br><span class="line">学号|姓名|分数</span><br><span class="line">-|-|-</span><br><span class="line">小明|男|75</span><br><span class="line">小红|女|79</span><br><span class="line">小陆|男|92</span><br><span class="line">原生方式写表格:</span><br><span class="line"></span><br><span class="line">|学号|姓名|分数|</span><br><span class="line">|-|-|-|</span><br><span class="line">|小明|男|75|</span><br><span class="line">|小红|女|79|</span><br><span class="line">|小陆|男|92|</span><br><span class="line">为表格第二列指定方向:</span><br><span class="line"></span><br><span class="line">产品|价格</span><br><span class="line">-|-:</span><br><span class="line">Leanote 高级账号|60元/年</span><br><span class="line">Leanote 超级账号|120元/年</span><br></pre></td></tr></table></figure><p>简单方式写表格:</p><table><thead><tr><th>学号</th><th>姓名</th><th>分数</th></tr></thead><tbody><tr><td>小明</td><td>男</td><td>75</td></tr><tr><td>小红</td><td>女</td><td>79</td></tr><tr><td>小陆</td><td>男</td><td>92</td></tr><tr><td>原生方式写表格:</td><td></td><td></td></tr></tbody></table><table><thead><tr><th>学号</th><th>姓名</th><th>分数</th></tr></thead><tbody><tr><td>小明</td><td>男</td><td>75</td></tr><tr><td>小红</td><td>女</td><td>79</td></tr><tr><td>小陆</td><td>男</td><td>92</td></tr><tr><td>为表格第二列指定方向:</td><td></td><td></td></tr></tbody></table><table><thead><tr><th>产品</th><th align="right">价格</th></tr></thead><tbody><tr><td>Leanote 高级账号</td><td align="right">60元/年</td></tr><tr><td>Leanote 超级账号</td><td align="right">120元/年</td></tr></tbody></table><h2 id="14-代码"><a href="#14-代码" class="headerlink" title="14. 代码"></a>14. 代码</h2><p>代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">第一个例子:</span><br><span class="line"></span><br><span class="line"><div class=<span class="string">"footer"</span>></span><br><span class="line"> © 2004 Foo Corporation</span><br><span class="line"></div></span><br><span class="line">第二个例子:</span><br><span class="line"></span><br><span class="line"><table></span><br><span class="line"> <<span class="built_in">tr</span>></span><br><span class="line"> <th rowspan=<span class="string">"2"</span>>值班人员</th></span><br><span class="line"> <th>星期一</th></span><br><span class="line"> <th>星期二</th></span><br><span class="line"> <th>星期三</th></span><br><span class="line"> </tr></span><br><span class="line"> <<span class="built_in">tr</span>></span><br><span class="line"> <td>李强</td></span><br><span class="line"> <td>张明</td></span><br><span class="line"> <td>王平</td></span><br><span class="line"> </tr></span><br><span class="line"></table></span><br></pre></td></tr></table></figure><p>第一个例子:</p><div class="footer"> © 2004 Foo Corporation</div>第二个例子:<table> <tr> <th rowspan="2">值班人员</th> <th>星期一</th> <th>星期二</th> <th>星期三</th> </tr> <tr> <td>李强</td> <td>张明</td> <td>王平</td> </tr></table>]]></content>
<categories>
<category> Blog </category>
</categories>
<tags>
<tag> Github </tag>
</tags>
</entry>
<entry>
<title>github-添加ssh 很多朋友在用github管理项目的时候,都是直接使用https url克隆到本地,当然也有有些人使用 SSH url 克隆到本地。然而,为什么绝大多数人会使用https url克隆呢?</title>
<link href="/article/github-ssh/"/>
<url>/article/github-ssh/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/github.png"></p><h1 id="github设置添加SSH"><a href="#github设置添加SSH" class="headerlink" title="github设置添加SSH"></a>github设置添加SSH</h1><p>很多朋友在用github管理项目的时候,都是直接使用https url克隆到本地,当然也有有些人使用 SSH url 克隆到本地。然而,为什么绝大多数人会使用https url克隆呢?</p><p>这是因为,使用https url克隆对初学者来说会比较方便,复制https url 然后到 git Bash 里面直接用clone命令克隆到本地就好了。而使用 SSH url 克隆却需要在克隆之前先配置和添加好 SSH key 。</p><p>因此,如果你想要使用 SSH url 克隆的话,你必须是这个项目的拥有者。否则你是无法添加 SSH key 的。</p><h2 id="https-和-SSH-的区别:"><a href="#https-和-SSH-的区别:" class="headerlink" title="https 和 SSH 的区别:"></a>https 和 SSH 的区别:</h2><p>1、前者可以随意克隆github上的项目,而不管是谁的;而后者则是你必须是你要克隆的项目的拥有者或管理员,且需要先添加 SSH key ,否则无法克隆。</p><p>2、https url 在push的时候是需要验证用户名和密码的;而 SSH 在push的时候,是不需要输入用户名的,如果配置SSH key的时候设置了密码,则需要输入密码的,否则直接是不需要输入密码的。</p><h2 id="在-github-上添加-SSH-key-的步骤:"><a href="#在-github-上添加-SSH-key-的步骤:" class="headerlink" title="在 github 上添加 SSH key 的步骤:"></a>在 github 上添加 SSH key 的步骤:</h2><p>1、首先需要检查你电脑是否已经有 SSH key<br>运行 git Bash 客户端,输入如下代码:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">$ <span class="built_in">cd</span> ~/.ssh</span><br><span class="line">$ <span class="built_in">ls</span></span><br></pre></td></tr></table></figure><p>这两个命令就是检查是否已经存在 id_rsa.pub 或 id_dsa.pub 文件,如果文件已经存在,那么你可以跳过步骤2,直接进入步骤3。</p><p>2、创建一个 SSH key<br>$ ssh-keygen -t rsa -C “<a href="mailto:your_email@example.com">your_email@example.com</a>“<br>代码参数含义:</p><p>-t 指定密钥类型,默认是 rsa ,可以省略。<br>-C 设置注释文字,比如邮箱。<br>-f 指定密钥文件存储文件名。</p><p>以上代码省略了 -f 参数,因此,运行上面那条命令后会让你输入一个文件名,用于保存刚才生成的 SSH key 代码,如:</p><p>Generating public/private rsa key pair.</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line"><span class="comment"># Enter file in which to save the key (/c/Users/you/.ssh/id_rsa): [Press enter]</span></span><br></pre></td></tr></table></figure><p>当然,你也可以不输入文件名,使用默认文件名(推荐),那么就会生成 id_rsa 和 id_rsa.pub 两个秘钥文件。</p><p>接着又会提示你输入两次密码(该密码是你push文件的时候要输入的密码,而不是github管理者的密码),</p><p>当然,你也可以不输入密码,直接按回车。那么push的时候就不需要输入密码,直接提交到github上了,如:</p><p>Enter passphrase (empty for no passphrase): </p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line"><span class="comment"># Enter same passphrase again:</span></span><br></pre></td></tr></table></figure><p>接下来,就会显示如下代码提示,如:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">Your identification has been saved <span class="keyword">in</span> /c/Users/you/.ssh/id_rsa.</span><br><span class="line"><span class="comment"># Your public key has been saved in /c/Users/you/.ssh/id_rsa.pub.</span></span><br><span class="line"><span class="comment"># The key fingerprint is:</span></span><br><span class="line"><span class="comment"># 01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db your_email@example.com</span></span><br></pre></td></tr></table></figure><p>当你看到上面这段代码的收,那就说明,你的 SSH key 已经创建成功,你只需要添加到github的SSH key上就可以了。</p><p>3、添加你的 SSH key 到 github上面去<br>a、首先你需要拷贝 id_rsa.pub 文件的内容,你可以用编辑器打开文件复制,也可以用git命令复制该文件的内容,如:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">$ clip < ~/.ssh/id_rsa.pub</span><br></pre></td></tr></table></figure><p>b、登录你的github账号,从又上角的设置( Account Settings )进入,然后点击菜单栏的 SSH key 进入页面添加 SSH key。</p><p>c、点击 Add SSH key 按钮添加一个 SSH key 。把你复制的 SSH key 代码粘贴到 key 所对应的输入框中,记得 SSH key 代码的前后不要留有空格或者回车。当然,上面的 Title 所对应的输入框你也可以输入一个该 SSH key 显示在 github 上的一个别名。默认的会使用你的邮件名称。</p><p>4、测试一下该SSH key<br>在git Bash 中输入以下代码</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">$ ssh -T git@github.com</span><br></pre></td></tr></table></figure><p>当你输入以上代码时,会有一段警告代码,如:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">The authenticity of host <span class="string">'github.com (207.97.227.239)'</span> can<span class="string">'t be established.</span></span><br><span class="line"><span class="string"># RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.</span></span><br><span class="line"><span class="string"># Are you sure you want to continue connecting (yes/no)?</span></span><br></pre></td></tr></table></figure><p>这是正常的,你输入 yes 回车既可。如果你创建 SSH key 的时候设置了密码,接下来就会提示你输入密码,如:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">Enter passphrase <span class="keyword">for</span> key <span class="string">'/c/Users/Administrator/.ssh/id_rsa'</span>:</span><br></pre></td></tr></table></figure><p>当然如果你密码输错了,会再要求你输入,知道对了为止。</p><p>注意:输入密码时如果输错一个字就会不正确,使用删除键是无法更正的。</p><p>密码正确后你会看到下面这段话,如:</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">Hi username! You<span class="string">'ve successfully authenticated, but GitHub does not</span></span><br><span class="line"><span class="string"># provide shell access.</span></span><br></pre></td></tr></table></figure><p>如果用户名是正确的,你已经成功设置SSH密钥。如果你看到 “access denied” ,者表示拒绝访问,那么你就需要使用 https 去访问,而不是 SSH 。</p><p>如果你有什么疑问或指正,请留言。</p><p>产考文档:<a href="https://help.github.com/articles/generating-ssh-keys">generating-ssh-keys</a></p>]]></content>
<categories>
<category> Blog </category>
</categories>
<tags>
<tag> Github </tag>
</tags>
</entry>
<entry>
<title>搭建Hexo博客,快速简洁高效,零成本搭建个人博客:Hexo + GitHub Pages + Cloudflare Pages 完整指南</title>
<link href="/article/Hexo/"/>
<url>/article/Hexo/</url>
<content type="html"><![CDATA[<p>搭建Hexo博客,快速简洁高效,零成本搭建个人博客:Hexo + GitHub Pages + Cloudflare Pages 完整指南<br>本文详细介绍了如何使用Hexo框架搭建一个个人博客,并将其部署到GitHub Pages和Cloudflare Pages上。主要内容包括:</p><p>环境准备:安装Node.js和Git<br>配置Git和GitHub:设置SSH密钥,创建GitHub仓库<br>初始化Hexo项目:安装Hexo,创建新博客<br>部署到GitHub Pages:配置部署设置,推送静态文件<br>部署到Cloudflare Pages:连接GitHub仓库,自动部署<br>基本使用方法:创建新文章,本地预览,发布更新<br>这个教程适合那些想要快速搭建个人博客,但又不想花费太多成本的人。通过使用Hexo、GitHub和Cloudflare的免费服务,您可以轻松创建一个高效、简洁的博客网站。</p><p>1.事前准备<br>域名(非必须,你也可以使用免费域名,或者GitHub.io或Pages.dev分配的域名也可以)<br>GitHub(必须,你需要注册一个GitHub帐号)<br>Cloudflare(非必须,你需要注册一个Cloudflare帐号,这样你就可以将博客部署在CF的CDN里加速,但是你也可以直接使用GitHub.io分配的域名)<br>2.软件支持<br>Node(必须)<br>Git(必须)<br>VSCode(非必须,这是一款轻量型的代码编辑器,可以帮助你养成一个很好的编程习惯)<br>2.1.安装 Node<br>打开Node官网,下载和自己系统相配的Node的安装程序,否则会出现安装问题。下载地址:<a href="https://nodejs.org/en">https://nodejs.org/en</a><br>下载后安装,安装的目录可以使用默认目录C:/Program Files/nodejs/<br>安装完成后,检查是否安装成功。在键盘按下win + R键,输入CMD,然后回车,打开CMD窗口,执行node -v命令,看到版本信息,则说明安装成功。<br>2.1.3.安装 Node<br>修改npm源。npm下载各种模块,默认是从国处服务器下载,速度较慢,建议配置成华为云镜像源。打开CMD窗口,运行如下命令:<br>npm config set registry <a href="https://mirrors.huaweicloud.com/repository/npm/">https://mirrors.huaweicloud.com/repository/npm/</a><br>2.2.安装 Git<br>进入官网下载适合你当前系统的 Git:<a href="https://git-scm.com/downloads">https://git-scm.com/downloads</a><br>2.2.1.安装 Git<br>下载后傻瓜式安装Git即可,安装的目录最好使用默认目录C:/Program Files/Git<br>点击电脑左下角开始即可看见Git CMD、Git Bash、Git GUI。<br>Git CMD 是windows 命令行的指令风格<br>Git Bash 是linux系统的指令风格(建议使用)<br>Git GUI是图形化界面(新手学习不建议使用)<br>3.配置 Git 密钥并连接至 Github<br>常用 Git 命令</p><p>git config -l //查看所有配置<br>git config –system –list //查看系统配置<br>git config –global –list //查看用户(全局)配置<br>启动Git</p><p>3.1. 配置用户名和邮箱<br>git config –global user.name “你的用户名”<br>git config –global user.email “你的邮箱”<br>通过git config -l 检查是否配置成功。<br>3.1. 配置用户名和邮箱</p><p>3.2. 配置公钥连接Github<br>执行以下命令生成ssh公钥,此公钥用于你的计算机连接Github<br>ssh-keygen -t rsa -C “你的邮箱”<br>提示Enter file in which to save the key直接一路回车即可,新手小白不推荐设置密钥<br>3.2.1.1<br>之后打开C盘下用户文件夹下的.ssh的文件夹,会看到以下文件<br>id_rsa私钥<br>id_rsa.pub公钥<br>3.2.1.2<br>用记事本打开上述图片中的公钥id_rsa.pub,复制里面的内容,然后开始在github中配置ssh密钥。<br>3.2.1.3<br>将 SSH KEY 配置到 GitHub<br>进入github,点击右上角头像 选择settings,进入设置页后选择 SSH and GPG keys,名字随便起,公钥填到Key那一栏。<br>3.2.2.1<br>3.2.2.2<br>3.2.2.3<br>3.2.2.4<br>测试连接,输入以下命令<br>ssh -T <a href="mailto:git@github.com">git@github.com</a><br>第一次连接会提示Are you sure you want to continue connecting (yes/no/[fingerprint])?,输入yes即可<br>3.2.3.1<br>出现连接到账户的信息,说明已经大功告成,至此完成了环境准备工作。<br>3.2.3.2<br>3.3. 创建GitHub.io仓库<br>点击右上角的+按钮,选择New repository,创建一个<用户名>.github.io的仓库。<br>仓库名字的格式必须为:<用户名>.github.io (注意:前缀必须为用户名,此为预览博客需要,后期可修改仓库名)<br>可见性必须选择 Public 方便第一次部署检查问题,点击 Creat repository 进行创建即可<br>3.3. 创建GitHub.io仓库<br>4.初始化 Hexo 博客<br>创建一个文件夹来保存博客源码(我这里选的路径为D:/Hexo-Blog),在文件夹内右键鼠标,选择Open Git Bash here<br>4.1<br>在Git BASH输入如下命令安装 Hexo<br>npm install -g hexo-cli && hexo -v<br>4.2<br>安装完后输入hexo -v验证是否安装成功。<br>4.3<br>初始化 Hexo 项目安装相关依赖。<br>hexo init blog-demo<br>cd blog-demo<br>npm i<br>4.4<br>初始化项目后,blog-demo有如下结构:<br>4.5<br>node_modules:依赖包<br>scaffolds:生成文章的一些模板<br>source:用来存放你的文章<br>themes:主题<br>.npmignore:发布时忽略的文件(可忽略)<br>_config.landscape.yml:主题的配置文件<br>config.yml:博客的配置文件<br>package.json:项目名称、描述、版本、运行和开发等信<br>输入hexo cl && hexo s启动项目<br>4.6<br>打开浏览器,输入地址:<a href="http://localhost:4000/">http://localhost:4000/</a> ,看到下面的效果,说明你的博客已经构建成功了。<br>4.7<br>5.将静态博客挂载到 GitHub Pages<br>安装 hexo-deployer-git<br>npm install hexo-deployer-git –save<br>修改 _config.yml 文件<br>在blog-demo目录下的_config.yml,就是整个Hexo框架的配置文件了。可以在里面修改大部分的配置。详细可参考官方的配置描述。<br>修改最后一行的配置,将repository修改为你自己的github项目地址即可,还有分支要改为main代表主分支(注意缩进)。<br>deploy:<br> type: git<br> repository: <a href="mailto:git@github.com">git@github.com</a>:cmliussss2024/cmliussss2024.github.io.git<br> branch: main<br>修改好配置后,运行如下命令,将代码部署到 GitHub(Hexo三连)。<br>// Git BASH终端<br>hexo clean && hexo generate && hexo deploy </p><p>// 或者</p><p>// VSCODE终端<br>hexo cl; hexo g; hexo d<br>hexo clean:删除之前生成的文件,可以用hexo cl缩写。<br>hexo generate:生成静态文章,可以用hexo g缩写<br>hexo deploy:部署文章,可以用hexo d缩写<br>5.3.1<br>注意:deploy时可能要你输入 username 和 password。<br>如果出现Deploy done,则说明部署成功了。<br>5.3.2<br>稍等两分钟,打开浏览器访问:<a href="https://cmliussss2024.github.io/">https://cmliussss2024.github.io</a> ,这时候我们就可以看到博客内容了。<br>5.3.3</p><p>6.将静态博客挂载到 Cloudflare Pages<br>在 Workers 和 Pages 中选择 Pages 的 连接到 Git<br>6.1.1<br>6.1.2</p><p>然后登录你Blog仓库对应的GitHub帐号<br>6.2.1<br>6.2.2</p><p>点击保存并部署后等待部署完成即可。<br>6.3</p><p>提示成功!您的项目已部署到以下区域:全球后,浏览器访问:<a href="https://cmliussss2024-github-io.pages.dev/">https://cmliussss2024-github-io.pages.dev</a> ,这时候我们就可以看到博客内容了。<br>6.4<br>这时你也就可以将你的<用户名>.github.io的仓库设置为Private私库了</p><p>如果你有自己的域名,你可以在这里绑定你自己的自定义域,即可<br>6.5</p><p>如何使用<br>新建一篇博文<br>hexo new 这是一篇新的博文<br>然后用文本编辑器去编辑_posts/这是一篇新的博文.md里的内容即可,注意要使用Markdown格式书写。<br>详细使用方法可以查阅 <a href="https://hexo.io/zh-cn/docs/writing">https://hexo.io/zh-cn/docs/writing</a></p><p>编辑完文章保存后可以使用如下命令,生成本地页面 <a href="http://localhost:4000/">http://localhost:4000/</a> ,进行预览<br>// Git BASH终端<br>hexo cl && hexo s</p><p>// 或者</p><p>// VSCODE终端<br>hexo cl; hexo s<br>确认无误后使用以下命令,将本地文章推送至GitHub仓库即可<br>// Git BASH终端<br>hexo cl && hexo g && hexo d</p><p>// 或者</p><p>// VSCODE终端<br>hexo cl; hexo g; hexo d<br>下一期会讲讲进阶的使用方法,主题美化</p><p>VSCODE 终端首次执行报错<br>使用管理员身份打开 powershell ,输入以下命令</p><p>Set-ExecutionPolicy RemoteSigned<br>参考资料<br><a href="https://hexo.io/zh-cn/">https://hexo.io/zh-cn/</a><br><a href="https://www.fomal.cc/posts/e593433d.html">https://www.fomal.cc/posts/e593433d.html</a><br><a href="https://docs.anheyu.com/">https://docs.anheyu.com/</a></p><p>致谢项目<br><a href="https://github.com/hexojs/hexo">https://github.com/hexojs/hexo</a></p>]]></content>
<categories>
<category> 必看精选 </category>
</categories>
<tags>
<tag> VPS </tag>
<tag> BLog </tag>
</tags>
</entry>
<entry>
<title>WWZ.iM | The new domain name is the abbreviation of wangwenzhi, im means my own, and the combination is wangwenzhi myself, even if wwz.im</title>
<link href="/article/wwz.im/"/>
<url>/article/wwz.im/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/wwz.im.png"></p><h1 id="https-www-wwz-im"><a href="#https-www-wwz-im" class="headerlink" title="https://www.wwz.im/"></a><a href="https://www.wwz.im/">https://www.wwz.im/</a></h1><h1 id="wwz-im"><a href="#wwz-im" class="headerlink" title="wwz.im"></a><a href="https://www.wwz.im/">wwz.im</a></h1><h2 id="wangwenzhi-is-new-domain-name-wwz-im"><a href="#wangwenzhi-is-new-domain-name-wwz-im" class="headerlink" title="wangwenzhi is new domain name wwz.im"></a>wangwenzhi is new domain name wwz.im</h2><p>The new domain name is the abbreviation of wangwenzhi, im means my own, and the combination is wangwenzhi myself, even if wwz.im</p>]]></content>
<categories>
<category> VPS </category>
</categories>
<tags>
<tag> 科学上网 </tag>
</tags>
</entry>
<entry>
<title>VPS[CentOS]中安装 ZeroTier | Install ZeroTier in VPS [CentOS]</title>
<link href="/article/ZeroTier/"/>
<url>/article/ZeroTier/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/ZeroTier.png"></p><ol><li><p>使用以下命令下载 ZeroTier 安装脚本:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -s https://install.zerotier.com | bash</span><br></pre></td></tr></table></figure></li><li><p>安装完成后,使用以下命令启动 ZeroTier 服务:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">systemctl start zerotier-one</span><br></pre></td></tr></table></figure></li><li><p>可以使用以下命令检查 ZeroTier 服务是否已经启动:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">systemctl status zerotier-one</span><br></pre></td></tr></table></figure><p> 如果服务已经启动,则可以看到类似以下的输出:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">● zerotier-one.service - ZeroTier One</span><br><span class="line"> Loaded: loaded (/usr/lib/systemd/system/zerotier-one.service; enabled; vendor preset: disabled)</span><br><span class="line"> Active: active (running) since Tue 2021-09-28 11:02:14 EDT; 2s ago</span><br><span class="line"> Main PID: 16398 (zerotier-one)</span><br><span class="line"> Tasks: 14 (limit: 4887)</span><br><span class="line"> Memory: 9.7M</span><br><span class="line"> CPU: 148ms</span><br><span class="line"> CGroup: /system.slice/zerotier-one.service</span><br><span class="line"> └─16398 /sbin/zerotier-one</span><br><span class="line"></span><br></pre></td></tr></table></figure></li><li><p>如果需要在系统启动时自动启动 ZeroTier 服务,可以使用以下命令将其设置为开机自启:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">systemctl enable zerotier-one</span><br></pre></td></tr></table></figure></li><li><p>配置完成后,可以在 ZeroTier 官网注册账号并创建网络。在创建网络时,会分配一个网络 ID,将该 ID 添加到 ZeroTier 客户端即可加入该网络。例如:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">zerotier-cli join 1c33c1ced02dd878</span><br></pre></td></tr></table></figure><p> 其中,**<code>NETWORK_ID</code>** 是从 ZeroTier 网络控制台获取的网络 ID。</p></li></ol><p>希望这些步骤可以帮助你在 CentOS 上安装并使用 ZeroTier。</p><h1 id="ZeroTier-Global-Area-Networking"><a href="#ZeroTier-Global-Area-Networking" class="headerlink" title="ZeroTier | Global Area Networking"></a><a href="https://www.zerotier.com/">ZeroTier | Global Area Networking</a></h1><h1 id="配置一个代理服务"><a href="#配置一个代理服务" class="headerlink" title="配置一个代理服务"></a>配置一个代理服务</h1><h2 id="服务端配置"><a href="#服务端配置" class="headerlink" title="服务端配置"></a>服务端配置</h2><p>配置一个代理服务通常包括以下几个步骤:</p><ol><li><p>选择代理服务软件。根据需要选择一个适合的代理服务软件。常见的代理服务软件有 Squid、Nginx、Shadowsocks 等。这里以 Squid 为例。</p></li><li><p>安装代理服务软件。在 Linux 系统中,可以使用包管理工具安装 Squid。例如,在 Ubuntu 系统中,可以使用以下命令安装 Squid:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo apt-get update</span><br></pre></td></tr></table></figure> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo apt-get install squid</span><br></pre></td></tr></table></figure><p> 在 Windows 系统中,可以从 Squid 官网下载 Squid for Windows,然后进行安装。</p></li><li><p>修改 Squid 配置文件。在 Linux 系统中,Squid 配置文件通常位于 **<code>/etc/squid/squid.conf</code>**,可以使用文本编辑器打开该文件。在 Windows 系统中,Squid 配置文件通常位于 **<code>squid.conf</code>**,可以使用文本编辑器打开该文件。</p><p> 需要修改的配置项主要包括监听端口、允许访问的网络等。例如,以下是一个简单的配置文件示例:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">http_port 3128</span><br><span class="line">acl localnet src 192.168.0.0/16</span><br><span class="line">http_access allow localnet</span><br></pre></td></tr></table></figure><p> 在该配置文件中,**<code>http_port</code>** 指定了 Squid 监听的端口号,**<code>acl localnet</code>** 指定了允许访问的网络,**<code>http_access allow localnet</code>** 指定了允许该网络的流量访问 Squid。</p></li><li><p>启动代理服务。在 Linux 系统中,可以使用以下命令启动 Squid:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo systemctl start squid</span><br></pre></td></tr></table></figure><p> 在 Windows 系统中,可以在服务管理器中启动 Squid。</p></li><li><p>配置代理客户端。在需要使用代理服务的设备上,配置代理客户端将流量转发到代理服务器。具体配置方法可以参考代理客户端的官方文档或者相关教程。</p><p> 以浏览器为例,可以在浏览器的设置中设置代理服务器地址和端口,将流量通过代理服务器进行访问。</p></li></ol><p>希望这些步骤可以帮助你简单配置一个代理服务。</p>]]></content>
<categories>
<category> VPS </category>
</categories>
<tags>
<tag> 科学上网 </tag>
</tags>
</entry>
<entry>
<title>Armor 27T Pro | Introducing Ulefone Armor 27T Pro FLIR Thermal Pro with IR Night Vision</title>
<link href="/article/Armor-27-Pro/"/>
<url>/article/Armor-27-Pro/</url>
<content type="html"><![CDATA[<div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/aW8FSVuJY7U" title="Introducing Ulefone Armor 27T Pro: FLIR Thermal Pro with IR Night Vision" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><style>.video-container { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}</style><h3 id="基本信息:"><a href="#基本信息:" class="headerlink" title="基本信息:"></a><strong>基本信息:</strong></h3><p>型号: Armor 27T Pro</p><p>Slogan: Lead the Thermal and Night Vision</p><p>颜色: Black</p><p><strong>810H ICON</strong></p><p><strong>IP68/IP69K ICON</strong></p><h3 id="参数:"><a href="#参数:" class="headerlink" title="参数:"></a><strong>参数:</strong></h3><table><thead><tr><th>Dimensions</th><th>182.8 x 86.8 x 18.5 mm</th></tr></thead><tbody><tr><td>Screen</td><td>6.78” FHD+</td></tr><tr><td>1080 x 2460 Resolution</td><td></td></tr><tr><td>120Hz Refresh Rate</td><td></td></tr><tr><td>Processor</td><td>MediaTek Dimensity 6300 5G</td></tr><tr><td>Memory</td><td>12GB RAM LPDDR4X + 12GB Virtual Memory, 256GB ROM UFS2.2</td></tr><tr><td>Rear Camera</td><td>50MP Main Camera</td></tr><tr><td>64MP Infrared Night Vision Camera</td><td></td></tr><tr><td>Front Camera</td><td>32MP</td></tr><tr><td>Battery</td><td>10600mAh Mega Battery</td></tr><tr><td>33W Fast Charging</td><td></td></tr><tr><td>30W Fast Wireless Charging</td><td></td></tr><tr><td>Network</td><td>GSM: B2/3/5/8</td></tr></tbody></table><p>CDMA: BC0/BC1/BC10<br>WCDMA: B1/2/4/5/6/8/19</p><p>LTE-FDD: B1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28A/28B/66/71</p><p>LTE-TDD: B34/38/39/40/41</p><p>5G NR Sub6: N1/2/3/5/7/8/20/25/28/38/40/41/66/71/77/78/79 |<br>| OS | Android 14 |<br>| Differentiation | IP69K/IP68/MIL-STD-810H Certified<br>Thermal by FLIR 2.5<br>IR Blaster<br>uSmart Expansion Connector 2.0<br>Wireless Reverse Charging<br>Custom Key<br>Outdoor Toolbox<br>-30℃ Low-temperature Solid-state Battery |<br>| Others | Face Unlock + Fingerprint ID<br>NFC |</p><div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/0rq2djvKK30" title="Ulefone Armor 27T Pro Unboxing: Unveil the FLIR Thermal Rugged Flagship" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/-i8w3jB6h68" title="Ulefone Armor 27T Pro: Built-in FLIR Thermal Camera Showcase | Thermal by FLIR" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/vz4g1U0ymPI" title="Ulefone Armor 27T Pro & 27 Pro: 10600mAh Battery & Fast Charging Test" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/tSJOXCfrmgw" title="Ulefone Armor 27 Series Accessories Showcase: Full Potential Unleashed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>]]></content>
<categories>
<category> 工作记录 </category>
</categories>
<tags>
<tag> 视频制作 </tag>
<tag> 工作记录 </tag>
</tags>
</entry>
<entry>
<title>Armor 25T Series | Introducing Ulefone Armor 25T Series Thermal Imaging Turbo Meets Night Vision</title>
<link href="/article/Armor-25-Pro/"/>
<url>/article/Armor-25-Pro/</url>
<content type="html"><![CDATA[<div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/qxv4TvhDiAw" title="Introducing Ulefone Armor 25T Series: Thermal Imaging Turbo Meets Night Vision" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><style>.video-container { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}</style><div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/JfSQEcsS7bs" title="Ulefone Armor 25T Pro Coming Soon! | Enhanced Thermal Imaging by ThermoVue" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/K4-l0GDIPjY" title="Ulefone Armor 25T Pro: Built-in Thermal Camera Showcase" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/FC9a2gDJK-Y" title="Ulefone Armor 25T Pro First Hands-On - Thermal Imaging Meets IR Night Vision!" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/U7lAUjhyfqw" title="Ulefone Armor 25T Series Camera Test | Mega 1.31" Main Camera" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>]]></content>
<categories>
<category> 工作记录 </category>
</categories>
<tags>
<tag> 视频制作 </tag>
<tag> 工作记录 </tag>
</tags>
</entry>
<entry>
<title>Armor 26 Ultra | Meet Ulefone Armor 26 Ultra Walkie-Talkie Version 5G Rugged Flagship with DMR Radio!</title>
<link href="/article/Armor-26-Ultra/"/>
<url>/article/Armor-26-Ultra/</url>
<content type="html"><![CDATA[<div class="video-container"><iframe width="560" height="315" src="https://www.youtube.com/embed/RqlAdzTxQbE?si=AiVGg71xy9w771Hy" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><style>.video-container { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}</style><h2 id="📎-资料"><a href="#📎-资料" class="headerlink" title="📎 资料"></a>📎 资料</h2><p><a href="https://prod-files-secure.s3.us-west-2.amazonaws.com/8de6dcdf-172b-4660-80ec-06dcd4abe7e5/edbb099f-0eda-4bb9-a7c4-3f90c537f5a5/Armor_26_Ultra%E5%88%86%E9%95%9C.pdf">Armor 26 Ultra分镜.pdf</a></p><h3 id="基本信息:"><a href="#基本信息:" class="headerlink" title="基本信息:"></a><strong>基本信息:</strong></h3><p>型号: Armor 26 Ultra</p><p>颜色: Black</p><p><strong>810H ICON</strong></p><p><strong>IP68/IP69K ICON</strong></p><div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/Y2yPBSYQkfw" title="Introducing Ulefone Armor 26 Ultra - Mega Performance 5G Rugged Flagship" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><div class="video-container"><iframe width="853" height="480" src="https://www.youtube.com/embed/bLd1gKBtzAY" title="Ulefone Armor 26 Ultra First Look - Ultra Flagship Design" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>]]></content>
<categories>
<category> 工作记录 </category>
</categories>
<tags>
<tag> 视频制作 </tag>
<tag> 工作记录 </tag>
</tags>
</entry>
<entry>
<title>Armor Pad 3 Pro | Introducing Ulefone Armor Pad 3 Pro - 33280mAh Battery Flagship Rugged Tablet!</title>
<link href="/article/Armor-Pad-3-Pro/"/>
<url>/article/Armor-Pad-3-Pro/</url>
<content type="html"><![CDATA[<div class="video-container"><iframe width="560" height="315" src="https://www.youtube.com/embed/h8ZVScdsWGc?si=0Eh5us9tiHVMCXcn" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><style>.video-container { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}</style>]]></content>
<categories>
<category> 工作记录 </category>
</categories>
<tags>
<tag> 视频制作 </tag>
<tag> 工作记录 </tag>
</tags>
</entry>
<entry>
<title>CorelDRAW(CDR) Graphics Suite 2023 24.5.0.731 学习版 | WWZ.iM | CorelDRAW Graphics Suite 是加拿大 Corel 公司的平面设计软件;该软件是 Corel 公司出品的矢量图形制作工具软件,这个图形工具给设计师提供了矢量动画、页面设计、网站制作、位图编辑和网页动画等多种功能。</title>
<link href="/article/CorelDRAW/"/>
<url>/article/CorelDRAW/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/CorelDRAW.png"></p><h1 id="CorelDRAW-CDR-Graphics-Suite-2023-24-5-0-731-学习版-WWZ-iM"><a href="#CorelDRAW-CDR-Graphics-Suite-2023-24-5-0-731-学习版-WWZ-iM" class="headerlink" title="CorelDRAW(CDR) Graphics Suite 2023 24.5.0.731 学习版 | WWZ.iM"></a>CorelDRAW(CDR) Graphics Suite 2023 24.5.0.731 学习版 | WWZ.iM</h1><hr><h3 id="直接下载"><a href="#直接下载" class="headerlink" title="# 直接下载"></a># <a href="https://github.com/wangwenzhiwwz/file/releases/download/video/CorelDRAWGraphicsSuite-2023-24.5.0.731-CN-Re.ack.exe">直接下载</a></h3><hr><aside> 😀 **CorelDRAW Graphics Suite 2023 24.5.0.731 学习版**</aside><p><img src="https://wangwenzhi.eu.org/images/images/CorelDRAW.png" alt="Untitled"></p><h1 id="简介"><a href="#简介" class="headerlink" title="简介"></a><strong>简介</strong></h1><p>CorelDRAW Graphics Suite 是加拿大 Corel 公司的平面设计软件;该软件是 Corel 公司出品的矢量图形制作工具软件,这个图形工具给设计师提供了矢量动画、页面设计、网站制作、位图编辑和网页动画等多种功能。</p><p>该图像软件是一套屡获殊荣的图形、图像编辑软件,它包含两个绘图应用程序:一个用于矢量图及页面设计,一个用于图像编辑。这套绘图软件组合带给用户强大的交互式工具,使用户可创作出多种富于动感的特殊效果及点阵图像即时效果在简单的操作中就可得到实现——而不会丢失当前的工作。通过 Coreldraw 的全方位的设计及网页功能可以融合到用户现有的设计方案中,灵活性十足。</p><h1 id="闪退解决方法"><a href="#闪退解决方法" class="headerlink" title="闪退解决方法"></a><strong>闪退解决方法</strong></h1><p>把系统时间设置成 2023 年 7 月 13 日安装成功,然后运行一次,设置好防火墙后,再把系统时间改回来即可。</p><h1 id="下载"><a href="#下载" class="headerlink" title="下载"></a><strong>下载</strong></h1><p><a href="https://www.nite07.com/download/index.html?f=CorelDRAW-Graphics-Suite-2022-24.5.0.731.zip">24.5.0.731 安装版</a></p><p><a href="https://www.nite07.com/download/index.html?f=CorelDRAWGraphicsSuite-2023-24.5.0.731-CN-Re%D1%80ack.exe">24.5.0.731 直装版(Repack)</a></p><h1 id="直接下载-1"><a href="#直接下载-1" class="headerlink" title="直接下载"></a><a href="https://github.com/wangwenzhiwwz/file/releases/download/video/CorelDRAWGraphicsSuite-2023-24.5.0.731-CN-Re.ack.exe">直接下载</a></h1>]]></content>
<categories>
<category> 热门文章 </category>
</categories>
<tags>
<tag> 软件 </tag>
<tag> 分享 </tag>
</tags>
</entry>
<entry>
<title>达芬奇调色19DaVinci Resolve 19 | WWZ.iM | DaVinci Resolve汇集剪辑、调色、视觉特效、动态图形和音频后期制作工具</title>
<link href="/article/DaVinciResolve/"/>
<url>/article/DaVinciResolve/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/DaVinciResolve.jpg"></p><h1 id="达芬奇调色-DaVinci-Resolve"><a href="#达芬奇调色-DaVinci-Resolve" class="headerlink" title="达芬奇调色 DaVinci Resolve"></a>达芬奇调色 DaVinci Resolve</h1><hr><p><a href="https://prod-files-secure.s3.us-west-2.amazonaws.com/8de6dcdf-172b-4660-80ec-06dcd4abe7e5/ccde16c9-2fbc-4bd4-8cff-eb296dd5ae82/Resolve_18.6.2_for_Mac_%E7%A0%B4%E8%A7%A3%E6%96%B9%E6%B3%95.rtf">Resolve 18.6.2 for Mac 破解方法.rtf</a></p><hr><p><img src="https://wangwenzhi.eu.org/images/images/DaVinciResolveShortcutKeys.jpg" alt="达芬奇快捷键.jpg"></p><ol><li>下载并安装正版的DaVinci Resolve Studio 19.0b5</li></ol><p>下载地址(不需要填写信息,点击左下解“跳过注册直接下载”即可下载):<a href="http://www.blackmagicdesign.com/support/download/03ddc3eff95e45ea88eb459061acaf06/Windows">http://www.blackmagicdesign.com/support/download/03ddc3eff95e45ea88eb459061acaf06/Windows</a></p><ol><li>复制Patch文件夹中的所有文件到安装目录替换,默认如下:C:\Program Files\Blackmagic Design\DaVinci Resolve</li><li>复制“ProgramData”到C盘根目录替换。</li></ol><p>注:如果你之前安装过达芬奇,那么这一步其实可以跳过。</p><ol><li>完成。Enjoy~</li></ol><p>低调使用,不要分享;如果你一定要分享,那么请把和我相关的信息删除再分享,谢谢你大爷!</p><h3 id="显示"><a href="#显示" class="headerlink" title="显示"></a><strong>显示</strong></h3><blockquote><p><strong>放大 Ctrl+ +</strong></p><p><strong>缩小 Ctrl+ -</strong></p><p><strong>适配缩放Shift+Z</strong></p></blockquote><h3 id="调色"><a href="#调色" class="headerlink" title="调色"></a><strong>调色</strong></h3><blockquote><p><strong>在当前节点前添加串行节点 Shift+S</strong></p><p><strong>添加图层节点 Alt+L</strong></p><p><strong>添加外部节点 Alt+O</strong></p><p><strong>添加并行节点 Alt+P</strong></p><p><strong>附加节点 Alt+K</strong></p><p><strong>添加调色版本 Ctrl+Y</strong></p><p><strong>重置已选节点的调色 Shift+Home</strong></p><p><strong>重置所有调色和节点 Ctrl+Home</strong></p><p><strong>重置调色并保留节点 Ctrl+Shift+Home</strong></p></blockquote><h3 id="工作区"><a href="#工作区" class="headerlink" title="工作区"></a><strong>工作区</strong></h3><blockquote><p>增强模式检视器 Alt+F</p><p>影院模式检视器 Ctrl+F,P</p><p>页面全屏检视器 Shift+F</p><p>活动面板选择媒体文件夹 Ctrl+1</p><p>活动面板选择媒体片段 Ctrl+2</p><p>活动面板选择时间线 Ctrl+4</p><p>活动面板选择时间线检视器 Ctrl+5</p><p>活动面板选择检查器 Ctrl+9</p><p>活动面板选择源片段检视器 Ctrl+3</p><p>活动面板选择特效库 Ctrl+6</p><p>活动面板选择编辑索引 Ctrl+7</p></blockquote><h1 id="简介"><a href="#简介" class="headerlink" title="简介"></a><strong>简介</strong></h1><p>达芬奇调色软件 DaVinci Resolve Studio 16 中文版 是 Blackmagic Design 旗下一款著名的调色软件,也是世界上唯一一款将专业 8K 编辑,色彩校正,视觉效果和音频后期制作功能集于一身影视后期处理软件,它能随意的在编辑,颜色,效果和音频之间即时切换,具有简化的界面和革命性的新工具,可帮助您比以往更快地完成工作。</p><p><a href="https://prod-files-secure.s3.us-west-2.amazonaws.com/8de6dcdf-172b-4660-80ec-06dcd4abe7e5/ccde16c9-2fbc-4bd4-8cff-eb296dd5ae82/Resolve_18.6.2_for_Mac_%E7%A0%B4%E8%A7%A3%E6%96%B9%E6%B3%95.rtf">Resolve 18.6.2 for Mac 破解方法.rtf</a></p>]]></content>
<categories>
<category> 热门文章 </category>
</categories>
<tags>
<tag> 软件 </tag>
<tag> 推荐 </tag>
<tag> BLog </tag>
</tags>
</entry>
<entry>
<title>Armor 23 Ultra | Introducing the Ulefone Armor 23 Ultra - Flagship Rugged with Satellite Communication</title>
<link href="/article/Armor-23-Ultra/"/>
<url>/article/Armor-23-Ultra/</url>
<content type="html"><![CDATA[<div class="video-container"><iframe width="560" height="315" src="https://www.youtube.com/embed/ynM2jFYncnE?si=jRneCkPSwdGH3qSI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><style>.video-container { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}</style><div class="video-container"><iframe width="703" height="395" src="https://www.youtube.com/embed/slLKqvrhe-0" title="How to Guarantee Ulefone Armor 23 Ultra Quality? | Reliability Test" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><div class="video-container"><iframe width="703" height="395" src="https://www.youtube.com/embed/s2r79Mvbad4" title="Ulefone Armor 23 Ultra Camera Performance | 50MP + 50MP + 64MP + 3.2x Optical Zoom" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>]]></content>
<categories>
<category> 工作记录 </category>
</categories>
<tags>
<tag> 视频制作 </tag>
<tag> 工作记录 </tag>
</tags>
</entry>
<entry>
<title>Internet Download Manager (iDM)| WWZ.iM | IDM 下载</title>
<link href="/article/IDM/"/>
<url>/article/IDM/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/IDM.png"></p><h1 id="Internet-Download-Manager-iDM-WWZ-iM"><a href="#Internet-Download-Manager-iDM-WWZ-iM" class="headerlink" title="Internet Download Manager (iDM)| WWZ.iM"></a>Internet Download Manager (iDM)| WWZ.iM</h1><hr><h2 id="点击下载"><a href="#点击下载" class="headerlink" title="点击下载"></a><a href="https://github.com/wangwenzhiwwz/file/releases/download/%E4%B8%8B%E8%BD%BD/internet_download_manager_6.42.2.zip"><strong>点击下载</strong></a></h2><hr><h3 id="Internet-Download-Manager-6-42-2-Repack"><a href="#Internet-Download-Manager-6-42-2-Repack" class="headerlink" title="Internet Download Manager 6.42.2 (Repack)"></a>Internet Download Manager 6.42.2 (Repack)</h3><p><a href="https://lrepacks.net/repaki-programm-dlya-interneta/56-internet-download-manager-repack.html">Internet Download Manager 6.42.2 (Repack) » Авторские репаки от ELCHUPACABRA - REPACK скачать</a></p><p><img src="https://lrepacks.net/uploads/posts/2023-02/medium/internet_download_manager.jpg" alt="https://lrepacks.net/uploads/posts/2023-02/medium/internet_download_manager.jpg"></p><p><strong>Internet Download Manager(Repack)</strong> - это программа предназначена для организации загрузок файлов из Интернет. Различные методы ускорения загрузки, динамическая сегментация файлов и одновременное скачивание нескольких частей, использование свободных открытых подключений без реконнекта и многое другое. Встроенная звонилка для соединения по расписанию, поддержка файрволлов, прокси и зеркал, FTP and HTTP protocols, редиректов, куки, очередей закачки, авторизации пользователя.</p><p>Интегрируется в Microsoft Internet Explorer, Netscape, MSN Explorer, AOL, Opera, Mozilla, Mozilla Firefox, Mozilla Firebird, Avant Browser, MyIE2 и т.д. и автоматически перехватывает закачки. Зачастую увеличивает скорость скачивания на 500%. На странице программы есть диаграммы тестов с другими менеджерами закачек.</p><p>Кроме того, позволяет загружать видео контент (FLV) с таких сервисов, как YouTube, Google Video, MySpaceTV.</p><p><strong>MOD Glyfz 2016</strong></p><p><img src="https://lrepacks.net/uploads/posts/2019-06/medium/1561719530_idm_glyfz.jpg" alt="https://lrepacks.net/uploads/posts/2019-06/medium/1561719530_idm_glyfz.jpg"></p><p><strong>MOD iOS Line</strong></p><p><img src="https://lrepacks.net/uploads/posts/2019-06/medium/1561719506_idm_ios_line.jpg" alt="https://lrepacks.net/uploads/posts/2019-06/medium/1561719506_idm_ios_line.jpg"></p><p><strong>MOD Windows 10</strong></p><p><img src="https://lrepacks.net/uploads/posts/2019-06/medium/1561719393_idm_w10.jpg" alt="https://lrepacks.net/uploads/posts/2019-06/medium/1561719393_idm_w10.jpg"></p><p><strong>Особенности репака Internet Download Manager:</strong></p><ol><li>Не требует регистрации (патч pawel97 + keygen ADMIN@CRACK)</li><li>Мультиязычный интерфейс (включая русский)</li><li>Опционная установка 35 дополнительных панелей инструментов</li><li>Опционная установка IDM Backup Manager</li><li>Выбор при установке некоторых опций программы:Запускать IDM при загрузке компьютераЗапускать модуль контроля IE-браузеровПоказывать категории</li><li>Небольшая правка меню программы</li><li>Возможность установки модификаций Glyfz 2016, iOS Line, Windows 10 (помимо дополнительной панели инструментов, изменяются значки категорий, значки диалогов и основной значок программы)</li><li>Подхватывает настройки из внешнего файла settings.reg</li><li>Возможность подхвата и автокопирования пользовательских панелей инструментов из папки toolbars, если таковая находится рядом во время установки, а также возможен автозапуск файла toolbars.exe, который может содержать пользовательские панели в sfx-архиве.</li><li>Помимо установки, предусмотрен режим “Обновление”, в котором происходит исключительно распаковка файлов новой версии, БЕЗ каких-либо дополнительных действий установщика, изменения пользовательских настроек, записей в реестр (за исключением нескольких ключей с номером обновляемой версии), установки дополнительных компонентов.</li></ol><p><strong>Общая <a href="https://www.internetdownloadmanager.com/register/new_faq/bi_main.cgi">инструкция</a> по интеграции в браузеры на сайте разработчика.</strong></p><p><a href="https://chrome.google.com/webstore/detail/idm-integration-module/ngpampappnmepgilojfohadhhmbhlaek">**Расширение</a> IDM Integration Module в интернет-магазина Сhrome.**</p><p><strong>Тёмной темы в версии 6.3x.x - НЕТ! Есть поддержка тёмного режима Windows 10/11.</strong></p><p><strong>ВНИМАНИЕ!!! Возможен ЛОЖНЫЙ детект антивирусов на репак по жалобе правообладателя</strong>.</p><p>Предыдущие версии</p><p><em><strong>Системные требования: Windows XP/7/8/8.1/10/11</strong></em></p><p><em><strong>Размер файла: 16,1Mb</strong></em></p><p><em><strong>Посетить: <a href="https://www.internetdownloadmanager.com/">ОФИЦИАЛЬНЫЙ САЙТ</a></strong></em></p><p><em><strong>Скачать Internet Download Manager 6.42.2 (Repack): <a href="https://oxy.cloud/d/cnth">с OxyCloud</a></strong></em></p><p><em><strong>Скачать Internet Download Manager 6.42.2 (Repack): <a href="https://turbo.to/a5epurpivjqg.html">с Turbobit</a></strong></em></p><p><em><strong>Скачать Internet Download Manager 6.42.2 (Repack): <a href="https://katfile.com/ussy0br6co6n">с Katfile</a></strong></em></p><h2 id="点击下载-1"><a href="#点击下载-1" class="headerlink" title="点击下载"></a><a href="https://github.com/wangwenzhiwwz/file/releases/download/%E4%B8%8B%E8%BD%BD/internet_download_manager_6.42.2.zip"><strong>点击下载</strong></a></h2><h2 id="共享网盘"><a href="#共享网盘" class="headerlink" title="共享网盘"></a><a href="https://alist.wwz.im/d/%E8%BD%AF%E4%BB%B6/internet_download_manager_6.42.2.zip?sign=lOGTZNvSAQIwoUJILpXcY4D1QlJV0NCpiHSoP_V_2BE=:0"><strong>共享网盘</strong></a></h2>]]></content>
<categories>
<category> 软件推荐 </category>
</categories>
<tags>
<tag> BLog </tag>
</tags>
</entry>
<entry>
<title>APKPure 纯净版 | WWZ.iM | APKPure 是由 APK Team 于 2014 年创建的智能手机软件的网站!为全球的粉丝提供更安全,更好,更快的软件下载体验,提供最全面的应用程序,游戏和历史版本列表之一。所有下载作品保证 100%不需要额外的扩展。</title>
<link href="/article/APKPure/"/>
<url>/article/APKPure/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/APKPure.png"></p><h1 id="APKPure-纯净版-WWZ-iM"><a href="#APKPure-纯净版-WWZ-iM" class="headerlink" title="APKPure 纯净版 | WWZ.iM"></a>APKPure 纯净版 | WWZ.iM</h1><hr><h1 id="直接下载"><a href="#直接下载" class="headerlink" title="直接下载"></a><a href="https://app.wwz.im/software/APKPure.apk">直接下载</a></h1><hr><p><a href="https://apkpure.com/cn/apkpure/com.apkpure.aegon/download/3.19.82?utm_content=1006&icn=aegon&ici=text_home-m&from=text_home-m">下载APKPure 3.19.82安卓版undefinedAPK</a></p><p><a href="https://apkpure.com/cn/">在APKPure使用免费在线APK下载器下载APK到安卓</a></p><p>APKPure 是由 APK Team 于 2014 年创建的智能手机软件的网站!为全球的粉丝提供更安全,更好,更快的软件下载体验,提供最全面的应用程序,游戏和历史版本列表之一。所有下载作品保证 100%不需要额外的扩展。</p><p><img src="https://image.winudf.com/v2/upload/images/apkpure_poster.jpg/image.png?fakeurl=1" alt="https://image.winudf.com/v2/upload/images/apkpure_poster.jpg/image.png?fakeurl=1"></p><ul><li><p><strong>我们的故事</strong></p><p> <a href="http://apkpure.com/">APKPure.com</a> 和 <a href="http://apkpure.net/">APKPure.net</a> 都是 APKPure 团队创立的提供智能手机软件下载的网站,现已发展成为智能手机软件行业领先的网站之一。</p></li><li><p><strong>我们的任务</strong></p><p> 为世界各地的粉丝提供更安全、更好、更快的软件下载体验。我们提供最全面的应用程序、游戏和历史版本列表集合之一。所有下载作品保证100%无需额外扩展。我们相信你们所有人都应该有更好的方式来享受移动生活。APKPure 团队随时准备帮助所有用户解决有关智能手机应用程序安装、更新等问题。</p></li><li><p><strong>重要的提醒</strong></p><p> <a href="http://apkpure.com/">APKPure.com</a> 和 <a href="http://apkpure.net/">APKPure.net</a> 与 Google、Google Play 或 Android 没有任何关联或附属关系。Android 是 Google Inc. 的商标。所有应用程序和游戏均为其各自开发商或发行商的财产和商标,仅供家庭或个人使用。请注意,<a href="http://apkpure.com/">APKPure.com</a> 和 <a href="http://apkpure.net/">APKPure.net</a> 仅共享免费应用程序的原始 APK 文件。所有 APK 文件与 GOOGLE Play 中的相同,没有任何作弊、无限黄金补丁或任何其他修改。</p></li><li><p><strong>在社交媒体上关注 APKPure</strong></p><p> <a href="https://facebook.com/apkpure">Facebook 上的</a></p><p> <a href="https://twitter.com/apkpure">APKPure Twitter 上的</a></p><p> <a href="https://www.youtube.com/channel/UCbCOKdnt1yYk4S3I4a034XQ">APKPure YouTube 上的 APKPure</a></p></li><li><p><strong>技术问题</strong></p><p> 寻找技术问题的解决方案并向我们的支持团队寻求帮助。-<a href="https://apkpure.com/cn/contact-us.html">到这里</a></p></li><li><p><strong>APKPure 网站出现问题</strong></p><p> 您在访问我们的服务或其任何功能时遇到任何问题吗?-<a href="https://apkpure.com/cn/contact-us.html">让我们知道</a></p></li><li><p><strong>其他(一般反馈、建议等)</strong></p><p> 如果您想向我们发送反馈、分享建议或表达您有多喜欢 APKPure ;) -<a href="https://apkpure.com/cn/contact-us.html">使用此表格</a></p></li></ul><h1 id="直接下载-1"><a href="#直接下载-1" class="headerlink" title="直接下载"></a><a href="https://app.wwz.im/software/APKPure.apk">直接下载</a></h1>]]></content>
<categories>
<category> 软件推荐 </category>
</categories>
<tags>
<tag> 软件 </tag>
<tag> 推荐 </tag>
</tags>
</entry>
<entry>
<title>Moo0视频转换压缩器 | WWZ.iM | Moo0视频压缩器使你以最简单的方式改变任何视频的“文件大小”或“图像大小”</title>
<link href="/article/Moo0/"/>
<url>/article/Moo0/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/Moo0.png"></p><h1 id="Moo0视频压缩器使你以最简单的方式改变任何视频的“文件大小”或“图像大小”。"><a href="#Moo0视频压缩器使你以最简单的方式改变任何视频的“文件大小”或“图像大小”。" class="headerlink" title="Moo0视频压缩器使你以最简单的方式改变任何视频的“文件大小”或“图像大小”。"></a>Moo0视频压缩器使你以最简单的方式改变任何视频的“文件大小”或“图像大小”。</h1><hr><h1 id="视频转换器-直接下载"><a href="#视频转换器-直接下载" class="headerlink" title="视频转换器 直接下载"></a><a href="https://github.com/wangwenzhiwwz/file/releases/download/%E8%A7%86%E9%A2%91%E7%BC%96%E7%A0%81/Moo0.VideoConverter.zip">视频转换器 直接下载</a></h1><hr><p><img src="https://wangwenzhi.eu.org/images/images/Moo0.png"></p><p><a href="https://zhs.moo0.com/?top=https://zhs.moo0.com/software/?top=https://zhs.moo0.com/software/VideoMinimizer//history/">Moo0 - Windows有用的免费软件 (not MooO)</a></p><h3 id="Moo0视频转换器是一款易用的视频转换器,支持大多数视频-音频格式。"><a href="#Moo0视频转换器是一款易用的视频转换器,支持大多数视频-音频格式。" class="headerlink" title="Moo0视频转换器是一款易用的视频转换器,支持大多数视频/音频格式。"></a>Moo0视频转换器是一款易用的视频转换器,支持大多数视频/音频格式。</h3><p>使用此工具,你可以转换大多数视频到其它格式,包括FLV和其它视频格式使用XviD/x264/x265解码。以下是它当前支持的格式/解码器列表。</p><p><strong>格式/解码举例:</strong></p><ul><li><p>视频格式: AVI, FLV, M4V, MKV, MOV, MP4, MPG, OGG, OGV, RM, SWF, TP, TS, WEBM, WMV和更多。</p></li><li><p>视频解码: H.263, H.264 (x264), H.265 (x265), Mpeg2, Mpeg4 (DivX, XviD和它自己的), RV10, Theora, VP8, WMV (v7, v8)和更多。</p></li><li><p>音频格式/解码: 3G2, 3GP, AAC, AC3, ADPCM, AIFF, AMR (NB, WB), AU, FLAC, GSM, M4A, MP3, MP4, OGG, PCM, RA, VORBIS, WAVE, WMA和更多。</p></li></ul><p>另外,使用此工具,你可以轻松地为手机(智能手机、iPhone等等)、iPod、PSP、Android、DVD burning、P2P文件分享等创建视频。请试用并发现它是多么容易。</p><p><a href="https://zhs.moo0.com/?top=https://zhs.moo0.com/software/VideoConverter/">Moo0 - Windows有用的免费软件 (not MooO)</a></p><h3 id="Moo0视频压缩器使你以最简单的方式改变任何视频的“文件大小”“图像大小”。"><a href="#Moo0视频压缩器使你以最简单的方式改变任何视频的“文件大小”“图像大小”。" class="headerlink" title="Moo0视频压缩器使你以最简单的方式改变任何视频的“文件大小”“图像大小”。"></a>Moo0视频压缩器使你以最简单的方式改变任何视频的“文件大小”“图像大小”。</h3><p>你是否曾经需要最小化你的视频文件的大小?它太大了?但不想使用任何复杂的软件? 如果这样,此工具可能是最简单的解决方案。</p><p><strong>提示:</strong></p><ul><li><p>该程序不会改变原始视频文件。 默认情况下,它会在同一文件夹中“创建”新的已调整大小的视频文件。 请不要担心。</p></li><li><p>如果您不确定转换设置,请首先尝试“仅测试转换零件”功能。 您可以快速查看前面的示例结果,例如“仅第一个或中间15秒”。</p></li><li><p>如果您不介意转换时间,我们建议您使用“画质:更高[x265]”以获得最佳图像质量。 虽然,旧的视频播放器还没有支持这个最新的编解码器。</p></li><li><p>这是“<a href="https://zhs.moo0.com/software/VideoConverter/">Moo0 視頻轉換器</a>”的翻版,因此您的视频大小调整任务可以“尽可能简单易行”。 如果您想要更详细的转换选项,请试用我们的“<a href="https://zhs.moo0.com/software/VideoConverter/">Moo0 視頻轉換器</a>”。</p></li></ul><p><a href="https://zhs.moo0.com/?top=https://zhs.moo0.com/software/VideoMinimizer/">Moo0 - Windows有用的免费软件 (not MooO)</a></p><h1 id="视频转换器-直接下载-1"><a href="#视频转换器-直接下载-1" class="headerlink" title="视频转换器 直接下载"></a><a href="https://github.com/wangwenzhiwwz/file/releases/download/%E8%A7%86%E9%A2%91%E7%BC%96%E7%A0%81/Moo0.VideoConverter.zip">视频转换器 直接下载</a></h1><h1 id="视频压缩器-直接下载"><a href="#视频压缩器-直接下载" class="headerlink" title="视频压缩器 直接下载"></a><a href="https://github.com/wangwenzhiwwz/file/releases/download/%E8%A7%86%E9%A2%91%E7%BC%96%E7%A0%81/Moo0.VideoResizer1.283.zip">视频压缩器 直接下载</a></h1>]]></content>
<categories>
<category> 软件推荐 </category>
</categories>
<tags>
<tag> 软件 </tag>
<tag> BLog </tag>
<tag> 视频制作 </tag>
</tags>
</entry>
<entry>
<title>Armor 22 | Introducing the Ulefone Armor 22 - NightElf Ultra 2.0 Camera (2023 MUSE Design Awards Winner)</title>
<link href="/article/Armor-22/"/>
<url>/article/Armor-22/</url>
<content type="html"><![CDATA[<div class="video-container"><iframe width="560" height="315" src="https://www.youtube.com/embed/GVeko9aDHzw?si=F-n4pUs1djlrAt-B" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><style>.video-container { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}</style><h2 id="📎-资料"><a href="#📎-资料" class="headerlink" title="📎 资料"></a>📎 资料</h2><p><a href="https://prod-files-secure.s3.us-west-2.amazonaws.com/8de6dcdf-172b-4660-80ec-06dcd4abe7e5/45d07b19-1493-43c8-9088-cc8f1788f97d/Armor_22%E5%88%86%E9%95%9C.pdf">Armor 22分镜.pdf</a></p><p><a href="https://prod-files-secure.s3.us-west-2.amazonaws.com/8de6dcdf-172b-4660-80ec-06dcd4abe7e5/8d5490be-6170-4b0f-8dae-bce3cd369e3c/Armor_22%E6%95%85%E4%BA%8B%E6%9D%BF.pdf">Armor 22故事板.pdf</a></p><p><a href="https://prod-files-secure.s3.us-west-2.amazonaws.com/8de6dcdf-172b-4660-80ec-06dcd4abe7e5/3eaf113c-ddc2-41cc-9fce-6bd28d2131ce/Armor_22%E6%8B%8D%E6%91%84%E9%80%9A%E5%91%8A.pdf">Armor 22拍摄通告.pdf</a></p><p><a href="https://www.youtube.com/watch?v=GVeko9aDHzw&t=11s">https://www.youtube.com/watch?v=GVeko9aDHzw&t=11s</a></p>]]></content>
<categories>
<category> 工作记录 </category>
</categories>
<tags>
<tag> 视频制作 </tag>
<tag> 工作记录 </tag>
</tags>
</entry>
<entry>
<title>Armor 15 | Introducing the Ulefone Armor 15 - A World Leading Rugged Phone Built in TWS Earbuds</title>
<link href="/article/Armor-15/"/>
<url>/article/Armor-15/</url>
<content type="html"><![CDATA[<div class="video-container"><iframe width="560" height="315" src="https://www.youtube.com/embed/JFRP5vrq1c0?si=q1T4RrUNLzR7Jn0A" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><style>.video-container { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}</style><p>Electronics like smartphones and earphones have become a must in our daily life. When you go out for school, shopping, work or travel, you would bring a phone, earphones and other devices for calling, chatting, music and so on. However, carrying those things simultaneously will be not convenient and exhaust you a lot.</p><p>To make electronics that you carry with everyday lesser and travel lighter, Armor 15 with built-in TWS Earbuds is born — Just like AirPods in your smartphone. It is a milestone for our team to integrate earbuds into a rugged phone. And it proved to be a great solution for a much simpler life.</p><p>With soft ear tips and ergonomic design, the TWS earbuds are comfortable fit. And it allows you to wear for running, fitness, hiking and other sports.</p><div class="video-container"><iframe width="560" height="315" src="https://www.youtube.com/embed/QJS6Y0_pcSQ?si=OTtDUarQOA7-kUJm" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><p>You will take it out from the top of Armor 15 whenever you need it; it is connected to the device the instant you fetch it.</p><p>Just throw the earbuds back into the case on the top of Armor 15 and forget about charging, it couldn’t be more convenient! Up to 5 hours of listening time for single charge, making it up to 505 hours total battery life with Armor 15 case.</p><p>Based on BT5.0, the TWS earbuds are widely compatible with varieties of devices like tablets, laptops, etc.</p><p>When you make phone calls, the TWS earbuds offer HiFi sound quality.</p><p>It will not occupy extra space for it stays in the Armor 15 when not used. Besides, it is effortless to take it out or put it back.</p><p>There is a multifunctional touch key on either earbud to support changing for multiple touch control modes.</p><p>Armor 15 has passed the strict IP68/IP69K, MIL-STD-810G military protection standard test, with excellent waterproof, shockproof and dust-proof performance.</p><p>Equipped with front-facing dual speakers, dual Smart PA, 100dB loudness, max 2W power, Armor 15 produces top stereo auditory effects.</p><p>With a dual rear main camera setup, including a 12MP main camera plus one 13MP wide-angle lens, Armor 15 let you shoot wider scenery and zoom for better photography effects.</p><p>Configured with 16MP, the front module allows you to take high-quality pictures. Whenever you want to snap a selfie, make a video call or do a live webcast, there is much clear and more details to be seen.</p><p>Armor 15 packs MediaTek Helio G35 processor, which combines octa-core CPU and 2.3GHz frequency. It has great performance to make the download and upload instantly. Along with 6GB RAM and 128GB ROM, it provides spacious space for downloaded apps, videos, images, and music storage.</p><p>Driven by Android 12 OS, Armor 15 will become more personalized with the changes in visual effects. Privacy and security have been improved and the loading of apps is also faster.</p><p>There is a custom key, which can be set on the Settings in advance for single click, double click or long press to quickly access PTT Intercom (Zello), flashlight, Screen Shot and other regularly used apps. Armor 15 supports NFC + Google Pay; rich global frequency bands and Dual 4G Dual VoLTE are supported to make the users being closer and enjoy high-quality HD voice calls. Armor 15 provides 6 navigation system choices for your reference, including GPS, GLONASS, Beidou, Galileo, QZSS, and Digital Compass.</p><p>The multifunctional protective case fits the Armor 15 perfectly and provides all-round protection to it. The case is easy to assemble and disassemble, which combines a clip for 180° rotation and a carabiner to hang on your backpack, waist, toolkit bag, etc.</p><p>Armor 15 is a great companion for sports, outdoor camping, picnic, cargo driver, and so on.</p><pre><code> Press Reviews Technical Specification </code></pre><p>Model: Ulefone Armor 15</p><p>Features: Built-in TWS Earbuds, Symmetrical Dual Speakers, Underwater</p><pre><code> Camera, Custom Key + Camera Key, Headset-free FM Radio</code></pre><p>Protection Grade: IP68/IP69K, MIL-STD-810G</p><p>Size: 170.2<em>79.6</em>18.2 mm</p><p>Screen: 5.45-inch, 720*1440 HD+</p><p>CPU: Helio G35, 2.3GHz</p><p>Memory: 6GB RAM + 128GB ROM</p><p>Rear Camera: 12MP+13MP Dual Camera</p><p>Front Camera: 16MP</p><p>Battery: 6600mAh</p><p>Network: 4G: </p><pre><code> FDD-LTE: B1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28A/28B/B66 TDD-LTE: B38/39/40/41 3G: WCDMA: B1/2/4/5/8 2G: GSM: B2/3/5/8</code></pre><p>System: Android 12</p><pre><code> In the box</code></pre><p>All our products are produced by our own factory. We have a thorough understanding of the whole process of each production link. Besides, we are stricter in quality control, and the quality of products is more guaranteed. Usually, every single mobile phone will go through a number of rigorous quality tests, such as pressing test, USB endurance test, touch screen test, mini-drop endurance test, 1.5m drop test, waterproof test and so on. Each test will be conducted up to tens of thousands of times.</p><p>If you are a member of the press and need more resources, please download our press kit or reach us at <a href="mailto:pr@ulefone.com">pr@ulefone.com</a>.</p><p>We’ve made an FAQ section below, and we’ll keep adding new FAQs and updating them via Kickstarter.</p><ol><li><p>Back our campaign and leave a comment on our Kickstarter page.</p></li><li><p>Send a direct message to us on Kickstarter.</p></li><li><p>Contact us on Facebook.</p></li></ol><p>風險與挑戰<br>Armor 15 is the world’s first rugged phone built in TWS earbuds. Its hardware integration is very high, and we have strict attitude toward our product design. It is a great challenge, but with our years of experience in the mobile phone manufacturing industry, we are very confident in the Armor 15’s craftsmanship and production schedule.</p><p>However, we also know that hidden obstacles and challenges often occur. Because of that, we’ve made sure to account for some amount of craziness or unforeseen problems that may occur in our schedule. If something does go wrong, we promise to keep our backers updated and informed about any issues and about the way in which we are solving them.</p><p>Please be aware that there may be extra customs fees due to the policy of different countries, and you will be responsible for customs fees, duties, VAT, import taxes, etc. administered by your government. They are excluded from the shipping fees. Normally, you won’t be charged import duty taxes. However, given many different regulations in different countries, we can’t guarantee that 100%.</p><p>Due to the impact of COVID-19 and some other international events, the timeliness of global logistics and transportation has become less optimistic. Although our logistics partners will try to do their best, we still cannot guarantee that there will be no accidents. We will always pay attention to the logistics dynamics, and will notify you in time once any abnormality is found. In addition, due to the rising cost of logistics and transportation, we cannot pay the high shipping fee, and the shipping cost will be paid by you. Thank you for your understanding and support!</p><p>瞭解 Kickstarter 的問責制度<br>環保承諾<br>歡迎你來環境資源中心瞭解 Kickstarter 是如何鼓勵各位專案發起人採用可持續做法的。<br>經久耐用的設計<br>We adopts more wear-resistant shell material, and the internal structure design is stronger, which can greatly reduce the chance of physical damage to the phone. Meanwhile, our devices have passed varieties of rigorous tests to ensure that the service life will be longer than ordinary mobile phones.</p><p>環境友善工廠<br>We have our own factory, which has a history of more than 10 years. Our factory strictly comply with government regulations; and all waste is recycled or disposed of properly to minimize environmental harm. We regularly update and upgrade our equipments and train employees, providing a comfortable working environment for them.</p><p>Sustainable Distribution<br>As a company with many years of history, we have a stable and healthy supply chain system, as well as many excellent partners and distributors, our production and delivery will be more reliable.</p>]]></content>
<categories>
<category> 工作记录 </category>
</categories>
<tags>
<tag> 视频制作 </tag>
<tag> 工作记录 </tag>
</tags>
</entry>
<entry>
<title>Note 16 Pro | Introducing the Ulefone Note 16 Pro - Elegance Meets Experience</title>
<link href="/article/Note-16-Pro/"/>
<url>/article/Note-16-Pro/</url>
<content type="html"><![CDATA[<div class="video-container"><iframe width="560" height="315" src="https://www.youtube.com/embed/GEfBRDodXwI?si=AGmWu_BgSGjrKWSl" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div><style>.video-container { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */}.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}</style><p><strong>New Design</strong> <strong>Fascinating Colors</strong></p><p><strong>6.52” HD+ Waterdrop Screen</strong></p><p><strong>50MP Main Camera</strong> Full of Details</p><p><strong>8MP Front Camera</strong> Sharp Portrait Capture</p><p><strong>Up to 16GB RAM, Up to 512GB ROM</strong> Infinite Possibilities</p><p><strong>Unisoc 8-Core Processor</strong></p><p><strong>4400mAh Battery</strong> Power for All Day</p><p><strong>Android 13</strong></p><p><strong>NFC</strong></p><p><strong>4G LTE, Dual-band Wi-Fi</strong></p><p><strong>Side Fingerprint Sensor</strong></p><p><strong>Face Unlock</strong></p><p><strong>Splashproof</strong></p><p><strong>Free TPU Phone Case</strong></p><p><a href="https://www.youtube.com/watch?v=GEfBRDodXwI">https://www.youtube.com/watch?v=GEfBRDodXwI</a></p><p><a href="https://www.youtube.com/watch?v=75Gl6P96CBs">https://www.youtube.com/watch?v=75Gl6P96CBs</a></p>]]></content>
<categories>
<category> 工作记录 </category>
</categories>
<tags>
<tag> 视频制作 </tag>
<tag> 工作记录 </tag>
</tags>
</entry>
<entry>
<title>常用的脚本 检测是否可以访问 ChatGPT 脚本 修改检测是否可以访问 ChatGPT 脚本</title>
<link href="/article/Script/"/>
<url>/article/Script/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/Script.png"></p><h2 id="更新列表"><a href="#更新列表" class="headerlink" title="更新列表"></a><strong>更新列表</strong></h2><p>2023-0525 检测是否可以访问 ChatGPT 脚本 <a href="https://github.com/moeakwak/chatgpt-web-share/wiki/%E4%B8%AD%E6%96%87%E6%8C%87%E5%8D%97">来源</a></p><p><strong>PLAINTEXT</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -Ls https://raw.githubusercontent.com/missuo/OpenAI-Checker/main/openai.sh)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>2023-4-29 修改检测是否可以访问 ChatGPT 脚本</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -Ls https://ourl.co/oaic)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -Ls https://cdn.jsdelivr.net/gh/missuo/OpenAI-Checker/openai.sh)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h2 id="综合工具箱(强烈推荐,集成了很多脚本)"><a href="#综合工具箱(强烈推荐,集成了很多脚本)" class="headerlink" title="综合工具箱(强烈推荐,集成了很多脚本)"></a><strong>综合工具箱(强烈推荐,集成了很多脚本)</strong></h2><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -O box.sh https://raw.githubusercontent.com/BlueSkyXN/SKY-BOX/main/box.sh && chmod +x box.sh && clear && ./box.sh</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h2 id="杜甫测试"><a href="#杜甫测试" class="headerlink" title="杜甫测试"></a><strong>杜甫测试</strong></h2><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -q https://github.com/Aniverse/A/raw/i/a && bash a</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h2 id="DD-相关"><a href="#DD-相关" class="headerlink" title="DD 相关"></a><strong>DD 相关</strong></h2><h3 id="1、甲骨文-DD-脚本"><a href="#1、甲骨文-DD-脚本" class="headerlink" title="1、甲骨文 DD 脚本"></a><strong>1、甲骨文 DD 脚本</strong></h3><p>DD 成 Debian 10</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -d 10 -v 64 -p "自定义root密码" -port "自定义ssh端口"</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>DD 成 Ubuntu 20.04</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -u 20.04 -v 64 -p "自定义root密码" -port "自定义ssh端口"</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="2、MoeClub-脚本"><a href="#2、MoeClub-脚本" class="headerlink" title="2、MoeClub 脚本"></a><strong>2、MoeClub 脚本</strong></h3><p><strong>重点推荐</strong>:</p><p>时间:22/11/2021 15:21 萌咖更新脚本:</p><ol><li><p>新增对 Oracle AMD,Oracle ARM 全面支持。可支持从 Ubuntu, Oracle Linux 等系统网络重装.</p></li><li><p>更新 dd 镜像的基础系统版本.</p></li><li><p>移除对外部 wget 的依赖.</p></li><li><p>新增 -port 参数,可更改默认 SSH 端口.</p></li><li><p>更新 内置的网络参数计算 逻辑.</p></li><li><p>更新 grub 配置文件定位逻辑,可支持任意引导 grub 的系统.</p></li></ol><p>以下系统已通过测试 (其他自测):</p><p>Debian: 9, 10, 11;</p><p>Ubuntu: 18.04, 20.04;</p><p>CentOS: 6.10;</p><p>以下平台已通过测试 (其他自测):</p><p>Oracle、Do、Azure</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -d 10 -v 64 -p "自定义root密码" -port "自定义ssh端口"</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><ul><li>d 10 -v 64</li><li>d 9 -v 64</li><li>u 20.04 -v 64</li><li>u 18.04 -v 64</li></ul><p>开机改密码脚本:</p><p>开机改密:</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">#!/bin/bash</span><br><span class="line">echo root:Vicer |sudo chpasswd root</span><br><span class="line">sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;</span><br><span class="line">sudo sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config;</span><br><span class="line">sudo reboot</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="3、另一位大佬的脚本"><a href="#3、另一位大佬的脚本" class="headerlink" title="3、另一位大佬的脚本"></a><strong>3、另一位大佬的脚本</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget --no-check-certificate -O AutoReinstall.sh https://git.io/AutoReinstall.sh && bash AutoReinstall.sh</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><ul><li>CentOS 默认密码 Pwd@CentOS 其它系统 Pwd@Linux</li><li>OpenVZ / LXC 架构系统不适用</li></ul><p>来源:<a href="https://blog.hicasper.com/post/135.html">https://blog.hicasper.com/post/135.html</a> 参考:<a href="https://www.ydyno.com/archives/1245.html">https://www.ydyno.com/archives/1245.html</a> 感谢大佬的付出!</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(wget --no-check-certificate -qO- 'https://file.geekn.net/CNODnjau/InstallNET.sh') -d 11 -v 64 -a -firmware</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><ul><li>firmware 额外的驱动支持</li><li>d 后面是系统版本号</li><li>v 后面写 64 位 32 位</li><li>a (不清楚这个干啥的但是每个脚本都带)</li></ul><p>–mirror 后面是镜像源地址</p><ul><li>p 后面写自定义密码</li></ul><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">镜像站地址</span><br><span class="line">官方给出的地址列表:https://www.debian.org/mirror/list</span><br><span class="line"></span><br><span class="line">一些国内的</span><br><span class="line">ftp.cn.debian.org</span><br><span class="line">mirror.bjtu.edu.cn</span><br><span class="line">mirror.lzu.edu.cn</span><br><span class="line">mirror.nju.edu.cn</span><br><span class="line">mirrors.163.com</span><br><span class="line">mirrors.bfsu.edu.cn</span><br><span class="line">mirrors.hit.edu.cn</span><br><span class="line">mirrors.huaweicloud.com</span><br><span class="line">mirror.sjtu.edu.cn</span><br><span class="line">mirrors.tuna.tsinghua.edu.cn</span><br><span class="line">mirrors.ustc.edu.cn</span><br><span class="line"></span><br><span class="line">使用方法:(大致都是一样的)</span><br><span class="line"></span><br><span class="line">清华源</span><br><span class="line">--mirror 'https://mirrors.ustc.edu.cn/debian/'</span><br><span class="line"></span><br><span class="line">腾讯源</span><br><span class="line">--mirror 'https://mirrors.aliyun.com/debian/'</span><br><span class="line"></span><br><span class="line">阿里源</span><br><span class="line">--mirror 'https://mirrors.aliyun.com/debian/'</span><br><span class="line"></span><br><span class="line">华为源</span><br><span class="line">--mirror 'https://mirrors.huaweicloud.com/debian/'</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="4、秋水逸冰-Windows-2012-2016-2019-2022-10-11-DD-镜像"><a href="#4、秋水逸冰-Windows-2012-2016-2019-2022-10-11-DD-镜像" class="headerlink" title="4、秋水逸冰 Windows 2012/2016/2019/2022 10/11 DD 镜像"></a><strong>4、秋水逸冰 Windows 2012/2016/2019/2022 10/11 DD 镜像</strong></h3><p>适用于 UEFI 启动的多个 Windows 系统 DD 镜像:</p><p><a href="https://teddysun.com/656.html">https://teddysun.com/656.html</a></p><p>分别是:</p><ol><li>Windows Server 2012 R2 Datacenter</li><li>Windows Server 2016 Datacenter (build: 14393.5006)</li><li>Windows Server 2019 Datacenter (build: 17763.2686)</li><li>Windows Server 2022 Datacenter (build: 20348.587)</li><li>Windows 10 Enterprise LTSC (build: 19044.1288)</li><li>Windows 11 Pro for Workstations 21H2 (build: 22000.194)</li></ol><p>适用于 BIOS 启动的 Windows Server 2022 Datacenter DD 镜像:</p><p><a href="https://teddysun.com/629.html">https://teddysun.com/629.html</a></p><p>适用于 BIOS 启动的 Windows 11 Pro for Workstations 21H2 DD 镜像:</p><p><a href="https://teddysun.com/642.html">https://teddysun.com/642.html</a></p><p>适用于 BIOS 启动的 Windows 10 Enterprise LTSC DD 镜像:</p><p><a href="https://teddysun.com/640.html">https://teddysun.com/640.html</a></p><p>适用于 BIOS 启动的 Windows Server 2019/2016/2012R2 Datacenter DD 镜像:</p><p><a href="https://teddysun.com/545.html">https://teddysun.com/545.html</a></p><p>分别是:</p><ol><li>Windows Server 2019 Datacenter(Build: 17763.2686)</li><li>Windows Server 2016 Datacenter(Build: 14393.5006)</li><li>Windows Server 2012 R2 Datacenter</li></ol><h2 id="测试相关"><a href="#测试相关" class="headerlink" title="测试相关"></a><strong>测试相关</strong></h2><h3 id="机器测试"><a href="#机器测试" class="headerlink" title="机器测试"></a><strong>机器测试</strong></h3><h3 id="单线程测试"><a href="#单线程测试" class="headerlink" title="单线程测试"></a><strong>单线程测试</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -Lso- https://bench.im/hyperspeed)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="最全测速脚本"><a href="#最全测速脚本" class="headerlink" title="最全测速脚本"></a><strong>最全测速脚本</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -fsL https://ilemonra.in/LemonBenchIntl | bash -s fast</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="superbench"><a href="#superbench" class="headerlink" title="superbench"></a><strong>superbench</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -qO- git.io/superbench.sh | bash</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="Bench-sh"><a href="#Bench-sh" class="headerlink" title="Bench.sh"></a><strong>Bench.sh</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -qO- bench.sh | bash</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="速度测试"><a href="#速度测试" class="headerlink" title="速度测试"></a><strong>速度测试</strong></h3><h3 id="显示延迟、抖动"><a href="#显示延迟、抖动" class="headerlink" title="显示延迟、抖动"></a><strong>显示延迟、抖动</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(wget -qO- https://bench.im/hyperspeed)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="直接显示回程线路"><a href="#直接显示回程线路" class="headerlink" title="直接显示回程线路"></a><strong>直接显示回程线路</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl https://raw.githubusercontent.com/zhucaidan/mtr_trace/main/mtr_trace.sh|bash</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -q route.f2k.pub -O route && bash route</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p><strong>PLAINTEXT</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line"># 第一个</span><br><span class="line">wget https://raw.githubusercontent.com/nanqinlang-script/testrace/master/testrace.sh</span><br><span class="line">bash testrace.sh</span><br><span class="line"></span><br><span class="line"># 第二个</span><br><span class="line">wget -qO- git.io/besttrace | bash</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="四网测速"><a href="#四网测速" class="headerlink" title="四网测速"></a><strong>四网测速</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -O jcnf.sh https://raw.githubusercontent.com/Netflixxp/jcnfbesttrace/main/jcnf.sh</span><br><span class="line"></span><br><span class="line">bash jcnf.sh</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id=""><a href="#" class="headerlink" title=""></a></h3><h3 id="三网测速"><a href="#三网测速" class="headerlink" title="三网测速"></a><strong>三网测速</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -Lso- https://git.io/superspeed_uxh)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>带快速四网测试版本:</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -Lso- https://dl.233.mba/d/sh/speedtest.sh)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -Lso- https://git.io/J1SEh)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>带综合测试的版本(CPU 信息、Geekbench 等):</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(wget --no-check-certificate -O- https://dl.233.mba/d/sh/superbenchpro.sh)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>来源:<a href="https://www.wrnxr.cn/163.html">https://www.wrnxr.cn/163.html</a></p><h3 id="测试-25-端口是否开放"><a href="#测试-25-端口是否开放" class="headerlink" title="测试 25 端口是否开放"></a><strong>测试 25 端口是否开放</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">telnet smtp.aol.com 25</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="测试-IPv4-优先还是-IPv6-优先"><a href="#测试-IPv4-优先还是-IPv6-优先" class="headerlink" title="测试 IPv4 优先还是 IPv6 优先"></a><strong>测试 IPv4 优先还是 IPv6 优先</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl ip.p3terx.com</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="流媒体测试"><a href="#流媒体测试" class="headerlink" title="流媒体测试"></a><strong>流媒体测试</strong></h3><h3 id="全媒体测试"><a href="#全媒体测试" class="headerlink" title="全媒体测试"></a><strong>全媒体测试</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -L -s https://raw.githubusercontent.com/lmc999/RegionRestrictionCheck/main/check.sh)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="奈飞测试"><a href="#奈飞测试" class="headerlink" title="奈飞测试"></a><strong>奈飞测试</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -O nf https://github.com/sjlleo/netflix-verify/releases/download/2.5/nf_2.5_linux_amd64 && chmod +x nf && clear && ./nf</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p><strong>PLAINTEXT</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">#第一个</span><br><span class="line">bash <(curl -L -s https://raw.githubusercontent.com/lmc999/RegionRestrictionCheck/main/check.sh)</span><br><span class="line"></span><br><span class="line"># 第二个</span><br><span class="line">bash <(curl -sSL "https://github.com/CoiaPrant/MediaUnlock_Test/raw/main/check.sh")</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h2 id="WARP"><a href="#WARP" class="headerlink" title="WARP"></a><strong>WARP</strong></h2><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -N --no-check-certificate https://cdn.jsdelivr.net/gh/YG-tsj/CFWarp-Pro/multi.sh && chmod +x multi.sh && ./multi.sh</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>之后进入脚本快捷方式为 <code>bash multi.sh</code></p><h2 id="服务器时间"><a href="#服务器时间" class="headerlink" title="服务器时间"></a><strong>服务器时间</strong></h2><h3 id="CentOS-同步时间"><a href="#CentOS-同步时间" class="headerlink" title="CentOS 同步时间"></a><strong>CentOS 同步时间</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">yum -y install ntpdate</span><br><span class="line">timedatectl set-timezone Asia/Shanghai</span><br><span class="line">ntpdate ntp1.aliyun.com</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h2 id="BBR"><a href="#BBR" class="headerlink" title="BBR"></a><strong>BBR</strong></h2><h3 id="CentOS-7-BBR"><a href="#CentOS-7-BBR" class="headerlink" title="CentOS 7 BBR"></a><strong>CentOS 7 BBR</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="一键开启-BBR"><a href="#一键开启-BBR" class="headerlink" title="一键开启 BBR"></a><strong>一键开启 BBR</strong></h3><p>注意:需要 Linux Kernel 内核升级到 4.9 及以上版本可以实现 BBR 加速</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">uname -srm</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>输出结果:</p><p><strong>PLAINTEXT</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">Linux 3.10.0-957.12.2.el7.x86_64 x86_64</span><br><span class="line">3 - 内核版本.</span><br><span class="line">10 - 主修订版本.</span><br><span class="line">0-957 - 次要修订版本.</span><br><span class="line">12 - 补丁版本.</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>一般来说,Ubuntu18.04 以上就可以 (默认的内核 <code>4.15</code>)</p><p><strong>PLAINTEXT</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf</span><br><span class="line">echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf</span><br><span class="line"></span><br><span class="line">sysctl -p</span><br><span class="line"></span><br><span class="line">sysctl net.ipv4.tcp_available_congestion_control</span><br><span class="line"></span><br><span class="line">lsmod | grep bbr</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h2 id="Docker-相关"><a href="#Docker-相关" class="headerlink" title="Docker 相关"></a><strong>Docker 相关</strong></h2><h3 id="更新、安装必备软件"><a href="#更新、安装必备软件" class="headerlink" title="更新、安装必备软件"></a><strong>更新、安装必备软件</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">apt-get update && apt-get install -y wget vim</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="海外服务器"><a href="#海外服务器" class="headerlink" title="海外服务器"></a><strong>海外服务器</strong></h3><h3 id="非大陆-Docker-安装"><a href="#非大陆-Docker-安装" class="headerlink" title="非大陆 Docker 安装"></a><strong>非大陆 Docker 安装</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -qO- get.docker.com | bash</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="卸载-Docker"><a href="#卸载-Docker" class="headerlink" title="卸载 Docker"></a><strong>卸载 Docker</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo apt-get purge docker-ce docker-ce-cli containerd.io</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo rm -rf /var/lib/docker</span><br><span class="line">sudo rm -rf /var/lib/containerd</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="非大陆-Docker-compose-安装"><a href="#非大陆-Docker-compose-安装" class="headerlink" title="非大陆 Docker-compose 安装"></a><strong>非大陆 Docker-compose 安装</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo chmod +x /usr/local/bin/docker-compose</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>查看版本</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">docker-compose --version</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="大陆服务器"><a href="#大陆服务器" class="headerlink" title="大陆服务器"></a><strong>大陆服务器</strong></h3><h3 id="国内机安装-docker"><a href="#国内机安装-docker" class="headerlink" title="国内机安装 docker"></a><strong>国内机安装 docker</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -sSL https://get.daocloud.io/docker | sh</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="国内机安装-docker-compose"><a href="#国内机安装-docker-compose" class="headerlink" title="国内机安装 docker-compose"></a><strong>国内机安装 docker-compose</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -L https://get.daocloud.io/docker/compose/releases/download/v2.1.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose</span><br><span class="line">chmod +x /usr/local/bin/docker-compose</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="卸载-docker"><a href="#卸载-docker" class="headerlink" title="卸载 docker"></a><strong>卸载 docker</strong></h3><p><strong>PLAINTEXT</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo apt-get remove docker docker-engine</span><br><span class="line">rm -fr /var/lib/docker/</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h2 id="防火墙"><a href="#防火墙" class="headerlink" title="防火墙"></a><strong>防火墙</strong></h2><h3 id="CentOS-关闭防火墙"><a href="#CentOS-关闭防火墙" class="headerlink" title="CentOS 关闭防火墙"></a><strong>CentOS 关闭防火墙</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">systemctl start supervisord</span><br><span class="line">systemctl disable firewalld</span><br><span class="line">systemctl stop firewalld</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h2 id="宝塔相关"><a href="#宝塔相关" class="headerlink" title="宝塔相关"></a><strong>宝塔相关</strong></h2><h3 id="宝塔去除登陆-已经失效,解决方法见:https-blog-laoda-de-archives-bt-to-aapanel"><a href="#宝塔去除登陆-已经失效,解决方法见:https-blog-laoda-de-archives-bt-to-aapanel" class="headerlink" title="宝塔去除登陆 (已经失效,解决方法见:https://blog.laoda.de/archives/bt-to-aapanel)"></a><strong>宝塔去除登陆 (已经失效,解决方法见:<a href="https://blog.laoda.de/archives/bt-to-aapanel">https://blog.laoda.de/archives/bt-to-aapanel</a>)</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sed -i "s|if (bind_user == 'True') {|if (bind_user == 'REMOVED') {|g" /www/server/panel/BTPanel/static/js/index.js</span><br><span class="line">rm -rf /www/server/panel/data/bind.pl</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="宝塔-aapanel-破解(这个目前也不保证可用了)"><a href="#宝塔-aapanel-破解(这个目前也不保证可用了)" class="headerlink" title="宝塔 & aapanel 破解(这个目前也不保证可用了)"></a><strong>宝塔 & aapanel 破解(这个目前也不保证可用了)</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line"># 宝塔&aapanel破解</span><br><span class="line">编辑 /www/server/panel/class/panelplugin.py</span><br><span class="line">找到 softList['list'] = tmpList 这行代码</span><br><span class="line">在下面添加以下代码,注意缩进</span><br><span class="line"></span><br><span class="line">softList['pro'] = 1</span><br><span class="line">for soft in softList['list']:</span><br><span class="line">soft['endtime'] = 0</span><br><span class="line"></span><br><span class="line">编辑完毕后保存重启面板即可</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h2 id="呆梨相关"><a href="#呆梨相关" class="headerlink" title="呆梨相关"></a><strong>呆梨相关</strong></h2><h3 id="XUI"><a href="#XUI" class="headerlink" title="XUI"></a><strong>XUI</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -Ls https://raw.githubusercontent.com/FranzKafkaYu/x-ui/master/install.sh)</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>脚本来源:<a href="https://github.com/FranzKafkaYu/x-ui">https://github.com/FranzKafkaYu/x-ui</a></p><h3 id="mack-a"><a href="#mack-a" class="headerlink" title="mack-a"></a><strong>mack-a</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -P /root -N --no-check-certificate "https://raw.githubusercontent.com/mack-a/v2ray-agent/master/install.sh" && chmod 700 /root/install.sh && /root/install.sh</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>持续更新中</p>]]></content>
<categories>
<category> 科学上网 </category>
</categories>
<tags>
<tag> VPS </tag>
</tags>
</entry>
<entry>
<title>目前最好用的网盘直链程序 AList | The best online disk direct link program AList</title>
<link href="/article/alist/"/>
<url>/article/alist/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/alist.png"></p><h2 id="一、项目展示"><a href="#一、项目展示" class="headerlink" title="一、项目展示"></a><strong>一、项目展示</strong></h2><p>GitHub 项目地址:<a href="https://github.com/Xhofe/alist">https://github.com/Xhofe/alist</a></p><p>Demo:<a href="https://alist.nn.ci/">https://alist.nn.ci</a><br>MY Demo:<a href="https://alist.99218632.xyz/">https://alist.99218632.xyz/</a></p><p>Alist 文档地址:<a href="https://alist-doc.nn.ci/en/">https://alist-doc.nn.ci/en/</a></p><h2 id="二、搭建环境"><a href="#二、搭建环境" class="headerlink" title="二、搭建环境"></a><strong>二、搭建环境</strong></h2><ul><li>服务器:腾讯香港轻量应用服务器 24 元 / 月 VPS 一台(最好是选非大陆的服务器)(<a href="https://loll.cc/tx">购买链接</a>)</li><li>系统:Debian 10(<a href="https://blog.laoda.de/archives/useful-script#dd%E7%9B%B8%E5%85%B3">DD 脚本</a> 非必需 DD 用原来的系统也 OK)</li><li>域名一枚,并做好解析到服务器上(<a href="https://blog.laoda.de/archives/namesilo">域名购买、域名解析</a> <a href="https://www.bilibili.com/video/BV1Sy4y1k7kZ/">视频教程</a>)</li><li>安装好 Docker、Docker-compose(<a href="https://blog.laoda.de/archives/hello-docker#5%E5%AE%89%E8%A3%85dockerdocker-compose">相关脚本</a>)</li><li>【非必需二选一】安装好宝塔面板,并安装好 Nginx(<a href="https://forum.aapanel.com/d/9-aapanel-linux-panel-6812-installation-tutorial">安装地址</a>)</li><li>【非必需二选一】安装好 Nginx Proxy Manager(<a href="https://blog.laoda.de/archives/nginxproxymanager">相关教程</a>)</li></ul><h2 id="三、搭建视频"><a href="#三、搭建视频" class="headerlink" title="三、搭建视频"></a><strong>三、搭建视频</strong></h2><p>YouTube:<a href="https://youtu.be/6M8QoZoQ-28">https://youtu.be/6M8QoZoQ-28</a></p><p>哔哩哔哩【完整版本可以点击去吐槽到 B 站观看】:</p><h2 id="四、搭建方式"><a href="#四、搭建方式" class="headerlink" title="四、搭建方式"></a><strong>四、搭建方式</strong></h2><p>选择适合自己的搭建方式。</p><h3 id="1、一键脚本安装"><a href="#1、一键脚本安装" class="headerlink" title="1、一键脚本安装"></a><strong>1、一键脚本安装</strong></h3><p>仅支持 Linux-x86_64/aarch64 平台。</p><h3 id="安装"><a href="#安装" class="headerlink" title="安装"></a><strong>安装</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -fsSL "https://nn.ci/alist.sh" | bash -s install</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p><strong>注意:</strong></p><p>已经安装过再次执行安装会删除之前的数据,更新请使用更新命令。</p><h3 id="更新"><a href="#更新" class="headerlink" title="更新"></a><strong>更新</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -fsSL "https://nn.ci/alist.sh" | bash -s update</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="卸载"><a href="#卸载" class="headerlink" title="卸载"></a><strong>卸载</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -fsSL "https://nn.ci/alist.sh" | bash -s uninstall</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="自定义路径"><a href="#自定义路径" class="headerlink" title="自定义路径"></a><strong>自定义路径</strong></h3><p>默认安装在 <code>/opt/alist</code>,要自定义安装路径,添加安装路径为第二个参数,必须是绝对路径(路径以 alist 结尾时直接安装到给定路径,否则会安装在给定路径 alist 目录下),如安装到 <code>/root</code>:</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line"># 安装</span><br><span class="line"></span><br><span class="line">curl -fsSL "https://nn.ci/alist.sh" | bash -s install /root</span><br><span class="line"></span><br><span class="line"># 更新</span><br><span class="line"></span><br><span class="line">curl -fsSL "https://nn.ci/alist.sh" | bash -s update /root</span><br><span class="line"></span><br><span class="line"># 卸载</span><br><span class="line"></span><br><span class="line">curl -fsSL "https://nn.ci/alist.sh" | bash -s uninstall /root</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="2、手动搭建"><a href="#2、手动搭建" class="headerlink" title="2、手动搭建"></a><strong>2、手动搭建</strong></h3><p>参考文档:<a href="https://alist-doc.nn.ci/docs/install/manual">https://alist-doc.nn.ci/docs/install/manual</a></p><h3 id="3、Docker(本次使用)"><a href="#3、Docker(本次使用)" class="headerlink" title="3、Docker(本次使用)"></a><strong>3、Docker(本次使用)</strong></h3><p>初始密码请查看日志输出:</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">docker logs alist</span><br><span class="line"># 或者</span><br><span class="line">docker exec -it alist ./alist -password</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="稳定版"><a href="#稳定版" class="headerlink" title="稳定版"></a><strong>稳定版</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">docker run -d --restart=always -v /etc/alist:/opt/alist/data -p 5244:5244 --name="alist" xhofe/alist:latest</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>对应的 <code>docker-compose.yml</code></p><p><strong>YAML</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">version: '3.3'</span><br><span class="line">services:</span><br><span class="line"> alist:</span><br><span class="line"> restart: always</span><br><span class="line"> volumes:</span><br><span class="line"> - '/etc/alist:/opt/alist/data' # 冒号左边的地址可以自己修改</span><br><span class="line"> ports:</span><br><span class="line"> - '5244:5244' # 冒号左边的端口可以自己修改</span><br><span class="line"> container_name: alist</span><br><span class="line"> image: 'xhofe/alist:latest'</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="开发版"><a href="#开发版" class="headerlink" title="开发版"></a><strong>开发版</strong></h3><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">docker run -d --restart=always -v /etc/alist:/opt/alist/data -p 5244:5244 --name="alist" xhofe/alist:v2</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="指定版本"><a href="#指定版本" class="headerlink" title="指定版本"></a><strong>指定版本</strong></h3><p>具体见: <a href="https://hub.docker.com/r/xhofe/alist">https://hub.docker.com/r/xhofe/alist</a></p><p>我们此次使用<strong>稳定版</strong>安装。</p><h3 id="4、其他安装方式"><a href="#4、其他安装方式" class="headerlink" title="4、其他安装方式"></a><strong>4、其他安装方式</strong></h3><p>具体见:<a href="https://alist-doc.nn.ci/docs/intro">https://alist-doc.nn.ci/docs/intro</a></p><h2 id="五、开始搭建(以-Docker-安装为例子)"><a href="#五、开始搭建(以-Docker-安装为例子)" class="headerlink" title="五、开始搭建(以 Docker 安装为例子)"></a><strong>五、开始搭建(以 Docker 安装为例子)</strong></h2><h3 id="1、搭建-Docker-环境"><a href="#1、搭建-Docker-环境" class="headerlink" title="1、搭建 Docker 环境"></a><strong>1、搭建 Docker 环境</strong></h3><p>参考这篇:<a href="https://blog.laoda.de/archives/hello-docker#5%E5%AE%89%E8%A3%85dockerdocker-compose">【Docker 系列】不用宝塔面板,小白一样可以玩转 VPS 服务器!</a></p><h3 id="2、运行安装代码"><a href="#2、运行安装代码" class="headerlink" title="2、运行安装代码"></a><strong>2、运行安装代码</strong></h3><p>视频安装代码:</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">docker run -d --restart=always -v /root/data/docker_data/alist:/opt/alist/data -p 5244:5244 --name="alist" xhofe/alist:latest #可以自己保存下来,比如创建一个config.txt的文件,把这条代码复制进去保存,下次换服务器搬家之类的就很容易。</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>查看密码:</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">docker logs alist</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="3、放行相关端口"><a href="#3、放行相关端口" class="headerlink" title="3、放行相关端口"></a><strong>3、放行相关端口</strong></h3><p>遇到访问不了,请在宝塔面板的防火墙和服务商的后台防火墙里打开对应端口。</p><h3 id="4、配置反向代理"><a href="#4、配置反向代理" class="headerlink" title="4、配置反向代理"></a><strong>4、配置反向代理</strong></h3><p>详情参考视频,注释掉 Nginx 配置文件中的这部分内容:</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$</span><br><span class="line">{</span><br><span class="line"> expires 30d;</span><br><span class="line"> error_log /dev/null;</span><br><span class="line"> access_log off;</span><br><span class="line">}</span><br><span class="line"></span><br><span class="line">location ~ .*\.(js|css)?$</span><br><span class="line">{</span><br><span class="line"> expires 12h;</span><br><span class="line"> error_log /dev/null;</span><br><span class="line"> access_log off;</span><br><span class="line">}</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><p>代码如下:</p><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">location / {</span><br><span class="line"> proxy_pass http://127.0.0.1:5244/;</span><br><span class="line"> rewrite ^/(.*)$ /$1 break;</span><br><span class="line"> proxy_redirect off;</span><br><span class="line"> proxy_set_header Host $host;</span><br><span class="line"> proxy_set_header X-Forwarded-Proto $scheme;</span><br><span class="line"> proxy_set_header X-Real-IP $remote_addr;</span><br><span class="line"> proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;</span><br><span class="line"> proxy_set_header Upgrade-Insecure-Requests 1;</span><br><span class="line"> proxy_set_header X-Forwarded-Proto https;</span><br><span class="line">}</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr><h3 id="5、访问配置账号"><a href="#5、访问配置账号" class="headerlink" title="5、访问配置账号"></a><strong>5、访问配置账号</strong></h3><p>此时,输入反向代理的域名就能正常访问网站了,输入 <code>docker logs alist</code> 里面的密码就能正常登陆后台了。为了方便起见,建议更改一个自己能记住的密码。</p><p>6、添加本地存储</p><p>路径可以填写 <code>/opt/alist/data/</code>,这样的话,就对应 VPS 上的 <code>/root/data/docker_data/alist</code> 这个安装目录了。</p><p>如果你想深一级,可以填写 <code>/opt/alist/data/local</code>,这样的话,你在原来挂载的目录 <code>/root/data/docker_data/alist</code> 下,新建一个 <code>local</code> 的文件夹就可以了,然后你把自己想要展示的文件放在 <code>/root/data/docker_data/alist/local</code> 里即可。</p><p>其他网盘的添加方式,请参考作者的文档:<a href="https://alist-doc.nn.ci/en/">https://alist-doc.nn.ci/en/</a></p><h2 id="六、更新-Alist(适用于-Docker)"><a href="#六、更新-Alist(适用于-Docker)" class="headerlink" title="六、更新 Alist(适用于 Docker)"></a><strong>六、更新 Alist(适用于 Docker)</strong></h2><p><strong>BASH</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">docker stop alist #停止alist容器</span><br><span class="line"></span><br><span class="line">docker rm -f alist #删除alist容器,因为之前映射到了本地,所以数据不会被删除</span><br><span class="line"></span><br><span class="line">cp -r /root/data/docker_data/alist /root/data/docker_data/alist.bak #可选,如果不放心,可以备份一下数据</span><br><span class="line"></span><br><span class="line">docker pull xhofe/alist:latest #拉取最新的alist镜像</span><br><span class="line"></span><br><span class="line">docker run -d --restart=always -v /root/data/docker_data/alist:/opt/alist/data -p 5244:5244 --name="alist" xhofe/alist:latest #运行安装命令,注意-v挂载的路径与原来相同</span><br><span class="line"></span><br></pre></td></tr></table></figure><hr>]]></content>
<categories>
<category> 实用教程 </category>
</categories>
<tags>
<tag> 必看精选 </tag>
<tag> BLog </tag>
</tags>
</entry>
<entry>
<title>用docker搭建苹果CMS网站 | Building Apple CMS website with docker</title>
<link href="/article/AppleCMS/"/>
<url>/article/AppleCMS/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/AppleCMS.png"></p><p>~ 演示网站:<a href="https://lijie.gq/">https://lijie.gq/</a></p><h1 id="苹果CMS是一个影视,图片,小说等网站的,内容管理系统,被成为苹果CMS。"><a href="#苹果CMS是一个影视,图片,小说等网站的,内容管理系统,被成为苹果CMS。" class="headerlink" title="苹果CMS是一个影视,图片,小说等网站的,内容管理系统,被成为苹果CMS。"></a>苹果CMS是一个影视,图片,小说等网站的,内容管理系统,被成为苹果CMS。</h1><p>开源免费十分好用</p><h2 id="1-手动搭建方法"><a href="#1-手动搭建方法" class="headerlink" title="1.手动搭建方法"></a>1.手动搭建方法</h2><h3 id="更新系统"><a href="#更新系统" class="headerlink" title="更新系统"></a>更新系统</h3><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">apt update -y && apt upgrade -y && apt install -y curl wget sudo socat</span><br></pre></td></tr></table></figure><h3 id="安装docker"><a href="#安装docker" class="headerlink" title="安装docker"></a>安装docker</h3><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -fsSL https://get.docker.com | sh</span><br><span class="line"></span><br><span class="line">curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose</span><br><span class="line"></span><br><span class="line">chmod +x /usr/local/bin/docker-compose</span><br><span class="line"></span><br></pre></td></tr></table></figure><h3 id="创建目录"><a href="#创建目录" class="headerlink" title="创建目录"></a>创建目录</h3><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">cd /home</span><br><span class="line"></span><br><span class="line">mkdir web</span><br><span class="line"></span><br><span class="line">cd web</span><br><span class="line"></span><br><span class="line">mkdir html</span><br><span class="line"></span><br><span class="line">mkdir mysql</span><br><span class="line"></span><br><span class="line">mkdir certs</span><br><span class="line"></span><br><span class="line">touch nginx.conf</span><br><span class="line"></span><br><span class="line">nano docker-compose.yml</span><br><span class="line"></span><br></pre></td></tr></table></figure><h3 id="配置docker-compose"><a href="#配置docker-compose" class="headerlink" title="配置docker-compose"></a>配置docker-compose</h3><p><a href="https://github.com/kejilion/docker/blob/main/LNMP-docker-compose.yml">https://github.com/kejilion/docker/blob/main/LNMP-docker-compose.yml</a></p><h3 id="申请证书"><a href="#申请证书" class="headerlink" title="申请证书"></a>申请证书</h3><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl https://get.acme.sh | sh</span><br><span class="line"></span><br><span class="line">~/.acme.sh/acme.sh --register-account -m xxxx@gmail.com</span><br><span class="line"></span><br><span class="line">~/.acme.sh/acme.sh --issue -d mac.kejilion.eu.org --standalone</span><br></pre></td></tr></table></figure><h3 id="下载证书"><a href="#下载证书" class="headerlink" title="下载证书"></a>下载证书</h3><p>~/.acme.sh/acme.sh –installcert -d mac.kejilion.eu.org –key-file /home/web/certs/key.pem –fullchain-file /home/web/certs/cert.pem</p><h3 id="NGINX配置"><a href="#NGINX配置" class="headerlink" title="NGINX配置"></a>NGINX配置</h3><p><a href="https://github.com/kejilion/nginx/blob/main/nginx.conf">https://github.com/kejilion/nginx/blob/main/nginx.conf</a></p><h3 id="下载源码"><a href="#下载源码" class="headerlink" title="下载源码"></a>下载源码</h3><p>cd /home/web/html && wget <a href="https://github.com/magicblack/maccms_down/raw/master/maccms10.zip">https://github.com/magicblack/maccms_down/raw/master/maccms10.zip</a> && sudo apt-get install -y unzip && unzip maccms10.zip && rm maccms10.zip && mv /home/web/html/maccms10-master/* /home/web/html/</p><h3 id="下载主题"><a href="#下载主题" class="headerlink" title="下载主题"></a>下载主题</h3><p>cd /home/web/html/template/ && wget <a href="https://github.com/kejilion/Website_source_code/raw/main/DYXS2.zip">https://github.com/kejilion/Website_source_code/raw/main/DYXS2.zip</a> && unzip DYXS2.zip && rm /home/web/html/template/DYXS2.zip </p><p>cp /home/web/html/template/DYXS2/asset/admin/Dyxs2.php /home/web/html/application/admin/controller </p><p>cp /home/web/html/template/DYXS2/asset/admin/dycms.html /home/web/html/application/admin/view/system</p><h3 id="修改登录设置"><a href="#修改登录设置" class="headerlink" title="修改登录设置"></a>修改登录设置</h3><p>mv /home/web/html/admin.php /home/web/html/vip.php && wget -O /home/web/html/application/extra/maccms.php <a href="https://raw.githubusercontent.com/kejilion/Website_source_code/main/maccms.php">https://raw.githubusercontent.com/kejilion/Website_source_code/main/maccms.php</a></p><h3 id="运行"><a href="#运行" class="headerlink" title="运行"></a>运行</h3><p>cd /home/web && docker-compose up -d</p><h3 id="赋予权限"><a href="#赋予权限" class="headerlink" title="赋予权限"></a>赋予权限</h3><p>docker exec -it nginx chmod -R 777 /var/www/html</p><p>docker exec -it php chmod -R 777 /var/www/html</p><h3 id="安装PHP扩展"><a href="#安装PHP扩展" class="headerlink" title="安装PHP扩展"></a>安装PHP扩展</h3><p>docker exec php apt update && docker exec php apt install -y libmariadb-dev-compat libmariadb-dev libzip-dev libmagickwand-dev imagemagick</p><p>docker exec php docker-php-ext-install pdo_mysql zip bcmath gd intl opcache</p><p>docker exec php pecl install imagick && docker exec php sh -c ‘echo “extension=imagick.so” > /usr/local/etc/php/conf.d/imagick.ini’</p><h3 id="重启php"><a href="#重启php" class="headerlink" title="重启php"></a>重启php</h3><p>docker restart php</p><h3 id="查看php扩展启用情况"><a href="#查看php扩展启用情况" class="headerlink" title="查看php扩展启用情况"></a>查看php扩展启用情况</h3><p>docker exec -it php php -m</p><h3 id="后台自定义菜单管理主题"><a href="#后台自定义菜单管理主题" class="headerlink" title="后台自定义菜单管理主题"></a>后台自定义菜单管理主题</h3><p>电影先生2.0,/vip.php/admin/Dyxs2/dyxs2set</p><h3 id="定时任务"><a href="#定时任务" class="headerlink" title="定时任务"></a>定时任务</h3><p>crontab -e</p><p>30 * * * * wget -O /dev/null <a href="https://mac.kejilion.eu.org/api.php/timming/index.html?enforce=1&name=aa">https://mac.kejilion.eu.org/api.php/timming/index.html?enforce=1&name=aa</a></p><h2 id="2-自动搭建方法"><a href="#2-自动搭建方法" class="headerlink" title="2.自动搭建方法"></a>2.自动搭建方法</h2><p>Windows安装python</p><p><a href="https://www.python.org/">https://www.python.org/</a></p><h3 id="安装python环境"><a href="#安装python环境" class="headerlink" title="安装python环境"></a>安装python环境</h3><p>cmd命令行输入下面的命令,到达目录安装依赖</p><p>cmd C:\py\</p><p>python -m pip install –upgrade pip</p><p>python -m pip install paramiko speedtest-cli </p><h3 id="下载并配置自动化脚本"><a href="#下载并配置自动化脚本" class="headerlink" title="下载并配置自动化脚本"></a>下载并配置自动化脚本</h3><p><a href="https://github.com/kejilion/python-for-vps/blob/main/%E4%B8%80%E9%94%AE%E6%89%80%E6%9C%89VPS%E9%83%A8%E7%BD%B2%E8%8B%B9%E6%9E%9CCMS.py">苹果CMS自动化搭建脚本</a></p><h3 id="后台自定义菜单管理主题-1"><a href="#后台自定义菜单管理主题-1" class="headerlink" title="后台自定义菜单管理主题"></a>后台自定义菜单管理主题</h3><p>电影先生2.0,/vip.php/admin/Dyxs2/dyxs2set</p><h3 id="定时任务-1"><a href="#定时任务-1" class="headerlink" title="定时任务"></a>定时任务</h3><p>(crontab -l ; echo “30 * * * * wget -O /dev/null <a href="https://mac.kejilion.eu.org/api.php/timming/index.html?enforce=1&name=aa">https://mac.kejilion.eu.org/api.php/timming/index.html?enforce=1&name=aa</a>“) | crontab -</p><p>差不多长这样!</p>]]></content>
<categories>
<category> 实用教程 </category>
</categories>
<tags>
<tag> VPS </tag>
</tags>
</entry>
<entry>
<title>哪吒监控 哪吒监控接入 Github、Gitlab、Jihulab、Gitee 作为后台管理员账号</title>
<link href="/article/NeZha/"/>
<url>/article/NeZha/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/NeZha.png"></p><h1 id="获取-Github-Jihulab-的-Client-ID-和密钥"><a href="#获取-Github-Jihulab-的-Client-ID-和密钥" class="headerlink" title="获取 Github/Jihulab 的 Client ID 和密钥"></a><strong>获取 Github/Jihulab 的 Client ID 和密钥<a href="https://nezha.wiki/guide/dashboard.html#%E8%8E%B7%E5%8F%96-github-jihulab-%E7%9A%84-client-id-%E5%92%8C%E5%AF%86%E9%92%A5"></a></strong></h1><p>哪吒监控接入 Github、Gitlab、Jihulab、Gitee 作为后台管理员账号</p><ul><li>首先我们需要新建一个验证应用,以 Github 为例,登录 Github 后,打开 <strong><a href="https://github.com/settings/developers">https://github.com/settings/developers</a></strong> ,依次选择“OAuth Apps” - “New OAuth App”<code>Application name</code> - 随意填写<code>Homepage URL</code> - 填写面板的访问域名,如:”<strong><a href="http://cdn.example.com/">http://cdn.example.com</a></strong>“<code>Authorization callback URL</code> - 填写回调地址,如:”<strong><a href="http://cdn.example.com/oauth2/callback">http://cdn.example.com/oauth2/callback</a></strong>“</li><li>点击 “Register application”</li><li>保存页面中的 Client ID,然后点击 “Generate a new client secret“,创建一个新的 Client Secret,新建的密钥仅会显示一次,请妥善保存</li><li>JihuLab 的应用创建入口为:<strong><a href="https://jihulab.com/-/profile/applications">https://jihulab.com/-/profile/applications</a></strong></li><li><code>Redirect URL</code> 中应填入回调地址</li><li>在下方<code>范围</code>中勾选 <code>read_user</code> 和 <code>read_api</code></li><li>创建完成后,保存好应用程序 ID 和密码</li></ul><h1 id="在服务器中安装-Dashboard"><a href="#在服务器中安装-Dashboard" class="headerlink" title="在服务器中安装 Dashboard"></a><strong>在服务器中安装 Dashboard<a href="https://nezha.wiki/guide/dashboard.html#%E5%9C%A8%E6%9C%8D%E5%8A%A1%E5%99%A8%E4%B8%AD%E5%AE%89%E8%A3%85-dashboard"></a></strong></h1><ul><li>在面板服务器中,运行安装脚本:</li></ul><p><strong>bash</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -L https://raw.githubusercontent.com/naiba/nezha/master/script/install.sh -o nezha.sh && chmod +x nezha.sh && sudo ./nezha.sh</span><br></pre></td></tr></table></figure><p>如果你的面板服务器位于中国大陆,可以使用镜像:</p><p><strong>bash</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -L https://cdn.jsdelivr.net/gh/naiba/nezha@master/script/install.sh -o nezha.sh && chmod +x nezha.sh && sudo CN=true ./nezha.sh</span><br></pre></td></tr></table></figure><ul><li><p>等待Docker安装完毕后,分别输入以下值:</p><p> <code>OAuth提供商</code> - Github,Gitlab,Jihulab,Gitee 中选择一个</p><p> <code>Client ID</code> - 之前保存的 Client ID</p><p> <code>Client Secret</code> - 之前保存的密钥</p><p> <code>用户名</code> - OAuth 提供商中的用户名</p><p> <code>站点标题</code> - 自定义站点标题</p><p> <code>访问端口</code> - 公开访问端口,可自定义,默认 8008</p><p> <code>Agent的通信端口</code> - Agent与Dashboard的通信端口,默认 5555</p></li><li><p>输入完成后,等待拉取镜像</p><p> 安装结束后,如果一切正常,此时你可以访问域名+端口号,如 “**<a href="http://cdn.example.com:8008/">http://cdn.example.com:8008</a>**” 来查看面板</p></li><li><p>将来如果需要再次运行脚本,可以运行:</p></li></ul><p><strong>bash</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">./nezha.sh</span><br></pre></td></tr></table></figure><p>来打开管理脚本</p><h1 id="哪吒监控官网"><a href="#哪吒监控官网" class="headerlink" title="哪吒监控官网"></a><a href="https://nezha.wiki/">哪吒监控官网</a></h1><h2 id="TG机器人"><a href="#TG机器人" class="headerlink" title="TG机器人"></a>TG机器人</h2><p>设置先申请一个机器人 @Botfather ,然后/newbot ,创建新的机器人(bot)时,会提供的 token(在提示 Use this token to access the HTTP API:后面一行)这里 ‘bot’ 三个字母不可少;然后获取自己TG的数字Id, 和这个机器人 @userinfobot 对话可获得一串数字;这两个保存下来,一会备用。</p><p>进入面板机后台,报警——先添加通知方式,格式为</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">https://api.telegram.org/botXXXXXX/sendMessage?chat_id=YYYYYY&text=#NEZHA#其中bot后面的XXX为机器人的token,chat_id为你自己TG的ID。</span><br></pre></td></tr></table></figure><p>然后添加报警规则,常用的离线规则为</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">[{"Type":"offline","Duration":30}]</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>设置后记得设为启动就行。更多类似于监控cpu、内存报警等等,就查看作者仓库吧~</p>]]></content>
<categories>
<category> VPS </category>
</categories>
<tags>
<tag> VPS </tag>
</tags>
</entry>
<entry>
<title>Nginx Proxy Manager 安装使用一键脚本 | Nginx Proxy Manager installation using one-click script</title>
<link href="/article/NPM/"/>
<url>/article/NPM/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/NPM.png"></p><h3 id="安装-Docker-环境"><a href="#安装-Docker-环境" class="headerlink" title="安装 Docker 环境"></a><strong>安装 Docker 环境</strong></h3><h3 id="安装-Docker"><a href="#安装-Docker" class="headerlink" title="安装 Docker"></a><strong>安装 Docker</strong></h3><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">wget -qO- get.docker.com | bash</span><br><span class="line"></span><br></pre></td></tr></table></figure><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">docker -v #查看 docker 版本</span><br><span class="line"></span><br></pre></td></tr></table></figure><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">systemctl enable docker # 设置开机自动启动</span><br><span class="line"></span><br></pre></td></tr></table></figure><h3 id="安装-Docker-compose"><a href="#安装-Docker-compose" class="headerlink" title="安装 Docker-compose"></a><strong>安装 Docker-compose</strong></h3><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose</span><br><span class="line"></span><br></pre></td></tr></table></figure><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo chmod +x /usr/local/bin/docker-compose</span><br><span class="line"></span><br></pre></td></tr></table></figure><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">docker-compose --version #查看 docker-compose 版本</span><br><span class="line"></span><br></pre></td></tr></table></figure><h3 id="修改-Docker-配置(可选)"><a href="#修改-Docker-配置(可选)" class="headerlink" title="修改 Docker 配置(可选)"></a><strong>修改 Docker 配置(可选)</strong></h3><p>内容参考:<a href="https://u.sb/debian-install-docker/">烧饼博客</a></p><p>以下配置会增加一段自定义内网 IPv6 地址,开启容器的 IPv6 功能,以及限制日志文件大小,防止 Docker 日志塞满硬盘(泪的教训):</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">cat > /etc/docker/daemon.json <<EOF</span><br><span class="line">{</span><br><span class="line"> "log-driver": "json-file",</span><br><span class="line"> "log-opts": {</span><br><span class="line"> "max-size": "20m",</span><br><span class="line"> "max-file": "3"</span><br><span class="line"> },</span><br><span class="line"> "ipv6": true,</span><br><span class="line"> "fixed-cidr-v6": "fd00:dead:beef:c0::/80",</span><br><span class="line"> "experimental":true,</span><br><span class="line"> "ip6tables":true</span><br><span class="line">}</span><br><span class="line">EOF</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>然后重启 Docker 服务:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">systemctl restart docker</span><br><span class="line"></span><br></pre></td></tr></table></figure><h3 id="安装-Nginx-Proxy-Manager"><a href="#安装-Nginx-Proxy-Manager" class="headerlink" title="安装 Nginx Proxy Manager"></a><strong>安装 Nginx Proxy Manager</strong></h3><h3 id="创建安装目录"><a href="#创建安装目录" class="headerlink" title="创建安装目录"></a><strong>创建安装目录</strong></h3><p>创建一下安装的目录:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">sudo -i</span><br><span class="line"></span><br><span class="line">mkdir -p /root/data/docker_data/npm</span><br><span class="line"></span><br><span class="line">cd /root/data/docker_data/npm</span><br></pre></td></tr></table></figure><p>这边我们直接用 docker 的方式安装。</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">vim docker-compose.yml</span><br></pre></td></tr></table></figure><p>英文输入法下,按 <code>i</code></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">version: '3'</span><br><span class="line">services:</span><br><span class="line"> app:</span><br><span class="line"> image: 'jc21/nginx-proxy-manager:latest'</span><br><span class="line"> restart: unless-stopped</span><br><span class="line"> ports:</span><br><span class="line"> - '80:80' # 冒号左边可以改成自己服务器未被占用的端口</span><br><span class="line"> - '81:81' # 冒号左边可以改成自己服务器未被占用的端口</span><br><span class="line"> - '443:443' # 冒号左边可以改成自己服务器未被占用的端口</span><br><span class="line"> volumes:</span><br><span class="line"> - ./data:/data # 冒号左边可以改路径,现在是表示把数据存放在在当前文件夹下的 data 文件夹中</span><br><span class="line"> - ./letsencrypt:/etc/letsencrypt # 冒号左边可以改路径,现在是表示把数据存放在在当前文件夹下的 letsencrypt 文件夹中</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>按一下 <code>esc</code>,然后 <code>:wq</code> 保存退出,之后,</p><p>查看端口是否被占用(以 <code>81</code> 为例),输入:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">lsof -i:81 #查看 81 端口是否被占用,如果被占用,重新自定义一个端口</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>如果啥也没出现,表示端口未被占用,我们可以继续下面的操作了~</p><p>如果出现:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">-bash: lsof: command not found</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>运行:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">apt install lsof #安装 lsof</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>如果端口没有被占用(被占用了就修改一下端口,比如改成 <code>82</code>,注意 docker 命令行里和防火墙都要改)</p><h3 id="运行并访问-Nginx-Proxy-Manager"><a href="#运行并访问-Nginx-Proxy-Manager" class="headerlink" title="运行并访问 Nginx Proxy Manager"></a><strong>运行并访问 Nginx Proxy Manager</strong></h3><p>最后:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">cd /root/data/docker_data/npm # 来到 dockercompose 文件所在的文件夹下</span><br><span class="line"></span><br><span class="line">docker-compose up -d</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>理论上我们就可以输入 <code>http://ip:81</code> 访问了。</p><p>默认登陆名和密码:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">Email: admin@example.com</span><br><span class="line">Password: changeme</span><br><span class="line"></span><br></pre></td></tr></table></figure><blockquote><p>注意:</p><p>1、不知道服务器 IP,可以直接在命令行输入:<code>curl ip.sb</code>,会显示当前服务器的 IP。</p><p>2、遇到访问不了的情况,请再次检查在宝塔面板的防火墙和服务商的后台防火墙是否打开对应了端口。</p></blockquote><h3 id="更新-Nginx-Proxy-Manager"><a href="#更新-Nginx-Proxy-Manager" class="headerlink" title="更新 Nginx Proxy Manager"></a><strong>更新 Nginx Proxy Manager</strong></h3><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">cd /root/data/docker_data/npm</span><br><span class="line"></span><br><span class="line">docker-compose down</span><br><span class="line"></span><br><span class="line">cp -r /root/data/docker_data/npm /root/data/docker_data/npm.archive # 万事先备份,以防万一</span><br><span class="line"></span><br><span class="line">docker-compose pull</span><br><span class="line"></span><br><span class="line">docker-compose up -d # 请不要使用 docker-compose stop 来停止容器,因为这么做需要额外的时间等待容器停止;docker-compose up -d 直接升级容器时会自动停止并立刻重建新的容器,完全没有必要浪费那些时间。</span><br><span class="line"></span><br><span class="line">docker image prune # prune 命令用来删除不再使用的 docker 对象。删除所有未被 tag 标记和未被容器使用的镜像</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>提示:</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">WARNING! This will remove all dangling images.</span><br><span class="line">Are you sure you want to continue? [y/N]</span><br><span class="line"></span><br></pre></td></tr></table></figure><p>输入 <code>y</code></p><p>利用 Docker 搭建的应用,更新非常容易~</p><h3 id="卸载-Nginx-Proxy-Manager"><a href="#卸载-Nginx-Proxy-Manager" class="headerlink" title="卸载 Nginx Proxy Manager"></a><strong>卸载 Nginx Proxy Manager</strong></h3><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">cd /root/data/docker_data/npm</span><br><span class="line"></span><br><span class="line">docker-compose down </span><br><span class="line"></span><br><span class="line">rm -rf /root/data/docker_data/npm # 完全删除映射到本地的数据`</span><br><span class="line"></span><br></pre></td></tr></table></figure>]]></content>
<categories>
<category> VPS </category>
</categories>
<tags>
<tag> VPS </tag>
<tag> BLog </tag>
<tag> 工作记录 </tag>
</tags>
</entry>
<entry>
<title>Outline 使用此服务器以安全地访问开放互联网 | Outline uses this server to securely access the open Internet</title>
<link href="/article/outline/"/>
<url>/article/outline/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/outline.png"></p><h1 id="使用此服务器以安全地访问开放互联网:"><a href="#使用此服务器以安全地访问开放互联网:" class="headerlink" title="使用此服务器以安全地访问开放互联网:"></a>使用此服务器以安全地访问开放互联网:</h1><ol><li>为您的设备下载并安装 Outline 应用:</li></ol><ul><li>iOS:<a href="https://itunes.apple.com/app/outline-app/id1356177741">https://itunes.apple.com/app/outline-app/id1356177741</a></li><li>MacOS:<a href="https://itunes.apple.com/app/outline-app/id1356178125">https://itunes.apple.com/app/outline-app/id1356178125</a></li><li>Windows:<a href="https://s3.amazonaws.com/outline-releases/client/windows/stable/Outline-Client.exe">https://s3.amazonaws.com/outline-releases/client/windows/stable/Outline-Client.exe</a></li><li>Linux:<a href="https://s3.amazonaws.com/outline-releases/client/linux/stable/Outline-Client.AppImage">https://s3.amazonaws.com/outline-releases/client/linux/stable/Outline-Client.AppImage</a></li><li>Android:<a href="https://play.google.com/store/apps/details?id=org.outline.android.client">https://play.google.com/store/apps/details?id=org.outline.android.client</a></li><li>Android 替代链接:<a href="https://s3.amazonaws.com/outline-releases/client/android/stable/Outline-Client.apk">https://s3.amazonaws.com/outline-releases/client/android/stable/Outline-Client.apk</a></li></ul><ol start="2"><li><p>您会收到一个以 ss:// 开头的访问密钥。收到该密钥后,请复制此访问密钥。</p></li><li><p>打开 Outline 客户端应用。如果系统自动检测到您的访问密钥,请点按“连接”并继续。如果系统未自动检测您的访问密钥,请将其粘贴到该字段中,然后点按“连接”并继续。</p></li></ol><p>您可以使用开放互联网了!为了确保您已成功连接到服务器,请尝试在 Google 搜索中搜索“what is my ip”。Google 中显示的 IP 地址应与 Outline 客户端中的 IP 地址一致。</p><p>如需详细了解 Outline,请访问 <a href="https://getoutline.org/">https://getoutline.org/</a></p><h1 id="Outline"><a href="#Outline" class="headerlink" title="Outline"></a><a href="https://getoutline.org/">Outline</a></h1><h1 id="Access-to-the-free-and-open-Internet"><a href="#Access-to-the-free-and-open-Internet" class="headerlink" title="Access to the free and open Internet"></a>Access to the free and open Internet</h1><p>Outline makes it easy to create a VPN server, giving anyone access to the free and open internet.</p><h1 id="Get-Started"><a href="#Get-Started" class="headerlink" title="Get Started"></a>Get Started</h1><p>Two Products That Work Together<br>Outline consists of two interrelated products that work together to provide you and your community with uninterrupted access to the internet.</p><p>Laptop</p><h3 id="GET-OUTLINE-MANAGER"><a href="#GET-OUTLINE-MANAGER" class="headerlink" title="GET OUTLINE MANAGER"></a>GET OUTLINE MANAGER</h3><p>Mobile</p><h3 id="GET-OUTLINE-CLIENT"><a href="#GET-OUTLINE-CLIENT" class="headerlink" title="GET OUTLINE CLIENT"></a>GET OUTLINE CLIENT</h3>]]></content>
<categories>
<category> 科学上网 </category>
</categories>
<tags>
<tag> 科学上网 </tag>
</tags>
</entry>
<entry>
<title>Live VPS 服务器24H直播 | Live VPS server 24 hours live broadcast</title>
<link href="/article/live/"/>
<url>/article/live/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/LIve.png" alt="Live"></p><p>查看资源占用</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">htop</span><br></pre></td></tr></table></figure><p><strong>连上VPS更新系统</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">apt update -y && apt upgrade -y && apt install -y curl wget sudo socat htop ffmpeg</span><br></pre></td></tr></table></figure><p><strong>直播指定视频(自适应)</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">nohup ffmpeg -stream_loop -1 -re -i /home/mp4/12.mp4 -c copy -f flv rtmp://a.rtmp.youtube.com/live2/fu2g-3dex-vdyu-vc5p-f6cb > /dev/null 2>&1 &</span><br></pre></td></tr></table></figure><p><strong>直播指定视频(低流量)</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">nohup ffmpeg -re -stream_loop -1 -i /home/mp4/12.mp4 -c:v libx264 -b:v 500k -maxrate 500k -bufsize 1000k -c:a copy -f flv "rtmp://a.rtmp.youtube.com/live2/fu2g-3dex-vdyu-vc5p-f6cb" > /dev/null 2>&1 &</span><br></pre></td></tr></table></figure><p><strong>查看运行状态</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">ps -ef | grep ffmpeg</span><br></pre></td></tr></table></figure><p><strong>停止</strong></p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">reboot</span><br></pre></td></tr></table></figure><h1 id=""><a href="#" class="headerlink" title=""></a></h1><p>E:找不到包 sudo socat<br>E:无法找到包顶部 ffmpeg</p><p>错误消息“找不到包”表示您尝试安装的包在系统当前配置为使用的存储库中不可用。</p><p>要解决此问题,您可以尝试以下步骤:</p><ol><li><p>使用以下命令更新系统的软件包列表:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line"></span><br><span class="line">sudo apt-get update</span><br><span class="line"></span><br></pre></td></tr></table></figure></li><li><p>更新完成后,请尝试使用以下命令再次安装软件包:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line"></span><br><span class="line">sudo apt-get install sudo socat htop ffmpeg</span><br><span class="line"></span><br></pre></td></tr></table></figure></li><li><p>如果仍然找不到包,则可能是它们在您当前使用的存储库中不可用。在这种情况下,您可以尝试按照软件包的开发人员或分发者提供的说明向系统添加新存储库。</p></li><li><p>如果仍然无法安装软件包,可以尝试手动下载它们并使用以下命令进行安装:</p> <figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line"></span><br><span class="line">sudo dpkg -i package_name.deb</span><br><span class="line"></span><br></pre></td></tr></table></figure><p> 将“package_name.deb”替换为您下载的软件包文件的实际名称。如果包具有系统上不可用的依赖项,则此方法可能不起作用。</p></li></ol><p>我希望这有帮助!</p>]]></content>
<categories>
<category> VPS </category>
</categories>
<tags>
<tag> 科学上网 </tag>
</tags>
</entry>
<entry>
<title>x-ui 一键安装脚本 | 3x-ui一个更好的面板 • 基于Xray Core构建</title>
<link href="/article/xui/"/>
<url>/article/xui/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/xui.png"></p><h1 id="安装与升级"><a href="#安装与升级" class="headerlink" title="安装与升级"></a><strong>安装与升级</strong></h1><p><a href="https://github.com/MHSanaei/3x-ui/blob/main/README.zh_CN.md">3x-ui/README.zh.md at main · MHSanaei/3x-ui</a></p><figure class="highlight jsx"><table><tr><td class="code"><pre><span class="line">bash <(curl -<span class="title class_">Ls</span> <span class="attr">https</span>:<span class="comment">//raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh)</span></span><br></pre></td></tr></table></figure><p><strong>安装指定版本</strong><br>要安装所需的版本,请在版本中添加到安装命令的结果。eg, ver <code>v2.2.8</code>:</p><p><code>bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.2.8</code></p><p>• 系统状态监控<br>• 在所有入口和客户端中搜索<br>• 深度/浅色主题<br>• 支持多用户和多协议<br>• 支持多种协议,包括VMess、VLESS、Trojan、Shadowsocks、Dokodemo-door、Socks、HTTP、wireguard<br>• 支持XTLS协议,包括RPRX-Direct、Vision、REALITY<br>• 流量统计、流量限制、超时时间限制<br>• 可自定义的 Xray 配置模板<br>• 支持HTTPS访问面板(自建域名+SSL证书)<br>• 支持一键式SSL证书申请和自动续费<br>• 更多高级配置项目请参考面板<br>• 修复了API路由(用户设置将使用API创建)<br>• 支持通过面板中提供的不同项目更改配置。</p><h1 id="X-UI一键脚本"><a href="#X-UI一键脚本" class="headerlink" title="X-UI一键脚本"></a>X-UI一键脚本</h1><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">bash <(curl -Ls https://raw.githubusercontent.com/wangwenzhiwwz/x-ui/master/install.sh)</span><br></pre></td></tr></table></figure><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">bash <(wget -qO- https://raw.githubusercontent.com/sing-web/x-ui/main/install_CN.sh)</span><br></pre></td></tr></table></figure><p>安装完成后默认是IP:54321访问面板。默认密码是admin;admin,默认密码不安全,请到面板后台更改用户名和密码。</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">/root/CF.pem</span><br></pre></td></tr></table></figure><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">/root/CF.key</span><br></pre></td></tr></table></figure><h1 id="TLS安装前准备步骤"><a href="#TLS安装前准备步骤" class="headerlink" title="TLS安装前准备步骤"></a>TLS安装前准备步骤</h1><h1 id="socat"><a href="#socat" class="headerlink" title="socat"></a>socat</h1><p>其实不需要SOCAT也可以,不过安装X-UI以后我们使用v2或者trojan的ssl加密的时候需要ssl证书,这个时候我们需要Acme配合NGINX/SOCAT申请证书。</p><p>当你的服务器上有nginx或者宝塔面板时,就不需要安装socat了,在这个时候执行是申请SSL脚本会提示80端口被占用出错。</p><h1 id="1-Debian-Ubuntu安装socat"><a href="#1-Debian-Ubuntu安装socat" class="headerlink" title="1. Debian/Ubuntu安装socat"></a>1. Debian/Ubuntu安装socat</h1><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">apt update -y</span><br></pre></td></tr></table></figure><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">apt install -y curl</span><br></pre></td></tr></table></figure><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">apt install -y socat</span><br></pre></td></tr></table></figure><h1 id="2-centos安装socat"><a href="#2-centos安装socat" class="headerlink" title="2. centos安装socat"></a>2. centos安装socat</h1><ul><li>yum update -y</li><li>yum install -y curl</li><li>yum install -y socat</li></ul><h1 id="安装-Acme"><a href="#安装-Acme" class="headerlink" title="安装 Acme"></a>安装 Acme</h1><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">curl https://get.acme.sh | sh</span><br></pre></td></tr></table></figure><h1 id="申请证书"><a href="#申请证书" class="headerlink" title="申请证书"></a>申请证书</h1><p>需要准备一个邮箱(非必须)和域名解析到你的IP</p><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">~/.acme.sh/acme.sh –register-account -m 99218632@qq.com</span><br></pre></td></tr></table></figure><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">~/.acme.sh/acme.sh –issue -d wwz1997.eu.org –standalone</span><br></pre></td></tr></table></figure><h1 id="改证书存放位置"><a href="#改证书存放位置" class="headerlink" title="改证书存放位置"></a>改证书存放位置</h1><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">~/.acme.sh/acme.sh –installcert -d wwz1997.eu.org –key-file /root/private.key –fullchain-file /root/cert.crt</span><br></pre></td></tr></table></figure><h1 id="TLS具体配置"><a href="#TLS具体配置" class="headerlink" title="TLS具体配置"></a>TLS具体配置</h1><h1 id="1-怎么开启TLS"><a href="#1-怎么开启TLS" class="headerlink" title="1. 怎么开启TLS"></a>1. 怎么开启TLS</h1><p>在后台选择搭建节点的时候是vmess/trojan/ss/vless等都可以开启tls选项。开启TLS选项后需要绑定域名,这里我们填写刚刚申请了ssl的域名,证书位置是 /root/cert.crt 密钥位置是 /root/private.key</p><p>端口选择443,注意因为x-ui没有域名回落,所以我们搭建在443上的翻墙只能有一个。</p>]]></content>
<categories>
<category> 科学上网 </category>
</categories>
<tags>
<tag> 科学上网 </tag>
<tag> 一键脚本 </tag>
</tags>
</entry>
<entry>
<title>ChatGPT 搭建自用网站 VPS 部署 ChatGPT 今天使用的 VPS 来自 搬瓦工(机型:KVMV5-40G-2G-2T-CA-CN2GIA),系统为 Ubuntu 22.04 x86_64 。首先安装 Docker 服务,这里使用官方的一键脚本进行安装</title>
<link href="/article/ChatGPT/"/>
<url>/article/ChatGPT/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/ChatGPT.png"></p><h3 id="VPS-部署-ChatGPT"><a href="#VPS-部署-ChatGPT" class="headerlink" title="VPS 部署 ChatGPT"></a><strong>VPS 部署 ChatGPT</strong></h3><p>今天使用的 VPS 来自 搬瓦工(机型:<a href="https://v2rayssr.com/go?url=https://bwh88.net/aff.php?aff=54757&pid=88">KVMV5-40G-2G-2T-CA-CN2GIA</a>),系统为 Ubuntu 22.04 x86_64 。</p><p>首先安装 Docker 服务,这里使用官方的一键脚本进行安装</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun</span><br></pre></td></tr></table></figure><p>Docker ChatGPT 部署命</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">docker run \</span><br><span class="line">--name chatgpt-web \</span><br><span class="line">-p 3002:3002 \</span><br><span class="line">--env OPENAI_API_KEY=Your-OpenAi-API \</span><br><span class="line">--restart always \</span><br><span class="line">-d chenzhaoyu94/chatgpt-web:latest</span><br></pre></td></tr></table></figure><p>部署完毕以后,访问 <a href="http://ip:3002/">http://IP:3002</a> ,检测 ChatGPT 是否部署成功</p><p><img src="https://v2rayssr.com/wp-content/uploads/2023/03/1233.png" alt="https://v2rayssr.com/wp-content/uploads/2023/03/1233.png"></p><h3 id="OpenWRT-部署-ChatGPT"><a href="#OpenWRT-部署-ChatGPT" class="headerlink" title="OpenWRT 部署 ChatGPT"></a><strong>OpenWRT 部署 ChatGPT</strong></h3><p>对于 OpenWRT 如何进行 Docker 的部署和使用,上期博文有介绍,大家可以详细的了解:<a href="https://v2rayssr.com/openwrt-emby.html">点击访问</a></p><p>来到 OpenWRT 的 Docker 服务,点击 容器 – 添加 – 命令行,贴入上面的 Docker 命令,保存应用即可。</p><p><img src="https://v2rayssr.com/wp-content/uploads/2023/03/1-1.png" alt="https://v2rayssr.com/wp-content/uploads/2023/03/1-1.png"></p><p>启动 Docker 容器,访问 <a href="http://ip:3002/">http://ip:3002</a></p><p><img src="https://v2rayssr.com/wp-content/uploads/2023/03/22.png" alt="https://v2rayssr.com/wp-content/uploads/2023/03/22.png"></p><h1 id="ChatGPT-软件推荐"><a href="#ChatGPT-软件推荐" class="headerlink" title="ChatGPT 软件推荐"></a><strong>ChatGPT 软件推荐</strong></h1><p>ChatGPT 的软件很多,这边推荐大家使用 ChatBox 这款开源软件。</p><p>ChatBox GitHub 项目地址:<a href="https://v2rayssr.com/go?url=https://github.com/Bin-Huang/">点击访问</a></p><p>ChatBox GitHub 客户端下载地址:<a href="https://v2rayssr.com/go?url=https://github.com/Bin-Huang/chatbox/releases">点击访问</a></p><p><img src="https://v2rayssr.com/wp-content/uploads/2023/03/121212.png" alt="https://v2rayssr.com/wp-content/uploads/2023/03/121212.png"></p><h1 id="ChatGPT-的使用"><a href="#ChatGPT-的使用" class="headerlink" title="ChatGPT 的使用"></a><strong>ChatGPT 的使用</strong></h1><p>作为一个强大的 AI 语言程序,我认为,只是你的想像和命令的准确性受到了局限,其他对于它来说,一切都是渣渣!</p>]]></content>
<categories>
<category> Blog </category>
</categories>
<tags>
<tag> 科学上网 </tag>
</tags>
</entry>
<entry>
<title>WARP多功能一键脚本 CF WARP解锁ChatGPT 支持纯IPV4、纯IPV6的VPS直接安装,主流linux系统均支持</title>
<link href="/article/CF/"/>
<url>/article/CF/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/ai.png"></p><h3 id="WARP多功能一键脚本"><a href="#WARP多功能一键脚本" class="headerlink" title="WARP多功能一键脚本"></a>WARP多功能一键脚本</h3><h3 id="支持纯IPV4、纯IPV6的VPS直接安装,主流linux系统均支持"><a href="#支持纯IPV4、纯IPV6的VPS直接安装,主流linux系统均支持" class="headerlink" title="支持纯IPV4、纯IPV6的VPS直接安装,主流linux系统均支持"></a><a href="https://github.com/yonggekkk/CFwarp-yg#%E6%94%AF%E6%8C%81%E7%BA%AFipv4%E7%BA%AFipv6%E7%9A%84vps%E7%9B%B4%E6%8E%A5%E5%AE%89%E8%A3%85%E4%B8%BB%E6%B5%81linux%E7%B3%BB%E7%BB%9F%E5%9D%87%E6%94%AF%E6%8C%81"></a>支持纯IPV4、纯IPV6的VPS直接安装,主流linux系统均支持</h3><h3 id="支持warp-go与wgcf两种warp内核形式切换"><a href="#支持warp-go与wgcf两种warp内核形式切换" class="headerlink" title="支持warp-go与wgcf两种warp内核形式切换"></a><a href="https://github.com/yonggekkk/CFwarp-yg#%E6%94%AF%E6%8C%81warp-go%E4%B8%8Ewgcf%E4%B8%A4%E7%A7%8Dwarp%E5%86%85%E6%A0%B8%E5%BD%A2%E5%BC%8F%E5%88%87%E6%8D%A2"></a>支持warp-go与wgcf两种warp内核形式切换</h3><h3 id="相关说明及注意点请查看博客说明"><a href="#相关说明及注意点请查看博客说明" class="headerlink" title="相关说明及注意点请查看博客说明"></a><a href="https://github.com/yonggekkk/CFwarp-yg#%E7%9B%B8%E5%85%B3%E8%AF%B4%E6%98%8E%E5%8F%8A%E6%B3%A8%E6%84%8F%E7%82%B9%E8%AF%B7%E6%9F%A5%E7%9C%8B%E5%8D%9A%E5%AE%A2%E8%AF%B4%E6%98%8E"></a>相关说明及注意点请查看<a href="https://www.youtube.com/playlist?list=PLMgly2AulGG-WqPXPkHlqWVSfQ3XjHNw8">博客说明</a></h3><hr><h3 id="一键脚本:"><a href="#一键脚本:" class="headerlink" title="一键脚本:"></a><a href="https://github.com/yonggekkk/CFwarp-yg#%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC"></a>一键脚本:</h3><p><code>wget -N --no-check-certificate https://gitlab.com/rwkgyg/CFwarp/raw/main/CFwarp.sh && bash CFwarp.sh</code></p><p><img src="https://user-images.githubusercontent.com/121604513/219865326-5db3b9dc-fabc-4a09-a4b1-8ae8a921edc8.png" alt="https://user-images.githubusercontent.com/121604513/219865326-5db3b9dc-fabc-4a09-a4b1-8ae8a921edc8.png"></p><h3 id="脚本源码备份Gitlab地址"><a href="#脚本源码备份Gitlab地址" class="headerlink" title="脚本源码备份Gitlab地址"></a>脚本源码备份<a href="https://gitlab.com/rwkgyg/CFwarp">Gitlab地址</a></h3><p><strong>视频教程:</strong></p><p><strong><a href="https://youtu.be/28E1oNzitiY">Chatgpt注册接码TG聊天一条龙保姆级教程:让所有vps解锁Chatgpt官网登录,免费接码注册chatgpt,VPS一键chatgpt脚本,支持telegram-bot机器人聊天</a></strong></p><hr><p><strong>说明链接:</strong></p><p><strong><a href="https://github.com/yonggekkk/CFwarp-yg">warp脚本</a></strong></p><p><strong><a href="https://chat.openai.com/auth/login">Chatgpt注册</a></strong></p><p><strong><a href="https://m.apkpure.com/cn/search?q=2nr&t=">2NR的apk直接下载</a></strong></p><p><strong><a href="https://platform.openai.com/account/api-keys/">查询Chatgpt的APIkey及账户余额</a></strong></p><p><strong><a href="https://github.com/yonggekkk/chatgpt-tg-bot-script">Chatgpt一键TG聊天脚本</a></strong></p>]]></content>
<categories>
<category> 科学上网 </category>
</categories>
<tags>
<tag> 科学上网 </tag>
<tag> 一键脚本 </tag>
</tags>
</entry>
<entry>
<title>AWS亚马逊云 AWS亚马逊云永久免费CDN服务 由于CFT的CDN包含了中国IP段,需要备案才能使用,需要将其全部剔除,否则优选出来延迟最低的都是中国的CDN</title>
<link href="/article/AWS/"/>
<url>/article/AWS/</url>
<content type="html"><![CDATA[<h1 id="教程文档"><a href="#教程文档" class="headerlink" title="教程文档"></a><strong>教程文档</strong></h1><p><img src="https://wangwenzhi.eu.org/images/images/aws.png" alt="https://wangwenzhi.eu.org/images/images/aws.png"></p><p><a href="https://bulianglin.com/archives/cft.html">AWS亚马逊云永久免费CDN服务 - cloudfront - 科学上网 技术分享</a><br>优选IP工具:<a href="https://bulianglin.com/g/aHR0cHM6Ly9naXRodWIuY29tL1hJVTIvQ2xvdWRmbGFyZVNwZWVkVGVzdA">https://github.com/XIU2/CloudflareSpeedTest</a><br>测速地址:<a href="https://bulianglin.com/g/aHR0cHM6Ly9jYWNoZWZseS5jYWNoZWZseS5uZXQvMTAwbWIudGVzdA">https://cachefly.cachefly.net/100mb.test</a><br>CFT IP段:<a href="https://bulianglin.com/g/aHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL0FtYXpvbkNsb3VkRnJvbnQvbGF0ZXN0L0RldmVsb3Blckd1aWRlL0xvY2F0aW9uc09mRWRnZVNlcnZlcnMuaHRtbA">https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/LocationsOfEdgeServers.html</a></p><blockquote><p>由于CFT的CDN包含了中国IP段,需要备案才能使用,需要将其全部剔除,否则优选出来延迟最低的都是中国的CDN</p></blockquote><p><strong>下方为剔除中国CDN的IP段,官方可能会定期更新IP段,建议自己进行剔除操作</strong>更新日期:2022年7月29日</p><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">205.251.249.0/24</span><br><span class="line">204.246.168.0/22</span><br><span class="line">18.160.0.0/15</span><br><span class="line">205.251.252.0/23</span><br><span class="line">54.192.0.0/16</span><br><span class="line">204.246.173.0/24</span><br><span class="line">54.230.200.0/21</span><br><span class="line">116.129.226.128/26</span><br><span class="line">130.176.0.0/17</span><br><span class="line">108.156.0.0/14</span><br><span class="line">99.86.0.0/16</span><br><span class="line">205.251.200.0/21</span><br><span class="line">13.32.0.0/15</span><br><span class="line">13.224.0.0/14</span><br><span class="line">70.132.0.0/18</span><br><span class="line">15.158.0.0/16</span><br><span class="line">13.249.0.0/16</span><br><span class="line">18.238.0.0/15</span><br><span class="line">18.244.0.0/15</span><br><span class="line">205.251.208.0/20</span><br><span class="line">65.9.128.0/18</span><br><span class="line">130.176.128.0/18</span><br><span class="line">54.230.208.0/20</span><br><span class="line">116.129.226.0/25</span><br><span class="line">52.222.128.0/17</span><br><span class="line">18.164.0.0/15</span><br><span class="line">64.252.128.0/18</span><br><span class="line">205.251.254.0/24</span><br><span class="line">54.230.224.0/19</span><br><span class="line">71.152.0.0/17</span><br><span class="line">216.137.32.0/19</span><br><span class="line">204.246.172.0/24</span><br><span class="line">18.172.0.0/15</span><br><span class="line">18.154.0.0/15</span><br><span class="line">54.240.128.0/18</span><br><span class="line">205.251.250.0/23</span><br><span class="line">52.46.0.0/18</span><br><span class="line">52.82.128.0/19</span><br><span class="line">54.230.0.0/17</span><br><span class="line">54.230.128.0/18</span><br><span class="line">54.239.128.0/18</span><br><span class="line">130.176.224.0/20</span><br><span class="line">36.103.232.128/26</span><br><span class="line">52.84.0.0/15</span><br><span class="line">143.204.0.0/16</span><br><span class="line">144.220.0.0/16</span><br><span class="line">54.182.0.0/16</span><br><span class="line">54.239.192.0/19</span><br><span class="line">18.64.0.0/14</span><br><span class="line">99.84.0.0/16</span><br><span class="line">130.176.192.0/19</span><br><span class="line">52.124.128.0/17</span><br><span class="line">204.246.164.0/22</span><br><span class="line">13.35.0.0/16</span><br><span class="line">204.246.174.0/23</span><br><span class="line">36.103.232.0/25</span><br><span class="line">204.246.176.0/20</span><br><span class="line">65.8.0.0/16</span><br><span class="line">65.9.0.0/17</span><br><span class="line">108.138.0.0/15</span><br><span class="line">64.252.64.0/18</span><br></pre></td></tr></table></figure>]]></content>
<categories>
<category> VPS </category>
</categories>
<tags>
<tag> 科学上网 </tag>
</tags>
</entry>
<entry>
<title>Xray一键脚本使用方法 本Xray一键脚本支持ipv6 only服务器,但是不建议用只有ipv6的VPS用来科学上网</title>
<link href="/article/Xray/"/>
<url>/article/Xray/</url>
<content type="html"><![CDATA[<p><img src="https://wangwenzhi.eu.org/images/images/xray.png" alt="Xray一键安装脚本"></p><h2 id="Xray一键脚本使用方法"><a href="#Xray一键脚本使用方法" class="headerlink" title="Xray一键脚本使用方法"></a>Xray一键脚本使用方法</h2><p><a href="https://v2xtls.org/tag/xray%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC/">Xray一键脚</a>本使用步骤如下:</p><ol><li>准备一个境外服务器,想服务器速度快请参考 <a href="https://v2xtls.org/%e6%90%ac%e7%93%a6%e5%b7%a5vps%e8%b4%ad%e4%b9%b0%e6%95%99%e7%a8%8b/">搬瓦工VPS购买教程</a> 或从 <a href="https://v2xtls.org/cn2-gia-vps%e5%92%8c%e5%95%86%e5%ae%b6%e6%8e%a8%e8%8d%90/">CN2 GIA VPS商家推荐</a> 选购,想ip被封后免费换请参考:<a href="https://v2xtls.org/%e8%b4%ad%e4%b9%b0vultr%e6%9c%8d%e5%8a%a1%e5%99%a8%e8%b6%85%e8%af%a6%e7%bb%86%e5%9b%be%e6%96%87%e6%95%99%e7%a8%8b/">购买vultr服务器超详细图文教程</a>。</li></ol><p>如果用VMESS+WS+TLS或者VLESS系列协议,则还需一个域名。对域名没有要求,国内/国外注册的都可以,<strong>不需要备案</strong>,不会影响使用,也不会带来安全/隐私上的问题。购买域名可参考:<a href="https://v2xtls.org/namesilo%e5%9f%9f%e5%90%8d%e6%b3%a8%e5%86%8c%e5%92%8c%e4%bd%bf%e7%94%a8%e6%95%99%e7%a8%8b/">Namesilo购买域名详细教程</a>。</p><p>值得一提的是本Xray一键脚本支持ipv6 only服务器,但是不建议用只有ipv6的VPS用来科学上网。</p><ol start="2"><li><p>如果vps运营商开启了防火墙(阿里云、Ucloud、腾讯云、AWS、GCP等商家默认有,搬瓦工/hostdare/vultr等商家默认关闭),请先登录vps管理后台放行80和443端口,否则可能会导致获取证书失败。此外,<strong>本脚本支持上传自定义证书</strong>,可跳过申请证书这一步,也可用在<a href="https://v2raytech.com/tag/nat-vps/">NAT VPS</a>上。</p></li><li><p>ssh连接到服务器。Windows系统请参考 <a href="https://v2xtls.org/bitvise%e8%bf%9e%e6%8e%a5linux%e6%9c%8d%e5%8a%a1%e5%99%a8%e6%95%99%e7%a8%8b/">Bitvise连接Linux服务器教程</a>,mac用户请参考 <a href="https://v2xtls.org/mac%e7%94%b5%e8%84%91%e8%bf%9e%e6%8e%a5linux%e6%95%99%e7%a8%8b/">Mac电脑连接Linux教程</a>。</p></li><li><p>复制(或手动输入)下面命令到终端:</p></li></ol><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">bash <(curl -sL https://raw.githubusercontent.com/daveleung/hijkpw-scripts-mod/main/xray_mod1.sh)</span><br></pre></td></tr></table></figure><p>按回车键,将出现如下操作菜单。如果菜单没出现,CentOS系统请输入 <code>yum install -y curl</code>,Ubuntu/Debian系统请输入 <code>sudo apt install -y curl</code>,然后再次运行上面的命令:</p><p>Xray一键安装脚本</p><p>本Xray一键脚本目前支持以下组合方式:</p><ul><li><strong>VMESS</strong>,即最普通的V2ray服务器,没有伪装,也不是VLESS</li><li><strong>VMESS</strong>+KCP,传输协议使用mKCP,VPS线路不好时可能有奇效</li><li><strong>VMESS</strong>+TCP+TLS,带伪装的V2ray,不能过<a href="https://v2xtls.org/v2ray%e4%bd%bf%e7%94%a8cloudflare%e4%b8%ad%e8%bd%ac%e6%b5%81%e9%87%8f%ef%bc%8c%e6%8b%af%e6%95%91%e8%a2%ab%e5%a2%99ip/">CDN中转</a></li><li><strong>VMESS</strong>+WS+TLS,即最通用的V2ray伪装方式,能过<a href="https://v2xtls.org/v2ray%e4%bd%bf%e7%94%a8cloudflare%e4%b8%ad%e8%bd%ac%e6%b5%81%e9%87%8f%ef%bc%8c%e6%8b%af%e6%95%91%e8%a2%ab%e5%a2%99ip/">CDN中转</a>,推荐使用</li><li><strong>VLESS</strong>+KCP,传输协议使用mKCP</li><li><strong>VLESS</strong>+TCP+TLS,通用的VLESS版本,不能过<a href="https://v2xtls.org/v2ray%e4%bd%bf%e7%94%a8cloudflare%e4%b8%ad%e8%bd%ac%e6%b5%81%e9%87%8f%ef%bc%8c%e6%8b%af%e6%95%91%e8%a2%ab%e5%a2%99ip/">CDN中转</a>,但比VMESS+TCP+TLS方式性能更好</li><li><strong>VLESS</strong>+WS+TLS,基于websocket的V2ray伪装VLESS版本,能过<a href="https://v2xtls.org/v2ray%e4%bd%bf%e7%94%a8cloudflare%e4%b8%ad%e8%bd%ac%e6%b5%81%e9%87%8f%ef%bc%8c%e6%8b%af%e6%95%91%e8%a2%ab%e5%a2%99ip/">CDN中转</a>,有过CDN情况下推荐使用</li><li><strong>VLESS</strong>+TCP+XTLS,目前最强悍的VLESS+XTLS组合,强力推荐使用(但是支持的客户端少一些)</li><li><strong>trojan</strong>,轻量级的伪装协议</li><li><strong>trojan</strong>+XTLS,trojan加强版,使用XTLS技术提升性能</li></ul><blockquote><p>注意:目前一些客户端不支持VLESS协议,或者不支持XTLS,请按照自己的情况选择组合</p></blockquote><ol><li>按照自己的需求选择一个方式。例如6,然后回车。接着脚本会让你输入一些信息,也可以直接按回车使用默认值。需要注意的是,对于要输入伪装域名的情况,<strong>如果服务器上有网站在运行</strong>,请联系运维再执行脚本,否则可能导致原来网站无法访问!</li></ol><p><a href="https://v2xtls.org/wp-content/uploads/2020/12/xray%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC%E8%BE%93%E5%85%A5-1024x792-1.jpg"><img src="https://v2xtls.org/wp-content/uploads/2020/12/xray%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC%E8%BE%93%E5%85%A5-1024x792-1.jpg" alt="xray一键脚本输入"></a></p><p>xray一键脚本输入</p><ol start="6"><li>脚本接下来会自动运行,一切顺利的话结束后会输出配置信息:</li></ol><p><a href="https://v2xtls.org/wp-content/uploads/2020/12/Xray%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC%E8%BF%90%E8%A1%8C%E6%88%90%E5%8A%9F%E8%BE%93%E5%87%BA%E4%BF%A1%E6%81%AF.jpg"><img src="https://v2xtls.org/wp-content/uploads/2020/12/Xray%E4%B8%80%E9%94%AE%E8%84%9A%E6%9C%AC%E8%BF%90%E8%A1%8C%E6%88%90%E5%8A%9F%E8%BE%93%E5%87%BA%E4%BF%A1%E6%81%AF.jpg" alt="Xray一键脚本运行成功输出信息"></a></p><p>Xray一键脚本运行成功输出信息</p><p><strong>到此服务端配置完毕</strong>,服务器可能会自动重启(<strong>没提示重启则不需要</strong>),windows终端出现“disconnected”,mac出现“closed by remote host”说明服务器成功重启了。</p><p>对于VLESS协议、VMESS+WS+TLS的组合,网页上输入伪装域名,<strong>能正常打开伪装站</strong>,说明服务端已经正确配置好。如果运行过程中出现问题,请在本页面下方查找解决方法或留言。</p><h2 id="Xray一键脚本其他事项"><a href="#Xray一键脚本其他事项" class="headerlink" title="Xray一键脚本其他事项"></a>Xray一键脚本其他事项</h2><p>服务端配置好后,如果想使用CloudFlare等CDN中转(必须是WS版才可以),请参考:<a href="https://v2xtls.org/v2ray%e4%bd%bf%e7%94%a8cloudflare%e4%b8%ad%e8%bd%ac%e6%b5%81%e9%87%8f%ef%bc%8c%e6%8b%af%e6%95%91%e8%a2%ab%e5%a2%99ip/">使用cloudflare中转流量,拯救被墙ip</a>。</p><p>本脚本默认使用的加速技术是BBR,换成魔改BBR/BBR Plus/锐速清参考:<a href="https://v2xtls.org/%e5%ae%89%e8%a3%85%e9%ad%94%e6%94%b9bbr-bbr-plus-%e9%94%90%e9%80%9flotserver/">安装魔改BBR/BBR</a> <a href="https://v2xtls.org/%e5%ae%89%e8%a3%85%e9%ad%94%e6%94%b9bbr-bbr-plus-%e9%94%90%e9%80%9flotserver/">Plus/锐速(</a><a href="https://v2xtls.org/%e5%ae%89%e8%a3%85%e9%ad%94%e6%94%b9bbr-bbr-plus-%e9%94%90%e9%80%9flotserver/">Lotserver)</a>。</p><p>如果伪装站类型没有你满意的,比如你想搭建WordPress博客,请参考:<a href="https://v2xtls.org/v2ray%e4%bc%aa%e8%a3%85%e5%bb%ba%e7%ab%99%e6%95%99%e7%a8%8b/">V2ray伪装建站教程</a>。</p><p>对于使用TLS的方式,脚本默认会申请域名证书,证书存放在和xray配置文件同一个文件夹内(即<code>/usr/local/etc/xray</code>目录下)。证书会自动更新,如果客户端突然无法使用,请打开伪装网站查看是否能正常打开。如果证书已过期,请再次运行上面的脚本重新配置。</p><p>最后,刚搭建好Xray后不要猛上流量,否则会导致被限速、端口被墙,严重可能导致ip被墙。</p><p>接下来是配置客户端,下载客户端和配置教程请参考:</p><ul><li><a href="https://v2xtls.org/v2ray-windows%e5%ae%a2%e6%88%b7%e7%ab%af%e4%b8%8b%e8%bd%bd/">V2ray Windows客户端下载</a></li><li><a href="https://v2xtls.org/v2ray%e5%ae%89%e5%8d%93%e5%ae%a2%e6%88%b7%e7%ab%af%e4%b8%8b%e8%bd%bd/">V2ray 安卓客户端下载</a></li><li><a href="https://v2xtls.org/v2ray-mac%e5%ae%a2%e6%88%b7%e7%ab%af%e4%b8%8b%e8%bd%bd/">V2ray Mac客户端下载</a></li><li><a href="https://v2xtls.org/v2ray-ios%e5%ae%a2%e6%88%b7%e7%ab%af%e4%b8%8b%e8%bd%bd/">V2ray苹果客户端下载</a></li></ul><p>祝大家使用愉快。如有问题请在页面下方留言,也欢迎到 <a href="https://hijk.club/">网络跳越论坛</a> 或 tg群组<a href="https://t.me/hijkclub">https://t.me/hijkclub</a> 交流,或关注Youtube频道:<a href="https://youtube.com/channel/UCYTB--VsObzepVJtc9yvUxQ">网络跳越</a>。</p>]]></content>
<categories>
<category> 科学上网 </category>