-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1293 lines (850 loc) · 41.1 KB
/
index.html
File metadata and controls
1293 lines (850 loc) · 41.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
<meta name="theme-color" content="#268785">
<meta name="generator" content="Hexo 5.2.0">
<link rel="apple-touch-icon" sizes="180x180" href="/images/logo_g.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/logo_g.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/logo_g.png">
<link rel="mask-icon" href="/images/logo_g.png" color="#268785">
<meta http-equiv="Cache-Control" content="no-transform">
<meta http-equiv="Cache-Control" content="no-siteapp">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Monda:300,300italic,400,400italic,700,700italic|Noto+Serif+SC:300,300italic,400,400italic,700,700italic&display=swap&subset=latin,latin-ext">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.0/css/all.min.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/animate.css@3.1.1/animate.min.css">
<script class="hexo-configurations">
var NexT = window.NexT || {};
var CONFIG = {"hostname":"ltnexe.live","root":"/","scheme":"Mist","version":"8.0.1","exturl":false,"sidebar":{"position":"right","display":"post","padding":18,"offset":12,"width":280},"copycode":true,"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":"valine","storage":true,"lazyload":false,"nav":null,"activeClass":"valine"},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"fadeInDown","post_body":"fadeInDown","coll_header":"fadeInLeft","sidebar":"fadeInUp"}},"prism":false,"i18n":{"placeholder":"搜索...","empty":"没有找到任何搜索结果:${query}","hits_time":"找到 ${hits} 个搜索结果(用时 ${time} 毫秒)","hits":"找到 ${hits} 个搜索结果"},"path":"search.xml","localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false}};
</script>
<meta name="description" content="Our business is life itself.">
<meta property="og:type" content="website">
<meta property="og:title" content="LTN">
<meta property="og:url" content="https://ltnexe.live/index.html">
<meta property="og:site_name" content="LTN">
<meta property="og:description" content="Our business is life itself.">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="Chaolin Han">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="https://ltnexe.live/">
<script class="page-configurations">
// https://hexo.io/docs/variables.html
CONFIG.page = {
sidebar: "",
isHome : true,
isPost : false,
lang : 'zh-CN'
};
</script>
<title>LTN</title>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-165305836-1"></script>
<script>
if (CONFIG.hostname === location.hostname) {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-165305836-1');
}
</script>
<noscript>
<style>
body { margin-top: 2rem; }
.use-motion .menu-item,
.use-motion .sidebar,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-header {
visibility: visible;
}
.use-motion .header,
.use-motion .site-brand-container .toggle,
.use-motion .footer { opacity: initial; }
.use-motion .site-title,
.use-motion .site-subtitle,
.use-motion .custom-logo-image {
opacity: initial;
top: initial;
}
.use-motion .logo-line {
transform: scaleX(1);
}
.search-pop-overlay, .sidebar-nav { display: none; }
.sidebar-panel { display: block; }
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage" class="use-motion">
<div class="headband"></div>
<main class="main">
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="切换导航栏">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<i class="logo-line"></i>
<h1 class="site-title">LTN</h1>
<i class="logo-line"></i>
</a>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger">
<i class="fa fa-search fa-fw fa-lg"></i>
</div>
</div>
</div>
<nav class="site-nav">
<ul class="main-menu menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section"><i class="fa fa-address-card fa-fw"></i>关于</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a>
</li>
<li class="menu-item menu-item-search">
<a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索
</a>
</li>
</ul>
</nav>
<div class="search-pop-overlay">
<div class="popup search-popup">
<div class="search-header">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<div class="search-input-container">
<input autocomplete="off" autocapitalize="off" maxlength="80"
placeholder="搜索..." spellcheck="false"
type="search" class="search-input">
</div>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
</div>
<div class="search-result-container no-result">
<div class="search-result-icon">
<i class="fa fa-spinner fa-pulse fa-5x"></i>
</div>
</div>
</div>
</div>
</div>
<div class="toggle sidebar-toggle">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
<aside class="sidebar">
<div class="sidebar-inner sidebar-overview-active">
<ul class="sidebar-nav">
<li class="sidebar-nav-toc">
文章目录
</li>
<li class="sidebar-nav-overview">
站点概览
</li>
</ul>
<!--noindex-->
<section class="post-toc-wrap sidebar-panel">
</section>
<!--/noindex-->
<section class="site-overview-wrap sidebar-panel">
<div class="site-author site-overview-item animated" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" alt="Chaolin Han"
src="/images/icn.jpg">
<p class="site-author-name" itemprop="name">Chaolin Han</p>
<div class="site-description" itemprop="description">Our business is life itself.</div>
</div>
<div class="site-state-wrap site-overview-item animated">
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">43</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/">
<span class="site-state-item-count">18</span>
<span class="site-state-item-name">标签</span></a>
</div>
</nav>
</div>
<div class="links-of-author site-overview-item animated">
<span class="links-of-author-item">
<a href="https://github.com/chaolinhan" title="GitHub → https://github.com/chaolinhan" rel="noopener" target="_blank"><i class="fab fa-github fa-fw"></i></a>
</span>
<span class="links-of-author-item">
<a href="/chaolinhan@outlook.com" title="E-Mail → chaolinhan@outlook.com"><i class="fa fa-envelope fa-fw"></i></a>
</span>
<span class="links-of-author-item">
<a href="https://twitter.com/C_R__Han" title="Twitter → https://twitter.com/C_R__Han" rel="noopener" target="_blank"><i class="fab fa-twitter fa-fw"></i></a>
</span>
<span class="links-of-author-item">
<a href="https://www.instagram.com/cl_han" title="Instagram → https://www.instagram.com/cl_han" rel="noopener" target="_blank"><i class="fab fa-instagram fa-fw"></i></a>
</span>
</div>
<div class="cc-license site-overview-item animated" itemprop="license">
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" class="cc-opacity" rel="noopener" target="_blank"><img src="/images/cc-by-nc-sa.svg" alt="Creative Commons"></a>
</div>
</section>
</div>
</aside>
<div class="sidebar-dimmer"></div>
</header>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
<noscript>
<div class="noscript-warning">Theme NexT works best with JavaScript enabled</div>
</noscript>
<div class="main-inner index posts-expand">
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://ltnexe.live/rpi1/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icn.jpg">
<meta itemprop="name" content="Chaolin Han">
<meta itemprop="description" content="Our business is life itself.">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="LTN">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/rpi1/" class="post-title-link" itemprop="url">【树莓派】路由,NAS,密码服务器和一些定时脚本</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-10-26 10:50:15 / 修改时间:15:05:25" itemprop="dateCreated datePublished" datetime="2020-10-26T10:50:15+08:00">2020-10-26</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="TL-DR"><a href="#TL-DR" class="headerlink" title="TL;DR"></a>TL;DR</h2><p>拿到树莓派估计也有一周多了,折腾了不少东西。在折腾之前,很多人可能只知道树莓派,但是慢慢上手了才发现针对不同的应用都有更专业更有性价比的产品,比如简单的做路由和NAS相关功能的蜗牛、N1,做工业开发的国产版。树莓派就是一个什么都能做一点的东西,可惜在一些方面做不到那么专业。这里讲了怎么<strong>点亮树莓派4B上的Manjaro</strong>,OpenWrt中的<strong>NAS</strong>,<strong>自建密码服务器</strong>和一些脚本。讲结构居多,具体手把手教程有附链接就不重复了。</p>
<h2 id="Plan"><a href="#Plan" class="headerlink" title="Plan"></a>Plan</h2><p>前期计划:</p>
<ul>
<li><strong>私有云和NAS</strong>:连接到我的好几块硬盘,先能够局域网访问,再考虑内网穿透实现公网访问</li>
<li><strong>部署Bitwarden密码服务器</strong>:有一篇计划之中的post「什么样的密码管理才是我们需要的」<del>(本来很早就应该写好的)</del>,部署开源的密码服务到私有服务器是这个计划的<strong>最后一步</strong>。目前未考虑开放公网访问</li>
<li>运行一些全天任务,如RSS定时抓取,天气等定时脚本</li>
<li>Web开发</li>
</ul>
<p>后期计划:见<a href="##Next">Next</a></p>
<h2 id="Path"><a href="#Path" class="headerlink" title="Path"></a>Path</h2><h3 id="装系统"><a href="#装系统" class="headerlink" title="装系统"></a>装系统</h3><p>树莓派4B的系统最初可以通过TF卡安装。针对树莓派的Linux系统很多,随便一搜就可以看到推荐和对比。树莓派4B可以直接安装arm 64的系统,我安装的是<code>Manjaro-ARM 20.10</code>,有<a target="_blank" rel="noopener" href="https://manjaro.org/downloads/arm/raspberry-pi-4/arm8-raspberry-pi-4-kde-plasma/">树莓派版</a>。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/rpi1/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://ltnexe.live/wastedmoreorless/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icn.jpg">
<meta itemprop="name" content="Chaolin Han">
<meta itemprop="description" content="Our business is life itself.">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="LTN">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/wastedmoreorless/" class="post-title-link" itemprop="url">最近折腾的</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-10-21 02:03:08" itemprop="dateCreated datePublished" datetime="2020-10-21T02:03:08+08:00">2020-10-21</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-10-26 14:27:35" itemprop="dateModified" datetime="2020-10-26T14:27:35+08:00">2020-10-26</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>第一次尝试直接在手机上写博客</p>
</blockquote>
<p>最近一个月在捣鼓的事情有</p>
<ul>
<li><p>给我的mac救砖:<a href="https://ltnexe.live/recovery/">这里</a></p>
</li>
<li><p>给我的两个手机刷系统(有空就写)</p>
<ul>
<li>三星S9+港行无痛刷国行</li>
<li>索尼XZ安卓9.0降级到发行版安卓8</li>
</ul>
</li>
<li><p>给我的博客升级,启用了自动部署:<a href="https://ltnexe.live/how-blog/">这里</a></p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/wastedmoreorless/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://ltnexe.live/how-blog/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icn.jpg">
<meta itemprop="name" content="Chaolin Han">
<meta itemprop="description" content="Our business is life itself.">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="LTN">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/how-blog/" class="post-title-link" itemprop="url">如何愉快地写博客:Hexo, NexT, 图床和自动部署</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-10-08 11:46:06 / 修改时间:17:21:05" itemprop="dateCreated datePublished" datetime="2020-10-08T11:46:06+08:00">2020-10-08</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="整体框架"><a href="#整体框架" class="headerlink" title="整体框架"></a>整体框架</h2><ul>
<li><p><a target="_blank" rel="noopener" href="https://hexo.io/zh-cn/">Hexo</a>:开源静态博客框架 <strong><mark class="label info">free</mark></strong></p>
</li>
<li><p><a target="_blank" rel="noopener" href="https://theme-next.js.org/">NexT</a>:一个Hexo博客主题 <strong><mark class="label info">free</mark></strong></p>
</li>
<li><p>图床:阿里云OSS <strong><mark class="label danger">¥<1/mo</mark></strong> ;可选免费图床,如Imgur,微博图床</p>
</li>
<li><p>自动部署(CI):<a target="_blank" rel="noopener" href="https://pages.github.com/">GitHub Pages</a> <strong><mark class="label info">free</mark></strong> ,<a target="_blank" rel="noopener" href="https://www.netlify.com/">Netlify</a> <strong><mark class="label danger">free</mark></strong> </p>
</li>
<li><p>域名:本站域名 <code>ltnexe.live</code> <strong><mark class="label danger">£5/yr</mark></strong></p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/how-blog/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://ltnexe.live/Hexo-and-NexT-upgrade/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icn.jpg">
<meta itemprop="name" content="Chaolin Han">
<meta itemprop="description" content="Our business is life itself.">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="LTN">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/Hexo-and-NexT-upgrade/" class="post-title-link" itemprop="url">Hexo and NexT upgrade</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-09-26 22:41:59" itemprop="dateCreated datePublished" datetime="2020-09-26T22:41:59+08:00">2020-09-26</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-10-08 10:11:29" itemprop="dateModified" datetime="2020-10-08T10:11:29+08:00">2020-10-08</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="Hexo-5-0-0"><a href="#Hexo-5-0-0" class="headerlink" title="Hexo 5.0.0+"></a>Hexo 5.0.0+</h2><p>从Hexo 4升级到Hexo +,直接改<code>package.json</code>里面的依赖版本:</p>
<figure class="highlight"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">"hexo": "^5.0.0",</span><br></pre></td></tr></table></figure>
<p>然后命令行</p>
<figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">npm install</span><br></pre></td></tr></table></figure>
<p>然后看情况,需要<code>npm audit fix</code>或者单独安装所需要的依赖。</p>
<p>建议在升级NexT之前先把Hexo升级了再测试,避免新的node module依赖又出问题。</p>
<p>Hexo 5更新日志:<a target="_blank" rel="noopener" href="https://hexo.io/news/2020/07/29/hexo-5-released/">https://hexo.io/news/2020/07/29/hexo-5-released/</a></p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/Hexo-and-NexT-upgrade/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://ltnexe.live/recovery/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icn.jpg">
<meta itemprop="name" content="Chaolin Han">
<meta itemprop="description" content="Our business is life itself.">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="LTN">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/recovery/" class="post-title-link" itemprop="url">Mac升级救砖记</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-09-26 12:02:46" itemprop="dateCreated datePublished" datetime="2020-09-26T12:02:46+08:00">2020-09-26</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-10-07 13:31:55" itemprop="dateModified" datetime="2020-10-07T13:31:55+08:00">2020-10-07</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>自从上次电脑拿去修了之后,我再次意识到备份的重要性。这次救砖基本把雷都踩完了。这件事情告诉我不要手贱去玩不稳定的 beta</p>
<p>概要</p>
<ul>
<li>Recovery 跟随系统,坑很多</li>
<li>Catalina 和 Big Sur 之间升级和降级都有很多不兼容的问题,比如分区</li>
<li>时间机器跨版本恢复的这一块功能有明显的 bug,直接导致了这次变砖</li>
</ul>
</blockquote>
<p>前情提要 👉 <a href="https://ltnexe.live/macrepair/">Mac 换电记</a></p>
<h2 id="变砖"><a href="#变砖" class="headerlink" title="变砖"></a>变砖</h2><p>在 9 月 24 号早上,习惯性打开电脑,手贱点了<code>macOS Big Sur beta 8</code>的升级,然后开始等待。结果几个小时也不见更新完,界面一直是卡在了无限重启进系统。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/recovery/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://ltnexe.live/msc1/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icn.jpg">
<meta itemprop="name" content="Chaolin Han">
<meta itemprop="description" content="Our business is life itself.">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="LTN">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/msc1/" class="post-title-link" itemprop="url">MSc Project (1/N)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-08-18 16:50:14" itemprop="dateCreated datePublished" datetime="2020-08-18T16:50:14+08:00">2020-08-18</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-09-26 14:20:28" itemprop="dateModified" datetime="2020-09-26T14:20:28+08:00">2020-09-26</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="1"><a href="#1" class="headerlink" title="1"></a>1</h1><p>5个月,做了3个多月的实验,写了60页的论文,总结一下。</p>
<ol>
<li>Excel垃圾,Numbers垃圾,我只想在图上能显示下标,最后还是要靠PS</li>
<li>Latex属于一劳永逸的效率利器,然而可能需要写一次毕业论文才能差不多熟悉起来,而大部分人一辈子就写一次毕业论文,所以其实还是没啥卵用
<!--noindex-->
<div class="post-button">
<a class="btn" href="/msc1/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://ltnexe.live/edgeyear/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icn.jpg">
<meta itemprop="name" content="Chaolin Han">
<meta itemprop="description" content="Our business is life itself.">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="LTN">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/edgeyear/" class="post-title-link" itemprop="url">Inferno</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-07-11 02:25:55" itemprop="dateCreated datePublished" datetime="2020-07-11T02:25:55+08:00">2020-07-11</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-10-07 13:31:55" itemprop="dateModified" datetime="2020-10-07T13:31:55+08:00">2020-10-07</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
请输入密码查看.
<!--noindex-->
<div class="post-button">
<a class="btn" href="/edgeyear/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://ltnexe.live/macrepair/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icn.jpg">
<meta itemprop="name" content="Chaolin Han">
<meta itemprop="description" content="Our business is life itself.">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="LTN">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/macrepair/" class="post-title-link" itemprop="url">Mac换电记</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-05-15 22:45:41" itemprop="dateCreated datePublished" datetime="2020-05-15T22:45:41+08:00">2020-05-15</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-10-07 13:31:55" itemprop="dateModified" datetime="2020-10-07T13:31:55+08:00">2020-10-07</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>C,D 面全换了,没收钱。</p>
</blockquote>
<h1 id="坏了"><a href="#坏了" class="headerlink" title="坏了"></a>坏了</h1><p>4 月中旬的时候我应该在写点什么有的没的,加上疫情期间经常开会需要用到摄像头,就常把我的 MacBook Pro 从墙上取下来以一个正常笔记本姿态来用。在此期间我发现 Mac 在我桌面上移动的时候,底面会和我的桌面摩擦地沙沙响。首先怀疑的是桌面的问题,然后试了别的几个平面发现都有这个问题,于是发现是电脑的 D 面不平整了。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/macrepair/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://ltnexe.live/COVID-R/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icn.jpg">
<meta itemprop="name" content="Chaolin Han">
<meta itemprop="description" content="Our business is life itself.">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="LTN">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/COVID-R/" class="post-title-link" itemprop="url">疫情数据的可视化和ARIMA预测</a>
</h2>